@font-face { font-family: "Calistoga"; src: url("../fonts/calistoga-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Cabin Condensed"; src: url("../fonts/cabin-condensed-400.ttf") format("truetype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Cabin Condensed"; src: url("../fonts/cabin-condensed-500.ttf") format("truetype"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cabin Condensed"; src: url("../fonts/cabin-condensed-600.ttf") format("truetype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Cabin Condensed"; src: url("../fonts/cabin-condensed-700.ttf") format("truetype"); font-weight: 700; font-style: normal; font-display: swap; }

:root {
  --green: #1d4e1a;
  --green-dark: #123b16;
  --green-soft: #305f2b;
  --cream: #fcf3d9;
  --custard: #ffecb8;
  --paper: #f8f1dc;
  --ink: #193f18;
  --line: rgba(29, 78, 26, .18);
  --white-line: rgba(255, 236, 184, .24);
  --display: "Calistoga", Georgia, serif;
  --body: "Cabin Condensed", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream); }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--body); font-size: 18px; line-height: 1.28; overflow-x: clip; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
::selection { background: var(--green); color: var(--custard); }
:focus-visible { outline: 3px solid #4f9ed2; outline-offset: 4px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; transform: translateY(-160%); padding: 10px 18px; background: white; border-radius: 999px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }
.section-shell { width: min(1200px, calc(100% - 80px)); margin-inline: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); font-weight: 400; letter-spacing: -.025em; }
.kicker, .eyebrow { display: inline-block; color: var(--green); font-size: 14px; font-weight: 600; letter-spacing: .03em; }
.kicker-cream, .eyebrow-light { color: var(--custard); }

.button { min-height: 46px; padding: 11px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 1px solid var(--green); border-radius: 999px; background: var(--green); color: var(--custard); font-size: 15px; font-weight: 600; transition: transform .35s var(--ease), background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); background: var(--green-dark); }
.button-cream, .button-light { border-color: var(--custard); background: var(--custard); color: var(--green); }
.button-cream:hover, .button-light:hover { background: white; color: var(--green); }
.button-outline-cream { border-color: var(--custard); background: transparent; color: var(--custard); }
.button-outline-cream:hover { background: var(--custard); color: var(--green); }
.button-small { min-height: 38px; padding: 8px 16px; font-size: 13px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 3px; border-bottom: 1px solid currentColor; font-weight: 600; }
.text-link-light { color: var(--custard); }
.center-action { margin-top: 50px; text-align: center; }

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-parallax] { transform: translate3d(0, var(--parallax-y, 0), 0); will-change: transform; }

