/* ════════════════════════════════════════════════════════════
   COOK WITH NATSUKO — JAPANESE HOME COOKING SCHOOL
   styles.css

   Table of contents:
   1.  CSS Custom Properties (design tokens)
   2.  Base & Reset
   3.  Typography helpers
   4.  Reusable components  (btn, link-arrow, section-title)
   5.  Site Header
   6.  Section: Hero
   7.  Section: Why Her
   8.  Section: Classes & Carousel
   9.  Section: About Natsuko
   10. Section: FAQ
   11. Section: Reservation
   12. Site Footer
   12. Utilities
═══════════════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════════════ */

:root {
  /* — Colour palette ——————————————————————————————————————— */
  --cream:          #FAF7F2;          /* page background          */
  --cream-mid:      #F3EDE3;          /* alternating sections     */
  --cream-deep:     #EDE6DA;          /* cards, subtle contrast   */
  --ink:            #1C1917;          /* primary text             */
  --ink-soft:       #2E2923;          /* headings, slightly warm  */
  --stone:          #6B6259;          /* secondary / muted text   */
  --wood:           #8B6849;          /* accent — warm brown      */
  --wood-dark:      #6D4F35;          /* hover state              */
  --border:         #E0D9CF;          /* dividers                 */
  --border-light:   #EDE7DD;          /* very soft dividers       */

  /* — Shojin Ryori card (intentionally muted) ————————————— */
  --shojin-bg:      #E8E2D8;
  --shojin-text:    #6B6259;

  /* — Hero overlay ————————————————————————————————————————— */
  --overlay-left:   rgba(14, 10, 7, 0.12);   /* where she sits  */
  --overlay-mid:    rgba(14, 10, 7, 0.42);
  --overlay-right:  rgba(14, 10, 7, 0.74);   /* where text sits */

  /* — Typography ——————————————————————————————————————————— */
  --font-heading:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:      'EB Garamond', Georgia, 'Times New Roman', serif;
  --font-ui:        'Jost', system-ui, -apple-system, sans-serif;

  /* — Spacing scale ———————————————————————————————————————— */
  --space-2xs:  0.25rem;
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   1.75rem;
  --space-lg:   3rem;
  --space-xl:   5rem;
  --space-2xl:  8rem;

  /* — Layout ——————————————————————————————————————————————— */
  --max-width:        1200px;
  --col-padding:      clamp(1.5rem, 5vw, 4rem);
  --card-width-mobile: min(320px, 78vw);
  --card-width:        360px;

  /* — Transitions ——————————————————————————————————————————*/
  --ease:         200ms ease;
  --ease-slow:    400ms ease;
}


/* ════════════════════════════════════════════════════════════
   2. BASE & RESET
═══════════════════════════════════════════════════════════ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  /* Offset for fixed header so anchors land correctly */
  scroll-padding-top: 80px;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;       /* 17px — slightly larger for editorial feel */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}


/* ════════════════════════════════════════════════════════════
   3. TYPOGRAPHY HELPERS
═══════════════════════════════════════════════════════════ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* Centred, width-constrained container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--col-padding);
}


/* ════════════════════════════════════════════════════════════
   4. REUSABLE COMPONENTS  (btn, link-arrow, section-title)
═══════════════════════════════════════════════════════════ */

/* — Section title ——————————————————————————————————————————*/
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* — Primary button (on light backgrounds) ——————————————————*/
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9em 2.6em;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

/* On dark/image backgrounds (hero) */
.btn--light {
  background: #fff;
  color: var(--ink);
  border: 1px solid #fff;
}
.btn--light:hover,
.btn--light:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
}

/* On cream/light backgrounds */
.btn--primary {
  background: var(--wood);
  color: #fff;
  border: 1px solid var(--wood);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--wood-dark);
  border-color: var(--wood-dark);
}

/* — Arrow link ——————————————————————————————————————————————*/
.link-arrow {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--wood);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  transition: gap var(--ease), color var(--ease);
}
.link-arrow:hover {
  color: var(--wood-dark);
  gap: 0.55em;
}


/* ════════════════════════════════════════════════════════════
   5. SITE HEADER
═══════════════════════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding-block: 1.25rem;
  padding-inline: var(--col-padding);
  /* Custom property lets child text adapt to scroll state */
  --header-color: rgba(255, 255, 255, 0.92);
  transition: background var(--ease-slow), backdrop-filter var(--ease-slow);
}

/* After scrolling past hero */
.site-header.is-scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  --header-color: var(--ink);
}

.site-header__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* — Logo ————————————————————————————————————————————————————*/
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  line-height: 1;
}

