/* ===================================================================
   THE KOREAN IN ME — Stylesheet v2
   Single source of truth for tokens, layout, and components.
   Editorial / atelier aesthetic. Cormorant + Inter + Noto Serif KR.
   =================================================================== */


/* ====== 1. CSS CUSTOM PROPERTIES ====== */
:root {
  /* ─── Foundation ─── */
  --paper:        #FFFFFF;
  --paper-warm:   #FCFAF6;
  --paper-soft:   #F4F1EA;

  /* ─── Primary accent: coral (the brand color) ─── */
  --coral:        #D7506A;
  --coral-deep:   #B83E55;
  --coral-pale:   #FBEAEE;

  /* ─── Secondary accent: indigo (trust / depth) ─── */
  --indigo:       #1E3A5F;
  --indigo-deep:  #122845;
  --indigo-pale:  #E8EEF5;

  /* ─── Tertiary accent: gold (used sparingly) ─── */
  --gold:         #C9A14A;

  /* ─── Ink (text colors) ─── */
  --ink:          #1A1A17;
  --ink-soft:     #4A4A45;
  --ink-muted:    #8A8A82;

  /* ─── Rule (borders, dividers) ─── */
  --rule:         #E8E6DF;

  /* ─── Tinted shadows (color-tinted for the coral CTAs and indigo depth) ─── */
  --shadow-card:  0 1px 2px rgba(26, 26, 23, 0.05), 0 8px 24px rgba(26, 26, 23, 0.08);
  --shadow-lift:  0 2px 4px rgba(26, 26, 23, 0.07), 0 18px 36px rgba(26, 26, 23, 0.10);
  --shadow-coral: 0 6px 18px rgba(215, 80, 106, 0.32);
  --shadow-coral-lg: 0 10px 26px rgba(215, 80, 106, 0.45);

  /* ─── Fluid type scale (display sizes 30 to 50% bigger than before) ─── */
  --ts-meta:       13px;
  --ts-eyebrow:    clamp(11px, 0.85vw, 12px);
  --ts-eyebrow-tracking: 0.18em;
  --ts-body:       clamp(16px, 1.05vw, 17px);
  --ts-body-large: clamp(18px, 1.3vw, 21px);
  --ts-h4:         clamp(20px, 1.5vw, 24px);
  --ts-h3:         clamp(22px, 2vw, 32px);
  --ts-h2:         clamp(32px, 4vw, 56px);
  --ts-h1:         clamp(48px, 6vw, 96px);
  --ts-display:    clamp(64px, 9vw, 140px);

  /* ─── Spacing scale (8px base, unchanged) ─── */
  --sp-0: 4px;
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;
  --sp-9: 192px;

  /* ─── Fonts (Fraunces for display, Inter for body, Noto Serif KR for Korean) ─── */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;
  --font-korean:  "Noto Serif KR", "Fraunces", serif;

  /* ─── Motion (unchanged) ─── */
  --ease-out:    cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-quart:  cubic-bezier(0.25, 1, 0.5, 1);
  --dur-fast:    120ms;
  --dur-base:    320ms;
  --dur-slow:    520ms;
  --dur-image:   800ms;

  /* ─── Layout (unchanged) ─── */
  --content-max:        1320px;
  --content-max-wide:   1480px;
  --content-max-narrow: 920px;
  --content-max-prose:  62ch;
  --gutter-desktop:     48px;
  --gutter-mobile:      20px;
  --radius-pill:        999px;
  --radius-card:        6px;
  --radius-lg:          8px;

  /* ─── Nav heights (unchanged) ─── */
  --announcement-h: 36px;
  --nav-h:          76px;
  --nav-h-mobile:   64px;

  /* ─── Mobile sticky bar (unchanged) ─── */
  --mobile-bar-h:   64px;
}


/* ====== 2. RESET AND BASE ====== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--ts-body);
  line-height: 1.8;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  width: 100%;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
  font-size: 16px;
}


/* ====== 3. TYPOGRAPHY ====== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 var(--sp-3);
  color: var(--indigo-deep);
}

h1 {
  font-size: var(--ts-h1);
  font-weight: 300;
  letter-spacing: -0.015em;
}

h2 {
  font-size: var(--ts-h2);
  font-weight: 400;
  letter-spacing: -0.012em;
}

h3 {
  font-size: var(--ts-h3);
  font-weight: 500;
  letter-spacing: -0.005em;
}

h4 {
  font-size: var(--ts-h4);
  font-weight: 500;
}

p {
  margin: 0 0 var(--sp-2);
  color: var(--ink-soft);
  max-width: var(--content-max-prose);
}

.prose p,
.prose ul,
.prose ol {
  max-width: var(--content-max-prose);
}

.prose > * + * {
  margin-top: var(--sp-2);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--ts-eyebrow);
  font-weight: 500;
  letter-spacing: var(--ts-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--sp-2);
}

.eyebrow--sage { color: var(--coral); }

.lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--ts-body-large);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: var(--content-max-prose);
}

.lead--sans {
  font-family: var(--font-body);
  font-style: normal;
  line-height: 1.7;
}

.korean,
[lang="ko"] {
  font-family: var(--font-korean);
  font-weight: 400;
  /* Korean text reads in word-units; break only at spaces/punctuation,
     never mid-syllable. overflow-wrap lets very long single words wrap
     to the next line as a fallback on narrow containers. */
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* Inline Korean tokens (footer headings, etc.) should not split across
   lines mid-character. Use display: inline-block to treat the run as a
   single unbreakable unit. */



.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--indigo-deep);
  max-width: 32ch;
  margin: var(--sp-5) auto;
  padding: 0 var(--sp-3);
  text-align: center;
}

.pull-quote::before { content: "“"; }
.pull-quote::after { content: "”"; }

.pull-quote__attr {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--ts-eyebrow);
  letter-spacing: var(--ts-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: var(--sp-3);
}


/* ====== 4. LAYOUT AND GRID ====== */
.section {
  padding: var(--sp-7) var(--gutter-desktop);
}

.section--tight { padding: var(--sp-5) var(--gutter-desktop); }
.section--xl { padding: var(--sp-9) var(--gutter-desktop); }

.section--cream { background: var(--paper); }
.section--cream-soft { background: var(--paper-warm); }
.section--beige { background: var(--paper-soft); }
.section--sage { background: var(--coral); color: var(--paper); }
.section--charcoal { background: var(--indigo-deep); color: var(--paper); }
.section--sage h1,
.section--sage h2,
.section--sage h3,
.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3 { color: var(--paper); }
.section--sage p, .section--sage .lead,
.section--charcoal p, .section--charcoal .lead { color: rgba(251, 248, 242, 0.82); }
.section--sage .eyebrow,
.section--charcoal .eyebrow { color: rgba(251, 248, 242, 0.62); }

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-inner--narrow { max-width: var(--content-max-narrow); }
.section-inner--wide { max-width: var(--content-max-wide); }

.divider {
  height: 1px;
  background: rgba(31, 30, 27, 0.1);
  margin: var(--sp-5) 0;
}


/* ====== 5. ANNOUNCEMENT BAR ====== */
.announcement {
  position: relative;
  background: var(--coral);
  color: var(--paper);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-align: center;
  min-height: var(--announcement-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-1) var(--sp-5);
  transition: height var(--dur-base) var(--ease-out),
              min-height var(--dur-base) var(--ease-out),
              padding var(--dur-base) var(--ease-out),
              opacity var(--dur-base) var(--ease-out);
}

.announcement[hidden] {
  display: flex;
  min-height: 0;
  height: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.announcement strong { font-weight: 500; }

.announcement a {
  border-bottom: 1px solid rgba(251, 248, 242, 0.5);
  padding-bottom: 1px;
  margin-left: var(--sp-1);
}

.announcement__close {
  position: absolute;
  right: var(--sp-2);
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  opacity: 0.7;
  transition: opacity var(--dur-fast) var(--ease-out);
}

.announcement__close:hover,
.announcement__close:focus-visible {
  opacity: 1;
}


/* ====== 6. SCROLL PROGRESS ====== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--coral);
  width: 0;
  z-index: 60;
  transition: width 50ms linear;
  pointer-events: none;
}


/* ====== 7. NAVIGATION ====== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(251, 248, 242, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              height var(--dur-base) var(--ease-out);
}

.site-nav.is-scrolled {
  background: rgba(251, 248, 242, 0.96);
  border-bottom-color: rgba(31, 30, 27, 0.08);
}

.site-nav__inner {
  max-width: var(--content-max-wide);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter-desktop);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-3);
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--indigo-deep);
}

.site-nav__brand img {
  height: 36px;
  width: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: center;
}

.site-nav__links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  padding: var(--sp-1) 0;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--ink-muted);
  transition: width var(--dur-base) var(--ease-out);
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after,
.site-nav__links a[aria-current="page"]::after {
  width: 100%;
}

.site-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-3);
}

.site-nav__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo-deep);
  letter-spacing: 0.04em;
}

.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 70;
}

.site-nav__toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--indigo-deep);
  transition: background var(--dur-fast) var(--ease-out);
}

.site-nav__toggle span::before,
.site-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--indigo-deep);
  transition: transform var(--dur-base) var(--ease-out);
}

.site-nav__toggle span::before { top: -7px; }
.site-nav__toggle span::after  { top: 7px; }

/* Mobile full-screen overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: var(--paper);
  display: none;
  flex-direction: column;
  padding: calc(var(--nav-h-mobile) + var(--sp-5)) var(--gutter-mobile) var(--sp-5);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.mobile-menu.is-open {
  display: flex;
  opacity: 1;
  transform: none;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.mobile-menu__list a {
  font-family: var(--font-display);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 400;
  color: var(--indigo-deep);
  display: block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}


.mobile-menu.is-open .mobile-menu__list a {
  opacity: 1;
  transform: none;
}

.mobile-menu.is-open .mobile-menu__list li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(2) a { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(3) a { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(4) a { transition-delay: 0.4s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(5) a { transition-delay: 0.5s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(6) a { transition-delay: 0.6s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(7) a { transition-delay: 0.7s; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(8) a { transition-delay: 0.8s; }

.mobile-menu__contact {
  margin-top: auto;
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(31, 30, 27, 0.1);
  display: grid;
  gap: var(--sp-1);
  color: var(--ink-soft);
  font-size: 14px;
}

.site-nav.is-menu-open .site-nav__toggle span { background: transparent; }
.site-nav.is-menu-open .site-nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
.site-nav.is-menu-open .site-nav__toggle span::after  { transform: translateY(-7px) rotate(-45deg); }


/* ====== 8. HERO ====== */
.hero {
  min-height: calc(100vh - var(--announcement-h));
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__grid {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  min-height: calc(100vh - var(--announcement-h) - var(--nav-h));
}

.hero__image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--coral-deep) 0%, var(--coral) 60%, var(--indigo-deep) 100%);
}

