@charset "utf-8";
/* =========================================================
   jihinote — ジヒノテ / 株式会社エーテルグラウンド
   Design tokens & global styles
   ========================================================= */

:root {
  /* --- ink --- */
  --ink:        #2b2724;
  --ink-2:      #5b544d;
  --ink-3:      #8d847b;
  --ink-4:      #b3aaa1;

  /* --- surfaces (from the printed leaflet) --- */
  --bg:         #fcfaf7;
  --sand:       #f4ede4;
  --sand-2:     #efe6d8;
  --blush:      #f7e2df;
  --blush-2:    #fbf0ed;
  --sage:       #dde9e1;
  --sage-2:     #eff5f1;
  --brown:      #7a6a5e;
  --gold:       #b49356;
  --line:       #e6ded4;
  --line-soft:  #efe9e1;

  /* --- type --- */
  --sans: "Gen Interface JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN",
          "Yu Gothic", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans-d: "Gen Interface JP Display", "Gen Interface JP", "Noto Sans JP",
            "Hiragino Kaku Gothic ProN", sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;

  /* --- irregular spacing scale (fibonacci-ish, on purpose) --- */
  --s1: 4px;  --s2: 8px;  --s3: 14px; --s4: 22px;
  --s5: 34px; --s6: 54px; --s7: 88px; --s8: 142px;

  --shell: 1180px;
  --gutter: clamp(20px, 5.5vw, 56px);
  --sec-y: clamp(80px, 11.5vw, 142px);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 2.05;
  letter-spacing: .045em;
  font-feature-settings: "palt" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (min-width: 768px) { body { font-size: 16px; } }

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--blush); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brown);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 20px;
}
.skip:focus { left: 12px; top: 12px; }

/* =========================================================
   Layout primitives
   ========================================================= */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--wide { max-width: 1420px; }
.shell--narrow { max-width: 860px; }

.section { padding-block: var(--sec-y); position: relative; }
.section--sand { background: var(--sand); }
.section--blush { background: var(--blush-2); }
.section--sage { background: var(--sage-2); }
.section--tight { padding-block: clamp(56px, 8vw, 96px); }

.measure { max-width: 36em; }

/* =========================================================
   Type
   ========================================================= */
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 2.4vw, 26px);
  letter-spacing: .1em;
  line-height: 1;
  color: var(--brown);
  display: block;
}
.eyebrow-jp {
  display: block;
  margin-top: var(--s3);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .3em;
  line-height: 1;
  color: var(--ink-3);
}

.sec-head { margin-bottom: var(--s6); }
.sec-head--center { text-align: center; }

.h2 {
  font-family: var(--sans-d);
  font-weight: 500;
  font-size: clamp(21px, 3.5vw, 31px);
  line-height: 1.85;
  letter-spacing: .075em;
  margin-top: var(--s4);
}
.h3 {
  font-family: var(--sans-d);
  font-weight: 500;
  font-size: clamp(17px, 2.2vw, 20px);
  line-height: 1.9;
  letter-spacing: .07em;
}
.h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .06em;
}
.lead {
  font-size: clamp(14.5px, 1.6vw, 16px);
  line-height: 2.25;
  color: var(--ink-2);
}
.small { font-size: 13px; line-height: 2; color: var(--ink-3); letter-spacing: .05em; }
.tiny  { font-size: 12px; line-height: 1.95; color: var(--ink-3); letter-spacing: .04em; }

.num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--gold);
}

.vtext {
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: .42em;
  line-height: 1;
  color: var(--ink-3);
  font-weight: 500;
}