.site-logo__en {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--header-color);
  transition: color var(--ease-slow);
}

/* — Navigation ——————————————————————————————————————————————*/
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__link {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--header-color);
  text-decoration: none;
  transition: opacity var(--ease), color var(--ease-slow);
  opacity: 0.7;
}
.site-nav__link:hover {
  opacity: 1;
}

/* CTA link in nav gets a subtle border on desktop */
.site-nav__link--cta {
  padding: 0.45em 1.2em;
  border: 1px solid var(--header-color);
  opacity: 0.7;
}
.site-nav__link--cta:hover {
  opacity: 1;
}

/* On small screens, hide the non-CTA nav items and push logo */
@media (max-width: 600px) {
  .site-nav__link:not(.site-nav__link--cta) {
    display: none;
  }
  .site-nav {
    gap: 0;
  }
}

/* — Inline header CTA (mobile only, appears after hero scrolls away) — */
.header-book-cta {
  display: none; /* hidden on desktop — nav already has the link */
  position: absolute;
}

@media (max-width: 600px) {
  .header-book-cta {
    display: block;
    margin-left: auto;           /* push to the right of the logo */
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--header-color);
    text-decoration: none;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .header-book-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    position: relative;
  }
}


/* ════════════════════════════════════════════════════════════
   6. SECTION: HERO
═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 50vh;
  min-height: 420px;
  overflow: hidden;
}

/* — Background image ———————————————————————————————————————*/
.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Mobile: tighter crop to face and upper body */
  object-position: center 20%;
}

/* — Gradient overlay ————————————————————————————————————————
   Mobile: top to bottom — face is clear, text at bottom reads
   Desktop: left to right — she's on left, text on right half
——————————————————————————————————————————————————————————— */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Gradient anchored to the bottom only — readable text, bright photo above.
     Fixed stop positions so it never shifts as the screen resizes. */
  background: linear-gradient(
    to bottom,
    transparent              0%,
    transparent              45%,
    rgba(14, 10, 7, 0.28)   70%,
    rgba(14, 10, 7, 0.52)   100%
  );
}

/* — Content ————————————————————————————————————————————————*/
.hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;            /* Mobile: text at bottom */
  padding: 0 var(--col-padding) clamp(3rem, 8vw, 5rem);
}

.hero__text {
  max-width: 480px;
  font-weight: bold;
}

.hero__name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 500;
  font-weight: bold;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 1rem;
}

.hero__credentials {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: bold;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2rem;
}

/* — Desktop hero layout ————————————————————————————————————*/
@media (min-width: 768px) {
  .hero__image {
    /* Desktop: show her full figure — position her left-center */
    object-position: 30% top;
  }




}



/* ════════════════════════════════════════════════════════════
   7. SECTION: WHY HER
═══════════════════════════════════════════════════════════ */

.why {
  background: var(--cream-mid);
  padding-block: var(--space-xl);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* — Grid: 2 columns on mobile, 4 on desktop ————————————————*/
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: var(--space-lg);
}

.why__card {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Remove right border on every 2nd card (mobile 2-col) */
.why__card:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border on last two cards */
.why__card:nth-last-child(-n+2) {
  border-bottom: none;
}

/* — The big number / ideogram ——————————————————————————————*/
.why__figure {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--wood);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  /* Ensure all figures occupy the same vertical space so titles align across cards */
  min-height: clamp(2.5rem, 6vw, 3.5rem);
  display: flex;
  align-items: flex-start;
}

/* "+" in the "30+" figure — smaller and raised */
.why__figure-plus {
  font-size: 0.6em;
  vertical-align: super;
}

/* Kanji figure: slightly smaller so it stays proportional */
.why__figure--kanji {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--stone);
  min-height: clamp(1.4rem, 3.5vw, 2rem);
}

.why__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.why__desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--stone);
}

/* — Desktop: 4 columns in a row ————————————————————————————*/
@media (min-width: 900px) {
  .why__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .why__card {
    padding: 3rem 2.5rem;
    border-bottom: none;
  }

  /* Remove previously set mobile exceptions */
  .why__card:nth-child(2n) {
    border-right: 1px solid var(--border);
  }

  /* Last card has no right border */
  .why__card:last-child {
    border-right: none;
  }

  /* All bottom borders off */
  .why__card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}


/* ════════════════════════════════════════════════════════════
   8. SECTION: CLASSES & CAROUSEL
═══════════════════════════════════════════════════════════ */