.hero__image > .placeholder {
  position: absolute;
  inset: 0;
  animation: kenBurns 12s var(--ease-in-out) infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero__copy {
  padding: var(--sp-7) var(--gutter-desktop);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.hero__copy .eyebrow {
  margin-bottom: var(--sp-3);
}

.hero__copy h1 {
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 78px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--sp-3);
}

.hero__copy h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.hero__copy h1 .word.is-in {
  opacity: 1;
  transform: none;
}

.hero__copy .lead {
  margin-bottom: var(--sp-5);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}


/* ====== 9. PAGE HERO (interior pages) ====== */
.page-hero {
  padding: calc(var(--sp-7) + var(--sp-3)) var(--gutter-desktop) var(--sp-7);
  background: var(--paper);
}

.page-hero--bleed {
  position: relative;
  padding: 0;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
}

.page-hero--bleed .placeholder,
.page-hero--bleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-hero--bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 30, 27, 0.25) 0%, rgba(31, 30, 27, 0.75) 100%);
  z-index: 1;
}

.page-hero--bleed > .section-inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-7) var(--gutter-desktop);
  max-width: var(--content-max);
  width: 100%;
}

.page-hero--bleed h1,
.page-hero--bleed h2,
.page-hero--bleed h3 { color: var(--paper); }
.page-hero--bleed p, .page-hero--bleed .lead { color: rgba(251, 248, 242, 0.9); }
.page-hero--bleed .eyebrow { color: rgba(251, 248, 242, 0.65); }


/* ====== 10. BREADCRUMB ====== */
.breadcrumb {
  max-width: var(--content-max);
  margin: var(--sp-3) auto 0;
  padding: var(--sp-3) var(--gutter-desktop) 0;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: var(--ink-soft);
}

.breadcrumb a:hover { color: var(--indigo-deep); }

.breadcrumb__sep {
  display: inline-block;
  margin: 0 var(--sp-1);
  color: rgba(31, 30, 27, 0.3);
}


/* ====== 11. HOW IT WORKS / STEPS ====== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-5);
}

.step__numeral {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1;
  color: var(--coral);
  margin-bottom: var(--sp-2);
}

.step h3 {
  margin-bottom: var(--sp-1);
}


/* ====== 12. PRODUCT GRID ====== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4) var(--sp-3);
  margin-top: var(--sp-5);
}

.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--2 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  display: block;
  background: transparent;
  transition: transform var(--dur-base) var(--ease-out);
}

.product-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--sp-2);
}

.product-card__media .placeholder {
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease-out);
}

.product-card:hover .product-card__media .placeholder {
  transform: scale(1.03);
}

.product-card__body {
  padding: var(--sp-1) 0 0;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--indigo-deep);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
  line-height: 1.3;
}


.product-card__meta {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0 0 var(--sp-1);
  letter-spacing: 0.02em;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--indigo-deep);
  font-weight: 500;
  letter-spacing: 0.04em;
}


/* ====== 13. CATEGORY DUO / TILES ====== */
.category-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.category-tile {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: var(--paper);
}

.category-tile__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coral-deep), var(--coral) 50%, var(--indigo-deep));
  transition: transform 0.5s var(--ease-out);
}

.category-tile:hover .category-tile__media {
  transform: scale(1.03);
}

.category-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31, 30, 27, 0.6) 100%);
}

.category-tile__body {
  position: relative;
  z-index: 1;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.category-tile__body h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  margin: 0 0 var(--sp-1);
}

.category-tile__body p {
  color: rgba(251, 248, 242, 0.85);
  margin: 0;
  max-width: 32ch;
}


/* ====== 14. EDITORIAL TWO-COLUMN ====== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.editorial--narrow {
  grid-template-columns: 380px 1fr;
}

.editorial--narrow-right {
  grid-template-columns: 1fr 380px;
}

.editorial__image {
  position: relative;
  overflow: hidden;
}

.editorial__image.ratio-1x1 { aspect-ratio: 1 / 1; }
.editorial__image.ratio-4x5 { aspect-ratio: 4 / 5; }
.editorial__image.ratio-3x2 { aspect-ratio: 3 / 2; }


/* ====== 15. RECIPE LAYOUT ====== */
.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin: var(--sp-4) 0 var(--sp-5);
  padding: var(--sp-3) 0;
  border-top: 1px solid rgba(31, 30, 27, 0.12);
  border-bottom: 1px solid rgba(31, 30, 27, 0.12);
}

.recipe-meta dt {
  font-size: var(--ts-eyebrow);
  letter-spacing: var(--ts-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2px;
}

.recipe-meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--indigo-deep);
}

.recipe-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-6);
  align-items: start;
}

.recipe-layout h2 {
  font-size: var(--ts-h3);
  margin-bottom: var(--sp-2);
}

.recipe-ingredients ul,
.recipe-instructions ol {
  padding-left: var(--sp-3);
  margin: 0;
}

.recipe-ingredients li,
.recipe-instructions li {
  margin-bottom: var(--sp-2);
  color: var(--ink-soft);
}

.recipe-instructions ol {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
}

.recipe-instructions ol li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  min-height: 40px;
  margin-bottom: var(--sp-3);
}

.recipe-instructions ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  line-height: 1;
  color: var(--coral);
}


/* ====== 16. FOUNDER / FEATURE PORTRAIT ====== */
.founder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.founder--reverse {
  grid-template-columns: 1fr 380px;
}

.founder__portrait {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
}


/* ====== 17. PHOTOGRAPHY PLACEHOLDERS ====== */
.placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--coral-deep) 0%, var(--coral) 60%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.placeholder::before {
  content: attr(data-ko);
  position: absolute;
  font-family: var(--font-korean);
  color: rgba(251, 248, 242, 0.08);
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.placeholder__label {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 248, 242, 0.6);
  text-align: center;
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid rgba(251, 248, 242, 0.18);
  background: rgba(31, 30, 27, 0.2);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.placeholder--warm {
  background: linear-gradient(135deg, var(--coral-pale) 0%, var(--coral) 50%, var(--ink) 100%);
}

.placeholder--cream {
  background: linear-gradient(135deg, var(--paper-warm) 0%, var(--rule) 70%, var(--ink-muted) 100%);
}
.placeholder--cream::before { color: rgba(31, 30, 27, 0.08); }
.placeholder--cream .placeholder__label {
  color: var(--ink-muted);
  border-color: rgba(31, 30, 27, 0.18);
  background: rgba(251, 248, 242, 0.4);
}

.placeholder--ink {
  background: linear-gradient(135deg, var(--ink) 0%, var(--indigo-deep) 70%, var(--coral-deep) 100%);
}

.ratio-4x5 { aspect-ratio: 4 / 5; }
.ratio-3x4 { aspect-ratio: 3 / 4; }
.ratio-1x1 { aspect-ratio: 1 / 1; }
.ratio-3x2 { aspect-ratio: 3 / 2; }
.ratio-16x9 { aspect-ratio: 16 / 9; }


/* ====== 18. BUTTONS ====== */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  min-height: 48px;
  padding: 0 var(--sp-4);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.btn-primary {
  background: var(--indigo-deep);
  color: var(--paper);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--ink-soft);
}

.btn-secondary {
  background: transparent;
  color: var(--indigo-deep);
  border: 1px solid var(--indigo-deep);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--indigo-deep);
  color: var(--paper);
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.97);
}

.btn-link {
  background: transparent;
  color: var(--indigo-deep);
  padding: 2px 0;
  min-height: 0;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  border-bottom: 1px solid var(--indigo-deep);
  border-radius: 0;
}

.btn-link:hover,
.btn-link:focus-visible {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.section--sage .btn-primary,
.section--charcoal .btn-primary,
.page-hero--bleed .btn-primary {
  background: var(--paper);
  color: var(--indigo-deep);
}

.section--sage .btn-secondary,
.section--charcoal .btn-secondary,
.page-hero--bleed .btn-secondary {
  border-color: var(--paper);
  color: var(--paper);
}

.section--sage .btn-secondary:hover,
.section--charcoal .btn-secondary:hover,
.page-hero--bleed .btn-secondary:hover {
  background: var(--paper);
  color: var(--indigo-deep);
}

.section--charcoal .btn-link,
.section--sage .btn-link,
.page-hero--bleed .btn-link {
  color: var(--paper);
  border-bottom-color: rgba(251, 248, 242, 0.6);
}


/* ====== 19. FORMS ====== */
.inquiry-form,
.newsletter-form {
  display: grid;
  gap: var(--sp-3);
  max-width: 680px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.field label {
  font-size: var(--ts-eyebrow);
  letter-spacing: var(--ts-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--ink-muted);
}

.field input,
.field textarea,
.field select {
  padding: 14px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  min-height: 48px;
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color var(--dur-base) var(--ease-out);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
  padding-top: var(--sp-2);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--coral);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 8px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}

.form-status {
  margin-top: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  font-size: 14px;
  border-radius: var(--radius-lg);
}

.form-status--ok {
  background: rgba(168, 180, 154, 0.18);
  color: var(--coral-deep);
  border: 1px solid rgba(111, 124, 98, 0.3);
}

.form-status--err {
  background: rgba(217, 167, 168, 0.2);
  color: var(--coral);
  border: 1px solid rgba(198, 141, 142, 0.4);
}

.newsletter-form--inline {
  display: flex;
  gap: var(--sp-1);
  align-items: flex-end;
}
.newsletter-form--inline .field { flex: 1; }
.newsletter-form--inline button { white-space: nowrap; }


/* ====== 20. NEWSLETTER (CHARCOAL CLOSE) ====== */
.section--charcoal .field input,
.section--charcoal .field textarea,
.section--charcoal .field select,
.section--sage .field input,
.section--sage .field textarea,
.section--sage .field select {
  color: var(--paper);
  border-bottom-color: rgba(251, 248, 242, 0.3);
}
.section--charcoal .field input::placeholder,
.section--charcoal .field textarea::placeholder,
.section--sage .field input::placeholder,
.section--sage .field textarea::placeholder {
  color: rgba(251, 248, 242, 0.5);
}
.section--charcoal .field input:focus,
.section--charcoal .field textarea:focus,
.section--sage .field input:focus,
.section--sage .field textarea:focus {
  border-bottom-color: var(--paper);
}


/* ====== 21. FOOTER ====== */
.site-footer {
  background: var(--paper-soft);
  padding: var(--sp-7) var(--gutter-desktop) var(--sp-4);
  padding-bottom: calc(var(--sp-4) + var(--mobile-bar-h));
}

.site-footer__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-5);
}