/* navigation */
.utility-bar { position: relative; z-index: 240; min-height: 30px; padding: 6px 42px; display: flex; align-items: center; justify-content: center; background: var(--custard); color: var(--green); border-bottom: 1px solid rgba(29,78,26,.12); }
.utility-bar p { margin: 0; font-size: 14px; letter-spacing: .02em; }
.utility-bar button { position: absolute; right: 20px; top: 2px; width: 28px; height: 26px; border: 0; background: transparent; font-size: 19px; }
.site-header { position: fixed; z-index: 220; top: 34px; left: 50%; width: min(470px, calc(100% - 32px)); min-height: 64px; padding: 6px 12px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; transform: translateX(-50%); border-radius: 999px; background: var(--green); color: var(--custard); box-shadow: 0 14px 40px rgba(18,59,22,.18); transition: top .35s var(--ease), width .35s var(--ease), box-shadow .35s ease; }
.site-header:not(.with-notice) { top: 14px; }
.site-header.is-scrolled { width: min(500px, calc(100% - 32px)); box-shadow: 0 16px 45px rgba(18,59,22,.28); }
.desktop-nav { display: flex; align-items: center; gap: 22px; }
.desktop-nav-left { justify-content: flex-end; }
.desktop-nav-right { justify-content: flex-start; }
.desktop-nav a { font-size: 15px; font-weight: 500; white-space: nowrap; }
.desktop-nav a:hover { color: white; }
.brand { width: 54px; height: 54px; margin: 0 18px; display: grid; place-items: center; border-radius: 50%; background: var(--custard); overflow: visible; }
.brand img { width: 45px; height: 45px; object-fit: contain; }
.brand span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-toggle { display: none; }
.category-dock { position: absolute; top: calc(100% + 12px); left: 50%; width: min(760px, calc(100vw - 40px)); padding: 16px; display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; transform: translate(-50%, -10px); opacity: 0; visibility: hidden; border-radius: 24px; background: var(--green); box-shadow: 0 18px 50px rgba(18,59,22,.24); transition: .3s var(--ease); }
.site-header:hover .category-dock, .site-header:focus-within .category-dock { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.category-dock a { min-height: 40px; padding: 9px 12px; border: 1px solid var(--white-line); border-radius: 999px; font-size: 13px; }
.category-dock a:hover { background: var(--custard); color: var(--green); }
.category-dock span { opacity: .65; margin-right: 7px; }
.mobile-menu { display: none; }

/* shared headings and ticker */
.center-heading { max-width: 850px; margin: 0 auto 65px; text-align: center; }
.center-heading h2 { margin: 18px 0 0; font-size: clamp(50px, 6vw, 82px); line-height: 1.02; }
.split-heading { margin-bottom: 55px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.split-heading h2 { margin: 14px 0 0; font-size: clamp(50px, 5vw, 74px); line-height: 1; }
.split-heading > p { margin: 0; max-width: 480px; color: rgba(25,63,24,.72); }
.ticker { height: 42px; overflow: hidden; background: var(--custard); color: var(--green); border-block: 1px solid rgba(29,78,26,.17); }
.ticker > div { width: max-content; height: 100%; display: flex; align-items: center; animation: ticker 30s linear infinite; }
.ticker span { padding: 0 19px; font-size: 14px; white-space: nowrap; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* homepage */
.brew-hero { position: relative; min-height: 1065px; overflow: hidden; background: var(--green); color: var(--custard); }
.hero-copy { position: relative; z-index: 3; width: min(980px, calc(100% - 40px)); margin: 0 auto; padding: 190px 0 560px; text-align: center; }
.hero-copy h1 { margin: 26px 0 22px; color: var(--custard); font-size: clamp(72px, 9vw, 126px); line-height: .98; }
.hero-copy > p { max-width: 650px; margin: 0 auto 30px; font-size: 21px; color: rgba(255,236,184,.8); }
.hero-actions { display: flex; justify-content: center; gap: 12px; }
.hero-products { position: absolute; left: 50%; bottom: -65px; z-index: 2; width: min(980px, 94vw); height: 585px; transform: translateX(-50%); display: flex; align-items: flex-end; justify-content: center; gap: 22px; }
.hero-product { position: relative; margin: 0; overflow: hidden; border-radius: 42px 42px 0 0; background: var(--green-dark); border: 1px solid rgba(255,236,184,.25); box-shadow: 0 30px 60px rgba(8,39,12,.25); }
.hero-product img, .hero-product video { width: 100%; height: 100%; object-fit: cover; }
.hero-product::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,49,15,.62), transparent 48%); pointer-events: none; }
.hero-product figcaption { position: absolute; z-index: 2; left: 22px; bottom: 85px; color: var(--custard); font-weight: 600; }
.hero-product-left, .hero-product-right { width: 29%; height: 440px; }
.hero-product-main { z-index: 2; width: 38%; height: 560px; }
.hero-product-main video { object-position: center 44%; }
.find-section { padding: 130px 0 145px; }
.supply-worlds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.world-card { position: relative; min-height: 480px; overflow: hidden; border-radius: 34px; background: var(--green); }
.world-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s ease; }
.world-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(13,55,16,.9), transparent 66%); }
.world-card > div { position: absolute; z-index: 2; left: 26px; right: 22px; bottom: 25px; color: var(--custard); }
.world-card span { font-size: 13px; }
.world-card h3 { margin: 8px 55px 0 0; font-size: 38px; }
.world-card i { position: absolute; right: 0; bottom: 5px; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--custard); border-radius: 50%; font-style: normal; }
.world-card:hover img { transform: scale(1.06); filter: saturate(1.1); }
.popular-section { padding: 130px 0; background: rgba(29,78,26,.035); }
.popular-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px 20px; }
.popular-card { min-width: 0; }
.popular-media { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 28px; background: var(--green); }
.popular-media img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; transition: transform .6s var(--ease), mix-blend-mode .3s; }
.popular-card:hover img { transform: scale(1.05); mix-blend-mode: normal; }
.popular-card-copy { position: relative; padding: 15px 46px 0 6px; }
.popular-card-copy span { font-size: 13px; color: rgba(25,63,24,.58); }
.popular-card-copy h3 { margin: 4px 0 0; font-size: 26px; }
.popular-card-copy i { position: absolute; right: 4px; bottom: 3px; font-style: normal; font-size: 22px; }
.vibe-section { padding: 130px 0; background: var(--green); color: var(--custard); }
.vibe-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.vibe-copy h2 { margin: 18px 0 24px; font-size: clamp(55px, 6vw, 88px); line-height: 1.01; }
.vibe-copy > p { max-width: 570px; color: rgba(255,236,184,.76); }
.vibe-points { margin: 36px 0; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--white-line); border-left: 1px solid var(--white-line); }
.vibe-points div { min-height: 110px; padding: 20px; border-right: 1px solid var(--white-line); border-bottom: 1px solid var(--white-line); }
.vibe-points span { font-size: 12px; opacity: .65; }
.vibe-points h3 { margin: 18px 0 0; font-size: 24px; }
.vibe-media { position: relative; min-height: 720px; overflow: hidden; border-radius: 44px; background: var(--green-dark); }
.vibe-media video { width: 100%; height: 112%; object-fit: cover; }
.media-stamp { position: absolute; right: 24px; bottom: 24px; width: 145px; height: 145px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 50%; background: var(--custard); color: var(--green); text-align: center; transform: rotate(7deg); }
.media-stamp strong { font-family: var(--display); font-size: 50px; line-height: .9; }
.media-stamp span { margin-top: 6px; font-size: 12px; }
.brief-section { padding: 135px 0; }
.brief-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.brief-steps article { min-height: 260px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 28px; transition: transform .35s var(--ease), background .3s, color .3s; }
.brief-steps article:hover { transform: translateY(-8px); background: var(--green); color: var(--custard); }
.brief-steps article > span { font-size: 13px; }
.brief-steps h3 { margin: auto 0 10px; font-size: 31px; }
.brief-steps p { margin: 0; color: rgba(25,63,24,.65); }
.brief-steps article:hover p { color: rgba(255,236,184,.72); }
.buyer-strip { padding: 105px 0; background: var(--green); color: var(--custard); text-align: center; }
.buyer-strip h2 { margin: 25px auto 0; max-width: 1100px; font-size: clamp(42px, 5.2vw, 70px); line-height: 1.05; }