.classes {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.classes .container {
  margin-bottom: var(--space-md);
}

/* Kicker → heading spacing to match tea section */
.classes .container .tea__kicker {
  margin-bottom: 0.75rem;
}

.classes .container .section-title {
  margin-bottom: 0;
}

/* ── Carousel outer wrapper ──────────────────────────────── */
.carousel-outer {
  position: relative;
}

/* ── Scrollable viewport ─────────────────────────────────── */
.carousel-viewport {
  overflow-x: auto;
  /* Native scroll-snap — handles mobile swipe beautifully */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar visually but keep it functional */
  scrollbar-width: none;
  /* Left padding aligns first card with page content */
  padding-block: 0.5rem var(--space-sm);
}
.carousel-viewport::-webkit-scrollbar {
  display: none;
}

/* ── Inner flex row ──────────────────────────────────────── */
.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  /* Left padding matches container; right padding so last card has breathing room */
  padding-left: var(--col-padding);
  padding-right: var(--col-padding);
}

/* ── Individual class card ───────────────────────────────── */
.class-card {
  flex-shrink: 0;
  width: var(--card-width-mobile);
  scroll-snap-align: start;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  /* No border-radius — keeps it crisp and Japanese */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease-slow);
}

.class-card:hover {
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.08);
}

/* Card image area */
.class-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
  position: relative;
}

.class-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

/* Fallback when image src fails (onerror adds .is-placeholder) */
.class-card__image.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.class-card__image.is-placeholder img {
  display: none;
}
.class-card__image.is-placeholder::after {
  content: '';
  /* Silent placeholder — no "coming soon" text */
}

/* Card body */
.class-card__body {
  padding: 1.5rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.class-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.class-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 0.9rem;
}

.class-card__price {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}
.class-card__price span {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--stone);
  margin-left: 0.15em;
}

.class-card__includes {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}
.class-card__includes li {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--stone);
  padding-left: 0.9em;
  position: relative;
}
.class-card__includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--wood);
  font-size: 0.75em;
  top: 0.15em;
}

/* ── Shojin Ryori card (vegan, intentionally minimal) ───── */
.class-card--shojin .class-card__image--shojin {
  background: var(--shojin-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shojin-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.shojin-label__ja {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', serif;
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  color: var(--shojin-text);
  opacity: 0.75;
}

.shojin-label__en {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--shojin-text);
  opacity: 0.55;
}

/* ── Carousel navigation buttons ────────────────────────── */
.carousel-btn {
  /* Hidden on mobile — swipe is the interaction */
  display: none;
}

/* ── Private / bespoke callout ───────────────────────────── */
.classes__private {
  font-family: var(--font-body);                               
  font-size: 0.85rem;                                        
  font-weight: 400;                                          
  font-style: normal;                                        
  letter-spacing: 0.02em;                                    
  color: var(--stone);                                       
  margin-top: var(--space-md);    
}

.classes__private-link {
  color: var(--stone);                                      
  transition: color var(--ease); 
}
.classes__private-link:hover {
  color: var(--wood-dark);
}

/* ── Desktop carousel adjustments ───────────────────────── */
@media (min-width: 768px) {
  .class-card {
    width: var(--card-width);
  }

  /* Offset viewport so the prev button (left:0.5rem, width:2.75rem) doesn't
     overlap the first card. scroll-padding-left keeps snap points aligned. */
  .carousel-viewport {
    padding-left: 3.5rem;
    scroll-padding-left: 3.5rem;
  }

  /* Show prev/next buttons on desktop */
  .carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    background: var(--cream);
    border: 1px solid var(--border);
    color: var(--ink);
    font-size: 1rem;
    transition: background var(--ease), border-color var(--ease);
    cursor: pointer;
  }

  .carousel-btn:hover {
    background: var(--cream-deep);
    border-color: var(--border);
  }

  .carousel-btn:disabled {
    opacity: 0.25;
    cursor: default;
  }

  .carousel-btn--prev {
    left: 0.5rem;
  }

  .carousel-btn--next {
    right: 0.5rem;
  }
}


/* ════════════════════════════════════════════════════════════
   9. SECTION: ABOUT NATSUKO
═══════════════════════════════════════════════════════════ */

.about {
  background: var(--cream);
  padding-block: var(--space-xl);
  border-top: 1px solid var(--border);
}

.about__layout {
}

.about__heading {
  margin-bottom: var(--space-md);
}

/* — Bio text ————————————————————————————————————————————————*/
.about__bio {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  margin-bottom: var(--space-md);
}

.about__bio p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
}

/* — Books column ————————————————————————————————————————————*/
.about__col-label {
  padding-top: var(--space-md);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}

