/* ============================================================
   WOWO · Wax On Wax Off — Elevated (Matcha direction)
   Cream base · matcha signature accent · sakura as a whisper
   Bold Japanese kanji moments · premium editorial restraint
   ============================================================ */

:root {
  --cream:      #F4F1EA;
  --cream-2:    #ECE7DD;
  --sand:       #E6DECF;
  --paper:      #FBF9F4;
  --matcha:     #5C6B4A;
  --matcha-deep:#46512F;
  --matcha-soft:#EAEDE2;
  --ink:        #2A2620;
  --ink-soft:   #5F584E;
  --sakura:     #E8A6BC;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, sans-serif;
  --jp:    'Noto Serif JP', serif;

  --maxw: 1240px;
  --gut: clamp(1.5rem, 5vw, 4rem);
  --space: clamp(3rem, 1.75rem + 5vw, 8rem);
  --radius: 4px;
  --dur: 600ms;
  --dur-fast: 200ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.0; letter-spacing: -0.01em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.28em; color: var(--matcha);
  display: inline-flex; align-items: center; gap: 0.85em;
}
.eyebrow::before { content: none; }
.eyebrow.center { justify-content: center; }

.kanji {
  font-family: var(--jp); font-weight: 700; line-height: 1;
  pointer-events: none; user-select: none; color: var(--matcha);
}

/* whisper of sakura */
.whisper {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.whisper .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--sakura); flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--sans); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em;
  padding: 1rem 1.9rem; border-radius: var(--radius); cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform var(--dur-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn--matcha { background: var(--matcha); color: var(--cream); }
.btn--matcha:hover { background: var(--matcha-deep); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }

/* ---------- focus-visible (keyboard accessibility) ---------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.book-chip:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 3px;
}
/* cream ring on dark sections so the focus ring stays visible */
.visiting a:focus-visible,
.visiting button:focus-visible,
.moment a:focus-visible,
footer a:focus-visible { outline-color: var(--cream); }

/* booking cluster — marketplace-dark: direct link + WhatsApp first */
.booking { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.3rem; }
.booking__alt { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; color: var(--ink-soft); }
.booking__alt .lbl { font-weight: 600; }
.book-chip {
  display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; font-size: 0.84rem;
  color: var(--ink); padding: 0.55em 0.95em; border: 1px solid color-mix(in oklab, var(--ink) 22%, transparent);
  border-radius: 100px; transition: color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.book-chip .badge { width: 22px; height: 22px; border-radius: 50%; background: var(--matcha); color: var(--cream);
  display: grid; place-items: center; font-size: 0.62rem; font-weight: 700; }
.book-chip:hover { border-color: var(--matcha); color: var(--matcha-deep); }

/* ---------- nav ---------- */
header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
header.scrolled { background: color-mix(in oklab, var(--cream) 88%, transparent); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 1px 0 color-mix(in oklab, var(--ink) 8%, transparent); }
.nav { display: flex; align-items: center; justify-content: space-between; padding-block: 1.15rem; }
.brand { font-family: var(--sans); font-weight: 700; letter-spacing: 0.22em; font-size: 0.92rem; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a.navlink { font-size: 0.85rem; letter-spacing: 0.06em; color: var(--ink); position: relative; }
.nav-links a.navlink::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--matcha); transition: width var(--dur) var(--ease); }
.nav-links a.navlink:hover::after { width: 100%; }

/* mobile menu toggle */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--ink); transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: color-mix(in oklab, var(--cream) 96%, transparent);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    padding: 0 var(--gut);
    box-shadow: 0 14px 26px -18px color-mix(in oklab, var(--ink) 45%, transparent);
    transition: max-height var(--dur) var(--ease), opacity var(--dur) var(--ease), padding var(--dur) var(--ease);
  }
  .nav-links.open { max-height: 80vh; opacity: 1; visibility: visible; padding: 0.5rem var(--gut) 1.4rem; }
  .nav-links a.navlink { display: block; width: 100%; padding: 0.95rem 0; font-size: 1rem; border-bottom: 1px solid color-mix(in oklab, var(--ink) 9%, transparent); }
  .nav-links a.navlink::after { display: none; }
  .nav-links .btn--matcha { margin-top: 1.1rem; width: 100%; justify-content: center; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; overflow: hidden; background: var(--cream); }