/* rule */
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--ink);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 34px;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .13em;
  line-height: 1;
  overflow: hidden;
  isolation: isolate;
  transition: color .5s var(--ease), border-color .5s var(--ease);
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .55s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::after { transform: scaleX(1); transform-origin: left center; }
.btn .arw { width: 18px; height: 1px; background: currentColor; position: relative; flex: none; }
.btn .arw::after {
  content: ""; position: absolute; right: 0; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn--solid { --btn-bg: var(--ink); --btn-fg: var(--bg); --btn-bd: var(--ink); }
.btn--solid::after { background: var(--brown); }
.btn--solid:hover { color: #fff; border-color: var(--brown); }

.btn--brown { --btn-bg: var(--brown); --btn-fg: #fff; --btn-bd: var(--brown); }
.btn--brown::after { background: var(--ink); }
.btn--brown:hover { color: #fff; border-color: var(--ink); }

.btn--light { --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.btn--light::after { background: #fff; }
.btn--light:hover { color: var(--ink); border-color: #fff; }

.btn--sm { min-height: 46px; padding: 0 26px; font-size: 12.5px; }

.txtlink {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; letter-spacing: .12em;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: border-color .4s var(--ease), gap .4s var(--ease);
}
.txtlink:hover { border-color: var(--ink); gap: 18px; }

/* =========================================================
   Header
   ========================================================= */
.hdr {
  /* above .drawer (95) — .hdr is its own stacking context, so the burger's
     z-index cannot escape it and the close button would be unclickable. */
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease),
              border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  background: rgba(252, 250, 247, .92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom-color: var(--line-soft);
}
.hdr__in {
  max-width: 1420px; margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; gap: var(--s5);
  transition: padding .5s var(--ease);
}
.hdr.is-stuck .hdr__in { padding-block: 12px; }

.brand { display: flex; align-items: baseline; gap: 14px; flex: none; }
.brand img { width: clamp(96px, 12vw, 124px); transition: width .5s var(--ease); }
.hdr.is-stuck .brand img { width: clamp(88px, 10vw, 108px); }
.brand__sub {
  font-size: 10px; letter-spacing: .22em; color: var(--ink-3);
  display: none; white-space: nowrap;
}
@media (min-width: 1100px) { .brand__sub { display: block; } }

.nav { display: none; margin-left: auto; }
@media (min-width: 1000px) {
  .nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 32px); }
}
.nav a {
  position: relative;
  font-size: 13.5px; font-weight: 500; letter-spacing: .09em;
  padding-block: 6px;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav a[aria-current="page"] { color: var(--brown); }

.hdr__cta { display: none; margin-left: var(--s4); align-items: center; gap: 16px; }
@media (min-width: 1000px) { .hdr__cta { display: flex; } }
.hdr__tel { text-align: right; line-height: 1.35; }
.hdr__tel b {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  letter-spacing: .03em; display: block;
}
.hdr__tel span { font-size: 10px; letter-spacing: .16em; color: var(--ink-3); }

.burger {
  margin-left: auto; width: 46px; height: 46px;
  display: grid; place-content: center; gap: 7px;
  position: relative; z-index: 101;
}
@media (min-width: 1000px) { .burger { display: none; } }
.burger span {
  display: block; width: 24px; height: 1.5px; background: var(--ink);
  transition: transform .45s var(--ease-out), opacity .3s;
}
body.nav-open .burger span:nth-child(1) { transform: translateY(8.5px) rotate(42deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-8.5px) rotate(-42deg); }

.drawer {
  position: fixed; inset: 0; z-index: 95;
  background: var(--sand);
  padding: 104px var(--gutter) 48px;
  overflow-y: auto;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .7s var(--ease-out);
  visibility: hidden;
}
body.nav-open .drawer { clip-path: inset(0 0 0 0); visibility: visible; }
.drawer__nav li {
  border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
body.nav-open .drawer__nav li { opacity: 1; transform: none; transition-delay: calc(.12s + var(--i) * .055s); }
.drawer__nav a {
  display: flex; align-items: baseline; gap: 16px;
  padding: 19px 4px;
  font-size: 16px; font-weight: 500; letter-spacing: .09em;
}
.drawer__nav a em {
  font-family: var(--serif); font-style: italic; font-size: 12px;
  letter-spacing: .12em; color: var(--gold); flex: none; width: 82px;
}
.drawer__foot { margin-top: var(--s6); display: grid; gap: var(--s3); }
.drawer__tel {
  font-family: var(--serif); font-size: 30px; letter-spacing: .03em;
  display: block; line-height: 1.2;
}

/* =========================================================
   Hero (home)
   ========================================================= */
.hero { position: relative; padding-top: 116px; overflow: hidden; }
@media (min-width: 900px) { .hero { padding-top: 128px; } }

.hero__blob {
  position: absolute; z-index: 0; border-radius: 50%;
  filter: blur(.4px); pointer-events: none;
}
.hero__blob--a {
  width: 46vw; height: 46vw; max-width: 560px; max-height: 560px;
  background: var(--blush); top: -14vw; right: -12vw;
  animation: drift 22s ease-in-out infinite;
}
.hero__blob--b {
  width: 26vw; height: 26vw; max-width: 300px; max-height: 300px;
  background: var(--sage); bottom: 8vw; left: -10vw;
  animation: drift 27s ease-in-out infinite reverse;
}
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50%      { transform: translate3d(-16px, 22px, 0) scale(1.045); }
}

.hero__grid {
  position: relative; z-index: 1;
  display: grid; gap: var(--s6);
  padding-bottom: clamp(56px, 8vw, 104px);
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
  }
}
.hero__copy { max-width: 40em; }
.hero h1 {
  font-family: var(--sans-d);
  font-weight: 400;
  font-size: clamp(26px, 5.4vw, 45px);
  line-height: 1.78;
  letter-spacing: .045em;
  margin: var(--s4) 0 var(--s5);
}
.hero h1 .br { display: block; }
.hero h1 mark {
  background: linear-gradient(transparent 68%, var(--blush) 68%);
  color: inherit; padding-inline: 2px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s6); }

/* Illustrations ship on an opaque white background; the panel colour comes from
   the figure and `multiply` drops the white out. */
.hero__figure {
  position: relative;
  background: var(--blush-2);
  border-radius: 210px 210px 22px 22px;
}
.hero__figure img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 13% 9% 7%;
}
@media (min-width: 900px) { .hero__figure img { aspect-ratio: 4 / 5; } }
.hero__badge {
  position: absolute; left: -6px; bottom: -18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 12px; font-weight: 500; letter-spacing: .1em;
  line-height: 1.6; text-align: center;
}
@media (min-width: 900px) { .hero__badge { left: -34px; bottom: 34px; } }
.hero__badge b { color: var(--brown); }

.hero__side {
  display: none;
  position: absolute; right: calc(var(--gutter) * .35); top: 180px; z-index: 2;
}
@media (min-width: 1280px) { .hero__side { display: block; } }

/* ticker strip under hero */
.strip {
  background: var(--sand);
  padding-block: clamp(26px, 3.5vw, 40px);
  overflow: hidden;
}
.strip__row { display: flex; gap: clamp(28px, 4vw, 64px); flex-wrap: wrap; justify-content: center; }
.strip__row li {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 500; letter-spacing: .08em;
}
.strip__row li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex: none;
}

/* =========================================================
   Page hero (sub pages)
   ========================================================= */
.phero {
  position: relative;
  padding: clamp(128px, 16vw, 190px) 0 clamp(48px, 7vw, 78px);
  background: var(--sand);
  overflow: hidden;
}
.phero::after {
  content: ""; position: absolute; right: -8vw; top: -10vw;
  width: 34vw; height: 34vw; max-width: 420px; max-height: 420px;
  border-radius: 50%; background: var(--blush-2);
}
.phero__in { position: relative; z-index: 1; }
.phero h1 {
  font-family: var(--sans-d);
  font-weight: 500;
  font-size: clamp(24px, 4.2vw, 36px);
  line-height: 1.7; letter-spacing: .08em;
  margin-top: var(--s4);
}
.phero .lead { margin-top: var(--s4); }

.crumbs { display: flex; flex-wrap: wrap; gap: 10px; font-size: 11.5px; color: var(--ink-3); letter-spacing: .08em; }
.crumbs li::after { content: "／"; margin-left: 10px; color: var(--ink-4); }
.crumbs li:last-child::after { content: none; }
.crumbs a:hover { color: var(--ink); }

/* =========================================================
   Cards / grids
   ========================================================= */
.grid { display: grid; gap: var(--s5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 4px 4px 4px 30px;
  padding: var(--s5) var(--s4) var(--s5);
  display: flex; flex-direction: column; gap: var(--s3);
  transition: border-color .5s var(--ease), transform .6s var(--ease-out);
}
@media (min-width: 768px) { .card { padding: var(--s6) var(--s5); } }
.card:hover { border-color: var(--ink-4); transform: translateY(-4px); }
.card__label {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: var(--s3);
  border-bottom: 1px solid var(--line);
}
.card ul.tick { display: grid; gap: 8px; }
.card ul.tick li {
  position: relative; padding-left: 18px;
  font-size: 13.5px; line-height: 1.95; letter-spacing: .04em; color: var(--ink-2);
}
.card ul.tick li::before {
  content: ""; position: absolute; left: 0; top: .78em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage); outline: 1px solid var(--line);
}

/* alternating feature rows */
.altrow { display: grid; gap: var(--s5); align-items: center; }
@media (min-width: 900px) {
  .altrow { grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 84px); }
  .altrow + .altrow { margin-top: clamp(64px, 9vw, 118px); }
  .altrow--flip .altrow__fig { order: 2; }
}
.altrow + .altrow { margin-top: var(--s7); }
.altrow__fig {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 3px 140px 3px 3px;
}
.altrow--flip .altrow__fig { border-radius: 140px 3px 3px 3px; }
.altrow__fig img {
  width: 100%; aspect-ratio: 5 / 3.6;
  object-fit: contain;
  padding: clamp(14px, 3vw, 32px);
}

/* service list (text only — no icons) */
.svlist { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svlist li {
  border-bottom: 1px solid var(--line);
  padding: var(--s3) 2px;
  display: flex; align-items: baseline; gap: 16px;
  font-size: 14px; letter-spacing: .05em; line-height: 1.9;
}
.svlist li i {
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--ink-4); flex: none; width: 26px;
}
@media (min-width: 720px) {
  .svlist { grid-template-columns: 1fr 1fr; column-gap: var(--s6); }
}

/* plans */
.plan {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: var(--s5) var(--s4) var(--s6);
  position: relative;
  display: flex; flex-direction: column;
}
@media (min-width: 768px) { .plan { padding: var(--s6) var(--s5); } }
.plan--feature { border-color: var(--brown); background: #fffdfa; }
.plan__tag {
  position: absolute; top: -13px; right: 20px;
  background: var(--brown); color: #fff;
  font-size: 10.5px; letter-spacing: .14em;
  padding: 6px 16px; border-radius: 999px; line-height: 1;
}
.plan__name { font-size: 16px; font-weight: 500; letter-spacing: .09em; }
.plan__for { font-size: 12px; color: var(--ink-3); letter-spacing: .06em; margin-top: 4px; }
.plan__price {
  display: flex; align-items: baseline; gap: 6px;
  margin: var(--s4) 0 var(--s2);
  padding-top: var(--s4); border-top: 1px solid var(--line-soft);
}
.plan__price b {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 5vw, 44px); line-height: 1; letter-spacing: .01em;
}
.plan__price span { font-size: 13px; letter-spacing: .06em; }
.plan__ext { font-size: 12px; color: var(--ink-3); letter-spacing: .05em; }
.plan .tick { margin-top: var(--s4); display: grid; gap: 8px; }
.plan .tick li {
  position: relative; padding-left: 18px; font-size: 13.5px;
  line-height: 1.9; color: var(--ink-2);
}
.plan .tick li::before {
  content: ""; position: absolute; left: 0; top: .8em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blush);
  outline: 1px solid var(--line);
}
.plan--feature .tick li::before { background: var(--sage); }