/* — Book cover placeholders ————————————————————————————————
   Replace .book-cover divs with real <img> tags when ready.
   Standard book proportion: roughly 2:3
—————————————————————————————————————————————————————————— */
.about__books {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.book-cover {
  width: 80px;
  aspect-ratio: 2 / 3;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  /* Soft inner shadow gives the impression of a book */
  box-shadow: inset 2px 0 4px rgba(0,0,0,0.06);
  flex-shrink: 0;
  transition: transform var(--ease-slow);
}
.book-cover:hover {
  transform: translateY(-3px);
}

/* — Media logos strip ——————————————————————————————————————
   Replace .media-logo divs with real <img> tags when ready.
—————————————————————————————————————————————————————————— */
.about__media {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-light);
}

.about__media-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.media-logo {
  width: 90px;
  height: 28px;
  background: var(--border);
  opacity: 0.45;
  /* When you swap in real logos, remove background and opacity above */
}



/* ════════════════════════════════════════════════════════════
   10. SECTION: FAQ
═══════════════════════════════════════════════════════════ */

.faq {
  background: var(--cream-mid);
  padding-block: var(--space-xl);
  border-top: 1px solid var(--border);
}

.faq .section-title {
  margin-bottom: var(--space-lg);
}

.faq__list {
  border-top: 1px solid var(--border);
}

/* Each accordion item */
.faq__item {
  border-bottom: 1px solid var(--border);
}

/* Remove default browser triangle */
.faq__item summary {
  list-style: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-block: 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
  transition: color var(--ease);
}

.faq__question:hover {
  color: var(--wood);
}

/* +/− indicator */
.faq__question::after {
  content: '+';
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--stone);
  flex-shrink: 0;
  transition: color var(--ease);
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__item[open] .faq__question {
  color: var(--wood);
}

.faq__answer {
  padding-bottom: 1.5rem;
  max-width: 72ch;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--stone);
}

.faq__contact {                                              
  font-family: var(--font-body);                               
  font-size: 0.85rem;                                        
  font-weight: 400;                                          
  font-style: normal;                                        
  letter-spacing: 0.02em;                                    
  color: var(--stone);                                       
  margin-top: var(--space-md);                               
}

.faq__contact-link {                                         
  color: var(--stone);                                       
  text-decoration: underline;                                
  text-underline-offset: 2px;                                
  transition: color var(--ease);                             
}  

/* ════════════════════════════════════════════════════════════
   11. SECTION: RESERVATION
═══════════════════════════════════════════════════════════ */

.reservation {
  background: var(--ink-soft);
  padding-block: var(--space-md);
}

.reservation__inner {
  text-align: center;
}

.reservation__title {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-md);
}

.reservation__note {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.reservation .btn--primary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: rgba(255, 255, 255, 0.9);
}
.reservation .btn--primary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
}


/* ════════════════════════════════════════════════════════════
   11. SITE FOOTER
═══════════════════════════════════════════════════════════ */

.site-footer {
  background: var(--ink);
  padding-block: var(--space-lg);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}

.site-footer__brand .site-logo__en {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

.site-footer__location {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.5rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.site-footer__nav a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--ease);
}
.site-footer__nav a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__legal {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--ease);
}
.site-footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__copy {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 0;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .site-footer__copy {
    width: 100%;
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}


/* ════════════════════════════════════════════════════════════
   12. UTILITIES & ACCESSIBILITY
═══════════════════════════════════════════════════════════ */

/* Reduced motion: disable transitions and animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus styles — visible but understated */
:focus-visible {
  outline: 2px solid var(--wood);
  outline-offset: 3px;
}


/* ════════════════════════════════════════════════════════════
   BOOKING PAGE STYLES
   Used by booking.html and confirmation.html
═══════════════════════════════════════════════════════════ */

/* — index.html + about.html + privacy.html: header in normal flow ——*/
.page--index .site-header,
.page--about .site-header,
.page--privacy .site-header {
  position: sticky;
  top: 0;
}

/* — Shared: keep header opaque on pages with no hero ———————*/
.page--booking .site-header,
.page--confirmation .site-header {
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  --header-color: var(--ink);
}

/* — Confirmation: pad top to clear fixed header ————————————*/
.page--confirmation main {
  padding-top: 80px;
}
/* — Booking: intro image extends under the header like index.html hero — */
.page--booking main {
  padding-top: 0;
}

/* — Outline button (for Enquire and secondary actions) ——————*/
.btn--outline {
  border: 1px solid var(--border);
  color: var(--stone);
  background: transparent;
  transition: border-color var(--ease), color var(--ease);
}
.btn--outline:hover {
  border-color: var(--stone);
  color: var(--ink);
}


/* ── Booking intro ───────────────────────────────────────── */

.booking-intro {
  position: relative;
  height: 42vh;
  min-height: 320px;
  overflow: hidden;
  /* Session list follows immediately — no bottom margin */
}

.booking-intro__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Same bottom-anchored gradient approach as the hero —
   fixed stop positions so it doesn't shift on resize */
.booking-intro__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent            0%,
    transparent            30%,
    rgba(14, 10, 7, 0.35)  65%,
    rgba(14, 10, 7, 0.62)  100%
  );
}