.hero__kanji { position: absolute; left: 34%; top: 50%; transform: translate(-50%, -50%); font-size: clamp(24rem, 44vh, 40rem); opacity: 0.07; z-index: 0; }
.hero__left { display: flex; flex-direction: column; justify-content: center; padding: 7rem var(--gut) 3.5rem; position: relative; z-index: 2; }
.hero h1 { font-size: clamp(3.2rem, 1.4rem + 6vw, 6rem); margin: 1.4rem 0 1.4rem; max-width: 12ch; }
.hero h1 em { font-style: italic; color: var(--matcha); }
.hero__lead { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 1rem + 0.9vw, 1.7rem); line-height: 1.4; color: var(--ink-soft); max-width: 34ch; margin-bottom: 2.4rem; }
.hero__whisper { margin-top: 2.2rem; }
.hero__right { position: relative; min-height: 60vh; }
.hero__right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__stamp { position: absolute; left: -28px; top: 12%; width: 64px; height: 64px; background: var(--matcha); color: var(--cream); font-family: var(--jp); font-size: 1.9rem; display: grid; place-items: center; border-radius: var(--radius); z-index: 3; box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__right { min-height: 56vh; order: -1; }
  .hero__left { padding-top: 6rem; }
  .hero__kanji { left: 70%; }
  .hero__stamp { left: 16px; top: auto; bottom: 16px; }
}

/* ---------- pricing cards ---------- */
.pricing { background: var(--cream-2); }
.pricing .wrap { padding-block: clamp(2.8rem, 4vw, 4.2rem); }
.pricing__eyebrow { display: block; margin-bottom: 1.5rem; }
.pricing__grp { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.4rem); }
.pi {
  position: relative; display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--paper); color: var(--ink);
  border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
  border-top: 2px solid var(--matcha); border-radius: var(--radius);
  padding: 1.55rem 1.4rem 1.45rem; min-height: 11rem;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.pi:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -26px color-mix(in oklab, var(--ink) 50%, transparent); }
.pi .k { position: absolute; top: 1rem; right: 1.1rem; font-family: var(--jp); font-size: 1.25rem; color: var(--matcha); opacity: 0.55; }
.pi .lbl { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; padding-right: 1.6rem; }
.pi .desc { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.45; max-width: 24ch; }
.pi .val { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 1.3rem + 1vw, 2.2rem); color: var(--ink); margin-top: auto; line-height: 1; }
.pi .val small { font-family: var(--sans); font-size: 0.58rem; font-weight: 700; color: var(--matcha); letter-spacing: 0.1em; margin-left: 0.4em; vertical-align: middle; }
.pricing__menu { display: inline-block; margin-top: 1.8rem; font-size: 0.85rem; font-weight: 600; color: var(--matcha-deep); border-bottom: 1px solid var(--matcha); padding-bottom: 2px; transition: color var(--dur-fast) var(--ease); }
.pricing__menu:hover { color: var(--matcha); }
@media (max-width: 820px) { .pricing__grp { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pricing__grp { grid-template-columns: 1fr; } .pi { min-height: 0; } }

/* ---------- visiting Cape Town — international travellers ---------- */
.visiting { background: var(--matcha-deep); color: var(--cream); position: relative; overflow: hidden; }
.visiting .wrap { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5.5rem); }
.visiting__kanji { position: absolute; right: 1%; top: 50%; transform: translateY(-50%); font-size: clamp(15rem, 30vw, 26rem); color: var(--cream); opacity: 0.06; pointer-events: none; line-height: 1; }
.visiting__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.eyebrow--cream { color: color-mix(in oklab, var(--cream) 72%, transparent); }
.visiting__lead h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 1.3rem + 2.4vw, 3.3rem); line-height: 1.04; color: var(--cream); margin: 0.4rem 0 1.1rem; }
.visiting__copy { max-width: 56ch; color: color-mix(in oklab, var(--cream) 85%, transparent); font-size: 1.05rem; line-height: 1.7; }
.visiting__copy strong { color: var(--cream); }
.visiting__cta { margin-top: 1.8rem; }
.btn--cream { background: var(--cream); color: var(--matcha-deep); }
.btn--cream:hover { background: #fff; transform: translateY(-2px); }
.visiting__points { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.8rem; }
.visiting__points li { display: flex; gap: 0.95rem; align-items: flex-start; }
.vp-ic { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in oklab, var(--cream) 13%, transparent); border: 1px solid color-mix(in oklab, var(--cream) 28%, transparent); font-weight: 700; font-size: 0.82rem; color: var(--cream); }
.visiting__points strong { display: block; font-size: 1rem; color: var(--cream); margin-bottom: 0.1rem; }
.visiting__points span { font-size: 0.84rem; color: color-mix(in oklab, var(--cream) 68%, transparent); line-height: 1.45; }
@media (max-width: 880px) {
  .visiting__inner { grid-template-columns: 1fr; }
  .visiting__points { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ---------- section base ---------- */
section.block { padding-block: var(--space); }
.block--cream { background: var(--paper); }
.block--sand { background: var(--sand); }
.head { max-width: 56ch; margin-bottom: clamp(1.75rem, 1rem + 3vw, 3.4rem); }
.head.center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(2rem, 1.4rem + 2.2vw, 3.3rem); margin: 0.9rem 0 0.9rem; }
.lead-p { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); color: var(--ink); line-height: 1.55; }