/* flow */
.flow { counter-reset: step; display: grid; gap: 0; }
.flow li {
  counter-increment: step;
  display: grid; gap: var(--s2);
  grid-template-columns: 62px 1fr;
  padding: var(--s5) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.flow li:last-child { border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .flow li { grid-template-columns: 108px 1fr; gap: var(--s4); } }
.flow li::before {
  content: "0" counter(step);
  font-family: var(--serif); font-style: italic;
  font-size: 26px; line-height: 1.2; color: var(--gold);
  letter-spacing: .04em;
}
.flow__body h3 { margin-bottom: 6px; }

/* stats / info tables */
.dl { border-top: 1px solid var(--line); }
.dl > div {
  display: grid; grid-template-columns: 1fr;
  gap: 2px; padding: var(--s4) 2px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .dl > div { grid-template-columns: 176px 1fr; gap: var(--s4); padding-block: var(--s4); }
}
.dl dt { font-size: 13px; font-weight: 500; letter-spacing: .1em; color: var(--ink-2); }
.dl dd { font-size: 14.5px; letter-spacing: .04em; line-height: 1.95; }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; gap: 16px;
  padding: var(--s4) 40px var(--s4) 2px;
  position: relative;
  font-size: 15px; font-weight: 500; letter-spacing: .05em; line-height: 1.85;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--gold); flex: none; line-height: 1.5;
}
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%;
  width: 13px; height: 1px; background: var(--ink-3);
  box-shadow: 0 0 0 0 transparent;
  transition: transform .4s var(--ease);
}
.faq summary .plus {
  position: absolute; right: 6px; top: 50%;
  width: 13px; height: 1px; background: var(--ink-3);
  transform: rotate(90deg);
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.faq details[open] summary .plus { transform: rotate(0deg); opacity: 0; }
.faq__a {
  display: flex; gap: 16px;
  padding: 0 8px var(--s5) 2px;
  font-size: 14px; line-height: 2.1; color: var(--ink-2); letter-spacing: .04em;
}
.faq__a::before {
  content: "A"; font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--ink-4); flex: none; line-height: 1.6;
}