.site-footer__contact li { font-size: 14px; }
.footer-view-all { color: var(--coral) !important; font-weight: 500; margin-top: var(--sp-1); display: inline-block; }

.site-footer h4 {
  font-family: var(--font-body);
  font-size: var(--ts-eyebrow);
  letter-spacing: var(--ts-eyebrow-tracking);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  margin: 0 0 var(--sp-2);
}

/* ============ FAQ jump menu ============ */
.faq-jump {
  display: none;
  background: var(--paper);
  border-top: 1px solid var(--paper-soft);
  border-bottom: 1px solid var(--paper-soft);
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
}
.faq-jump__list {
  list-style: none;
  margin: 0;
  padding: var(--sp-3) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9em;
}
.faq-jump__list a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  padding: 2px 0;
}
.faq-jump__list a:hover,
.faq-jump__list a:focus {
  color: var(--coral-deep);
  border-bottom-color: var(--ink-muted);
}
@media (min-width: 900px) {
  .faq-jump { display: block; }
}

.site-footer__copy {
  max-width: var(--content-max);
  margin: var(--sp-6) auto 0;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(31, 30, 27, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--ink-muted);
}


/* ====== 22. MOBILE STICKY BAR ====== */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--coral);
  color: var(--paper);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid rgba(31, 30, 27, 0.1);
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--mobile-bar-h);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--paper);
  text-align: center;
  padding: 0 var(--sp-2);
  line-height: 1.2;
}

.mobile-bar a + a {
  border-left: 1px solid rgba(251, 248, 242, 0.18);
}

.mobile-bar a:active {
  background: var(--coral-deep);
}


/* ====== 22b. JOURNAL CARDS (homepage) ====== */
.journal-layout {
  margin-top: var(--sp-5);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-4);
  align-items: stretch;
}
.journal-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5);
  background: var(--paper);
  border: 1px solid rgba(31, 30, 27, 0.08);
  border-radius: 2px;
  text-decoration: none;
  color: var(--indigo-deep);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.journal-card:hover {
  transform: translateY(-2px);
  border-color: var(--coral);
}
.journal-card--featured {
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-soft) 100%);
  min-height: 320px;
}
.journal-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  margin: var(--sp-2) 0;
  line-height: 1.25;
}
.journal-card--featured h3 { font-size: clamp(24px, 3vw, 38px); }
.journal-card .eyebrow { color: var(--coral); }
.journal-card__more {
  margin-top: var(--sp-2);
  font-size: 13px;
  color: var(--coral);
  letter-spacing: 0.04em;
}
.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}


/* ====== 23. BACK TO TOP ====== */
.back-to-top {
  position: fixed;
  right: var(--gutter-desktop);
  bottom: var(--sp-5);
  z-index: 45;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--indigo-deep);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.back-to-top:active { transform: scale(0.95); }


/* ====== 24. CURSOR TRAIL ====== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  pointer-events: none;
  z-index: 80;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  mix-blend-mode: multiply;
}

.cursor-dot.is-visible {
  opacity: 0.6;
}


/* ====== 25. UTILITIES + REVEAL ANIMATIONS ====== */
.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-image {
  position: relative;
  overflow: hidden;
}

.reveal-image > * {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.9s var(--ease-quart);
}

.reveal-image.is-in > * {
  clip-path: inset(0% 0 0 0);
}

.reveal-stagger > * { transition-delay: 0s; }
.reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0.0s; }
.reveal-stagger.is-in > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-in > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.is-in > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.is-in > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.is-in > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-stagger.is-in > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-stagger.is-in > *:nth-child(8) { transition-delay: 0.7s; }

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-3) 0;
  font-size: 14px;
  color: var(--ink-soft);
}

.contact-strip a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--indigo-deep);
  border-bottom: 1px solid var(--indigo-deep);
}

.section--sage .contact-strip,
.section--charcoal .contact-strip { color: rgba(251, 248, 242, 0.85); }
.section--sage .contact-strip a,
.section--charcoal .contact-strip a {
  color: var(--paper);
  border-bottom-color: rgba(251, 248, 242, 0.6);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.related-card {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 320px;
  overflow: hidden;
  color: var(--paper);
  background: var(--paper-warm);
  transition: transform 0.4s ease;
}

.related-card .placeholder { position: absolute; inset: 0; }
.related-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}
.related-card:hover > img,
.related-card:focus-visible > img {
  transform: scale(1.05);
}
.related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}
.related-card:hover::after,
.related-card:focus-visible::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
}
.related-card--simple {
  aspect-ratio: auto;
  min-height: 0;
  background: var(--paper);
  color: var(--indigo-deep);
  padding: var(--sp-4);
  border: 1px solid rgba(31, 30, 27, 0.08);
  border-radius: 2px;
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.related-card--simple:hover { border-color: var(--coral); transform: translateY(-2px); }
.related-card--simple::after { display: none; }
.related-card--simple .related-card__body { position: static; padding: 0; }
.related-card--simple .related-card__body .eyebrow { color: var(--coral); }
.related-card--simple .related-card__body h3 { color: var(--indigo-deep); font-family: var(--font-display); font-size: 22px; font-weight: 400; margin: var(--sp-1) 0 0; }

.related-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.related-card__body h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.15;
}
.related-card__body .related-card__ko {
  font-family: var(--font-korean);
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
  margin: 0;
}
.related-card__body .related-card__cta {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
  margin-top: var(--sp-1);
  opacity: 0.9;
  border-bottom: 1px solid rgba(251, 248, 242, 0.5);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.related-card:hover .related-card__cta,
.related-card:focus-visible .related-card__cta {
  color: var(--ink-muted);
  border-color: var(--ink-muted);
}

.faq__item {
  border-top: 1px solid rgba(31, 30, 27, 0.1);
  padding: var(--sp-3) 0;
}
.faq__item:last-child { border-bottom: 1px solid rgba(31, 30, 27, 0.1); }
.faq__item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--indigo-deep);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  color: var(--coral);
  transition: transform var(--dur-base) var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin-top: var(--sp-2); }


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


/* ====== 26. MEDIA QUERIES ====== */
@media (max-width: 1280px) {
  .section { padding: var(--sp-7) var(--sp-4); }
  .page-hero { padding: calc(var(--sp-6) + var(--sp-3)) var(--sp-4) var(--sp-6); }
  .back-to-top { right: var(--sp-4); }
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .editorial,
  .editorial--narrow,
  .editorial--narrow-right {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .recipe-layout { grid-template-columns: 1fr; gap: var(--sp-4); }
}

@media (max-width: 768px) {
  :root {
    --nav-h: var(--nav-h-mobile);
    --gutter-desktop: var(--gutter-mobile);
  }
  body { padding-bottom: var(--mobile-bar-h); }
  .section { padding: var(--sp-5) var(--gutter-mobile); }
  .section--xl { padding: var(--sp-6) var(--gutter-mobile); }
  .page-hero { padding: var(--sp-5) var(--gutter-mobile); }
  .journal-layout { grid-template-columns: 1fr; }
  .journal-card--featured { min-height: 220px; }
  .site-footer__grid { grid-template-columns: 1fr; }

  .site-nav__inner { padding: 0 var(--gutter-mobile); grid-template-columns: auto 1fr auto; }
  .site-nav__brand { justify-self: center; grid-column: 2; }
  .site-nav__brand img { height: 30px; }
  .site-nav__links,
  .site-nav__cta { display: none; }
  .site-nav__toggle { display: inline-flex; grid-column: 1; justify-self: start; }
  .site-nav__actions { grid-column: 3; }
  .site-nav__actions .btn-primary,
  .site-nav__actions .btn-secondary { display: none; }

  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__image { aspect-ratio: 4 / 5; min-height: 60vh; }
  .hero__copy { padding: var(--sp-5) var(--gutter-mobile); }

  .page-hero--bleed { min-height: 320px; }
  .page-hero--bleed > .section-inner { padding: var(--sp-5) var(--gutter-mobile); }

  .steps-grid,
  .category-duo,
  .related-grid { grid-template-columns: 1fr; gap: var(--sp-3); }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3) var(--sp-2); }
  .product-grid--2 { grid-template-columns: 1fr; }

  .site-footer { padding: var(--sp-5) var(--gutter-mobile) calc(var(--sp-4) + var(--mobile-bar-h)); }
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .site-footer__copy { flex-direction: column; gap: var(--sp-1); text-align: left; }

  .mobile-bar { display: grid; }
  .back-to-top { bottom: calc(var(--mobile-bar-h) + var(--sp-2)); right: var(--sp-3); }

  .breadcrumb { padding: var(--sp-2) var(--gutter-mobile) 0; }

  .field--row { grid-template-columns: 1fr; }
  .newsletter-form--inline { flex-direction: column; align-items: stretch; }

  .recipe-instructions ol li { padding-left: 44px; }
  .recipe-instructions ol li::before { font-size: 30px; }

  .cursor-dot { display: none; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero__copy h1 { font-size: clamp(36px, 11vw, 56px); }
}