/* philosophy */
.philosophy { position: relative; text-align: center; overflow: hidden; }
.philosophy .kanji { position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%); font-size: clamp(13rem, 26vw, 22rem); opacity: 0.06; }
.philosophy__inner { position: relative; z-index: 1; max-width: 40ch; margin-inline: auto; }
.philosophy__inner p { font-family: var(--serif); font-style: italic; font-size: clamp(1.35rem, 1.1rem + 1vw, 2rem); line-height: 1.4; color: var(--ink); }

/* pillars */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.pillar { position: relative; padding-top: 2rem; border-top: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); }
.pillar .num { font-family: var(--jp); font-size: 1.6rem; color: var(--matcha); position: absolute; top: -1.3rem; right: 0; opacity: 0.5; }
.pillar h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
@media (max-width: 760px) { .pillars-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Father's Day gift vouchers ---------- */
.gift-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem); margin-top: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 880px; margin-inline: auto;
}
.gift-card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: clamp(2rem, 4vw, 3rem) 1.75rem;
  background: var(--paper); border: 1px solid color-mix(in oklab, var(--matcha) 38%, transparent);
  border-radius: var(--radius);
}
.gift-card--feature { background: var(--matcha-deep); border-color: var(--matcha-deep); color: var(--cream); }
.gift-card__eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--matcha);
}
.gift-card--feature .gift-card__eyebrow { color: var(--matcha-soft); }
.gift-card__value {
  font-family: var(--serif); font-weight: 600; line-height: 0.95;
  font-size: clamp(3.4rem, 2.2rem + 4vw, 5rem); color: var(--matcha-deep);
  margin: 0.6rem 0 0.2rem;
}
.gift-card--feature .gift-card__value { color: var(--cream); }
.gift-card__value span {
  display: inline-block; font-family: var(--sans); font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  vertical-align: super; margin-left: 0.4em; color: var(--ink-soft);
}
.gift-card--feature .gift-card__value span { color: var(--matcha-soft); }
.gift-card__pay { font-size: 1.05rem; }
.gift-card__pay strong { font-weight: 700; }
.gift-card__back {
  display: inline-block; margin-top: 0.7rem; padding: 0.3rem 0.85rem;
  background: var(--cream); color: var(--matcha-deep); border-radius: 999px;
  font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.gift-card--feature .gift-card__back { background: var(--cream); color: var(--matcha-deep); }
.gift-card__btn { margin-top: 1.6rem; }
.gift-card--feature .gift-card__btn { background: var(--cream); color: var(--matcha-deep); }
.gift-card--feature .gift-card__btn:hover { background: var(--cream-2); transform: translateY(-2px); }
.gift-note {
  text-align: center; max-width: 60ch; margin: clamp(2rem, 3vw, 2.75rem) auto 0;
  font-size: 0.9rem; color: var(--ink-soft);
}
@media (max-width: 620px) { .gift-grid { grid-template-columns: 1fr; max-width: 380px; } }

/* ── Smooth Season + Rewards (blend with the automated storefront) ── */
.ss-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem); margin-top: clamp(2.5rem, 4vw, 3.5rem);
  max-width: 980px; margin-inline: auto; align-items: stretch;
}
.ss-card {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(2rem, 3.5vw, 2.8rem);
  background: var(--paper); border: 1px solid color-mix(in oklab, var(--matcha) 38%, transparent);
  border-radius: var(--radius);
}
.ss-card--feature { background: var(--matcha-deep); border-color: var(--matcha-deep); color: var(--cream); }
.ss-card__eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.22em; color: var(--matcha);
}
.ss-card--feature .ss-card__eyebrow { color: var(--matcha-soft); }
.ss-card__title {
  font-family: var(--serif); font-weight: 600; line-height: 1.05;
  font-size: clamp(1.7rem, 1.2rem + 1.6vw, 2.3rem); margin: 0.6rem 0 0.4rem;
}
.ss-card__lead { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.5; }
.ss-card--feature .ss-card__lead { color: var(--matcha-soft); }
.ss-card__price {
  font-family: var(--serif); font-weight: 600; line-height: 1;
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3rem); color: var(--matcha-deep); margin: 1rem 0 0;
}
.ss-card--feature .ss-card__price { color: var(--cream); }
.ss-card__price small { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.02em; }
.ss-card--feature .ss-card__price small { color: var(--matcha-soft); }
.ss-card__perks { list-style: none; margin: 1.3rem 0 0; padding: 0; display: grid; gap: 0.6rem; font-size: 0.95rem; }
.ss-card__perks li { display: flex; gap: 0.6rem; align-items: flex-start; }
.ss-card__perks li::before { content: "\273F"; color: var(--matcha); line-height: 1.4; }
.ss-card--feature .ss-card__perks li::before { color: var(--matcha-soft); }
.ss-card__cta { margin-top: auto; padding-top: 1.6rem; }
.ss-card__cta .btn { width: 100%; justify-content: center; }
.ss-card--feature .ss-card__cta .btn--matcha { background: var(--cream); color: var(--matcha-deep); }
.ss-card--feature .ss-card__cta .btn--matcha:hover { background: var(--cream-2); }
@media (max-width: 620px) { .ss-grid { grid-template-columns: 1fr; max-width: 420px; } }
.gift { background: var(--matcha-soft); }