/* detail pages */
.breadcrumbs { padding-top: 132px; display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(25,63,24,.65); }
.breadcrumbs a:hover { text-decoration: underline; }
.detail-hero { min-height: 690px; padding-block: 55px 110px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.detail-media { position: relative; height: 560px; overflow: hidden; border-radius: 38px; background: var(--green); }
.detail-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15,53,18,.45), transparent 50%); }
.detail-media img { width: 100%; height: 112%; object-fit: cover; mix-blend-mode: luminosity; }
.detail-number { position: absolute; z-index: 2; left: 26px; bottom: 18px; color: var(--custard); font-family: var(--display); font-size: 80px; }
.detail-copy { padding: 20px 0; }
.detail-copy h1 { margin: 20px 0 18px; font-size: clamp(58px, 7vw, 96px); line-height: .96; }
.detail-copy > p { max-width: 620px; font-size: 21px; color: rgba(25,63,24,.76); }
.detail-rule { height: 1px; margin: 30px 0 24px; background: var(--line); }
.detail-copy h2 { margin-bottom: 13px; font-size: 22px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 9px; font-size: 14px; }
.detail-actions { margin-top: 30px; display: flex; align-items: center; gap: 22px; }
.category-definition { padding: 130px 0; display: grid; grid-template-columns: .55fr 1.45fr; gap: 70px; }
.category-definition h2 { margin: 0 0 28px; font-size: clamp(42px, 5vw, 68px); line-height: 1.06; }
.category-definition p { max-width: 780px; color: rgba(25,63,24,.65); }
.category-products { padding: 120px 0; background: rgba(29,78,26,.035); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.product-grid article { position: relative; min-height: 270px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 28px; background: var(--cream); overflow: hidden; transition: transform .35s var(--ease), background .25s ease, color .25s ease; }
.product-grid article:hover { transform: translateY(-7px); background: var(--green); color: var(--custard); }
.product-grid article > span { font-size: 13px; }
.product-grid h3 { margin: auto 0 12px; font-size: 31px; }
.product-grid p { margin: 0; color: rgba(25,63,24,.62); font-size: 16px; }
.product-grid article:hover p { color: rgba(255,236,184,.72); }
.product-grid article > a { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.category-motion { padding: 125px 0; background: var(--green); color: var(--custard); }
.category-motion-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.category-video { height: 650px; overflow: hidden; border-radius: 42px; background: var(--green-dark); }
.category-video video { width: 100%; height: 112%; object-fit: cover; }
.category-motion-copy h2 { margin: 18px 0 20px; font-size: clamp(54px, 5.4vw, 78px); line-height: 1.01; }
.category-motion-copy > p, .motion-note p { color: rgba(255,236,184,.76); }
.motion-note { margin: 30px 0; padding: 24px 0; border-block: 1px solid var(--white-line); }
.motion-note h3 { margin-bottom: 10px; font-size: 26px; }
.fit-section { padding: 130px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.fit-panel { padding: 45px; border-radius: 34px; background: var(--custard); }
.fit-panel h2 { margin: 28px 0 0; font-size: clamp(42px, 4.5vw, 64px); line-height: 1.08; }
.fit-list ol { list-style: none; margin: 24px 0 0; padding: 0; }
.fit-list li { min-height: 70px; padding: 18px 0; display: grid; grid-template-columns: 55px 1fr; border-top: 1px solid var(--line); }
.fit-list li:last-child { border-bottom: 1px solid var(--line); }
.fit-list li span { font-size: 13px; }
.fit-list li p { margin: 0; font-family: var(--display); font-size: 24px; }
.related-section { padding: 120px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-grid a { position: relative; min-height: 400px; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border-radius: 32px; color: var(--custard); background: var(--green); }
.related-grid img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.related-grid a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,52,15,.9), transparent 70%); }
.related-grid span, .related-grid h3, .related-grid i { position: relative; z-index: 2; }
.related-grid span { font-size: 13px; }
.related-grid h3 { margin: 10px 45px 0 0; font-size: 34px; }
.related-grid i { position: absolute; right: 24px; bottom: 25px; font-style: normal; font-size: 24px; }
.related-grid a:hover img { transform: scale(1.06); }

/* category hub */
.hub-hero { position: relative; min-height: 720px; overflow: hidden; background: var(--green); color: var(--custard); }
.hub-hero .section-shell { position: relative; z-index: 2; padding-top: 200px; }
.hub-hero h1 { margin: 20px 0; font-size: clamp(78px, 10vw, 140px); line-height: .92; }
.hub-hero p { max-width: 580px; color: rgba(255,236,184,.78); font-size: 21px; }
.hub-orbit { position: absolute; right: 5%; bottom: -105px; width: 460px; height: 460px; display: grid; place-items: center; border: 1px solid var(--white-line); border-radius: 50%; }
.hub-orbit::before, .hub-orbit::after { content: ""; position: absolute; border: 1px solid var(--white-line); border-radius: 50%; }
.hub-orbit::before { inset: 54px; }.hub-orbit::after { inset: 108px; }
.hub-orbit img { position: relative; z-index: 2; width: 230px; }
.category-hub { padding: 130px 0; }
.hub-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.hub-card { min-height: 600px; display: grid; grid-template-rows: 330px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 34px; transition: transform .35s var(--ease), box-shadow .35s ease; }
.hub-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(29,78,26,.13); }
.hub-card-media { overflow: hidden; background: var(--green); }
.hub-card-media img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; transition: transform .7s var(--ease), mix-blend-mode .3s; }
.hub-card:hover img { transform: scale(1.04); mix-blend-mode: normal; }
.hub-card-copy { padding: 28px; }
.hub-card-copy > span { font-size: 13px; }
.hub-card-copy h2 { margin: 8px 0 12px; font-size: 42px; }
.hub-card-copy p { color: rgba(25,63,24,.65); }
.hub-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0; }
.hub-tags i { padding: 6px 10px; border: 1px solid var(--line); border-radius: 9px; font-style: normal; font-size: 13px; }
.hub-card-copy strong { font-size: 15px; }