.booking-intro__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.booking-intro__title {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: bold
}

.booking-intro__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 58ch;
}


/* ── Session list ────────────────────────────────────────── */

.booking-sessions {
  padding-block: var(--space-md) var(--space-xl);
}

.booking-sessions__note {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-align: center;
  margin-top: var(--space-md);
}

.booking-sessions__note-link {
  color: var(--wood);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--ease);
}

.booking-sessions__note-link:hover {
  color: var(--wood-dark);
}

.booking-sessions__cancel-note {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--stone);
  text-align: center;
  margin-top: var(--space-md);
}

/* ── Dietary pills ───────────────────────────────────────── */

.dietary-pill {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2em 0.6em;
  border-radius: 20px;
  line-height: 1.4;
}

.dietary-pill--vegan    { background: #e8f4ee; color: #3a7a52; }
.dietary-pill--meat     { background: #f2ece4; color: #7a5a3a; }
.dietary-pill--seafood  { background: #e4edf5; color: #3a5a7a; }

.session-dietary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}

.modal-dietary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.4rem;
}

#sessionList {
  display: flex;
  flex-direction: column;
}


/* ── Session list: loading & error states ────────────────── */

.sessions-loading {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  padding-block: var(--space-lg);
}

.sessions-error {
  padding: 1.75rem 2rem;
  border-left: 2px solid var(--wood);
  margin-block: var(--space-md);
}

.sessions-error__heading {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}

.sessions-error__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--stone);
}

.sessions-error__link {
  color: var(--wood);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.sessions-error__link:hover {
  color: var(--wood-dark);
}


/* ── Individual session row ──────────────────────────────── */

.session-row {
  display: grid;
  /* Mobile: single column, stacked */
  grid-template-columns: 1fr;
  gap: 0.75rem 0;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}


/* Muted state for fully booked rows */
.session-row--booked {
  opacity: 0.5;
}

/* Private row: subtle left accent */
.session-row--private {
  background: var(--cream-mid);
  padding-inline: 1.25rem;
  border-left: 2px solid var(--wood);
  margin-inline: -1.25rem;
}


/* — Date column ——————————————————————————————————————————— */

.session-date__weekday {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.15rem;
}

.session-date__monthday {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}


/* — Info column ——————————————————————————————————————————— */

.session-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.session-price {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--stone);
  letter-spacing: 0.03em;
}

.session-price span {
  font-size: 0.75rem;
  opacity: 0.75;
}


/* — Actions column ———————————————————————————————————————— */

.session-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.session-seats {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--stone);
}

.session-seats--urgent {
  color: var(--amber);
  font-weight: 500;
}

.session-seats--booked {
  color: var(--stone);
}

/* Book button — compact version of btn--primary */
.btn--book {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65em 1.75em;
  background: var(--wood);
  color: #fff;
  border: 1px solid var(--wood);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn--book:hover:not(:disabled) {
  background: var(--wood-dark);
  border-color: var(--wood-dark);
}
.btn--book:disabled {
  background: transparent;
  border-color: var(--border);
  color: var(--stone);
  cursor: not-allowed;
}

/* Enquire button shares .btn--outline sizing */
a.btn--outline.session-btn {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65em 1.75em;
}


/* — Mobile session row: seats left, button right ——————————*/
@media (max-width: 767px) {
  .session-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 8px;
  }

  .session-seats {
    text-align: left;
  }

  .session-btn {
    margin-left: auto;
    flex-shrink: 0;
  }
}


/* — Desktop session row: 3-column horizontal ——————————————*/
@media (min-width: 640px) {
  .session-row {
    grid-template-columns: 170px 1fr auto;
    gap: 0 2rem;
    align-items: center;
    padding: 1.75rem 0;
  }

  .session-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    min-width: 160px;
  }
}


/* ── Booking modal ───────────────────────────────────────── */

.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.booking-modal.is-open {
  display: flex;
}

/* Backdrop */
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Card */
.modal-card {
  position: relative;
  z-index: 1;
  background: var(--cream);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(28, 25, 23, 0.22);
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--stone);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--ease);
  line-height: 1;
}
.modal-close:hover {
  color: var(--ink);
}