/* ---------- Father's Day hero band (seasonal; remove after 21 June) ---------- */
.hero { grid-template-rows: 1fr auto; }   /* content row + full-width band row */
.hero__fd {
  grid-column: 1 / -1; z-index: 4;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  flex-wrap: wrap; padding: 1.15rem var(--gut);
  background: var(--matcha-deep); color: var(--cream); text-decoration: none;
  transition: background var(--dur-fast) var(--ease);
}
.hero__fd:hover { background: var(--matcha); }
.hero__fd-text { font-family: var(--sans); font-weight: 500; font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.08rem); }
.hero__fd-tag {
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.72rem; color: var(--matcha-soft); margin-right: 0.85em;
}
.hero__fd-cta {
  display: inline-flex; align-items: center; gap: 0.5em; white-space: nowrap;
  font-weight: 700; font-size: 0.92rem; border-bottom: 2px solid currentColor; padding-bottom: 2px;
}
.hero__fd .arrow { transition: transform var(--dur-fast) var(--ease); }
.hero__fd:hover .arrow { transform: translateX(4px); }

/* anchor links clear the fixed header */
html { scroll-padding-top: 84px; }

/* mobile: band sits directly under the hero image, above the headline.
   Use display:block (not flex) so the text wraps cleanly and centres. */
@media (max-width: 880px) {
  .hero { grid-template-rows: none; grid-template-columns: minmax(0, 1fr); }
  .hero__fd {
    grid-column: auto; order: -1;
    display: block; text-align: center; max-width: 100%;
  }
  .hero__fd-text { display: block; overflow-wrap: anywhere; }
  .hero__fd-tag { display: block; margin: 0 0 0.3rem; }
  .hero__fd-tag::after { content: none; }
  .hero__fd-cta { display: inline-flex; margin-top: 0.75rem; }
}