@media (hover: none) {
  .cursor-dot { display: none; }
  .product-card:hover .product-card__media .placeholder,
  .category-tile:hover .category-tile__media { transform: none; }
}

/* ---------------------------------------------------------------------- */
/* Blog / journal — post listing, post meta, post body                    */
/* ---------------------------------------------------------------------- */

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4) var(--sp-3);
  margin-top: var(--sp-3);
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-3);
  background: var(--paper);
  border: 1px solid rgba(31, 30, 27, 0.08);
  color: var(--ink);
  text-decoration: none;
  transition: border-color var(--dur-base) ease, transform var(--dur-base) ease, box-shadow var(--dur-base) ease;
}

.post-card:hover,
.post-card:focus-visible {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  outline: none;
}

.post-card .eyebrow {
  color: var(--coral);
  margin-bottom: var(--sp-1);
}

.post-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.25;
  margin: 0 0 var(--sp-1) 0;
  color: var(--indigo-deep);
}

.post-card p {
  font-size: var(--ts-body);
  margin: 0;
  color: var(--ink-soft);
}

.post-card__meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: auto;
  padding-top: var(--sp-2);
  letter-spacing: 0.02em;
}

.post-meta {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  align-items: center;
  margin-top: var(--sp-2);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--sp-2);
}

.post-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 6px 12px;
  border: 1px solid rgba(31, 30, 27, 0.16);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: border-color var(--dur-base) ease, color var(--dur-base) ease;
}

.post-tag:hover,
.post-tag:focus-visible {
  border-color: var(--coral);
  color: var(--coral-deep);
  outline: none;
}

/* Override related-grid card style for text-only related posts (used at
   the bottom of every blog post). Scoped to NOT apply when the photo grid
   modifier .related-grid--3 is used, since that variant on /hanbok/ shows
   image cards, not text cards. */
.related-grid:not(.related-grid--3) .related-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-3);
  background: var(--paper);
  border: 1px solid rgba(31, 30, 27, 0.08);
  color: var(--ink);
  aspect-ratio: auto;
  min-height: 0;
  overflow: visible;
}

.related-grid:not(.related-grid--3) .related-card::after {
  content: none;
}

.related-grid:not(.related-grid--3) .related-card .eyebrow {
  color: var(--coral);
}

.related-grid:not(.related-grid--3) .related-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  color: var(--indigo-deep);
  margin: var(--sp-1) 0;
}

/* Photo category grid (used on /hanbok/ index landing) */
.related-grid.related-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
@media (max-width: 1024px) {
  .related-grid.related-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .related-grid.related-grid--3 { grid-template-columns: 1fr; gap: var(--sp-2); }
}

.related-grid:not(.related-grid--3) .related-card p {
  font-size: var(--ts-body);
  color: var(--ink-soft);
}

.related-grid:not(.related-grid--3) .related-card .btn-link {
  margin-top: var(--sp-1);
}

/* Long-form prose styling for blog post bodies. */
.prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.2vw, 36px);
  line-height: 1.25;
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-2);
  color: var(--indigo-deep);
}

.prose h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.3;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
  color: var(--indigo-deep);
}

.prose h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-1);
  color: var(--ink-muted);
}

.prose p {
  font-size: var(--ts-body);
  line-height: 1.75;
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: var(--sp-3);
  margin: var(--sp-2) 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.prose li + li { margin-top: 4px; }

.prose blockquote {
  border-left: 2px solid var(--ink-muted);
  padding: var(--sp-1) var(--sp-3);
  margin: var(--sp-3) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--ink);
}

.prose a {
  color: var(--coral-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.prose a:hover,
.prose a:focus-visible { color: var(--indigo-deep); }

.prose figure {
  margin: var(--sp-4) 0;
}

.prose figure img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--paper-warm);
}

.prose figcaption {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 8px;
  text-align: center;
}

@media (max-width: 768px) {
  .post-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ====== 27. HOMEPAGE V2 — FULL-BLEED HERO ====== */
.hero--bleed {
  position: relative;
  display: block;
  min-height: calc(100vh - var(--announcement-h) - var(--nav-h));
  padding: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--indigo-deep);
}

.hero--bleed__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  animation: kenBurnsBleed 18s var(--ease-in-out) infinite alternate;
}

@keyframes kenBurnsBleed {
  from { transform: scale(1.02); }
  to   { transform: scale(1.1); }
}

.hero--bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 30, 27, 0.2) 0%,
    rgba(31, 30, 27, 0.7) 70%,
    rgba(31, 30, 27, 0.95) 100%
  );
  z-index: 1;
}

.hero--bleed__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: var(--sp-7) var(--gutter-desktop) calc(var(--sp-7) + var(--sp-3));
  min-height: calc(100vh - var(--announcement-h) - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero--bleed h1 {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: var(--sp-1) 0 var(--sp-3);
  max-width: 18ch;
}

.hero--bleed__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: rgba(251, 248, 242, 0.92);
  max-width: 52ch;
  margin: 0 0 var(--sp-5);
}

.hero--bleed__trust {
  margin-top: var(--sp-5);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  max-width: 60ch;
}

.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.72);
}


.btn-primary--on-dark {
  background: var(--paper);
  color: var(--indigo-deep);
  border-color: var(--paper);
}

.btn-primary--on-dark:hover,
.btn-primary--on-dark:focus-visible {
  background: var(--ink-muted);
  color: var(--indigo-deep);
  border-color: var(--ink-muted);
}

.btn-primary--large {
  padding: 18px 36px;
  font-size: 15px;
  letter-spacing: 0.05em;
  min-height: 56px;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  border-bottom: 1px solid rgba(251, 248, 242, 0.55);
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  min-height: 48px;
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  color: var(--ink-muted);
  border-color: var(--ink-muted);
}


/* ====== 28. TRIO GRID (What is hanbok) ====== */
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.trio-card {
  text-align: center;
  padding: var(--sp-3);
}


.trio-card h3 {
  margin-bottom: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 400;
}

.trio-card p {
  margin: 0 auto;
  max-width: 32ch;
  color: var(--ink-soft);
}


/* ====== 29. COLLECTION GRID (Homepage 6-card 2x3) ====== */


/* ====== 30. PROCESS TIMELINE (4 steps) ====== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  position: relative;
  margin-top: var(--sp-5);
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 56px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--rule);
  z-index: 0;
}

.process-grid .step {
  position: relative;
  z-index: 1;
  background: var(--paper-soft);
  padding-top: var(--sp-2);
}

.process-grid .step__numeral {
  font-size: clamp(36px, 3.6vw, 52px);
  color: var(--coral);
  margin-bottom: var(--sp-2);
}


.process-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--coral);
  color: var(--paper);
  border-radius: var(--radius-lg);
}

.process-cta h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
}

.process-cta p {
  color: rgba(251, 248, 242, 0.88);
  margin: 0;
}

.process-cta .btn-primary {
  background: var(--paper);
  color: var(--indigo-deep);
  border-color: var(--paper);
}

.process-cta .btn-primary:hover,
.process-cta .btn-primary:focus-visible {
  background: var(--ink-muted);
  border-color: var(--ink-muted);
}


/* ====== 31. STORY SECTION + FINAL CTA ====== */
.story-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--coral);
  margin-top: var(--sp-3);
}

.final-cta__h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  color: var(--paper);
  letter-spacing: -0.015em;
  max-width: 22ch;
  margin: 0 auto;
}

.final-cta__trust {
  margin-top: var(--sp-4);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(251, 248, 242, 0.62);
}


/* ====== 32. CONTACT V2 — warm form ====== */
.contact-hero-dark {
  background: var(--indigo-deep);
  color: var(--paper);
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-7) var(--gutter-desktop);
}

.contact-hero-dark__inner {
  max-width: 720px;
}

.contact-hero-dark h1 {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: var(--sp-3) 0;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-hero-dark__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  color: rgba(251, 248, 242, 0.88);
  margin: 0 auto;
  max-width: 44ch;
}

.contact-hero-dark .eyebrow {
  color: var(--ink-muted);
}

.section--contact-form {
  background: var(--paper);
  padding: 80px var(--gutter-desktop);
}

.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .section--contact-form { padding: var(--sp-5) var(--gutter-mobile); }
  .contact-hero-dark { padding: var(--sp-6) var(--gutter-mobile); }
}

.section--contact-hero {
  padding-top: calc(var(--sp-7) + var(--sp-3));
}

.inquiry-form--warm .field {
  margin-bottom: var(--sp-5);
}

.inquiry-form--warm .field label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  letter-spacing: -0.005em;
  color: var(--indigo-deep);
  display: block;
  margin-bottom: 2px;
}

.field__hint {
  display: block;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-muted);
  margin-bottom: var(--sp-2);
  font-style: italic;
}

.inquiry-form--warm input[type="text"],
.inquiry-form--warm input[type="email"],
.inquiry-form--warm input[type="tel"],
.inquiry-form--warm input[type="date"],
.inquiry-form--warm select,
.inquiry-form--warm textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 16px 0;
  font-family: var(--font-body);
  color: var(--indigo-deep);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #C4B9A8;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  min-height: 48px;
  transition: border-color 0.2s ease;
}