/* worry bubbles (text, no illustration) */
.worry { display: grid; gap: var(--s3); }
@media (min-width: 720px) { .worry { grid-template-columns: repeat(2, 1fr); gap: var(--s4); } }
.worry li {
  background: var(--bg);
  border: 1px solid var(--line-soft);
  border-radius: 28px 28px 28px 6px;
  padding: var(--s4) var(--s5);
  font-size: 14.5px; letter-spacing: .05em; line-height: 1.95;
  display: grid; grid-template-columns: 74px 1fr; gap: var(--s4);
  align-items: center;
}
.worry li img {
  width: 100%; height: auto;
  mix-blend-mode: multiply;      /* the leaflet line art ships on white */
}
@media (min-width: 560px) { .worry li { grid-template-columns: 96px 1fr; } }
@media (min-width: 900px) { .worry li { grid-template-columns: 112px 1fr; } }
@media (min-width: 720px) {
  .worry li:nth-child(even) { border-radius: 28px 28px 6px 28px; transform: translateY(18px); }
}

/* quote / message */
.quote {
  font-family: var(--sans-d);
  font-weight: 400;
  font-size: clamp(17px, 2.6vw, 24px);
  line-height: 2.05; letter-spacing: .07em;
}

/* letter block */
.letter {
  background: var(--sand-2);
  border-radius: 4px;
  padding: var(--s6) var(--s4);
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .letter { padding: var(--s7) var(--s6); } }
.letter__grid { display: grid; gap: var(--s5); }
@media (min-width: 900px) {
  .letter__grid { grid-template-columns: minmax(0, 1fr) minmax(0, .84fr); gap: var(--s7); align-items: center; }
}
.letter__grid figure {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 3px;
}
.letter__grid img {
  aspect-ratio: 5/3.4; object-fit: contain; width: 100%;
  padding: clamp(12px, 2.4vw, 26px);
}
.letter .svlist { grid-template-columns: 1fr; }