/* difference + split layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: 0 30px 60px -34px color-mix(in oklab, var(--ink) 40%, transparent); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .k { position: absolute; right: 1.2rem; bottom: 0.6rem; font-family: var(--jp); font-size: 3rem; color: var(--cream); opacity: 0.9; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }

.detail-list { margin-top: 0.5rem; }
.detail-list .di { display: flex; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid color-mix(in oklab, var(--ink) 9%, transparent); }
.detail-list .di .mk { color: var(--matcha); font-weight: 700; }
.detail-list .di p { margin: 0; color: var(--ink); }

.tick-list { list-style: none; margin-top: 1rem; }
.tick-list li { position: relative; padding: 0.7rem 0 0.7rem 2rem; border-bottom: 1px solid color-mix(in oklab, var(--ink) 9%, transparent); color: var(--ink); }
.tick-list li::before { content: "桜"; font-family: var(--jp); position: absolute; left: 0; top: 0.7rem; color: var(--sakura); font-size: 0.9rem; }

/* ---------- bold kanji moment ---------- */
.moment { background: var(--matcha); color: var(--cream); position: relative; overflow: hidden; text-align: center; }
.moment .kanji { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-size: clamp(20rem, 40vw, 36rem); color: var(--cream); opacity: 0.10; }
.moment .label { position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.4em; text-transform: uppercase; color: color-mix(in oklab, var(--cream) 70%, transparent); }
.moment__inner { position: relative; z-index: 1; }
.moment__inner p { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.3rem); line-height: 1.5; color: var(--cream); }
.moment__inner p.final { margin-top: 1.4rem; font-style: normal; font-weight: 600; }

/* ---------- founders ---------- */
.founders__media { aspect-ratio: auto; border-radius: var(--radius); position: relative; background: transparent; box-shadow: 0 30px 60px -34px color-mix(in oklab, var(--ink) 40%, transparent); }
.founders__media img { width: 100%; height: auto; display: block; object-fit: contain; border-radius: var(--radius); }
.founders__placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; text-align: center; padding: 2rem; color: var(--matcha-deep); }
.founders__placeholder .k { font-family: var(--jp); font-size: 4rem; opacity: 0.5; }
.founders__placeholder .note { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; max-width: 22ch; }
.founders__story p { margin-bottom: 1.1rem; color: var(--ink); }
.founders__story p.lead-p { font-style: italic; font-family: var(--serif); }
.principles { display: flex; flex-direction: column; gap: 0.35rem; margin: 1.4rem 0; }
.principles p { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--matcha-deep); margin: 0; }