.inquiry-form--warm textarea {
  border: 1px solid #C4B9A8;
  padding: var(--sp-2);
  background: var(--paper-warm);
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.inquiry-form--warm input[type="text"]:focus,
.inquiry-form--warm input[type="email"]:focus,
.inquiry-form--warm input[type="tel"]:focus,
.inquiry-form--warm input[type="date"]:focus,
.inquiry-form--warm select:focus,
.inquiry-form--warm textarea:focus {
  border-color: var(--indigo-deep);
  border-bottom-color: var(--indigo-deep);
}

.inquiry-form--warm input::placeholder,
.inquiry-form--warm textarea::placeholder {
  color: #A09880;
  font-family: var(--font-display);
  font-style: italic;
  opacity: 1;
}

.inquiry-form--warm select {
  cursor: pointer;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231F1E1B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

.inquiry-form--warm select:invalid,
.inquiry-form--warm select option[value=""] {
  color: #A09880;
}

/* Make sure the main submit button is unmistakable. */
.inquiry-form--warm button[type="submit"].btn-primary--large {
  display: block;
  width: 100%;
  padding: 20px;
  background: var(--indigo-deep);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  margin-top: var(--sp-5);
  min-height: 56px;
  transition: background 0.2s ease;
}

.inquiry-form--warm button[type="submit"].btn-primary--large:hover {
  background: #3D3B35;
}

.form-fineprint {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: var(--sp-3);
  font-style: italic;
  max-width: 56ch;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin: var(--sp-3) 0;
}

.contact-trust {
  display: block;
  padding: var(--sp-4);
  background: var(--paper);
  border: 1px solid var(--paper-soft);
  text-align: center;
  color: var(--indigo-deep);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.contact-trust:hover,
.contact-trust:focus-visible {
  border-color: var(--coral);
  transform: translateY(-2px);
}

.contact-trust__ko {
  display: block;
  font-family: var(--font-korean);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--coral);
  margin-bottom: var(--sp-2);
}

.contact-trust__icon {
  display: block;
  font-size: 28px;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.contact-trust strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  color: var(--indigo-deep);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.contact-trust span:not(.contact-trust__ko) {
  font-size: 13.5px;
  color: var(--ink-muted);
}


/* ====== 30a. BLOG INDEX V2 — tabs, featured, grid, pager ====== */
.journal-tabs {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: var(--sp-2);
  margin-bottom: var(--sp-3);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.journal-tab {
  flex-shrink: 0;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius-pill);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--dur-base) var(--ease-out);
  min-height: 44px;
}

.journal-tab:hover {
  color: var(--indigo-deep);
  border-color: var(--coral);
}

.journal-tab.is-active {
  background: var(--indigo-deep);
  color: var(--paper);
  border-color: var(--indigo-deep);
}

.journal-featured {
  display: block;
  background: var(--paper-warm);
  border: 1px solid var(--paper-soft);
  padding: var(--sp-5);
  border-radius: var(--radius-lg);
  color: var(--indigo-deep);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.journal-featured:hover,
.journal-featured:focus-visible {
  border-color: var(--coral);
  transform: translateY(-2px);
}

.journal-featured__body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  margin: var(--sp-2) 0 var(--sp-3);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 32ch;
}

.journal-featured__body p {
  margin: 0 0 var(--sp-3);
  max-width: 62ch;
  color: var(--ink-soft);
}

.journal-featured__meta {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--coral);
  margin: 0;
}

.journal-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4) var(--sp-3);
}

.journal-grid-card {
  display: block;
  background: transparent;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--paper-soft);
  color: var(--indigo-deep);
  transition: transform var(--dur-base) var(--ease-out);
}

.journal-grid-card:hover {
  transform: translateY(-2px);
}

.journal-grid-card .eyebrow {
  margin-bottom: var(--sp-2);
}

.journal-grid-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.6vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  margin: 0 0 var(--sp-2);
}

.journal-grid-card__excerpt {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0 0 var(--sp-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.journal-grid-card__meta {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  margin: 0;
}

.journal-grid-empty {
  text-align: center;
  color: var(--ink-muted);
  font-style: italic;
  padding: var(--sp-5) 0;
}

.journal-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--paper-soft);
}

.journal-pager__link {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--indigo-deep);
  border-bottom: 1px solid var(--indigo-deep);
  padding: 6px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.journal-pager__link:hover,
.journal-pager__link:focus-visible {
  color: var(--coral);
  border-color: var(--coral);
}

.journal-pager__link.is-disabled {
  color: var(--ink-muted);
  border-color: transparent;
  pointer-events: none;
}

.journal-pager__meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .journal-cards-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .journal-featured { padding: var(--sp-4); }
}

@media (max-width: 600px) {
  .journal-cards-grid { grid-template-columns: 1fr; }
  .journal-pager { flex-direction: column; gap: var(--sp-2); text-align: center; }
}


/* ====== 30bb. RECIPE CARD COLORED PLACEHOLDERS ====== */
.recipe-card__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-card__placeholder-ko {
  font-family: var(--font-korean);
  font-weight: 400;
  font-size: clamp(56px, 6vw, 84px);
  color: rgba(251, 248, 242, 0.32);
  letter-spacing: 0.04em;
  user-select: none;
  pointer-events: none;
}

/* Recipe page hero bleed (used when no real photo exists for the recipe) */
.recipe-hero__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recipe-hero__placeholder-ko {
  font-family: var(--font-korean);
  font-weight: 400;
  font-size: clamp(120px, 14vw, 220px);
  color: rgba(251, 248, 242, 0.18);
  letter-spacing: 0.04em;
  user-select: none;
  pointer-events: none;
}









@media (max-width: 600px) {
  .most-read-grid { grid-template-columns: 1fr; }
}


/* ====== 30b. FROM THE BLOG (hanbok category page interlinking) ====== */
.from-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.from-blog-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: var(--paper);
  border: 1px solid var(--paper-soft);
  border-radius: var(--radius-lg);
  color: var(--indigo-deep);
  transition: border-color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.from-blog-card:hover,
.from-blog-card:focus-visible {
  border-color: var(--coral);
  transform: translateY(-2px);
}

.from-blog-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.005em;
}

.from-blog-card__more {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--coral);
  margin-top: auto;
}

@media (max-width: 900px) {
  .from-blog-grid { grid-template-columns: 1fr; }
}


/* ====== 31a. PRODUCT CARD V2 — tag + description ====== */
.product-card__tag {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  z-index: 2;
  background: var(--paper);
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--rule);
}

.product-card__desc {
  margin-top: 6px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 38ch;
}


/* ====== 32a. CONTACT MAP EMBED ====== */
.contact-map__label {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-2);
  margin: 0 0 var(--sp-3);
  max-width: none;
}

.contact-map__address {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 1.4vw, 22px);
  color: var(--indigo-deep);
  letter-spacing: -0.005em;
}

.contact-map {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--paper-soft);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 600px) {
  .contact-map { aspect-ratio: 4 / 3; }
  .contact-map__label { flex-direction: column; align-items: flex-start; }
}


/* ====== 33. MOBILE BREAKPOINTS — homepage v2 + contact v2 ====== */
@media (max-width: 900px) {
  .trio-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .process-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .process-grid::before { display: none; }
  .process-cta { flex-direction: column; align-items: flex-start; padding: var(--sp-4); }
  .contact-trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .collection-grid { grid-template-columns: 1fr; }
  .hero--bleed__inner { padding: var(--sp-5) var(--gutter-mobile) calc(var(--sp-5) + var(--sp-3)); }
  .hero--bleed h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero--bleed__sub { font-size: 18px; }
  .hero--bleed__trust { font-size: 12px; letter-spacing: 0.03em; }
  .btn-primary--large { width: 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: var(--sp-2); width: 100%; }
  .hero__actions .btn-primary--on-dark,
  .hero__actions .btn-ghost-light { width: 100%; text-align: center; justify-content: center; }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal.is-in,
  .reveal-image > *,
  .reveal-image.is-in > *,
  .hero__copy h1 .word { opacity: 1; transform: none; clip-path: none !important; }
  .hero__image > .placeholder,
  .hero--bleed__image { animation: none; }
}


/* ============================================================
   PHASE 2 — HOMEPAGE V3
   Scoped to .home-v3 wrapper. All values through Phase 1 tokens.
   ============================================================ */

/* Local layout aliases used inside .home-v3 */
.home-v3 {
  --home-gutter: var(--gutter-desktop);
  --home-max: var(--content-max);
  --home-max-narrow: var(--content-max-narrow);
}

/* H1/H2/H3 em accent inside the homepage */
.home-v3 h1 em,
.home-v3 h2 em,
.home-v3 h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}

/* Coral eyebrow modifier (used in hero, process, story) */
.home-v3 .eyebrow--coral {
  color: var(--coral);
}
.home-v3 .eyebrow--coral.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.72);
}

/* ──────────── HERO ──────────── */
.home-v3 .hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
  max-width: var(--home-max);
  margin: 0 auto;
  padding: var(--sp-7) var(--home-gutter) var(--sp-8);
  background: var(--paper);
  color: var(--ink);
  overflow: visible;
}
.home-v3 .hero__copy {
  padding-right: var(--sp-5);
  max-width: none;
}
.home-v3 .hero__copy .eyebrow {
  margin-bottom: var(--sp-3);
}
.home-v3 .hero h1 {
  font-family: var(--font-display);
  font-size: var(--ts-h1);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--sp-4);
  max-width: none;
}
.home-v3 .hero__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--ts-body-large);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 0 var(--sp-5);
}
.home-v3 .hero__actions {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}
.home-v3 .hero__trust {
  margin: var(--sp-3) 0 0;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--ts-meta);
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  max-width: 56ch;
}
.home-v3 .hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(135deg, var(--coral-pale), var(--indigo-pale));
}
.home-v3 .hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ──────────── BUTTONS (scoped homepage versions) ──────────── */
.home-v3 .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--coral);
  color: var(--paper);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 0;
  box-shadow: var(--shadow-coral);
  transition: background var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.home-v3 .btn-primary:hover,