/* contact CTA band */
.cta {
  position: relative; overflow: hidden;
  background: var(--brown); color: #fff;
  padding-block: clamp(64px, 9vw, 112px);
}
.cta::before {
  content: ""; position: absolute; left: -6vw; bottom: -14vw;
  width: 34vw; height: 34vw; max-width: 380px; max-height: 380px;
  border-radius: 50%; background: rgba(255,255,255,.06);
}
.cta__in { position: relative; z-index: 1; display: grid; gap: var(--s5); }
@media (min-width: 900px) {
  .cta__in { grid-template-columns: 1fr auto; align-items: center; gap: var(--s7); }
}
.cta .eyebrow { color: rgba(255,255,255,.72); }
.cta .eyebrow-jp { color: rgba(255,255,255,.6); }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.82); }
.cta__tel { display: grid; gap: 4px; }
.cta__tel a {
  font-family: var(--serif); font-size: clamp(34px, 5.4vw, 48px);
  line-height: 1.1; letter-spacing: .02em; color: #fff;
}
.cta__tel span { font-size: 11.5px; letter-spacing: .14em; color: rgba(255,255,255,.7); }
.cta__actions { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s4); }

/* =========================================================
   Forms
   ========================================================= */
.form { display: grid; gap: var(--s5); }
.field { display: grid; gap: 10px; }
.field > label {
  font-size: 13px; font-weight: 500; letter-spacing: .1em;
  display: flex; align-items: center; gap: 10px;
}
.req {
  font-size: 10px; letter-spacing: .1em; line-height: 1;
  background: var(--blush); color: var(--brown);
  padding: 5px 8px; border-radius: 3px;
}
.opt {
  font-size: 10px; letter-spacing: .1em; line-height: 1;
  background: var(--line-soft); color: var(--ink-3);
  padding: 5px 8px; border-radius: 3px;
}
.field input, .field textarea, .field select {
  width: 100%;
  font: inherit; font-size: 15px; letter-spacing: .04em;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 15px 16px;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.field textarea { min-height: 190px; line-height: 1.95; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--brown); background: #fffdfb; outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.radios { display: grid; gap: 10px; }
@media (min-width: 640px) { .radios { grid-template-columns: repeat(2, 1fr); } }
.radios label {
  display: flex; align-items: center; gap: 11px;
  border: 1px solid var(--line); border-radius: 3px;
  padding: 13px 16px; font-size: 14px; letter-spacing: .04em;
  cursor: pointer; background: #fff;
  transition: border-color .3s var(--ease);
}
.radios label:hover { border-color: var(--ink-4); }
.radios input { accent-color: var(--brown); width: 16px; height: 16px; }
.agree {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; line-height: 1.9; letter-spacing: .04em;
}
.agree input { accent-color: var(--brown); width: 17px; height: 17px; margin-top: 6px; flex: none; }
.agree a { border-bottom: 1px solid var(--line); }
.form__submit { display: flex; justify-content: center; margin-top: var(--s4); }
.form__note { font-size: 12.5px; color: var(--ink-3); line-height: 1.95; }

/* =========================================================
   Footer
   ========================================================= */
.ftr { background: var(--ink); color: rgba(255,255,255,.78); padding-block: clamp(56px, 8vw, 92px) 0; }
.ftr__top { display: grid; gap: var(--s6); }
@media (min-width: 900px) {
  .ftr__top { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.35fr); gap: var(--s7); }
}
.ftr__brand img { width: 148px; }
.ftr__brand .tiny { color: rgba(255,255,255,.55); margin-top: var(--s4); }
.ftr__addr { display: grid; gap: var(--s4); margin-top: var(--s5); }
.ftr__addr h3 {
  font-size: 11px; letter-spacing: .2em; color: rgba(255,255,255,.5);
  font-weight: 500; margin-bottom: 5px;
}
.ftr__addr p { font-size: 13.5px; line-height: 1.9; letter-spacing: .04em; }
.ftr__nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s5) var(--s4); }
@media (min-width: 640px) { .ftr__nav { grid-template-columns: repeat(3, 1fr); } }
.ftr__nav h3 {
  font-size: 10.5px; letter-spacing: .2em; color: rgba(255,255,255,.45);
  font-weight: 500; margin-bottom: var(--s3);
}
.ftr__nav li + li { margin-top: 9px; }
.ftr__nav a { font-size: 13.5px; letter-spacing: .05em; transition: color .3s; }
.ftr__nav a:hover { color: #fff; }
.ftr__bar {
  margin-top: clamp(48px, 7vw, 80px);
  border-top: 1px solid rgba(255,255,255,.13);
  padding-block: var(--s4);
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5);
  align-items: center; justify-content: space-between;
}
.ftr__bar small, .ftr__bar button, .ftr__bar a {
  font-size: 11.5px; letter-spacing: .08em; color: rgba(255,255,255,.5);
}
.ftr__bar button:hover, .ftr__bar a:hover { color: #fff; }
.ftr__links { display: flex; flex-wrap: wrap; gap: var(--s4); }

/* floating mobile call bar */
.fbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg);
  border-top: 1px solid var(--line);
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
}
.fbar.is-on { transform: none; }
@media (min-width: 1000px) { .fbar { display: none; } }
.fbar a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 8px; font-size: 13px; font-weight: 500; letter-spacing: .08em;
}
.fbar a + a { background: var(--brown); color: #fff; }
body.has-fbar { padding-bottom: 54px; }
@media (min-width: 1000px) { body.has-fbar { padding-bottom: 0; } }

/* =========================================================
   Cookie consent
   ========================================================= */
.cookie {
  position: fixed; z-index: 120;
  left: var(--s3); right: var(--s3); bottom: var(--s3);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 18px 48px -22px rgba(43, 39, 36, .38);
  padding: var(--s4);
  display: grid; gap: var(--s3);
  transform: translateY(140%);
  opacity: 0;
  transition: transform .65s var(--ease-out), opacity .5s var(--ease);
}
@media (min-width: 900px) {
  .cookie {
    left: auto; right: 26px; bottom: 26px; max-width: 430px;
    padding: var(--s5);
  }
}
.cookie[hidden] { display: none; }
.cookie.is-on { transform: none; opacity: 1; }
.cookie h2 { font-size: 14px; font-weight: 500; letter-spacing: .09em; }
.cookie p { font-size: 12.5px; line-height: 1.95; color: var(--ink-2); letter-spacing: .03em; }
.cookie p a { border-bottom: 1px solid var(--line); }
.cookie p a:hover { border-color: var(--ink); }
.cookie__btns { display: grid; gap: 10px; margin-top: 4px; }
@media (min-width: 480px) { .cookie__btns { grid-template-columns: 1fr 1fr; } }

/* =========================================================
   Scroll reveal
   ========================================================= */
/* Everything below is gated on .js (set by an inline script in <head>), so a
   JS failure leaves the content plainly visible instead of permanently hidden. */
.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .9s var(--ease-out), transform 1.05s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js [data-reveal="fade"] { transform: none; }

/* Clip variant: clip the IMAGE, never the observed element. A clipped box has a
   zero-area intersection rect, so IntersectionObserver would never fire on it
   and the reveal (plus the lazy image load) would never happen. */
.js [data-reveal="clip"] { opacity: 1; transform: none; }
.js [data-reveal="clip"] > img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }
.js [data-reveal="clip"].is-in > img { clip-path: inset(0 0 0 0); }

.js .hero [data-anim] {
  opacity: 0; transform: translate3d(0, 22px, 0);
  animation: rise .95s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js [data-reveal="clip"] > img { clip-path: none; }
  .js .hero [data-anim] { opacity: 1; transform: none; }
}