/* Modal header */
.modal-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-meta {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 0.4rem;
}

.modal-class-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}

.modal-class-price {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--stone);
}


/* ── Modal form fields ───────────────────────────────────── */

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.5em;
}

.form-required {
  color: var(--wood);
}

.form-optional {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--stone);
  font-style: italic;
  text-transform: none;
}

.form-input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-mid);
  border: 1px solid var(--border);
  padding: 0.65em 0.85em;
  width: 100%;
  transition: border-color var(--ease);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;   /* consistent across browsers */
}
.form-input:focus {
  outline: none;
  border-color: var(--wood);
}
.form-input::placeholder {
  color: var(--stone);
  opacity: 0.6;
}

.form-textarea {
  resize: vertical;
  min-height: 72px;
}

.form-hint {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-top: 0.1rem;
}


/* ── Guest stepper ───────────────────────────────────────── */

.form-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--cream-mid);
  width: fit-content;
}

.stepper-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.stepper-btn:hover:not(:disabled) {
  background: var(--cream-deep);
}
.stepper-btn:disabled {
  color: var(--border);
  cursor: default;
}

.stepper-value {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  min-width: 2.5rem;
  text-align: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 2.5rem;
  display: block;
}


/* ── Modal status + submit ───────────────────────────────── */

.modal-status {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--wood);
  padding: 0.75rem 0;
}

.modal-submit {
  margin-top: 0.5rem;
  width: 100%;
  text-align: center;
}

.modal-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-policy-note {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--wood-dark);
  text-align: center;
  margin-top: 0;
}


/* ════════════════════════════════════════════════════════════
   CONFIRMATION PAGE STYLES
═══════════════════════════════════════════════════════════ */

.confirmation {
  padding-block: var(--space-xl) var(--space-2xl);
  background: var(--cream);
}

.confirmation__inner {
  max-width: 600px;
  margin-inline: auto;
}

/* Checkmark */
.confirmation__mark {
  font-size: 1.5rem;
  color: var(--wood);
  margin-bottom: 1.5rem;
  font-family: var(--font-ui);
  font-weight: 300;
  opacity: 0.8;
}

.confirmation__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.confirmation__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Booking summary table */
.confirmation__summary {
  background: var(--cream-mid);
  border: 1px solid var(--border);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.summary-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  align-items: baseline;
}

.summary-label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.summary-value {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

/* Location note */
.confirmation__note {
  padding: 1.5rem 2rem;
  border-left: 2px solid var(--wood);
  margin-bottom: 2.5rem;
}

.confirmation__note p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--stone);
}

.confirmation__contact-link{
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--stone);
  text-decoration: underline;                                
  text-underline-offset: 2px;                                
  transition: color var(--ease);
}

/* Actions */
.confirmation__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════════════════════
   BOOKING — AMBER TOKEN (gentle urgency colour)
   Added here rather than :root as it's booking-specific
═══════════════════════════════════════════════════════════ */

:root {
  --amber: #B07D2E;
}


/* ════════════════════════════════════════════════════════════
   ABOUT PAGE STYLES
   Used by about.html
═══════════════════════════════════════════════════════════ */


/* ── About hero ───────────────────────────────────────────── */

.about-hero {
  position: relative;
  height: clamp(480px, 72vh, 760px);
  overflow: hidden;
  background: var(--ink);       /* fallback while portrait.jpg loads */
}

.about-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;  /* keep face in frame as viewport shrinks */
}

/* Darker than index.html — portrait/editorial mood */
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 10, 7, 0.22)  0%,
    rgba(14, 10, 7, 0.10)  30%,
    rgba(14, 10, 7, 0.48)  68%,
    rgba(14, 10, 7, 0.78)  100%
  );
}

.about-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.about-hero__name {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 0.85rem;
}

.about-hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.80);
  letter-spacing: 0.02em;
}


/* ── Opening narrative ────────────────────────────────────── */

.about-intro {
  padding-block: var(--space-xl) var(--space-lg);
  background: var(--cream);
}

.about-intro__inner {
  max-width: 72ch;
  margin-inline: auto;    /* always centred within the container */
}

@media (min-width: 900px) {
  .about-intro__inner {
    max-width: 60vw;      /* scales with the viewport, never more than 60% wide */
  }
}

.about-intro__lead {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: var(--space-md);
}

.about-intro__body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--stone);
}

/* Space between consecutive body paragraphs */
.about-intro__body + .about-intro__body {
  margin-top: 1.25rem;
}


