:root {
  --yellow: #ffd45c;
  --yellow-bright: #ffda63;
  --ink: #211815;
  --ink-soft: #4d4542;
  --paper: #ffffff;
  --mist: #f5f3ef;
  --line: rgba(33, 24, 21, .16);
  --green: #155b43;
  --display: "Gowun Dodum", "Noto Sans KR", sans-serif;
  --max: 1240px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  word-break: keep-all;
  overflow-wrap: break-word;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -.018em;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, li, summary, blockquote, figcaption {
  word-break: keep-all;
  overflow-wrap: break-word;
}
h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 16px;
  padding: 10px 16px;
  background: #fff;
  border: 2px solid #111;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: 86px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(33, 24, 21, .08);
  backdrop-filter: blur(18px);
  transition: height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  height: 72px;
  box-shadow: 0 12px 34px rgba(33, 24, 21, .08);
}
.brand { width: 164px; height: 74px; display: flex; align-items: center; overflow: visible; }
.brand img { width: 152px; height: auto; object-fit: contain; }
.desktop-nav { justify-self: center; display: flex; gap: 34px; font-size: .9rem; font-weight: 700; letter-spacing: -.02em; }
.desktop-nav a { position: relative; padding: 10px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--ink);
  transition: right .2s ease;
}
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-call { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: var(--ink); color: white; font-size: .78rem; }
.header-call strong { font-size: 1rem; letter-spacing: .02em; }

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding-top: 86px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f2a51b;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center right; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,235,174,.98) 0%, rgba(255,235,174,.91) 29%, rgba(255,220,120,.40) 48%, rgba(255,205,75,0) 65%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 54px 0 30px;
}
.eyebrow, .section-kicker {
  margin: 0 0 18px;
  font-size: .72rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .17em;
}
.hero .eyebrow { color: var(--green); }
.hero h1 {
  margin: 0;
  max-width: 740px;
  font-size: clamp(3rem, 4.8vw, 4.4rem);
  line-height: 1.08;
  font-family: var(--display);
  letter-spacing: -.048em;
  font-weight: 400;
}
.hero h1 span { position: relative; z-index: 0; display: block; width: fit-content; }
.hero h1 span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.03em;
  right: -.04em;
  bottom: .02em;
  height: .28em;
  background: rgba(255,255,255,.7);
}
.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: #3d2d1e;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.72;
  font-weight: 570;
  letter-spacing: -.02em;
}
.hero-ingredient {
  width: fit-content;
  margin: 22px 0 0;
  padding: 10px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #27462f;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(39,70,47,.22);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  line-height: 1.2;
}
.hero-ingredient strong { font-weight: 900; }
.hero-ingredient span { padding-left: 11px; border-left: 1px solid rgba(39,70,47,.2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  letter-spacing: -.02em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-dark:hover { background: #000; }
.button-ghost { background: rgba(255,255,255,.68); backdrop-filter: blur(10px); }
.button-ghost:hover { background: var(--yellow); }
.hero-note { margin: 18px 0 0; font-size: .82rem; font-weight: 750; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  writing-mode: vertical-rl;
}
.scroll-cue i { display: block; width: 1px; height: 54px; background: var(--ink); }

.section { padding: 140px 28px; }
.section-inner { width: min(var(--max), 100%); margin: 0 auto; }
.section-heading { margin-bottom: 60px; }
.section-heading h2, .challenge h2, .making h2, .store-intro h2, .faq h2, .inquiry h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  line-height: 1.14;
  letter-spacing: -.052em;
  font-weight: 900;
}
.section-heading h2,
.challenge h2,
.real-fruit-copy h2,
.making h2,
.store-intro h2,
.faq h2,
.inquiry h2,
.agave-copy h2,
.interior-stack blockquote {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.045em;
}
.split-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, .6fr); gap: 80px; align-items: end; }
.split-heading > p, .split-heading > .interior-summary { margin: 0 0 8px; max-width: 520px; color: var(--ink-soft); font-size: 1.05rem; letter-spacing: -.025em; }
.interior-summary p { margin: 0; }
.interior-summary ul { list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.interior-summary li { position: relative; padding-left: 14px; color: var(--ink); font-size: .83rem; font-weight: 750; }
.interior-summary li::before { content: ""; position: absolute; left: 0; top: .75em; width: 6px; height: 2px; background: var(--ink); }
.centered { text-align: center; }
.centered > p:last-child { max-width: 650px; margin: 20px auto 0; color: var(--ink-soft); font-size: 1.05rem; }

.challenge { background: var(--ink); color: white; }
.challenge-inner { text-align: center; }
.challenge .section-kicker { color: var(--yellow); }
.challenge h2 em { color: var(--yellow); font-style: normal; }
.challenge .lead { max-width: 760px; margin: 34px auto 70px; color: rgba(255,255,255,.72); font-size: 1.12rem; letter-spacing: -.018em; }
.challenge-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.challenge-grid article { padding: 44px 36px 48px; text-align: left; }
.challenge-grid article + article { border-left: 1px solid rgba(255,255,255,.22); }
.challenge-grid span { color: var(--yellow); font-size: .72rem; font-weight: 900; letter-spacing: .15em; }
.challenge-grid h3 { margin: 20px 0 12px; font-size: 1.42rem; letter-spacing: -.04em; }
.challenge-grid p { margin: 0; color: rgba(255,255,255,.67); }

.real-fruit { position: relative; overflow: hidden; background: #f3f0ea; }
.real-fruit::before {
  content: "YELLOW FARM";
  position: absolute;
  left: -18px;
  bottom: -62px;
  color: rgba(33,24,21,.035);
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: .8;
  font-weight: 950;
  letter-spacing: -.09em;
  white-space: nowrap;
  pointer-events: none;
}
.real-fruit-inner { position: relative; display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(45px, 6vw, 90px); align-items: center; }
.real-fruit-copy h2 { margin: 0; font-size: clamp(2.65rem, 4.6vw, 4.9rem); line-height: 1.14; letter-spacing: -.052em; font-weight: 400; }
.real-fruit-copy h2 em { color: #df4f27; font-style: normal; }
.real-fruit-copy > p:last-child { max-width: 470px; margin: 30px 0 0; color: var(--ink-soft); font-size: 1.03rem; letter-spacing: -.018em; }
.poster-rail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 11px; align-items: center; transform: rotate(1deg); }
.poster-card { position: relative; margin: 0; overflow: hidden; background: white; box-shadow: 0 18px 40px rgba(33,24,21,.12); }
.poster-card::after { content: ""; position: absolute; inset: 0; border: 8px solid rgba(255,255,255,.42); pointer-events: none; }
.poster-card img { width: 100%; aspect-ratio: 1277 / 1790; object-fit: cover; }
.poster-card-one { transform: translateY(36px) rotate(-2deg); }
.poster-card-two { z-index: 2; transform: translateY(-12px) rotate(1deg); }
.poster-card-three { transform: translateY(28px) rotate(2.4deg); }
.poster-card-four { transform: translateY(-3px) rotate(-1.2deg); }

.agave-story { background: #fff; }
.agave-inner { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(50px, 7vw, 110px); align-items: center; }
.agave-poster {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f4f4f0;
  box-shadow: 22px 22px 0 var(--yellow);
}
.agave-poster::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(33,24,21,.12); pointer-events: none; }
.agave-poster img { width: 100%; height: auto; }
.agave-copy .section-kicker { color: var(--green); }
.agave-copy h2 { margin: 0; font-size: clamp(2.7rem, 4.8vw, 5rem); line-height: 1.14; }
.agave-lead { max-width: 470px; margin: 28px 0 0; color: var(--ink-soft); font-size: 1.05rem; }
.agave-points { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid var(--line); }
.agave-points li { display: grid; grid-template-columns: 132px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.agave-points strong { font-size: .9rem; }
.agave-points span { color: var(--ink-soft); font-size: .9rem; }
.agave-note { margin: 18px 0 0; color: #817a77; font-size: .74rem; }

.world { background: #fff; }
.world-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.world-card { position: relative; min-height: 350px; margin: 0; overflow: hidden; background: #ddd; }
.world-card-large { grid-row: 1 / 3; min-height: 714px; }
.world-card:last-child { grid-column: 2 / 4; }
.world-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.world-card:hover img { transform: scale(1.035); }
.world-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.70));
}
.world-card figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  color: white;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: end;
}
.world-card figcaption span { grid-row: 1 / 3; color: var(--yellow); font-size: .72rem; font-weight: 900; align-self: center; }
.world-card figcaption strong { font-size: 1.42rem; line-height: 1.1; letter-spacing: -.04em; }
.world-card figcaption small { font-size: .78rem; opacity: .76; }

.making { background: var(--yellow); overflow: hidden; }
.making-inner { display: grid; grid-template-columns: .9fr minmax(300px, .68fr) .42fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.making-copy > p:not(.section-kicker) { max-width: 540px; margin: 28px 0; font-size: 1.05rem; letter-spacing: -.018em; }
.check-list { list-style: none; margin: 34px 0 0; padding: 0; border-top: 1px solid rgba(33,24,21,.4); }
.check-list li { display: grid; grid-template-columns: 125px 1fr; gap: 15px; padding: 17px 0; border-bottom: 1px solid rgba(33,24,21,.25); }
.check-list b { font-size: .94rem; }
.check-list span { color: rgba(33,24,21,.7); font-size: .9rem; }
.video-shell {
  position: relative;
  width: min(100%, 390px);
  justify-self: center;
  padding: 9px;
  background: var(--ink);
  box-shadow: 20px 24px 0 rgba(255,255,255,.55);
}
.video-shell video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; background: #111; }
.video-label {
  position: absolute;
  left: -50px;
  bottom: 80px;
  padding: 9px 14px;
  color: white;
  background: var(--ink);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .12em;
  transform: rotate(-90deg);
}
.making-accent { align-self: end; margin-bottom: -200px; }
.making-accent img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 8px solid white; }
.making-accent p { margin: 18px 0 0; line-height: 1.5; font-size: .95rem; }
.making-accent strong { display: block; font-size: 1.1rem; }

.interior { background: #f4f3f0; }
.interior-gallery { display: grid; grid-template-columns: 1fr .78fr; grid-template-rows: auto auto; gap: 18px; }
.interior-gallery figure { position: relative; margin: 0; overflow: hidden; background: #ddd; }
.interior-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.interior-gallery figure:hover img { transform: scale(1.025); }
.interior-tall { grid-row: 1 / 3; min-height: 790px; }
.interior-stack { display: grid; grid-template-columns: 1fr .72fr; gap: 18px; }
.interior-stack figure { min-height: 380px; }
.interior-gallery figcaption {
  position: absolute;
  left: 18px;
  bottom: 17px;
  padding: 7px 9px;
  color: white;
  background: rgba(0,0,0,.7);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.interior-stack blockquote {
  margin: 0;
  padding: 30px 24px;
  display: flex;
  align-items: flex-end;
  color: var(--ink);
  background: var(--yellow);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1.34;
  letter-spacing: -.045em;
  font-weight: 400;
}
.interior-wide { min-height: 390px; }

.stores { background: var(--ink); color: white; }
.stores-inner { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.store-intro { position: sticky; top: 120px; }
.store-intro .section-kicker { color: var(--yellow); }
.store-intro > p:not(.section-kicker) { max-width: 420px; margin: 24px 0 0; color: rgba(255,255,255,.62); }
.store-counts { display: flex; gap: 38px; margin-top: 48px; }
.store-counts div { display: flex; align-items: end; gap: 9px; }
.store-counts strong { color: var(--yellow); font-size: 3.6rem; line-height: .9; letter-spacing: -.06em; }
.store-counts span { color: rgba(255,255,255,.68); font-size: .82rem; font-weight: 700; }
.store-lists { border-top: 1px solid rgba(255,255,255,.24); }
.store-list { padding: 36px 0 42px; border-bottom: 1px solid rgba(255,255,255,.24); }
.store-list h3 { margin: 0 0 30px; color: white; font-size: 1.15rem; }
.store-list h3 span { display: inline-block; min-width: 100px; color: var(--yellow); font-size: .68rem; letter-spacing: .13em; }
.store-list ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 28px; }
.store-list li { font-size: 1.2rem; font-weight: 750; letter-spacing: -.035em; }
.store-list.direct ul { grid-template-columns: repeat(3, 1fr); }

.cost { background: #fff; }
.cost-table { width: 100%; border-collapse: collapse; table-layout: fixed; border-bottom: 2px solid var(--ink); }
.cost-table caption { text-align: left; margin-bottom: 16px; font-size: 1.05rem; font-weight: 800; }
.cost-item-col { width: 19%; }
.cost-price-col { width: 23%; }
.cost-table th, .cost-table td { padding: 22px 26px; border-bottom: 1px solid var(--line); text-align: left; overflow-wrap: anywhere; }
.cost-table thead { color: white; background: var(--ink); font-size: .875rem; }
.cost-table tbody th { font-size: 1rem; font-weight: 800; }
.cost-table td { font-size: 1rem; color: var(--ink-soft); }
.cost-table .cost-price { text-align: right; color: var(--ink); }
.cost-price strong { display: block; font-size: 1.15rem; line-height: 1.5; }
.cost-price del { display: block; color: var(--ink-soft); font-size: .875rem; }
.cost-table .cost-promotion { background: var(--yellow); }
.cost-table .cost-variable-start > * { border-top: 2px solid var(--ink); }
.cost-tax-note { margin: 16px 0 0; color: #625a56; font-size: .8125rem; line-height: 1.7; }
.cost-notes { margin: 12px 0 0; padding-left: 18px; color: #625a56; font-size: .875rem; line-height: 1.8; }
.cost-notes li + li { margin-top: 5px; }
.mobile-cost, .mobile-process { display: none; }

.process { background: var(--mist); }
.process-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); border-left: 1px solid var(--line); }
.process-list li { min-height: 150px; padding: 23px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-list span { display: block; margin-bottom: 33px; color: #9d928d; font-size: .68rem; font-weight: 900; letter-spacing: .15em; }
.process-list strong { font-size: 1.04rem; letter-spacing: -.03em; }
.process-list.mobile-process { display: none; }

.support { background: white; }
.support .section-kicker { color: var(--green); }
.support-list { list-style: none; padding: 0; margin: 0; border-top: 2px solid var(--ink); }
.support-list li { display: grid; grid-template-columns: 48px minmax(0, 1fr) minmax(0, 1.4fr); gap: 28px; align-items: start; padding: 30px 24px; border-bottom: 1px solid var(--line); }
.support-number { color: var(--green); font-size: .875rem; font-weight: 850; letter-spacing: .06em; padding-top: 4px; }
.support-stage > span { display: block; margin-bottom: 7px; color: var(--green); font-size: .875rem; font-weight: 700; }
.support-stage h3 { margin: 0; font-size: 1.45rem; line-height: 1.4; letter-spacing: -.03em; }
.support-list p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
.support-list .support-opening { background: var(--yellow); }
.support-note { margin: 25px 0 0; padding-left: 18px; border-left: 3px solid var(--green); font-size: 1rem; color: var(--ink-soft); }

.faq { background: white; }
.faq-inner { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(60px, 9vw, 150px); }
.accordion { border-top: 2px solid var(--ink); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; display: flex; justify-content: space-between; gap: 30px; padding: 26px 0; cursor: pointer; font-size: 1.04rem; font-weight: 800; letter-spacing: -.025em; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: #9d928d; font-size: 1.5rem; line-height: 1; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -4px 42px 26px 0; color: var(--ink-soft); }

.inquiry { position: relative; padding-top: 130px; padding-bottom: 130px; overflow: hidden; background: var(--yellow); }
.inquiry-backdrop { position: absolute; inset: 0 52% 0 0; overflow: hidden; }
.inquiry-backdrop img { width: 100%; height: 100%; object-fit: cover; opacity: .18; mix-blend-mode: multiply; }
.inquiry-inner { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 8vw, 130px); align-items: start; }
.inquiry-copy > p:not(.section-kicker) { max-width: 450px; margin: 28px 0; }
.big-call { display: inline-flex; flex-direction: column; margin-top: 22px; }
.big-call span { font-size: .75rem; font-weight: 800; }
.big-call strong { font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.1; letter-spacing: -.04em; }
.email-link { display: block; width: fit-content; margin-top: 12px; border-bottom: 1px solid var(--ink); font-size: .92rem; }
.inquiry-form { padding: clamp(26px, 4vw, 52px); background: white; box-shadow: 18px 18px 0 rgba(33,24,21,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: grid; gap: 8px; margin-bottom: 17px; font-size: .78rem; font-weight: 850; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8f7f4;
  border: 1px solid transparent;
  border-bottom-color: rgba(33,24,21,.35);
  border-radius: 0;
  outline: none;
  font-size: .94rem;
  font-weight: 500;
}
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--ink); background: white; }
.inquiry-form .consent { grid-template-columns: auto 1fr; gap: 10px; align-items: start; margin: 8px 0 21px; color: #766e6a; font-size: .72rem; line-height: 1.55; font-weight: 500; }
.consent input { width: 18px; min-height: 18px; margin: 2px 0 0; accent-color: var(--ink); }
.consent strong { color: var(--ink); }
.form-honeypot { display: none !important; }
.form-submit { width: 100%; border: 0; }
.form-submit:disabled { cursor: wait; opacity: .68; transform: none; }
.form-help { margin: 12px 0 0; color: #817a77; text-align: center; font-size: .7rem; }
.form-help.is-success { color: #19733b; font-weight: 750; }
.form-help.is-error { color: #ba2d20; font-weight: 750; }
.consent a { text-decoration: underline; text-underline-offset: 3px; }

/* Privacy policy */
.privacy-page { background: #f5f3ef; }
.privacy-header { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 max(28px, calc((100vw - var(--max)) / 2)); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(33,24,21,.1); }
.privacy-header .brand { height: 76px; }
.privacy-back { padding: 10px 14px; border: 1px solid var(--ink); font-size: .82rem; font-weight: 800; }
.privacy-main { width: min(1120px, calc(100% - 56px)); margin: 0 auto; padding: 92px 0 110px; }
.privacy-intro { max-width: 760px; }
.privacy-intro .section-kicker { color: var(--green); }
.privacy-intro h1 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 5.3rem); line-height: 1.05; letter-spacing: -.06em; }
.privacy-intro > p:not(.section-kicker):not(.privacy-date) { margin: 26px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.privacy-date { margin: 24px 0 0; color: #766e6a; font-size: .82rem; font-weight: 700; }
.privacy-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 72px; align-items: start; margin-top: 70px; }
.privacy-summary { position: sticky; top: 24px; padding: 25px; background: var(--yellow); color: var(--ink); }
.privacy-summary p { margin: 0; font-size: 1rem; font-weight: 850; line-height: 1.5; }
.privacy-summary ul { margin: 18px 0 0; padding: 0; list-style: none; font-size: .79rem; font-weight: 700; }
.privacy-summary li { padding: 10px 0; border-top: 1px solid rgba(33,24,21,.22); }
.privacy-content { padding: clamp(28px, 5vw, 62px); background: white; box-shadow: 15px 15px 0 rgba(33,24,21,.1); }
.privacy-content section + section { margin-top: 50px; padding-top: 50px; border-top: 1px solid var(--line); }
.privacy-content h2 { margin: 0 0 17px; font-size: clamp(1.25rem, 2.2vw, 1.7rem); letter-spacing: -.045em; }
.privacy-content p, .privacy-content li { color: var(--ink-soft); }
.privacy-content p { margin: 0; }
.privacy-content ul { margin: 0; padding-left: 1.1em; }
.privacy-content a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.privacy-table-wrap { overflow-x: auto; margin-top: 18px; }
.privacy-content table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .86rem; }
.privacy-content th, .privacy-content td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.privacy-content th { background: #f5f3ef; color: var(--ink); font-weight: 850; }
.privacy-contact { display: grid; gap: 8px; padding: 20px; background: #f5f3ef; }
.privacy-contact p { font-size: .92rem; }
.privacy-contact strong { display: inline-block; min-width: 68px; color: var(--ink); }
.privacy-footer { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; padding: 30px 28px; background: var(--ink); color: rgba(255,255,255,.78); font-size: .78rem; }
.privacy-footer a { color: white; font-weight: 700; }

footer { padding: 50px 28px 90px; color: white; background: var(--ink); }
.footer-inner { width: min(var(--max), 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr minmax(390px, auto); gap: 22px 50px; align-items: center; }
.footer-brand { width: 170px; height: auto; overflow: visible; opacity: 1; }
.footer-brand img { width: 170px; height: auto; }
.footer-info { text-align: right; color: rgba(255,255,255,.68); }
.footer-info p { margin: 2px 0; font-size: .78rem; }
.footer-info p span { margin-left: 12px; }
.footer-info .footer-company { margin-bottom: 7px; color: white; font-size: .9rem; font-weight: 850; }
.footer-info .footer-contact { margin-top: 10px; color: white; }
.footer-info a { color: var(--yellow); font-weight: 800; }
.copyright { grid-column: 1 / -1; margin: 16px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.42); font-size: .64rem; letter-spacing: .09em; }
.mobile-cta { display: none; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .making-inner { grid-template-columns: 1fr .78fr; }
  .making-accent { display: none; }
}

@media (max-width: 780px) {
  .site-header { height: 70px; padding: 0 18px; }
  .site-header.is-scrolled { height: 64px; }
  .brand { width: 122px; height: 58px; }
  .brand img { width: 116px; }
  .header-call { padding: 9px 11px; }
  .header-call span { display: none; }
  .header-call strong { font-size: .85rem; }
  .hero { min-height: auto; padding-top: 70px; display: block; background: #f2a51b; }
  .hero .hero-media { position: relative; inset: auto; display: block; width: 100%; height: min(116vw, 520px); min-height: 390px; }
  .hero .hero-media img { position: static; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hero-shade { display: none; }
  .hero-content { width: 100%; margin: 0; padding: 40px 18px 52px; background: linear-gradient(180deg, #ffe3a0 0%, #fff8e8 100%); }
  .eyebrow { margin-bottom: 12px; }
  .hero h1 { max-width: 650px; font-size: clamp(2.15rem, 9.2vw, 3rem); line-height: 1.12; letter-spacing: -.052em; }
  .hero-copy { max-width: 600px; margin-top: 20px; font-size: .98rem; line-height: 1.7; }
  .hero-ingredient { margin-top: 18px; }
  .hero-actions { margin-top: 24px; }
  .hero-actions .button { flex: 1; min-width: 145px; padding: 0 16px; }
  .hero-note { margin-top: 13px; }
  .scroll-cue { display: none; }
  .section { padding: 92px 18px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .challenge h2, .making h2, .store-intro h2, .faq h2, .inquiry h2 { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .challenge .lead { margin: 25px auto 43px; font-size: 1rem; }
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-grid article { padding: 29px 5px; }
  .challenge-grid article + article { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
  .real-fruit-inner { grid-template-columns: 1fr; gap: 54px; }
  .real-fruit-copy h2 { font-size: clamp(2.35rem, 10.5vw, 3.5rem); }
  .poster-rail { width: calc(100vw - 18px); margin-right: -18px; padding: 20px 18px 42px 0; display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; transform: none; }
  .poster-card { flex: 0 0 min(72vw, 330px); scroll-snap-align: start; transform: none; }
  .poster-card:nth-child(2) { transform: translateY(18px); }
  .poster-card:nth-child(3) { transform: translateY(3px); }
  .poster-card:nth-child(4) { transform: translateY(15px); }
  .agave-inner { grid-template-columns: 1fr; gap: 58px; }
  .agave-poster { box-shadow: 12px 12px 0 var(--yellow); }
  .agave-copy h2 { font-size: clamp(2.35rem, 10.5vw, 3.5rem); }
  .world-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 8px; }
  .world-card, .world-card-large { grid-row: auto; min-height: 285px; }
  .world-card-large { grid-column: 1 / -1; min-height: 430px; }
  .world-card:last-child { grid-column: 1 / -1; min-height: 300px; }
  .world-card figcaption { left: 16px; right: 16px; bottom: 15px; gap: 3px 8px; }
  .world-card figcaption strong { font-size: 1.1rem; }
  .world-card figcaption small { font-size: .68rem; }
  .making-inner { grid-template-columns: 1fr; gap: 50px; }
  .video-shell { width: min(85%, 370px); }
  .interior-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .interior-tall { grid-row: auto; min-height: 510px; }
  .interior-stack { grid-template-columns: 1.15fr .85fr; }
  .interior-stack figure { min-height: 330px; }
  .interior-stack blockquote { padding: 20px 15px; }
  .interior-wide { min-height: 310px; }
  .interior-summary ul { grid-template-columns: 1fr; }
  .stores-inner { grid-template-columns: 1fr; gap: 60px; }
  .store-intro { position: static; }
  .store-list ul, .store-list.direct ul { grid-template-columns: repeat(2, 1fr); }
  .cost { padding-top: 70px; padding-bottom: 70px; }
  .process { padding-top: 70px; padding-bottom: 70px; }
  .desktop-cost, .desktop-process { display: none; }
  .mobile-cost, .mobile-process { display: block; }
  .mobile-cost article { padding: 18px 16px; border-top: 1px solid var(--line); }
  .mobile-cost article:first-child { border-top: 2px solid var(--ink); background: var(--yellow); }
  .mobile-cost span, .mobile-cost strong, .mobile-cost small { display: block; }
  .mobile-cost span { margin-bottom: 8px; color: var(--green); font-size: .76rem; font-weight: 800; }
  .mobile-cost strong { color: var(--ink); font-size: 1rem; line-height: 1.55; letter-spacing: -.02em; }
  .mobile-cost small { margin-top: 7px; color: var(--ink-soft); font-size: .76rem; line-height: 1.55; }
  .mobile-cost > p { margin: 0; padding: 13px 2px 0; color: #625a56; font-size: .76rem; line-height: 1.65; }
  .support-list li { grid-template-columns: 28px minmax(0, 1fr); gap: 10px 14px; padding: 24px 16px; }
  .support-list p { grid-column: 2; }
  .support-stage h3 { font-size: 1.25rem; }
  .process-list.mobile-process { display: grid; grid-template-columns: repeat(2, 1fr); }
  .mobile-process li { min-height: 108px; padding: 15px; }
  .mobile-process span { margin-bottom: 18px; }
  .faq-inner { grid-template-columns: 1fr; gap: 45px; }
  .inquiry { padding-top: 92px; padding-bottom: 92px; }
  .inquiry-backdrop { inset: 0; }
  .inquiry-backdrop img { opacity: .07; }
  .inquiry-inner { grid-template-columns: 1fr; gap: 48px; }
  .inquiry-form { box-shadow: 10px 10px 0 rgba(33,24,21,.12); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-info { text-align: left; }
  .mobile-cta {
    position: fixed;
    z-index: 110;
    left: 0;
    right: 0;
    bottom: 0;
    height: 66px;
    display: grid;
    grid-template-columns: 1.45fr .85fr;
    box-shadow: 0 -8px 24px rgba(0,0,0,.15);
  }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; padding: 0 8px; color: white; background: var(--ink); font-size: .8rem; font-weight: 800; }
  .mobile-cta a strong { margin-left: 6px; }
  .mobile-cta a:last-child { color: var(--ink); background: var(--yellow); font-size: .92rem; }
}

@media (max-width: 480px) {
  .hero .hero-media { height: 118vw; min-height: 380px; max-height: 500px; }
  .hero h1 { font-size: clamp(1.95rem, 9.2vw, 2.5rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .hero-actions .button { min-width: 0; font-size: .85rem; }
  .world-card, .world-card-large, .world-card:last-child { min-height: 270px; }
  .world-card-large { min-height: 360px; }
  .world-card figcaption small { display: none; }
  .interior-stack { grid-template-columns: 1fr; }
  .interior-stack blockquote { min-height: 180px; }
  .store-list ul, .store-list.direct ul { gap: 14px 10px; }
  .store-list li { font-size: 1rem; }
  .mobile-cost article { padding: 15px 13px; }
  .mobile-cost strong { font-size: .94rem; }
  .mobile-cost small, .mobile-cost > p { font-size: .72rem; }
  .mobile-process { grid-template-columns: 1fr 1fr; }
  .mobile-process li { min-height: 100px; padding: 14px 12px; }
  .mobile-process span { margin-bottom: 14px; }
  .mobile-process strong { font-size: .88rem; line-height: 1.38; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .agave-points li { grid-template-columns: 1fr; gap: 6px; }
  .inquiry-form { padding: 24px 18px; }
  .footer-info p span { display: block; margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}


/* Season poster rail, compact agave story, reviewed support/FAQ, and fixed inquiry actions */
.real-fruit { padding-top: 80px; padding-bottom: 80px; }
.real-fruit-inner { grid-template-columns: .64fr 1.36fr; gap: 52px; }
.real-fruit-copy h2 { font-size: clamp(2.6rem, 4vw, 4rem); line-height: 1.26; }
.poster-motion { min-width: 0; max-width: 100%; }
.poster-window { width: 100%; padding: 8px 0 16px; overflow: hidden; }
.poster-track { display: flex; width: max-content; animation: poster-scroll 54s linear infinite; will-change: transform; }
.poster-set { display: flex; flex: none; gap: 18px; padding-right: 18px; }
.poster-card { flex: 0 0 236px; width: 236px; margin: 0; overflow: visible; background: transparent; box-shadow: 0 8px 16px rgba(33,24,21,.08); }
.poster-card::after { display: none; }
.poster-card img { width: 236px; height: 338px; object-fit: contain; background: transparent; }
.poster-set[aria-hidden="true"] { pointer-events: none; }
.poster-controls { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; color: var(--ink-soft); font-size: .8125rem; }
.poster-controls button { min-height: 38px; padding: 7px 12px; color: var(--ink); background: transparent; border: 1px solid #a6a09a; cursor: pointer; font-size: .8125rem; }
.poster-controls button:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.poster-motion.is-paused .poster-track { animation-play-state: paused; }
@media (hover: hover) { .poster-window:hover .poster-track { animation-play-state: paused; } }
@keyframes poster-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.agave-story { padding-top: 38px; padding-bottom: 38px; }
.agave-inner { grid-template-columns: .82fr 1.18fr; gap: 48px; }
.agave-poster { background: transparent; box-shadow: 9px 9px 0 var(--yellow); }
.agave-poster img { width: 100%; max-height: 310px; object-fit: contain; }
.agave-copy .section-kicker { margin-bottom: 13px; }
.agave-copy h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.35; }
.agave-lead { max-width: none; margin-top: 14px; font-size: 1rem; line-height: 1.75; }
.agave-points { margin-top: 16px; }
.agave-points li { grid-template-columns: 125px 1fr; gap: 15px; padding: 11px 0; }
.agave-note { margin-top: 10px; font-size: .75rem; }

.support, .faq, .cost { letter-spacing: 0; line-height: 1.85; }
.support .split-heading { grid-template-columns: 1.15fr .85fr; gap: 54px; }
.support-list li { grid-template-columns: 40px 300px 1fr; gap: 24px; padding: 30px 20px; }
.support-stage h3 { font-size: 1.44rem; letter-spacing: -.015em; }
.support-list .growth-feature { display: block; margin: 24px 0; padding: 42px; background: var(--yellow); border: 0; }
.growth-top { display: flex; align-items: center; gap: 22px; margin-bottom: 24px; }
.growth-num { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.growth-badge { padding: 7px 15px; color: white; background: var(--ink); font-size: .875rem; font-weight: 700; }
.growth-heading { display: grid; grid-template-columns: 1.1fr 1fr; gap: 42px; align-items: center; }
.growth-heading h3 { margin: 0; font-family: var(--display); font-size: 2.06rem; font-weight: 400; line-height: 1.45; letter-spacing: -.025em; }
.growth-heading p { color: var(--ink); }
.growth-steps { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 32px; border-top: 1px solid #ad872c; border-bottom: 1px solid #ad872c; }
.growth-steps article { padding: 26px 24px 26px 0; }
.growth-steps article + article { padding-left: 24px; border-left: 1px solid #ad872c; }
.growth-steps span { color: #514116; font-size: .875rem; font-weight: 700; }
.growth-steps h4 { margin: 10px 0 15px; font-size: 1.31rem; line-height: 1.6; letter-spacing: 0; }
.growth-steps p { color: #453714; font-size: 1rem; line-height: 1.9; }
.growth-close { margin-top: 28px; font-size: 1.125rem; line-height: 1.9; }
.support-mobile-summary { display: none; }

.faq { background: var(--mist); }
.review-faq { border-top: 2px solid var(--ink); }
.review-faq details { border-bottom: 1px solid var(--line); }
.review-faq summary { display: flex; align-items: baseline; gap: 22px; padding: 26px 4px; cursor: pointer; list-style: none; }
.review-faq summary::-webkit-details-marker { display: none; }
.review-faq summary strong { font-size: 1.18rem; line-height: 1.6; font-weight: 700; }
.faq-q { min-width: 36px; color: var(--green); font-size: .875rem; font-weight: 800; }
.faq-toggle { margin-left: auto; color: var(--green); font-size: 1.5rem; }
.review-faq .faq-answer { max-width: 1040px; padding: 0 52px 26px 62px; }
.faq-answer p { margin: 0; color: var(--ink-soft); font-size: 1rem; line-height: 1.9; }
.faq-answer p + p { margin-top: 10px; }

.floating-contact { position: fixed; z-index: 105; top: 50%; right: 20px; width: 94px; display: grid; transform: translateY(-50%); background: white; border: 1px solid rgba(33,24,21,.18); box-shadow: 0 12px 32px rgba(33,24,21,.18); }
.floating-contact a { min-height: 91px; padding: 12px 7px 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: transform .18s ease; }
.floating-contact a + a { border-top: 1px solid rgba(33,24,21,.16); }
.floating-contact a:hover, .floating-contact a:focus-visible { transform: translateX(-4px); }
.floating-contact a:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.floating-call { color: white; background: var(--ink); }
.floating-inquiry { color: var(--ink); background: var(--yellow); }
.floating-icon { height: 28px; display: flex; align-items: center; font-family: Arial,sans-serif; font-size: 1.7rem; line-height: 1; }
.floating-chat { position: relative; width: 27px; height: 21px; margin-bottom: 7px; border: 2px solid currentColor; border-radius: 50%; }
.floating-chat::after { content: ""; position: absolute; right: 2px; bottom: -5px; width: 7px; height: 7px; border-right: 2px solid currentColor; transform: skew(-25deg); }
.floating-contact strong { font-size: .875rem; line-height: 1.35; letter-spacing: 0; }
.floating-contact small { margin-top: 3px; font-size: .7rem; line-height: 1.25; letter-spacing: 0; opacity: .76; }

@media (max-width: 1180px) { .floating-contact { right: 10px; width: 84px; } .floating-contact a { min-height: 84px; } }
@media (max-width: 780px) {
  .real-fruit { padding-top: 48px; padding-bottom: 48px; }
  .real-fruit-inner, .agave-inner, .support .split-heading, .growth-heading, .growth-steps { grid-template-columns: 1fr; }
  .real-fruit-inner { gap: 25px; }
  .poster-card, .poster-card img { width: 205px; }
  .poster-card { flex-basis: 205px; }
  .poster-card img { height: 292px; }
  .poster-set { gap: 13px; padding-right: 13px; }
  .poster-controls { gap: 8px; font-size: .75rem; }
  .agave-story { padding-top: 28px; padding-bottom: 28px; }
  .agave-inner { gap: 25px; }
  .agave-poster { width: 100%; max-width: 480px; margin: 0 auto; }
  .agave-poster img { max-height: 240px; }
  .agave-points li { grid-template-columns: 100px 1fr; gap: 12px; }
  .support-list li { grid-template-columns: 28px 1fr; gap: 12px; padding: 24px 0; }
  .support-list li > p { grid-column: 2; }
  .support-list .growth-feature { padding: 25px 20px; }
  .growth-heading { gap: 22px; }
  .growth-heading h3 { font-size: 1.69rem; }
  .growth-steps { gap: 0; }
  .growth-steps article, .growth-steps article + article { padding: 22px 0; border-left: 0; }
  .growth-steps article + article { border-top: 1px solid #ad872c; }
  .growth-steps h4 br { display: none; }
  .growth-close { font-size: 1rem; }
  .support-list { display: none; }
  .support-mobile-summary { display: block; }
  .support-mobile-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .support-mobile-grid article { min-height: 128px; padding: 16px 14px 14px; background: var(--mist); border: 1px solid var(--line); }
  .support-mobile-grid span { display: block; margin-bottom: 16px; color: var(--green); font-size: .69rem; font-weight: 850; letter-spacing: .055em; }
  .support-mobile-grid h3 { margin: 0; font-size: 1.02rem; line-height: 1.4; letter-spacing: -.03em; }
  .support-mobile-grid p { margin: 8px 0 0; color: var(--ink-soft); font-size: .72rem; line-height: 1.52; }
  .mobile-growth-card { margin-top: 12px; padding: 21px 18px 19px; background: var(--yellow); }
  .mobile-growth-badge { display: inline-block; padding: 5px 8px; color: white; background: var(--ink); font-size: .68rem; font-weight: 800; letter-spacing: -.01em; }
  .mobile-growth-card h3 { margin: 12px 0 8px; font-size: 1.42rem; line-height: 1.4; letter-spacing: -.035em; }
  .mobile-growth-card > p { margin: 0; color: var(--ink); font-size: .78rem; line-height: 1.68; }
  .mobile-growth-flow { display: grid; grid-template-columns: 1fr 14px 1fr 14px 1fr; align-items: start; margin: 17px 0 14px; padding: 14px 0; border-top: 1px solid rgba(69,54,7,.28); border-bottom: 1px solid rgba(69,54,7,.28); }
  .mobile-growth-flow strong { font-size: .71rem; line-height: 1.5; letter-spacing: -.025em; }
  .mobile-growth-flow > span { padding-top: 2px; color: #665112; text-align: center; font-size: 1rem; }
  .mobile-growth-topics { display: flex; flex-wrap: wrap; gap: 6px; }
  .mobile-growth-topics span { padding: 4px 7px; border: 1px solid rgba(59,45,5,.35); font-size: .66rem; }
  .mobile-support-details { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .mobile-support-details + .mobile-support-details { margin-top: -1px; }
  .mobile-support-details summary { display: flex; align-items: center; justify-content: space-between; padding: 16px 2px; cursor: pointer; list-style: none; font-size: .84rem; font-weight: 800; letter-spacing: -.025em; }
  .mobile-support-details summary::-webkit-details-marker { display: none; }
  .mobile-support-details summary::after { content: "+"; color: var(--green); font-size: 1.35rem; font-weight: 400; }
  .mobile-support-details[open] summary::after { content: "–"; }
  .mobile-support-details div { padding: 0 2px 16px; }
  .mobile-support-details p { margin: 0; color: var(--ink-soft); font-size: .77rem; line-height: 1.7; }
  .mobile-support-details p + p { margin-top: 8px; }
  .review-faq summary { gap: 10px; padding: 22px 0; }
  .review-faq summary strong { font-size: 1.03rem; }
  .review-faq .faq-answer { padding: 0 0 24px; }
  .faq-q { min-width: 31px; }
  .floating-contact { display: none; }
  .mobile-cta { height: calc(66px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); }
}

@media (prefers-reduced-motion: reduce) { .poster-track { animation: none; } }

@media (max-width: 780px) {
  .privacy-header { min-height: 74px; padding: 0 18px; }
  .privacy-header .brand { width: 120px; height: 64px; }
  .privacy-header .brand img { width: 116px; }
  .privacy-back { padding: 8px 10px; font-size: .7rem; }
  .privacy-main { width: min(100% - 36px, 680px); padding: 62px 0 76px; }
  .privacy-intro > p:not(.section-kicker):not(.privacy-date) { font-size: .98rem; }
  .privacy-layout { grid-template-columns: 1fr; gap: 22px; margin-top: 42px; }
  .privacy-summary { position: static; padding: 20px; }
  .privacy-content { padding: 26px 20px; box-shadow: 8px 8px 0 rgba(33,24,21,.1); }
  .privacy-content section + section { margin-top: 34px; padding-top: 34px; }
  .privacy-content p, .privacy-content li { font-size: .91rem; }
  .privacy-footer { gap: 13px; padding: 24px 18px; }
}
