:root {
  --ink: #202629;
  --ink-soft: #4b575a;
  --yellow: #e4eb7d;
  --yellow-bright: #f0f398;
  --cream: #f7fbf8;
  --paper: #fffdf9;
  --blue-pale: #dcebea;
  --water: #477f80;
  --line: rgba(32, 38, 41, .16);
  --radius: 1.5rem;
  --shadow: 0 24px 70px rgba(32, 38, 41, .16);
  --shell: min(1160px, calc(100% - 2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--water); outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: .5rem; left: .5rem; padding: .7rem 1rem; color: white; background: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 40; top: 0; border-bottom: 1px solid transparent; background: rgba(255, 253, 249, .92); backdrop-filter: blur(18px); transition: border-color 180ms ease, box-shadow 180ms ease; }
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(32, 38, 41, .08); }
.header-inner { display: flex; min-height: 5.6rem; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { position: relative; display: block; width: 11.5rem; color: var(--ink); line-height: .78; text-decoration: none; }
.brand-by { position: absolute; top: -.1rem; left: -.8rem; font-size: .48rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; transform: rotate(-21deg); }
.brand-name { display: block; font-size: 1.65rem; font-weight: 900; letter-spacing: -.08em; }
.navigation { display: flex; align-items: center; gap: 1.8rem; font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.navigation a { position: relative; text-decoration: none; }
.navigation a:not(.nav-cta)::after { position: absolute; right: 0; bottom: -.45rem; left: 0; height: 2px; background: var(--water); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
.navigation a:hover::after { transform: scaleX(1); }
.nav-cta { padding: .68rem 1rem; border: 1px solid var(--ink); border-radius: 999px; }
.nav-toggle { display: none; border: 0; color: var(--ink); background: transparent; font: inherit; font-size: .8rem; font-weight: 900; text-transform: uppercase; }

.hero { position: relative; overflow: hidden; min-height: calc(100vh - 5.6rem); padding: 5rem 0 0; background: linear-gradient(122deg, #fffdf9 0 42%, #dcebea 78%, #b7d8d7 100%); }
.hero::before { position: absolute; inset: 0; background: radial-gradient(circle at 86% 12%, rgba(255,255,255,.86) 0 4%, transparent 4.2%), radial-gradient(circle at 76% 20%, rgba(255,255,255,.42) 0 2.4%, transparent 2.6%); content: ""; }
.hero-grid { position: relative; z-index: 2; display: grid; min-height: 39rem; align-items: center; gap: 1rem; grid-template-columns: minmax(0, 1.08fr) minmax(460px, .92fr); }
.eyebrow { margin: 0 0 1.1rem; color: var(--ink-soft); font-size: .73rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: "Arial Black", Arial, Helvetica, sans-serif; font-weight: 900; line-height: .93; }
h1 { max-width: 850px; margin-bottom: 1.6rem; font-size: clamp(3.6rem, 6.8vw, 7.25rem); letter-spacing: -.06em; }
h1 em { color: var(--water); font-weight: 900; }
h2 { margin-bottom: 1.4rem; font-size: clamp(2.5rem, 5vw, 5.2rem); letter-spacing: -.045em; }
h3 { margin-bottom: .75rem; font-size: 1.7rem; }
p { margin-top: 0; }
.hero-lead { max-width: 650px; margin-bottom: 2.1rem; color: var(--ink-soft); font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.button { display: inline-flex; min-height: 3.2rem; align-items: center; justify-content: center; padding: .8rem 1.25rem; border: 1px solid var(--ink); border-radius: 999px; color: white; background: var(--ink); font-size: .79rem; font-weight: 900; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease; }
.button:hover { box-shadow: 0 14px 30px rgba(32, 38, 41, .18); transform: translateY(-2px); }
.text-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .86rem; font-weight: 900; text-decoration: none; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-mark { position: relative; display: grid; min-height: 37rem; place-items: center; }
.hero-mark img { position: absolute; z-index: 2; width: min(61rem, 158%); max-width: none; right: -11rem; bottom: -2.5rem; filter: drop-shadow(0 28px 32px rgba(32,38,41,.14)); }
.bubble { position: absolute; border: 1px solid rgba(71, 127, 128, .36); border-radius: 50%; background: rgba(255,255,255,.16); }
.bubble-one { top: 8rem; right: -5rem; width: 15rem; height: 15rem; }
.bubble-two { bottom: 4rem; left: -3rem; width: 7rem; height: 7rem; }
.local-proof { position: relative; z-index: 3; display: grid; margin-top: 1rem; border-top: 1px solid rgba(32, 38, 41, .18); grid-template-columns: repeat(3, 1fr); }
.local-proof div { display: grid; padding: 1.4rem 1.8rem; border-right: 1px solid rgba(32, 38, 41, .18); grid-template-columns: auto 1fr; column-gap: 1rem; }
.local-proof div:last-child { border-right: 0; }
.local-proof span { grid-row: span 2; color: var(--water); font-family: "Arial Black", Arial, sans-serif; font-size: 1.6rem; }
.local-proof strong { font-size: .9rem; }
.local-proof small { color: var(--ink-soft); }

.section { padding: 7.5rem 0; }
.story-section { background: var(--paper); }
.story-grid { display: grid; gap: 7rem; grid-template-columns: 1.05fr .95fr; }
.section-heading h2 { max-width: 800px; }
.story-copy { padding-top: 2.3rem; color: var(--ink-soft); }
.story-copy .lead { color: var(--ink); font-family: Arial, Helvetica, sans-serif; font-size: 1.5rem; font-weight: 800; line-height: 1.35; }
.plain-saying { margin: 1.7rem 0; padding: 1.2rem 1.35rem; border-left: 4px solid var(--water); background: var(--blue-pale); color: var(--ink); font-weight: 850; }
.story-copy .text-link { margin-top: 1rem; color: var(--ink); }

.source-section { color: white; background: var(--ink); }
.source-grid { display: grid; align-items: start; gap: 6rem; grid-template-columns: 1fr 1fr; }
.source-copy .eyebrow { color: #b9d8d7; }
.source-copy .lead { font-size: 1.24rem; font-weight: 750; }
.source-copy > p:not(.eyebrow) { color: rgba(255,255,255,.76); }
.source-copy .text-link { margin-top: 1rem; color: white; }
.source-flow { margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); list-style: none; }
.source-flow li { display: grid; padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,.18); grid-template-columns: 3rem 1fr; column-gap: 1rem; }
.source-flow li > span { grid-row: span 2; color: #b9d8d7; font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.source-flow strong { font-family: "Arial Black", Arial, sans-serif; font-size: 1.35rem; }
.source-flow small { color: rgba(255,255,255,.62); }

.circuit-section { color: var(--ink); background: var(--blue-pale); }
.circuit-section .eyebrow { color: var(--water); }
.circuit-heading { display: grid; align-items: end; gap: 5rem; grid-template-columns: 1.1fr .9fr; }
.circuit-heading > p { max-width: 490px; color: var(--ink-soft); }
.route { display: grid; margin: 4rem 0 0; padding: 0; border-top: 1px solid rgba(32,38,41,.18); list-style: none; grid-template-columns: repeat(3, 1fr); }
.route li { display: grid; min-height: 19rem; padding: 1.8rem; border-right: 1px solid rgba(32,38,41,.18); align-content: space-between; }
.route li:last-child { border-right: 0; }
.route-number { color: var(--water); font-family: "Arial Black", Arial, sans-serif; font-size: 2rem; }
.route small { color: var(--water); font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.route h3 { margin: .5rem 0 .7rem; color: var(--ink); font-size: 2.3rem; }
.route p { margin: 0; color: var(--ink-soft); }

.range-section { background: var(--cream); }
.theme-limonade-citron-poire { --product-bg: #e4eb7d; --product-panel: #b7d8d7; --product-accent: #d20b63; --product-ink: #202629; }
.range-grid { display: grid; overflow: hidden; border-radius: var(--radius); color: var(--product-ink); background: var(--product-bg); box-shadow: var(--shadow); grid-template-columns: 1.05fr .95fr; }
.range-card, .flavor-poster { margin: 0; padding: clamp(2rem, 5vw, 4.5rem); }
.range-card { border-right: 1px solid rgba(32,38,41,.2); }
.range-card h2 { font-size: clamp(2.6rem, 4.5vw, 4.7rem); }
.range-card p { max-width: 580px; }
.product-facts { display: flex; margin: 1.6rem 0 .5rem; padding: 0; list-style: none; flex-wrap: wrap; gap: .55rem; }
.product-facts li { padding: .42rem .7rem; border: 1px solid rgba(32,38,41,.24); border-radius: 999px; font-size: .72rem; font-weight: 900; }
.theme-limonade-citron-poire .button-dark { margin-top: 1rem; border-color: var(--product-accent); background: var(--product-accent); }
.flavor-poster { position: relative; display: grid; min-height: 35rem; overflow: hidden; background: var(--product-panel); align-content: center; justify-items: center; }
.flavor-poster::after { position: absolute; right: -8rem; bottom: -10rem; width: 31rem; height: 22rem; border: 14px solid #849d49; border-radius: 70% 0 0; background: var(--product-bg); content: ""; transform: rotate(-12deg); }
.flavor-poster strong { position: relative; z-index: 3; color: white; font-family: "Arial Black", Arial, sans-serif; font-size: clamp(3.5rem, 5vw, 5.9rem); letter-spacing: -.07em; line-height: .8; text-align: center; text-transform: uppercase; transform: rotate(-4deg); }
.flavor-poster small { position: absolute; z-index: 4; right: 2rem; bottom: 1.6rem; left: 2rem; max-width: 28rem; color: rgba(32,38,41,.72); font-size: .64rem; font-weight: 900; letter-spacing: .09em; line-height: 1.45; text-transform: uppercase; }
.flavor { position: absolute; z-index: 2; display: grid; width: 7.6rem; height: 7.6rem; border: 4px solid var(--product-ink); border-radius: 50%; place-items: center; font-family: "Arial Black", Arial, sans-serif; font-size: 1.25rem; font-weight: 900; line-height: .95; text-align: center; text-transform: uppercase; }
.flavor-citron { top: 2.3rem; left: 2.1rem; background: #f0f398; transform: rotate(-8deg); }
.flavor-citron-vert { top: 1.1rem; right: 2.6rem; background: #a8bf58; transform: rotate(8deg); }
.flavor-poire { right: 3.8rem; bottom: 7rem; background: #f197be; transform: rotate(-6deg); }

.pro-section { color: white; background: var(--ink); }
.pro-section .eyebrow { color: #b9d8d7; }
.pro-grid { display: grid; align-items: center; gap: 6rem; grid-template-columns: 1fr 1fr; }
.pro-grid p { color: rgba(255,255,255,.76); font-size: 1.08rem; }
.button-light { margin-top: 1rem; border-color: #b9d8d7; color: var(--ink); background: #b9d8d7; }

.find-section { background: var(--cream); }
.find-grid { display: grid; align-items: center; gap: 7rem; grid-template-columns: 1fr 1fr; }
.find-grid > div > p:not(.eyebrow) { max-width: 560px; color: var(--ink-soft); }
.contact-card { display: flex; padding: 2.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); font-style: normal; flex-direction: column; }
.contact-card strong { margin-bottom: 1rem; font-family: "Arial Black", Arial, sans-serif; font-size: 2rem; font-weight: 900; }
.contact-card > a { margin-top: .8rem; font-size: 1.3rem; font-weight: 900; text-decoration: none; }
.contact-actions { display: flex; margin-top: 1.6rem; gap: 1.4rem; }
.contact-actions a { font-size: .78rem; font-weight: 900; text-decoration: none; text-transform: uppercase; }

.site-footer { padding: 4rem 0 1.4rem; color: white; background: var(--ink); }
.footer-grid { display: grid; align-items: center; gap: 3rem; grid-template-columns: .65fr 1fr .65fr; }
.footer-brand { display: flex; width: 11rem; color: white; line-height: .8; text-decoration: none; flex-direction: column; }
.footer-brand span { margin-bottom: .35rem; font-size: .58rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand strong { font-size: 2rem; letter-spacing: -.08em; }
.footer-grid p { max-width: 430px; color: rgba(255,255,255,.68); }
.footer-grid > div { display: flex; gap: .55rem; flex-direction: column; }
.footer-grid a { font-size: .78rem; font-weight: 800; text-decoration: none; }
.footer-bottom { display: flex; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.13); justify-content: space-between; color: rgba(255,255,255,.5); font-size: .7rem; }

.privacy-notice { position: fixed; z-index: 80; right: 1rem; bottom: 1rem; left: 1rem; display: flex; max-width: 48rem; margin-inline: auto; padding: 1.25rem; border: 1px solid rgba(255,255,255,.18); border-radius: 1.2rem; color: white; background: rgba(32,38,41,.98); box-shadow: 0 22px 70px rgba(32,38,41,.34); align-items: flex-end; justify-content: space-between; gap: 1.5rem; }
.privacy-notice[hidden] { display: none; }
.privacy-notice .privacy-copy { display: grid; gap: .35rem; }
.privacy-notice .privacy-copy span { color: var(--yellow); font-size: .62rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.privacy-notice .privacy-copy strong { font-family: var(--display); font-size: 1.45rem; line-height: 1; }
.privacy-notice p { max-width: 31rem; margin: 0; color: rgba(255,255,255,.8); font-size: .79rem; line-height: 1.45; }
.privacy-notice a { width: max-content; color: white; font-size: .68rem; font-weight: 800; text-underline-offset: .18em; }
.privacy-notice .privacy-actions { display: flex; flex: 0 0 auto; gap: .55rem; }
.privacy-notice button { min-height: 2.55rem; padding: .55rem .85rem; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; color: white; background: transparent; font: inherit; font-size: .7rem; font-weight: 900; cursor: pointer; }
.privacy-notice .privacy-accept { border-color: var(--yellow); color: var(--ink); background: var(--yellow); }
.privacy-back { font-size: .72rem; font-weight: 900; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.privacy-page { min-height: calc(100vh - 5.6rem); padding: 6rem 0; background: linear-gradient(135deg, var(--paper), var(--blue-pale)); }
.privacy-content { max-width: 780px; }
.privacy-content h1 { font-size: clamp(3.5rem, 8vw, 6rem); }
.privacy-content h2 { margin-top: 3rem; margin-bottom: .8rem; font-size: clamp(2rem, 5vw, 3rem); }
.privacy-content .lead { color: var(--ink); font-size: 1.35rem; font-weight: 800; }
.privacy-content a { font-weight: 800; }
.privacy-content .button { margin-top: .8rem; }

@media (max-width: 900px) {
  .navigation { position: absolute; top: 100%; right: 1rem; left: 1rem; display: none; padding: 1.2rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--paper); box-shadow: var(--shadow); align-items: stretch; flex-direction: column; }
  .navigation.is-open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding-top: 3.5rem; }
  .hero-grid { gap: 1rem; grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 3; }
  .hero { min-height: auto; }
  .hero-mark { min-height: 26rem; }
  .hero-mark img { width: min(53rem, 135%); right: -8rem; bottom: -5rem; }
  .local-proof { margin-top: 2.5rem; grid-template-columns: 1fr; }
  .local-proof div { border-right: 0; border-bottom: 1px solid rgba(32,38,41,.18); }
  .local-proof div:last-child { border-bottom: 0; }
  .story-grid, .source-grid, .circuit-heading, .range-grid, .pro-grid, .find-grid, .footer-grid { gap: 2.8rem; grid-template-columns: 1fr; }
  .story-copy { padding-top: 0; }
  .route { grid-template-columns: 1fr; }
  .route li { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(32,38,41,.18); gap: 2rem; }
  .route li:last-child { border-bottom: 0; }
  .range-card { border-right: 0; border-bottom: 1px solid rgba(32,38,41,.2); }
  .footer-brand { width: 9rem; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 1.2rem, 1160px); }
  .header-inner { min-height: 4.7rem; }
  .brand { width: 9rem; }
  .brand-name { font-size: 1.3rem; }
  .hero { padding-top: 2.8rem; }
  h1 { font-size: clamp(3.35rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-mark { min-height: 18rem; }
  .hero-mark img { width: 32rem; right: -9rem; bottom: -5rem; }
  .section { padding: 5.2rem 0; }
  .local-proof div, .route li { padding-inline: .7rem; }
  .range-card, .flavor-poster, .contact-card { padding: 1.6rem; }
  .flavor-poster { min-height: 28rem; }
  .flavor { width: 5.8rem; height: 5.8rem; font-size: .95rem; }
  .flavor-poster strong { font-size: clamp(3.4rem, 18vw, 5rem); }
  .contact-actions, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .privacy-notice { align-items: stretch; flex-direction: column; }
  .privacy-notice .privacy-actions { flex-wrap: wrap; }
}

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