/* ── Journey Timeline ─────────────────────────────────────── */

.about-timeline {
  padding-block: var(--space-xl);
  background: var(--cream-mid);
  overflow: hidden;
}

.timeline {
  margin-top: var(--space-lg);
  padding-inline: var(--col-padding);
  position: relative;
}

/* ── Mobile: vertical stack ─────────────────────────────── */

.timeline__inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  position: relative;
}

/* Vertical guide line */
.timeline__inner::before {
  content: '';
  position: absolute;
  /* Centred on the dot (0.85rem wide, so half = 0.425rem) */
  left: 0.425rem;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 1px;
  background: var(--border);
  z-index: 0;
}

/* Desktop track: hidden on mobile */
.timeline__track {
  display: none;
}

/* Each moment: dot on left, content on right */
.timeline__moment {
  display: grid;
  grid-template-columns: 0.85rem 1fr;
  gap: 0 1.5rem;
  align-items: start;
  position: relative;
}

.timeline__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid var(--wood);
  background: var(--cream-mid);
  margin-top: 0.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline__content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.timeline__city {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

.timeline__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--stone);
  line-height: 1.6;
}

.timeline__year {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--wood);
  margin-top: 0.1rem;
}

/* ── Timeline optional photos ─────────────────────────── */

/*
  Mobile: sits below the text, still in the content column (right of the dot).
  Desktop: fills the empty half of the moment — opposite side from the text —
           so --below moments have the photo above the track line, and
           --above moments have the photo below it.
*/

.timeline__photo {
  margin: 0;
  grid-column: 2;    /* content column — same side as text on mobile */
  grid-row: 2;       /* below the text row */
  margin-top: 0.9rem;
}

.timeline__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;  /* default landscape; square also works naturally */
  object-fit: cover;
  /* Theme-coloured offset shadow — warm and editorial */
  border: 1px solid rgba(139, 104, 73, 0.22);
  box-shadow: 3px 3px 0 var(--wood);
}


/* Present moment — visually heavier */
.timeline__moment--present .timeline__city {
  font-size: 1.35rem;
  font-weight: 600;
}
.timeline__moment--present .timeline__dot {
  width: 1.05rem;
  height: 1.05rem;
  background: var(--wood);
  border-color: var(--wood);
}
.timeline__year--present {
  color: var(--ink);
  font-weight: 500;
}


/* ── Desktop: horizontal alternating timeline ──────────── */

@media (min-width: 900px) {
  .timeline {
    padding-inline: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .timeline::-webkit-scrollbar { display: none; }

  /* Hide the mobile vertical line */
  .timeline__inner::before {
    display: none;
  }

  /* Show horizontal track */
  .timeline__track {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
    transform: translateY(-50%);
    z-index: 0;
  }

  .timeline__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    position: relative;
    min-height: 400px;
    /* Wide enough to give each of 10 moments breathing room */
    min-width: 1060px;
    padding-inline: var(--col-padding);
  }

  /* Each moment: 3-row grid — top space, dot, bottom space */
  .timeline__moment {
    flex: 1;
    min-width: 100px;
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    text-align: center;
    padding-inline: 0.4rem;
    gap: 0;
  }

  /* ─ above: content in top row (row 1), dot in centre (row 2) */
  .timeline__moment--above .timeline__content {
    grid-row: 1;
    align-self: end;
    padding-bottom: 1.5rem;
  }
  .timeline__moment--above .timeline__dot {
    grid-row: 2;
  }

  /* ─ below: dot in centre (row 2), content in bottom row (row 3) */
  .timeline__moment--below .timeline__dot {
    grid-row: 2;
  }
  .timeline__moment--below .timeline__content {
    grid-row: 3;
    align-self: start;
    padding-top: 1.5rem;
  }

  /* ── Photos on desktop ───────────────────────────────── */

  /*
   * Moments with photos: switch from 1fr column (full flex width) to
   * fit-content(100%), so the single column is exactly as wide as the
   * widest text element inside .timeline__content — no wider.
   * justify-content: center re-centres that narrower column in the flex area.
   * The photo with width:100% then fills the same text-width column.
   */
  .timeline__moment--has-photo {
    grid-template-columns: fit-content(100%);
    justify-content: center;
  }

  /* Reset mobile placement */
  .timeline__photo {
    grid-column: 1;
    grid-row: unset;
    margin-top: 0;
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  /* Fixed-height band — fills the text-width column */
  .timeline__photo img {
    display: block;
    width: 100%;
    height: clamp(68px, 9vw, 108px);
    aspect-ratio: unset;
    object-fit: cover;
  }

  /* --above + photo: text above line (row 1), dot (row 2), photo below line (row 3) */
  .timeline__moment--above.timeline__moment--has-photo .timeline__photo {
    grid-row: 3;
    align-self: start;
    padding-top: 1.25rem;
  }

  /* --below + photo: photo above line (row 1), dot (row 2), text below line (row 3) */
  .timeline__moment--below.timeline__moment--has-photo .timeline__photo {
    grid-row: 1;
    align-self: end;
    padding-bottom: 1.25rem;
  }
}


/* ── Today / Media fact grid ──────────────────────────────── */

.about-today {
  padding-block: var(--space-xl);
  background: var(--cream);
}

.today__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: var(--space-lg);
}