/* ---------- reviews ---------- */
.reviews { background: var(--paper); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1rem; }
.review { background: var(--cream); border: 1px solid color-mix(in oklab, var(--ink) 8%, transparent); border-radius: var(--radius); padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.review .stars { color: var(--matcha); letter-spacing: 0.15em; font-size: 0.95rem; }
.review .quote { font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.4; color: var(--ink); }
.review .who { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); }
.review.is-placeholder { border-style: dashed; border-color: color-mix(in oklab, var(--matcha) 40%, transparent); }
@media (max-width: 820px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ---------- experience steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step { position: relative; padding-top: 2.2rem; border-top: 2px solid var(--matcha); }
.step .n { font-family: var(--jp); position: absolute; top: -1.4rem; left: 0; font-size: 1.4rem; color: var(--matcha); background: var(--cream); padding-right: 0.6rem; }
.step h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; }
@media (max-width: 820px) { .steps { grid-template-columns: 1fr 1fr; gap: 2rem 1.4rem; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ---------- location ---------- */
.location { background: var(--sand); }
.location__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.location__map { border-radius: var(--radius); overflow: hidden; min-height: 360px; box-shadow: 0 24px 50px -30px color-mix(in oklab, var(--ink) 40%, transparent); }
.location__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.location__info h2 { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.8rem); }
.location .divider { width: 48px; height: 2px; background: var(--matcha); margin: 1rem 0 1.4rem; }
.location__row { margin-bottom: 1.1rem; color: var(--ink); }
.location__row strong { color: var(--matcha-deep); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; display: block; margin-bottom: 0.2rem; }
.location__row a { border-bottom: 1px solid color-mix(in oklab, var(--matcha) 40%, transparent); }
.location__row a:hover { color: var(--matcha-deep); }
@media (max-width: 820px) { .location__grid { grid-template-columns: 1fr; } }

/* ---------- faq ---------- */
.faq { background: var(--cream); position: relative; overflow: hidden; }
.faq__kanji { position: absolute; left: 50%; top: 44%; transform: translate(-50%,-50%); font-size: clamp(15rem, 30vw, 24rem); opacity: 0.05; }
.faq__inner { position: relative; z-index: 1; }
.faq__list { max-width: 760px; margin: 0 auto; border-top: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }
.faq-item { border-bottom: 1px solid color-mix(in oklab, var(--ink) 12%, transparent); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  display: flex; align-items: center; gap: 1rem;
  padding: 1.45rem 2.6rem 1.45rem 0;
  font-family: var(--serif); font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.55rem);
  font-weight: 600; color: var(--ink); line-height: 1.25;
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 0.2rem; top: 50%; flex: none;
  width: 16px; height: 16px; margin-top: -8px;
  background:
    linear-gradient(var(--matcha),var(--matcha)) center/16px 2px no-repeat,
    linear-gradient(var(--matcha),var(--matcha)) center/2px 16px no-repeat;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-item summary:hover { color: var(--matcha-deep); }
.faq-a { padding: 0 2.6rem 1.6rem 0; }
.faq-a p { margin: 0; color: var(--ink-soft); max-width: 64ch; }
.faq-item[open] .faq-a { animation: faqIn var(--dur) var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq__cta { text-align: center; margin-top: 2.6rem; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); }
.faq__cta a { color: var(--matcha-deep); font-weight: 600; border-bottom: 1px solid var(--matcha); }
.faq__cta a:hover { color: var(--matcha); }
@media (prefers-reduced-motion: reduce) { .faq-item[open] .faq-a { animation: none; } }

/* ---------- footer ---------- */
footer { background: var(--ink); color: color-mix(in oklab, var(--cream) 78%, transparent); padding-block: clamp(2.75rem, 1.75rem + 3.5vw, 5rem) 2.2rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.8rem; }
.foot .brand { color: var(--cream); letter-spacing: 0.22em; margin-bottom: 1rem; }
.foot p { font-size: 0.92rem; }
.foot-col h4 { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--matcha); margin-bottom: 1rem; font-weight: 700; }
.foot-col a { font-size: 0.92rem; color: color-mix(in oklab, var(--cream) 76%, transparent); display: block; margin-bottom: 0.45rem; }
.foot-col a:hover { color: var(--sakura); }
.foot-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; border-top: 1px solid color-mix(in oklab, var(--cream) 14%, transparent); font-size: 0.78rem; color: color-mix(in oklab, var(--cream) 55%, transparent); }
.foot-bottom .kanji-min { font-family: var(--jp); }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 800ms var(--ease), transform 800ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .btn, .nav-links a.navlink::after { transition: none; }
}

/* ============================================================
   2026-06-04 — ROBUST + iOS PASS
   Keep the Japanese-inspired identity (matcha + small kanji accents).
   Drop only the busy GIANT kanji watermarks (not iOS). Make it
   in-your-face: full-bleed cinematic hero, bold type, real depth,
   rounded iOS components, matcha as an accent not a big green field.
   ============================================================ */

/* iOS feel: rounder, deeper, bolder ------------------------------ */
:root { --radius: 18px; }
.btn { border-radius: 999px; padding: 1.05rem 2.05rem; font-size: 0.9rem; }
.book-chip { border-radius: 999px; }
header.scrolled { background: color-mix(in oklab, var(--cream) 70%, transparent); -webkit-backdrop-filter: blur(22px) saturate(1.5); backdrop-filter: blur(22px) saturate(1.5); }
h1, h2 { letter-spacing: -0.02em; }

/* keep the SMALL kanji accents, hide only the GIANT watermarks */
.kanji { display: none !important; }

/* iOS cards: radius + layered depth ------------------------------ */
.pi, .review, .gift-card, .split__media, .location__map, .location__map iframe { border-radius: var(--radius); }
.pi { box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 20px 44px -28px rgba(0,0,0,.5); }
.pi:hover { box-shadow: 0 1px 2px rgba(0,0,0,.05), 0 30px 64px -30px rgba(0,0,0,.55); }
.review { box-shadow: 0 1px 2px rgba(0,0,0,.04), 0 16px 36px -30px rgba(0,0,0,.5); transition: transform var(--dur-fast, 200ms) var(--ease), box-shadow var(--dur-fast, 200ms) var(--ease); }
.review:hover { transform: translateY(-4px); box-shadow: 0 2px 5px rgba(42,38,32,.07), 0 34px 66px -22px rgba(42,38,32,.48); }
.split__media { box-shadow: 0 44px 90px -42px rgba(0,0,0,.6); }