.home-v3 .btn-primary:focus-visible {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral-lg);
}
.home-v3 .btn-primary--inverse {
  background: var(--paper);
  color: var(--coral-deep);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.home-v3 .btn-primary--inverse:hover,
.home-v3 .btn-primary--inverse:focus-visible {
  background: var(--paper-warm);
  color: var(--coral-deep);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
.home-v3 .btn-secondary {
  color: var(--indigo);
  padding: 14px 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--indigo);
  border-radius: 0;
  background: transparent;
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.home-v3 .btn-secondary:hover,
.home-v3 .btn-secondary:focus-visible {
  color: var(--coral);
  border-bottom-color: var(--coral);
}
.home-v3 .btn-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.home-v3 .btn-link:hover,
.home-v3 .btn-link:focus-visible {
  color: var(--coral-deep);
  border-bottom-color: var(--coral);
}
.home-v3 .btn-link--on-dark {
  color: rgba(255, 255, 255, 0.92);
}
.home-v3 .btn-link--on-dark:hover,
.home-v3 .btn-link--on-dark:focus-visible {
  color: var(--paper);
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

/* ──────────── FEATURED ──────────── */
.home-v3 .featured {
  padding: var(--sp-7) var(--home-gutter);
  max-width: var(--home-max);
  margin: 0 auto;
}
.home-v3 .featured__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  border-bottom: 1px solid var(--rule);
  padding-bottom: var(--sp-3);
}
.home-v3 .featured__title {
  font-family: var(--font-display);
  font-size: var(--ts-h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.home-v3 .featured__link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out);
}
.home-v3 .featured__link:hover,
.home-v3 .featured__link:focus-visible {
  border-bottom-color: var(--coral);
}
.home-v3 .featured__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
.home-v3 .feat-card {
  display: block;
  color: inherit;
}
.home-v3 .feat-card__media {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: var(--sp-3);
  background: var(--paper-soft);
}
.home-v3 .feat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.home-v3 .feat-card:hover .feat-card__media img,
.home-v3 .feat-card:focus-visible .feat-card__media img {
  transform: scale(1.04);
}
.home-v3 .feat-card__tag {
  display: inline-block;
  background: var(--coral-pale);
  color: var(--coral-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-2);
}
.home-v3 .feat-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 6px;
  letter-spacing: -0.005em;
}
.home-v3 .feat-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.55;
  max-width: 30ch;
}

/* ──────────── EDITORIAL BAND (indigo full-bleed) ──────────── */
.home-v3 .editorial-band {
  padding: var(--sp-8) var(--home-gutter);
  background: var(--indigo);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-v3 .editorial-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(215, 80, 106, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 161, 74, 0.12), transparent 55%);
  pointer-events: none;
}
.home-v3 .editorial-band__content {
  position: relative;
  max-width: var(--home-max-narrow);
  margin: 0 auto;
}
.home-v3 .editorial-band__line {
  font-family: var(--font-display);
  font-size: var(--ts-display);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--paper);
  margin: 0;
  max-width: none;
}
.home-v3 .editorial-band__line strong {
  font-weight: 500;
  font-style: normal;
  color: var(--gold);
}
.home-v3 .editorial-band__attr {
  margin: var(--sp-5) 0 0;
  font-family: var(--font-body);
  font-size: var(--ts-meta);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  max-width: none;
}

/* ──────────── PROCESS ──────────── */
.home-v3 .process {
  padding: var(--sp-7) var(--home-gutter);
  max-width: var(--home-max);
  margin: 0 auto;
  background: var(--paper);
}
.home-v3 .process__head {
  text-align: center;
  margin-bottom: var(--sp-6);
}
.home-v3 .process__head .eyebrow {
  margin-bottom: var(--sp-2);
}
.home-v3 .process__title {
  font-family: var(--font-display);
  font-size: var(--ts-h2);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.home-v3 .process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.home-v3 .process .step {
  position: relative;
  text-align: center;
  padding: 0 var(--sp-2);
  background: transparent;
}
.home-v3 .step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral-pale);
  color: var(--coral-deep);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  margin: 0 auto var(--sp-3);
  border: 1px solid var(--coral-pale);
}
.home-v3 .step__h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 var(--sp-1);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.home-v3 .step__p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 28ch;
  margin: 0 auto;
}
.home-v3 .process__more {
  margin: var(--sp-6) auto 0;
  text-align: center;
}

/* ──────────── STORY (indigo founder panel) ──────────── */
.home-v3 .story {
  padding: var(--sp-8) var(--home-gutter);
  background: var(--indigo);
  color: var(--paper);
}
.home-v3 .story__inner {
  max-width: var(--home-max-narrow);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.home-v3 .story__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-card);
  background: linear-gradient(140deg, var(--indigo-pale), var(--coral-pale));
  overflow: hidden;
}
.home-v3 .story__portrait-label {
  position: absolute;
  inset: auto 0 var(--sp-3) 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(26, 26, 23, 0.42);
}
.home-v3 .story__copy {
  color: var(--paper);
}
.home-v3 .story__title {
  font-family: var(--font-display);
  font-size: var(--ts-h2);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-3);
  color: var(--paper);
}
.home-v3 .story__title em {
  color: var(--coral);
}
.home-v3 .story__p {
  font-family: var(--font-body);
  font-size: var(--ts-body-large);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 var(--sp-2);
  max-width: 58ch;
}
.home-v3 .story__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--coral);
  margin-top: var(--sp-3);
}
.home-v3 .story__more {
  margin-top: var(--sp-3);
}

/* ──────────── CLOSE (coral final CTA) ──────────── */
.home-v3 .close {
  padding: var(--sp-8) var(--home-gutter);
  background: var(--coral);
  color: var(--paper);
  text-align: center;
}
.home-v3 .close__inner {
  max-width: 720px;
  margin: 0 auto;
}
.home-v3 .close__title {
  font-family: var(--font-display);
  font-size: var(--ts-display);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 var(--sp-4);
}
.home-v3 .close__title em {
  font-style: italic;
  color: var(--paper);
}
.home-v3 .close__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--ts-body-large);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto var(--sp-5);
  max-width: 36ch;
}
.home-v3 .close__trust {
  font-family: var(--font-body);
  font-size: var(--ts-meta);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  margin: var(--sp-4) auto 0;
  max-width: 56ch;
}

/* ──────────── MOBILE (≤ 880px) ──────────── */
@media (max-width: 880px) {
  .home-v3 {
    --home-gutter: var(--gutter-mobile);
  }

  .home-v3 .hero {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    padding: var(--sp-5) var(--home-gutter) var(--sp-6);
  }
  .home-v3 .hero__copy {
    padding-right: 0;
    order: 2;
  }
  .home-v3 .hero__image {
    order: 1;
    aspect-ratio: 4 / 5;
    max-height: 60vh;
  }
  .home-v3 .hero h1 {
    font-size: clamp(40px, 12vw, 56px);
    margin-bottom: var(--sp-3);
  }
  .home-v3 .hero__sub {
    font-size: 16px;
    margin-bottom: var(--sp-4);
  }
  .home-v3 .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--sp-2);
  }
  .home-v3 .hero__actions .btn-primary,
  .home-v3 .hero__actions .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .home-v3 .featured {
    padding: var(--sp-6) var(--home-gutter);
  }
  .home-v3 .featured__head {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-2);
  }
  .home-v3 .featured__title {
    font-size: clamp(28px, 7vw, 36px);
  }
  .home-v3 .featured__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .home-v3 .editorial-band {
    padding: var(--sp-7) var(--home-gutter);
  }
  .home-v3 .editorial-band__line {
    font-size: clamp(28px, 7vw, 40px);
  }

  .home-v3 .process {
    padding: var(--sp-6) var(--home-gutter);
  }
  .home-v3 .process__title {
    font-size: clamp(28px, 7vw, 36px);
  }
  .home-v3 .process__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .home-v3 .story {
    padding: var(--sp-6) var(--home-gutter);
  }
  .home-v3 .story__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .home-v3 .story__portrait {
    max-width: 280px;
    margin: 0 auto;
  }
  .home-v3 .story__title {
    font-size: clamp(28px, 7vw, 36px);
  }
  .home-v3 .story__p {
    font-size: 16px;
  }

  .home-v3 .close {
    padding: var(--sp-7) var(--home-gutter);
  }
  .home-v3 .close__title {
    font-size: clamp(36px, 9vw, 56px);
  }
}


/* ============================================================
   PHASE 3 — COMPONENT REBUILD
   Global component rules using Phase 1 tokens.
   Appended to win cascade vs. pre-Phase-1 component rules at
   equal specificity. Phase 5 will dedupe the legacy rules.
   ============================================================ */

/* ====== 1. BUTTONS ====== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--coral);
  color: var(--paper);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 0;
  box-shadow: var(--shadow-coral);
  transition: background var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  cursor: pointer;
  text-align: center;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--coral-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-coral-lg);
  outline: 0;
}
.btn-primary--large {
  padding: 18px 36px;
  font-size: 15px;
}
.btn-primary--on-dark {
  background: var(--paper);
  color: var(--coral-deep);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.btn-primary--on-dark:hover,
.btn-primary--on-dark:focus-visible {
  background: var(--paper-warm);
  color: var(--coral-deep);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
.btn-primary--inverse {
  background: var(--paper);
  color: var(--coral-deep);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.btn-primary--inverse:hover,
.btn-primary--inverse:focus-visible {
  background: var(--paper-warm);
  color: var(--coral-deep);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  color: var(--indigo);
  padding: 14px 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--indigo);
  border-radius: 0;
  background: transparent;
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  color: var(--coral);
  border-bottom-color: var(--coral);
  outline: 0;
}
.btn-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.btn-link:hover,
.btn-link:focus-visible {
  color: var(--coral-deep);
  border-bottom-color: var(--coral);
  outline: 0;
}
.btn-link--on-dark {
  color: rgba(255, 255, 255, 0.92);
}
.btn-link--on-dark:hover,
.btn-link--on-dark:focus-visible {
  color: var(--paper);
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  color: var(--paper);
  padding: 13px 22px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--paper);
  outline: 0;
}

/* ====== 2. EYEBROWS ====== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--ts-eyebrow);
  font-weight: 600;
  letter-spacing: var(--ts-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--sp-2);
}
.eyebrow--sage,
.eyebrow--coral {
  color: var(--coral);
}
.eyebrow--muted {
  color: var(--ink-muted);
}
.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.72);
}

/* ====== 3. PAGE HEROES ====== */
.page-hero {
  padding: calc(var(--sp-7) + var(--sp-3)) var(--gutter-desktop) var(--sp-7);
  background: var(--paper);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--ts-h1);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 var(--sp-3);
  max-width: 22ch;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--coral);
}
.page-hero .lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: var(--ts-body-large);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
}
.page-hero--bleed {
  position: relative;
  padding: 0;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--indigo-deep);
}
.page-hero--bleed .placeholder,
.page-hero--bleed > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-hero--bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 40, 69, 0.4) 0%, rgba(18, 40, 69, 0.85) 100%);
  z-index: 1;
}
.page-hero--bleed > .section-inner {
  position: relative;
  z-index: 2;
  padding: var(--sp-7) var(--gutter-desktop);
  max-width: var(--content-max);
  width: 100%;
}
.page-hero--bleed h1,
.page-hero--bleed h2,
.page-hero--bleed h3 { color: var(--paper); }
.page-hero--bleed h1 em { color: var(--coral); }
.page-hero--bleed p,
.page-hero--bleed .lead { color: rgba(255, 255, 255, 0.92); }
.page-hero--bleed .eyebrow { color: rgba(255, 255, 255, 0.72); }