@media (min-width: 640px) {
  .today__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 5rem;
  }
}

.today__fact {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.today__label {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 0.5rem;
}

.today__value {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.today__value em {
  font-style: italic;
}


/* ── Cookbooks section ────────────────────────────────────── */

.about-books {
  padding-block: var(--space-xl);
  background: var(--cream-mid);
}

.books__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--space-md) var(--space-xl);
  margin-bottom: var(--space-lg);
}

.books__count-block {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-shrink: 0;
}

.books__count {
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 10vw, 7.5rem);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1;
  letter-spacing: -0.01em;
}

.books__count-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1.5;
}

.books__intro {
  flex: 1;
  min-width: 240px;
}

.books__intro .section-title {
  margin-bottom: 0.75rem;
}

.books__intro p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
  max-width: 52ch;
}

.books__covers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Link wrapper — participates in the flex layout in place of the img */
.book-cover-link {
  display: block;
  width: calc(50% - 0.375rem);
  flex-shrink: 0;
  transition: opacity var(--ease);
}
.book-cover-link:hover {
  opacity: 0.82;
}

@media (min-width: 480px) {
  .book-cover-link { width: calc(33.333% - 0.5rem); }
}

@media (min-width: 720px) {
  .book-cover-link { width: calc(20% - 0.6rem); }
}

/* Book title and date below each cover */
.book-cover__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--ink-soft);
  margin-top: 0.55rem;
}

.book-cover__date {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.2rem;
}

/* Portrait book covers (3:4 ratio) */
.book-cover--about {
  width: 100%;         /* fills the link wrapper */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}


/* ── Connect section ──────────────────────────────────────── */

.about-connect {
  padding-block: var(--space-xl) var(--space-2xl);
  background: var(--cream);
}

.about-connect__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 720px) {
  .about-connect__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg) var(--space-2xl);
    align-items: start;
  }
}

.connect__list {
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.connect__link {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25em;
  display: inline-block;
  transition: color var(--ease), border-color var(--ease);
}

.connect__link:hover {
  color: var(--wood);
  border-color: var(--wood);
}

.connect__cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.connect__cta-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 40ch;
}


/* ════════════════════════════════════════════════════════════
   PRIVACY PAGE STYLES
   Used by privacy.html
═══════════════════════════════════════════════════════════ */

.privacy-page {
  padding-block: var(--space-xl) var(--space-2xl);
  background: var(--cream);
}

.privacy-content {
  max-width: 68ch;
}

.privacy-content__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.privacy-content__meta {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: var(--space-lg);
}

.privacy-content__lead {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--border);
}

/* Section headings */
.privacy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  margin-top: var(--space-lg);
  margin-bottom: 0.75rem;
}

.privacy-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: var(--space-md);
  margin-bottom: 0.4rem;
}

/* Body text */
.privacy-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 0.9rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.4em;
  margin-bottom: 0.9rem;
}

.privacy-content li {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 0.2rem;
}

/* ════════════════════════════════════════════════════════════
   Section: Tea Ceremony
═══════════════════════════════════════════════════════════ */

.tea {
  background: var(--cream-mid);
  padding: var(--space-xl) 0;
}

.tea__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .tea__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }
}

.tea__image-wrap {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}

@media (min-width: 900px) {
  .tea__image-wrap {
    aspect-ratio: auto;
    height: 520px;
  }
}

.tea__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tea__text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tea__kicker {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wood);
  margin: 0 0 0.75rem;
}

.tea__heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.15;
  margin: 0 0 1.5rem;
}

.tea__body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--stone);
  margin: 0 0 1rem;
}

.tea__body:last-child {
  margin-bottom: 0;
}

.tea__body em {
  font-style: italic;
  color: var(--ink-soft);
}

/* Links within the policy */
.privacy-content a {
  color: var(--wood);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--ease);
}
.privacy-content a:hover {
  color: var(--wood-dark);
}