/* matcha = accent, not big green fields -------------------------- */
.visiting { background: var(--ink); }
.visiting__cta.btn--cream { background: var(--matcha); color: var(--cream); }
.visiting__cta.btn--cream:hover { background: var(--matcha-deep); }
.moment { background: var(--paper); }
.moment__inner p { color: var(--ink); }
.moment__inner p.final { color: var(--matcha-deep); }
.gift { background: var(--cream-2); }
.gift-card--feature { background: var(--ink); border-color: var(--ink); }

/* ---- ROBUST hero: face-safe gradients, slim charcoal ribbon, clean white nav ---- */
:root { --ribbon-h: 44px; }
html { scroll-padding-top: 120px; }

/* slim charcoal Father's Day ribbon pinned at the very top (kills the big green band) */
.hero__fd { position: fixed; inset: 0 0 auto 0; z-index: 200; background: var(--ink); color: var(--cream);
  display: flex; align-items: center; justify-content: center; gap: 0.9rem; flex-wrap: wrap;
  padding: 0.5rem var(--gut); min-height: var(--ribbon-h); font-size: 0.8rem; text-align: center; }
.hero__fd-tag { color: var(--matcha-soft); margin-right: 0.55rem; }
.hero__fd-tag::after { content: "·"; margin-left: 0.55rem; color: var(--matcha-soft); opacity: 0.7; }
.hero__fd-cta { font-size: 0.82rem; }