/* ====== 4.1 PRODUCT CARDS ====== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5) var(--sp-4);
  margin-top: var(--sp-5);
}
.product-grid--3 { grid-template-columns: repeat(3, 1fr); }
.product-grid--2 { grid-template-columns: repeat(2, 1fr); }
.product-grid--4 { grid-template-columns: repeat(4, 1fr); }
.product-card {
  display: block;
  background: transparent;
  color: inherit;
  transition: transform var(--dur-base) var(--ease-out);
}
.product-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--sp-3);
  border-radius: var(--radius-card);
  background: var(--paper-soft);
}
.product-card__media img,
.product-card__media .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-card:hover .product-card__media img,
.product-card:hover .product-card__media .placeholder {
  transform: scale(1.04);
}
.product-card__tag {
  display: inline-block;
  background: var(--coral-pale);
  color: var(--coral-deep);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-2);
}
.product-card__body { padding: 0; }
.product-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.product-card__name em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.product-card__meta,
.product-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 var(--sp-1);
  line-height: 1.55;
  max-width: 32ch;
}
.product-card__price {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ====== 4.2 CATEGORY TILES ====== */
.category-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.category-tile {
  display: block;
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  color: var(--paper);
  border-radius: var(--radius-card);
}
.category-tile__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 60%, var(--coral-deep) 100%);
  transition: transform 0.6s var(--ease-out);
}
.category-tile__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-tile:hover .category-tile__media {
  transform: scale(1.04);
}
.category-tile__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(18, 40, 69, 0.7) 100%);
}
.category-tile__body {
  position: relative;
  z-index: 1;
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
.category-tile__body .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--sp-1);
}
.category-tile__body h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 var(--sp-1);
}
.category-tile__body h3 em {
  font-style: italic;
  color: var(--coral);
}
.category-tile__body p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  max-width: 32ch;
  font-size: 14px;
}

/* ====== 4.3 TRIO CARDS ====== */
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.trio-card {
  background: var(--paper-warm);
  border-radius: var(--radius-card);
  padding: var(--sp-5);
  border: 1px solid var(--rule);
}
.trio-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 var(--sp-2);
  color: var(--ink);
  letter-spacing: -0.005em;
}
.trio-card h3 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.trio-card p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ====== 4.4 RELATED / JOURNAL CARDS ====== */
.related-grid,
.from-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.related-grid--3 { grid-template-columns: repeat(3, 1fr); }
.related-card,
.from-blog-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  padding: var(--sp-4);
  color: inherit;
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.related-card:hover,
.from-blog-card:hover,
.related-card:focus-visible,
.from-blog-card:focus-visible {
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  outline: 0;
}
.related-card .eyebrow,
.from-blog-card .eyebrow {
  color: var(--coral);
  margin-bottom: var(--sp-2);
}
.related-card h3,
.from-blog-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--sp-1);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.related-card p,
.from-blog-card p,
.related-card__sub,
.from-blog-card__sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 var(--sp-2);
  line-height: 1.5;
  max-width: 32ch;
}
.related-card__cta,
.from-blog-card__cta {
  display: inline-block;
  margin-top: var(--sp-2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.02em;
}
.related-card--simple {
  border: 0;
  background: transparent;
  padding: 0;
}
.related-card--simple:hover {
  border: 0;
  transform: none;
  box-shadow: none;
}
.related-card--simple:hover h3 {
  color: var(--coral);
}


/* ====== 5. STEPS + PROCESS ====== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-5);
}
.steps-grid--3 { grid-template-columns: repeat(3, 1fr); }
.steps-grid--4 { grid-template-columns: repeat(4, 1fr); }
.steps-grid--5 { grid-template-columns: repeat(5, 1fr); }
.step {
  text-align: left;
}
.step__numeral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--coral-pale);
  color: var(--coral-deep);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  margin-bottom: var(--sp-2);
  border: 1px solid var(--coral-pale);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 var(--sp-1);
  letter-spacing: -0.005em;
}
.step h3 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.step p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 32ch;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-4);
  position: relative;
  margin-top: var(--sp-5);
}
.process-grid::before {
  display: none;
}
.process-grid .step {
  position: relative;
  z-index: 1;
  background: var(--paper);
  text-align: center;
  padding-top: var(--sp-2);
}
.process-grid .step__numeral {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sp-3);
}
.process-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--indigo);
  color: var(--paper);
  border-radius: var(--radius-card);
}
.process-cta h3 {
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  margin: 0;
}
.process-cta p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.process-cta .btn-primary {
  background: var(--paper);
  color: var(--coral-deep);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.process-cta .btn-primary:hover {
  background: var(--paper-warm);
  transform: translateY(-2px);
}

/* ====== 6. FAQ ACCORDION + JUMP ====== */
.faq__item {
  display: block;
  border-bottom: 1px solid var(--rule);
  padding: var(--sp-3) 0;
  margin: 0;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
  padding: var(--sp-2) 0;
  transition: color var(--dur-base) var(--ease-out);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::marker { content: ""; }
.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--coral-pale);
  color: var(--coral-deep);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  transition: transform var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.faq__item[open] summary::after {
  content: "−";
  background: var(--coral);
  color: var(--paper);
  transform: rotate(0deg);
}
.faq__item summary:hover {
  color: var(--coral);
}
.faq__item p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: var(--sp-2) 0 var(--sp-3);
  max-width: 64ch;
}
.faq-jump {
  display: none;
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: var(--nav-h);
  z-index: 10;
}
.faq-jump__list {
  list-style: none;
  margin: 0 auto;
  padding: var(--sp-2) var(--gutter-desktop);
  /* Two-row treatment for 11 anchors. Cap width so wrap lands cleanly at ~6/row on wide screens, ~5/row on narrower, never a ragged tail. */
  max-width: 920px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px var(--sp-3);
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
}
.faq-jump__list li {
  /* Even visual rhythm across the two rows by giving each item a consistent baseline cell. */
  flex: 0 0 auto;
}
.faq-jump__list a {
  display: inline-block;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding: 4px 0;
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.faq-jump__list a:hover,
.faq-jump__list a:focus-visible {
  color: var(--coral);
  border-bottom-color: var(--coral);
  outline: 0;
}
@media (min-width: 900px) {
  .faq-jump { display: block; }
}
/* On the narrowest desktop band, drop one more notch of horizontal gap so the second row stays balanced. */
@media (min-width: 900px) and (max-width: 1099px) {
  .faq-jump__list { gap: 6px var(--sp-2); max-width: 780px; }
}

/* ====== 7. EDITORIAL / FOUNDER / PULL QUOTE ====== */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.editorial--narrow { grid-template-columns: 380px 1fr; }
.editorial--narrow-right { grid-template-columns: 1fr 380px; }
.editorial__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--paper-soft);
}
.editorial__image.ratio-1x1 { aspect-ratio: 1 / 1; }
.editorial__image.ratio-4x5 { aspect-ratio: 4 / 5; }
.editorial__image.ratio-3x2 { aspect-ratio: 3 / 2; }
.editorial h2 em,
.editorial h3 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.founder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-6);
  align-items: center;
}
.founder--reverse { grid-template-columns: 1fr 380px; }
.founder__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: linear-gradient(140deg, var(--indigo-pale), var(--coral-pale));
}
.founder__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder h2 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 36ch;
  margin: var(--sp-5) auto;
  padding: 0 var(--sp-3);
  text-align: center;
}
.pull-quote::before { content: "\201C"; color: var(--coral); }
.pull-quote::after { content: "\201D"; color: var(--coral); }
.pull-quote__attr {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--ts-eyebrow);
  letter-spacing: var(--ts-eyebrow-tracking);
  text-transform: uppercase;
  color: var(--coral);
  margin-top: var(--sp-3);
}
.story-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--coral);
  margin-top: var(--sp-3);
}

/* ====== 8. FORMS + CONTACT ====== */
.contact-hero-dark {
  background: var(--indigo);
  color: var(--paper);
  padding: var(--sp-7) var(--gutter-desktop);
  position: relative;
  overflow: hidden;
}
.contact-hero-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(215, 80, 106, 0.18), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 161, 74, 0.12), transparent 55%);
  pointer-events: none;
}
.contact-hero-dark__inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max-narrow);
  margin: 0 auto;
  text-align: center;
}
.contact-hero-dark h1 {
  font-family: var(--font-display);
  font-size: var(--ts-h1);
  font-weight: 400;
  color: var(--paper);
  margin: 0 0 var(--sp-2);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.contact-hero-dark h1 em {
  font-style: italic;
  color: var(--coral);
}
.contact-hero-dark__sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--ts-body-large);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 48ch;
}
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: var(--sp-6) var(--gutter-desktop);
}
.inquiry-form,
.inquiry-form--warm {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.field__hint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin-bottom: 4px;
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--paper);
  color: var(--ink);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 0;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-pale);
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
}
.form-fineprint {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: var(--sp-2);
  line-height: 1.5;
}
.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  max-width: var(--content-max);
  margin: 0 auto;
}
.contact-trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--sp-4);
  border: 1px solid var(--rule);
  border-radius: var(--radius-card);
  background: var(--paper);
  color: inherit;
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.contact-trust:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
}
.contact-trust__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--coral-pale);
  color: var(--coral-deep);
  font-size: 20px;
  margin-bottom: var(--sp-2);
}
.contact-trust strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-trust span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
}
.contact-map {
  max-width: var(--content-max);
  margin: 0 auto;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-strip {
  display: flex;
  gap: var(--sp-4);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--paper);
  flex-wrap: wrap;
}
.contact-strip a {
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 1px;
}
.contact-strip a:hover {
  border-bottom-color: var(--coral);
  color: var(--coral);
}