/* about */
.about-brew-hero, .contact-brew-hero { position: relative; min-height: 900px; overflow: hidden; background: var(--green); color: var(--custard); }
.about-brew-hero > .section-shell, .contact-brew-hero > .section-shell { position: relative; z-index: 2; padding-top: 190px; text-align: center; }
.about-brew-hero h1, .contact-brew-hero h1 { margin: 24px 0 20px; font-size: clamp(78px, 9.5vw, 130px); line-height: .94; }
.about-brew-hero p, .contact-brew-hero p { max-width: 640px; margin: auto; color: rgba(255,236,184,.78); font-size: 21px; }
.about-hero-media, .contact-hero-image { position: absolute; left: 50%; bottom: -180px; width: min(900px, 86vw); height: 500px; overflow: hidden; transform: translateX(-50%); border: 1px solid var(--white-line); border-radius: 46px 46px 0 0; }
.about-hero-media img, .contact-hero-image img { width: 100%; height: 112%; object-fit: cover; }
.about-intro { padding: 130px 0; display: grid; grid-template-columns: .5fr 1.5fr; gap: 80px; }
.about-intro h2 { margin: 0 0 30px; font-size: clamp(44px, 5.2vw, 72px); line-height: 1.05; }
.about-intro p { max-width: 800px; color: rgba(25,63,24,.67); }
.about-video-section { padding: 125px 0; background: var(--green); color: var(--custard); }
.about-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.about-video { height: 650px; overflow: hidden; border-radius: 42px; }
.about-video video { width: 100%; height: 112%; object-fit: cover; }
.about-video-grid > div:last-child h2 { margin: 20px 0; font-size: clamp(54px, 5.5vw, 80px); line-height: 1.02; }
.about-video-grid > div:last-child p { color: rgba(255,236,184,.75); }
.principles { padding: 130px 0; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle-grid article { min-height: 290px; padding: 25px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 28px; }
.principle-grid article > span { font-size: 13px; }
.principle-grid h3 { margin: auto 0 10px; font-size: 32px; }
.principle-grid p { margin: 0; color: rgba(25,63,24,.65); }
.scope-section { padding: 120px 0; background: var(--green); color: var(--custard); }
.scope-section .section-shell { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; }
.scope-section h2 { margin: 20px 0 0; font-size: clamp(50px, 5.5vw, 76px); line-height: 1.02; }
.scope-section p { color: rgba(255,236,184,.75); }
.contact-strip { padding: 100px 0; display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; }
.contact-strip h2 { margin: 18px 0 0; font-size: 44px; }
.contact-strip > div:last-child { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.contact-strip .button { margin-top: 15px; }

/* contact */
.contact-methods { padding: 120px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-methods a { position: relative; min-height: 240px; padding: 28px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 30px; transition: background .25s, color .25s, transform .35s var(--ease); }
.contact-methods a:hover { transform: translateY(-6px); background: var(--green); color: var(--custard); }
.contact-methods span { font-size: 14px; }
.contact-methods h2 { margin: auto 50px 0 0; overflow-wrap: anywhere; font-size: clamp(32px, 3.6vw, 52px); }
.contact-methods i { position: absolute; right: 24px; bottom: 24px; font-style: normal; font-size: 24px; }
.inbox-note { margin-top: 32px; padding: 20px; display: flex; flex-direction: column; border-radius: 18px; background: var(--custard); }
.inbox-note span { font-size: 13px; }.inbox-note strong { margin-top: 4px; font-family: var(--display); font-size: 22px; overflow-wrap: anywhere; }

/* FAQ and forms */
.faq-section { padding: 130px 0; }
.faq-list { max-width: 900px; margin: auto; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; list-style: none; cursor: pointer; font-family: var(--display); font-size: clamp(23px, 2.5vw, 32px); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--body); color: var(--green); transition: transform .3s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 50px 28px 0; color: rgba(25,63,24,.68); }
.quote-section { padding: 130px 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.quote-intro { position: sticky; top: 120px; }
.quote-intro h2 { margin: 20px 0; font-size: clamp(48px, 5.2vw, 74px); line-height: 1.02; }
.quote-intro > p { max-width: 520px; color: rgba(25,63,24,.67); }
.direct-contact { margin-top: 28px; display: flex; flex-direction: column; gap: 8px; font-family: var(--display); font-size: 19px; overflow-wrap: anywhere; }
.inquiry-form { padding: 32px; border: 1px solid var(--line); border-radius: 34px; background: var(--paper); box-shadow: 0 24px 60px rgba(29,78,26,.1); }
.form-heading { margin-bottom: 25px; display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.form-heading span { font-family: var(--display); font-size: 31px; }
.form-heading p { margin: 0; color: rgba(25,63,24,.62); font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 48px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 14px; background: var(--cream); font-weight: 400; }
.form-grid textarea { resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: 0; border-color: var(--green); box-shadow: 0 0 0 3px rgba(29,78,26,.1); }
.span-2 { grid-column: span 2; }
.file-field > span { color: rgba(25,63,24,.55); font-size: 12px; font-weight: 400; }
.file-field input { padding: 9px; }
.consent { margin: 18px 0; display: flex; gap: 10px; align-items: flex-start; color: rgba(25,63,24,.67); font-size: 13px; }
.consent input { width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--green); }
.form-submit { width: 100%; }
.form-submit:disabled { opacity: .6; cursor: wait; }
.form-message { margin: 16px 0; padding: 13px 15px; border-radius: 14px; font-size: 14px; }
.form-message.success { background: #d8ead2; }.form-message.error { background: #f1d5cd; color: #762b22; }
.form-note { margin: 14px 0 0; color: rgba(25,63,24,.52); font-size: 12px; text-align: center; }
.honeypot { position: absolute!important; width: 1px!important; height: 1px!important; overflow: hidden!important; clip: rect(0 0 0 0)!important; }

/* footer and policy */
.site-footer { background: var(--green); color: var(--custard); }
.ticker-footer { background: var(--custard); }
.footer-main { padding: 100px 0 70px; }
.footer-promise { display: grid; grid-template-columns: auto 1fr auto; gap: 35px; align-items: center; padding-bottom: 75px; border-bottom: 1px solid var(--white-line); }
.footer-mark { width: 90px; height: 90px; display: grid; place-items: center; border-radius: 50%; background: var(--custard); }
.footer-mark img { width: 76px; }
.footer-promise h2 { margin: 0; max-width: 730px; font-size: clamp(48px, 5.6vw, 78px); line-height: 1.01; }
.footer-links { padding-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-links h3 { margin-bottom: 12px; color: var(--custard); font-family: var(--body); font-size: 14px; }
.footer-links a { color: rgba(255,236,184,.72); }
.footer-links a:hover { color: white; }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--white-line); font-size: 13px; }
.footer-bottom p { margin: 0; }.footer-bottom div { display: flex; flex-wrap: wrap; gap: 20px; }
.cookie-banner { position: fixed; z-index: 400; right: 18px; bottom: 18px; width: min(570px, calc(100% - 36px)); padding: 18px; display: flex; align-items: center; gap: 20px; border: 1px solid var(--green); border-radius: 22px; background: var(--cream); box-shadow: 0 18px 60px rgba(29,78,26,.2); }
.cookie-banner p { margin: 0; color: rgba(25,63,24,.72); font-size: 13px; }
.cookie-banner > div { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.text-button { padding: 7px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 13px; }
.legal-page { width: min(940px, calc(100% - 48px)); margin: auto; padding: 170px 0 120px; }
.legal-page header { padding-bottom: 55px; border-bottom: 1px solid var(--line); }
.legal-page h1 { margin: 18px 0; font-size: clamp(62px, 8vw, 100px); }
.legal-page article { max-width: 760px; padding-top: 45px; }
.legal-page article h2 { margin: 42px 0 12px; font-size: 34px; }
.legal-page article p { color: rgba(25,63,24,.7); }
.legal-page article a { text-decoration: underline; }
.thank-you, .not-found { min-height: 100vh; padding: 160px 30px 80px; display: grid; place-items: center; background: var(--green); color: var(--custard); text-align: center; }
.thank-you > div, .not-found > div { max-width: 860px; }
.thank-you h1, .not-found h1 { margin: 24px 0; font-size: clamp(68px, 9vw, 120px); line-height: .98; }
.thank-you p, .not-found p { color: rgba(255,236,184,.76); font-size: 20px; }
.thank-you > div > div, .not-found > div > div { display: flex; justify-content: center; gap: 20px; margin-top: 30px; }
.not-found > div > span { font-family: var(--display); font-size: 24px; }

@media (max-width: 1040px) {
  .section-shell { width: min(100% - 48px, 900px); }
  .site-header { width: min(450px, calc(100% - 24px)); }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .supply-worlds { grid-template-columns: 1fr 1fr; }.world-card:last-child { grid-column: span 2; min-height: 420px; }
  .vibe-grid, .category-motion-grid, .about-video-grid { gap: 55px; }
  .vibe-media, .category-video, .about-video { min-height: 580px; height: 580px; }
  .brief-steps, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-hero { grid-template-columns: .9fr 1.1fr; }.detail-media { height: 500px; }
  .hub-orbit { opacity: .55; }
  .principle-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  .section-shell { width: calc(100% - 32px); }
  .utility-bar { min-height: 32px; padding: 6px 42px 6px 16px; text-align: center; }.utility-bar p { font-size: 12px; }
  .site-header { top: 42px; min-height: 58px; width: calc(100% - 24px); padding: 4px 12px 4px 6px; display: flex; justify-content: space-between; }
  .site-header:not(.with-notice) { top: 12px; }.site-header.is-scrolled { width: calc(100% - 24px); }
  .desktop-nav, .category-dock { display: none; }
  .brand { width: 50px; height: 50px; margin: 0; }.brand img { width: 42px; height: 42px; }
  .menu-toggle { display: flex; align-items: center; gap: 11px; padding: 10px; border: 0; background: transparent; color: var(--custard); }
  .menu-toggle i, .menu-toggle i::after { content: ""; display: block; width: 22px; height: 1px; background: currentColor; }.menu-toggle i::after { transform: translateY(6px); }
  .mobile-menu { position: fixed; z-index: 210; inset: 0; padding: 120px 22px 25px; display: flex; flex-direction: column; justify-content: space-between; background: var(--green); color: var(--custard); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .3s var(--ease); overflow-y: auto; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu nav > a, .mobile-menu nav > button { min-height: 60px; padding: 11px 0; display: flex; align-items: center; justify-content: space-between; border: 0; border-bottom: 1px solid var(--white-line); background: transparent; color: var(--custard); font-family: var(--display); font-size: 30px; text-align: left; }
  .mobile-categories { max-height: 0; display: grid; grid-template-columns: 1fr; overflow: hidden; transition: max-height .45s var(--ease); }.mobile-categories.is-open { max-height: 760px; }
  .mobile-categories a { padding: 9px 0; border-bottom: 1px solid var(--white-line); font-size: 16px; }.mobile-categories span { display: inline-block; width: 30px; opacity: .55; }
  .mobile-contact { padding-top: 28px; display: flex; flex-direction: column; gap: 6px; color: rgba(255,236,184,.7); font-size: 14px; }
  .center-heading { margin-bottom: 42px; }.center-heading h2 { font-size: clamp(42px, 13vw, 62px); }
  .split-heading { grid-template-columns: 1fr; gap: 20px; }.split-heading h2 { font-size: 49px; }
  .brew-hero { min-height: 940px; }.hero-copy { padding: 150px 0 520px; }.hero-copy h1 { font-size: clamp(58px, 17vw, 84px); }.hero-copy > p { font-size: 18px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-products { bottom: -40px; width: 110vw; height: 520px; gap: 10px; }.hero-product { border-radius: 28px 28px 0 0; }.hero-product-left, .hero-product-right { width: 29%; height: 330px; }.hero-product-main { width: 42%; height: 470px; }.hero-product figcaption { left: 12px; bottom: 50px; font-size: 12px; }
  .find-section, .popular-section, .brief-section, .faq-section, .quote-section, .category-hub, .related-section { padding-block: 90px; }
  .supply-worlds { grid-template-columns: 1fr; }.world-card, .world-card:last-child { grid-column: auto; min-height: 420px; }
  .popular-grid { grid-template-columns: 1fr 1fr; gap: 20px 12px; }.popular-card-copy h3 { font-size: 22px; }
  .vibe-section, .category-motion, .about-video-section { padding-block: 90px; }.vibe-grid, .category-motion-grid, .about-video-grid { grid-template-columns: 1fr; gap: 45px; }.vibe-copy h2, .category-motion-copy h2, .about-video-grid > div:last-child h2 { font-size: 55px; }.vibe-media, .category-video, .about-video { min-height: 540px; height: 540px; }
  .brief-steps { grid-template-columns: 1fr 1fr; gap: 12px; }.brief-steps article { min-height: 220px; padding: 18px; }.brief-steps h3 { font-size: 25px; }
  .buyer-strip { padding: 75px 0; }.buyer-strip h2 { font-size: 40px; }
  .breadcrumbs { padding-top: 122px; overflow-x: auto; white-space: nowrap; }
  .detail-hero { padding: 30px 0 80px; grid-template-columns: 1fr; gap: 36px; }.detail-media { height: 430px; }.detail-copy h1 { font-size: clamp(52px, 14vw, 76px); }
  .category-definition, .about-intro { padding-block: 90px; grid-template-columns: 1fr; gap: 25px; }.category-definition h2, .about-intro h2 { font-size: 45px; }
  .category-products { padding-block: 90px; }.product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }.product-grid article { min-height: 235px; padding: 18px; }.product-grid h3 { font-size: 25px; }
  .fit-section { padding-block: 90px; grid-template-columns: 1fr; gap: 40px; }.fit-panel { padding: 28px; }.fit-panel h2 { font-size: 42px; }
  .related-grid { grid-template-columns: 1fr; }.related-grid a { min-height: 360px; }
  .hub-hero { min-height: 680px; }.hub-hero .section-shell { padding-top: 165px; }.hub-hero h1 { font-size: clamp(65px, 18vw, 94px); }.hub-orbit { right: -130px; bottom: -90px; width: 360px; height: 360px; }.hub-orbit img { width: 175px; }
  .hub-grid { grid-template-columns: 1fr; }.hub-card { grid-template-rows: 280px 1fr; min-height: 560px; }.hub-card-copy h2 { font-size: 35px; }
  .about-brew-hero, .contact-brew-hero { min-height: 790px; }.about-brew-hero > .section-shell, .contact-brew-hero > .section-shell { padding-top: 150px; }.about-brew-hero h1, .contact-brew-hero h1 { font-size: clamp(62px, 18vw, 92px); }.about-hero-media, .contact-hero-image { bottom: -120px; height: 390px; }
  .principle-grid { grid-template-columns: 1fr 1fr; gap: 12px; }.principle-grid article { min-height: 245px; padding: 18px; }.principle-grid h3 { font-size: 26px; }
  .scope-section { padding-block: 90px; }.scope-section .section-shell, .contact-strip { grid-template-columns: 1fr; gap: 40px; }.scope-section h2 { font-size: 48px; }.contact-strip { padding-block: 75px; }.contact-strip h2 { font-size: 35px; }
  .contact-methods { padding-block: 85px; grid-template-columns: 1fr; }.contact-methods a { min-height: 190px; }
  .quote-section { grid-template-columns: 1fr; gap: 45px; }.quote-intro { position: static; }.quote-intro h2 { font-size: 50px; }
  .footer-main { padding: 75px 0 50px; }.footer-promise { grid-template-columns: 1fr; align-items: start; }.footer-promise h2 { font-size: 50px; }.footer-links { grid-template-columns: 1fr 1fr; gap: 45px 25px; }.footer-links > div:last-child { grid-column: span 2; }.footer-bottom { flex-direction: column; }
  .cookie-banner { flex-direction: column; align-items: stretch; }.cookie-banner > div { justify-content: flex-end; }
}

@media (max-width: 460px) {
  .popular-grid, .brief-steps, .product-grid, .principle-grid { grid-template-columns: 1fr; }
  .popular-media { aspect-ratio: 1.15 / 1; }
  .vibe-points { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }.span-2 { grid-column: auto; }
  .inquiry-form { padding: 22px 18px; border-radius: 26px; }.form-heading { align-items: flex-start; flex-direction: column; gap: 5px; }
  .footer-links { grid-template-columns: 1fr; }.footer-links > div:last-child { grid-column: auto; }
  .thank-you > div > div, .not-found > div > div { flex-direction: column; align-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  [data-reveal] { opacity: 1; transform: none; }
  [data-parallax] { transform: none!important; }
}