/* header sits just below the ribbon; transparent over the hero with WHITE text (no collision) */
header { top: var(--ribbon-h); }
.brand { color: #fff; }
.nav-links a.navlink { color: #fff; }
.nav-toggle span { background: #fff; }
header.scrolled .brand,
header.scrolled .nav-links a.navlink { color: var(--ink); }
header.scrolled .nav-toggle span { background: var(--ink); }

/* hero shell */
.hero { position: relative; min-height: 100svh; display: grid; align-content: end; background: var(--ink); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 32%; filter: saturate(1.14) contrast(1.07); }
/* dark at TOP (nav legible) + dark at BOTTOM (headline legible) + CLEAR middle (her face) */
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(16,12,9,.52) 0%, rgba(16,12,9,0) 22%, rgba(16,12,9,0) 44%, rgba(16,12,9,.86) 100%); }
.hero__inner { position: relative; z-index: 3;
  padding: calc(var(--ribbon-h) + 6rem) clamp(1.5rem,5vw,4rem) clamp(2rem,5vw,4.5rem); }
.hero__inner > * { max-width: 46ch; }
.hero__inner .eyebrow { color: #fff; opacity: .92; }
.hero__inner h1 { color: #fff; font-size: clamp(2.7rem, 1.6rem + 4.4vw, 5.4rem); line-height: .96; max-width: 16ch; margin: 0.8rem 0 0.9rem; }
.hero__inner h1 em { color: var(--matcha-soft); }
.hero__lead { color: rgba(255,255,255,.92); max-width: 46ch; font-size: clamp(1.05rem,1rem+.4vw,1.28rem); }
.hero .booking__alt { color: rgba(255,255,255,.85); }
.hero .book-chip { color: #fff; border-color: rgba(255,255,255,.55); }
.hero .book-chip:hover { border-color: #fff; color: #fff; }
.hero__rating { margin-top: 1.1rem; color: #fff; font-weight: 600; font-size: .85rem; opacity: .92; }
.hero__whisper { color: rgba(255,255,255,.8); margin-top: 1.1rem; }
/* subtle outline stamp, not a green box */
.hero__stamp { position: absolute; left: auto; right: clamp(1.2rem,4vw,2.6rem); top: calc(var(--ribbon-h) + 78px); z-index: 3;
  background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); box-shadow: none;
  width: 50px; height: 50px; font-size: 1.5rem; opacity: .9; }

/* MOBILE: stack cleanly — nav, ribbon, image, then copy on a dark panel BELOW it
   so the headline never covers her face. */
@media (max-width: 880px) {
  header { position: relative; top: auto; background: var(--cream); box-shadow: 0 1px 0 rgba(0,0,0,.06); }
  .brand { color: var(--ink); }
  .nav-toggle span { background: var(--ink); }
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero__fd { position: static; order: -1; }
  .hero__bg { position: relative; height: 48svh; order: 0; }
  .hero__bg::after { background: linear-gradient(180deg, rgba(16,12,9,.42) 0%, rgba(16,12,9,0) 42%); }
  .hero__inner { position: relative; order: 1; background: var(--ink); padding: 2rem 1.5rem 2.4rem; }
  .hero__inner > * { max-width: none; }
  .hero__stamp { top: calc(var(--ribbon-h) + 54px); }
}

/* ============================================================
   2026-06-04 — HERO LEGIBILITY + RIBBON STICKY-HOVER FIX + SPECIALS REFRESH
   ============================================================ */
/* desktop: darken the LEFT column so the headline reads over a bright image */
@media (min-width: 881px) {
  .hero__bg::after { background:
    linear-gradient(90deg, rgba(16,12,9,.84) 0%, rgba(16,12,9,.36) 34%, rgba(16,12,9,0) 58%),
    linear-gradient(180deg, rgba(16,12,9,.5) 0%, rgba(16,12,9,0) 24%, rgba(16,12,9,0) 52%, rgba(16,12,9,.8) 100%); }
}
/* the ribbon must NEVER turn green on tap/hover (sticky mobile hover bug) */
.hero__fd, .hero__fd:hover, .hero__fd:focus { background: var(--ink); }

/* ── Mobile/tablet hamburger menu: solid panel + dark links ──
   The open dropdown was 96%-opaque so the hero photo bled through, and the
   nav links inherited the white-over-hero colour, leaving ghosted text on a
   light panel. Force an opaque cream panel with ink links across the whole
   hamburger range (placed last so it wins over the white-text rule above). */
@media (max-width: 940px) {
  .nav-links {
    background: var(--cream);
    border-top: 1px solid color-mix(in oklab, var(--ink) 8%, transparent);
    /* sit ABOVE the gift ribbon + hero so the open menu is a clean overlay
       (otherwise the ribbon paints over the top item and squashes it). */
    z-index: 250;
  }
  .nav-links.open {
    padding-top: 1.1rem;
    box-shadow: 0 18px 30px -16px color-mix(in oklab, var(--ink) 50%, transparent);
  }
  /* first link needs no top border butting against the panel edge */
  .nav-links.open a.navlink:first-of-type { padding-top: 0.3rem; }
  header .nav-links a.navlink,
  header.scrolled .nav-links a.navlink { color: var(--ink); }
}

/* specials / menu cards: modern + robust (drop the dated green top-line) */
.pricing { background: var(--paper); }
.pi { border-top: none; padding: 1.9rem 1.6rem 1.7rem; min-height: 13rem;
  background: linear-gradient(180deg, #ffffff, var(--cream)); }
.pi .lbl { font-weight: 700; }
.pi .k { font-size: 2.9rem; opacity: 0.13; top: auto; bottom: 0.7rem; right: 1.05rem; }
.pi .val { font-size: clamp(2rem, 1.5rem + 1.3vw, 2.7rem); font-weight: 700; }
.pi .val small { color: var(--matcha); }

/* ---- photo specials cards: LIGHT iOS — near-white, hairline border, soft drop shadow ---- */
.pricing { background: var(--cream); }
.pi--photo { position: relative; overflow: hidden; color: var(--ink);
  min-height: 0; gap: 0; padding: 0.5rem 0.5rem 1.15rem;
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(42,38,32,.18);
  box-shadow: 0 2px 5px rgba(42,38,32,.07), 0 24px 50px -22px rgba(42,38,32,.42); }
.pi__img { position: static; display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 13px; }
.pi--photo::before { display: none; }
.pi--photo .k { position: absolute; top: 0.95rem; right: 1.1rem; bottom: auto; z-index: 2;
  color: #E8A6BC; opacity: .95; font-size: 1.6rem; text-shadow: 0 1px 8px rgba(0,0,0,.25); }
.pi--photo .lbl { color: var(--ink); margin-top: 1rem; padding-inline: 0.5rem; }
.pi--photo .desc { color: var(--ink-soft); padding-inline: 0.5rem; max-width: none; }
.pi--photo .val { color: var(--ink); margin-top: 0.65rem; padding-inline: 0.5rem; }
.pi--photo .val small { color: var(--matcha); }
.pi--photo:hover { transform: translateY(-4px); box-shadow: 0 2px 5px rgba(42,38,32,.07), 0 34px 66px -22px rgba(42,38,32,.48); }