/* ====== 9. SITE NAV ====== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  transition: background var(--dur-base) var(--ease-out);
}
.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--rule);
}
.site-nav__inner {
  max-width: var(--content-max-wide);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter-desktop);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--sp-3);
}
.site-nav__brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.site-nav__brand img {
  height: 36px;
  width: auto;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  list-style: none;
  margin: 0;
  padding: 0;
  justify-self: center;
}
.site-nav__links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: var(--sp-1) 0;
  transition: color var(--dur-base) var(--ease-out);
}
.site-nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--dur-base) var(--ease-out);
}
.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  color: var(--coral);
}
.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after,
.site-nav__links a[aria-current="page"]::after {
  width: 100%;
}
.site-nav__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-3);
}
.site-nav__cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.site-nav__actions .btn-primary {
  padding: 10px 22px;
  font-size: 13px;
}
.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 70;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.site-nav__toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: background var(--dur-fast) var(--ease-out);
}
.site-nav__toggle span::before,
.site-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur-base) var(--ease-out);
}
.site-nav__toggle span::before { top: -7px; }
.site-nav__toggle span::after  { top: 7px; }

/* ====== 10. SITE FOOTER ====== */
.site-footer {
  background: var(--indigo-deep);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--sp-7) var(--gutter-desktop) var(--sp-5);
  font-family: var(--font-body);
  font-size: 14px;
}
.site-footer__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-5);
}
.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 500;
}
.site-footer__brand a { color: var(--paper); }
.site-footer__brand img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.site-footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--sp-2);
  max-width: 36ch;
  font-family: var(--font-body);
}
.site-footer__social {
  list-style: none;
  margin: var(--sp-3) 0 0;
  padding: 0;
  display: flex;
  gap: var(--sp-3);
}
/* Brand-column social row stays inline horizontal (overrides the scoped .site-footer__grid ul column rule) */
.site-footer__brand .site-footer__social {
  flex-direction: row;
  align-items: center;
  gap: var(--sp-3);
}
.site-footer__social a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.site-footer__social a:hover {
  color: var(--coral);
  border-bottom-color: var(--coral);
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--sp-3);
}
.site-footer__grid ul,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--dur-base) var(--ease-out);
}
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--coral); }
.site-footer__contact li { color: rgba(255, 255, 255, 0.7); }
/* ====== FOOTER DISCOVERY ROW (Phase 3.1 — prominent layout) ====== */
.site-footer__discover {
  max-width: var(--content-max);
  margin: var(--sp-6) auto 0;
  padding: var(--sp-5) 0 var(--sp-2);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-5);
  align-items: start;
}

.site-footer__discover-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.4;
  margin: 0;
}

.site-footer__discover-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-3) var(--sp-4);
}

.site-footer__discover-list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__discover-list li + li::before {
  content: none;
}

.site-footer__discover-list a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
  transition: color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}

.site-footer__discover-list a:hover,
.site-footer__discover-list a:focus-visible {
  color: var(--coral);
  border-bottom-color: var(--coral);
  outline: 0;
}

@media (max-width: 768px) {
  .site-footer__discover {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    padding: var(--sp-4) 0 var(--sp-2);
    margin-top: var(--sp-5);
  }
  .site-footer__discover-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--sp-2) var(--sp-3);
  }
}

@media (max-width: 480px) {
  .site-footer__discover-list {
    grid-template-columns: 1fr;
  }
}
.site-footer__copy {
  max-width: var(--content-max);
  margin: var(--sp-5) auto 0;
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.footer-view-all {
  font-weight: 600;
  color: var(--coral);
}

/* ====== 11. SECTION BACKGROUNDS + PLACEHOLDERS ====== */
.section { padding: var(--sp-7) var(--gutter-desktop); }
.section--tight { padding: var(--sp-5) var(--gutter-desktop); }
.section--xl    { padding: var(--sp-8) var(--gutter-desktop); }
.section--cream      { background: var(--paper); }
.section--cream-soft { background: var(--paper-warm); }
.section--beige      { background: var(--paper-soft); }
.section--sage       { background: var(--coral); color: var(--paper); }
.section--charcoal   { background: var(--indigo); color: var(--paper); }
.section--sage h1,
.section--sage h2,
.section--sage h3,
.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3 { color: var(--paper); }
.section--sage h2 em,
.section--charcoal h2 em { color: var(--paper); font-style: italic; }
.section--sage p,
.section--sage .lead,
.section--charcoal p,
.section--charcoal .lead { color: rgba(255, 255, 255, 0.88); }
.section--sage .eyebrow,
.section--charcoal .eyebrow { color: rgba(255, 255, 255, 0.72); }
.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.section-inner--narrow { max-width: var(--content-max-narrow); }
.section-inner--wide   { max-width: var(--content-max-wide); }
.placeholder {
  background: linear-gradient(135deg, var(--coral-pale), var(--indigo-pale));
}
.placeholder--cream { background: linear-gradient(135deg, var(--paper-soft), var(--coral-pale)); }
.placeholder--warm  { background: linear-gradient(135deg, var(--coral-pale), var(--paper-warm)); }
.placeholder--ink   { background: linear-gradient(135deg, var(--indigo), var(--indigo-deep)); }
.placeholder__label {
  position: absolute;
  inset: auto 0 var(--sp-3) 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(26, 26, 23, 0.32);
}
.section--sage .placeholder__label,
.section--charcoal .placeholder__label {
  color: rgba(255, 255, 255, 0.5);
}

/* ====== 12. BREADCRUMB + ANNOUNCEMENT ====== */
.breadcrumb {
  max-width: var(--content-max);
  margin: var(--sp-3) auto 0;
  padding: var(--sp-3) var(--gutter-desktop) 0;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: var(--ink-soft);
  transition: color var(--dur-base) var(--ease-out);
}
.breadcrumb a:hover,
.breadcrumb a:focus-visible { color: var(--coral); }
.breadcrumb__sep {
  display: inline-block;
  margin: 0 var(--sp-1);
  color: var(--ink-muted);
  opacity: 0.5;
}
.announcement {
  position: relative;
  background: linear-gradient(90deg, var(--coral), var(--indigo) 50%, var(--gold), var(--coral));
  background-size: 300% 100%;
  animation: announce-shift 18s linear infinite;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  min-height: var(--announcement-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-1) var(--sp-5);
}
@keyframes announce-shift {
  from { background-position: 0% 50%; }
  to   { background-position: 100% 50%; }
}
.announcement strong { font-weight: 700; }
.announcement a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 1px;
  margin-left: var(--sp-1);
}
.announcement[hidden] { display: none; }
.announcement__close {
  position: absolute;
  right: var(--sp-2);
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: var(--paper);
  opacity: 0.7;
  cursor: pointer;
  transition: opacity var(--dur-fast) var(--ease-out);
  font-size: 16px;
}
.announcement__close:hover,
.announcement__close:focus-visible {
  opacity: 1;
  outline: 0;
}


/* ============================================================
   PHASE 3.1 — MOBILE OVERRIDE BLOCK
   Re-applies mobile @media rules at end-of-file so Phase 3's
   appended component rules don't cascade-override them.
   ============================================================ */

@media (max-width: 768px) {
  /* ─── Nav: collapse desktop links, show hamburger ─── */
  .site-nav__inner {
    padding: 0 var(--gutter-mobile);
    grid-template-columns: auto 1fr auto;
  }
  .site-nav__brand {
    justify-self: center;
    grid-column: 2;
  }
  .site-nav__brand img { height: 30px; }
  .site-nav__links,
  .site-nav__cta { display: none !important; }
  .site-nav__toggle {
    display: inline-flex !important;
    grid-column: 1;
    justify-self: start;
  }
  .site-nav__actions { grid-column: 3; }
  .site-nav__actions .btn-primary,
  .site-nav__actions .btn-secondary {
    display: none;
  }

  /* ─── Hero (legacy non-home-v3) ─── */
  .hero { min-height: auto; }
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__image { aspect-ratio: 4 / 5; min-height: 60vh; }
  .hero__copy { padding: var(--sp-5) var(--gutter-mobile); }

  /* ─── Page hero bleed ─── */
  .page-hero--bleed { min-height: 320px; }
  .page-hero--bleed > .section-inner {
    padding: var(--sp-5) var(--gutter-mobile);
  }

  /* ─── Grids that should collapse to 1 column ─── */
  .steps-grid,
  .category-duo,
  .related-grid,
  .most-read-grid,
  .from-blog-grid,
  .trio-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3) var(--sp-2);
  }
  .product-grid--2 { grid-template-columns: 1fr; }

  /* ─── Editorial + founder split → single column ─── */
  .editorial,
  .editorial--narrow,
  .editorial--narrow-right,
  .founder,
  .founder--reverse {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  /* ─── Form rows ─── */
  .field--row { grid-template-columns: 1fr; }

  /* ─── Section padding ─── */
  .section { padding: var(--sp-5) var(--gutter-mobile); }
  .section--xl { padding: var(--sp-6) var(--gutter-mobile); }

  /* ─── Body padding for mobile bar ─── */
  body { padding-bottom: var(--mobile-bar-h); }

  /* ─── Mobile bar + back to top ─── */
  .mobile-bar { display: grid; }
  .back-to-top {
    bottom: calc(var(--mobile-bar-h) + var(--sp-2));
    right: var(--sp-3);
  }

  /* ─── Footer mobile ─── */
  .site-footer {
    padding: var(--sp-6) var(--gutter-mobile) calc(var(--sp-4) + var(--mobile-bar-h));
  }
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
  }
  .site-footer__brand {
    grid-column: 1 / -1;
  }
  .site-footer__copy {
    flex-direction: column;
    gap: var(--sp-1);
    text-align: left;
  }

  /* ─── Breadcrumb ─── */
  .breadcrumb {
    padding: var(--sp-2) var(--gutter-mobile) 0;
  }
}

@media (max-width: 480px) {
  /* Single-column product grid on very small screens */
  .product-grid {
    grid-template-columns: 1fr;
  }
  /* Single-column footer */
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}
