:root {
  --emerald-950: #032a25;
  --emerald-900: #063a32;
  --emerald-800: #075044;
  --emerald-700: #086657;
  --gold: #e7ad34;
  --gold-light: #f4d47c;
  --cream: #f7f0e2;
  --cream-deep: #eee2cd;
  --ink: #142b27;
  --muted: #66736f;
  --white: #fffdfa;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 28px 80px rgba(2, 31, 27, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--gold); color: var(--emerald-950); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 88px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  transition: background .25s ease, height .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { height: 74px; background: rgba(3, 42, 37, .96); box-shadow: 0 8px 35px rgba(0,0,0,.15); backdrop-filter: blur(14px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; letter-spacing: .06em; }
.brand img { width: 58px; height: 58px; object-fit: contain; filter: drop-shadow(0 5px 14px rgba(0,0,0,.2)); }
.brand span { display: flex; flex-direction: column; line-height: 1.15; }
.brand strong { font-family: var(--serif); font-size: 16px; color: var(--gold-light); }
.brand small { margin-top: 4px; color: rgba(255,255,255,.65); font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
nav a { position: relative; }
nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s ease; }
nav a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 10px 18px; border: 1px solid rgba(231,173,52,.6); border-radius: 999px; color: var(--gold-light); transition: .25s ease; }
.nav-cta:hover { color: var(--emerald-950); background: var(--gold); }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.menu-button > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--gold-light); transition: .2s ease; }

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 72%, rgba(26, 112, 89, .55), transparent 29%),
    linear-gradient(118deg, var(--emerald-950) 0%, var(--emerald-900) 48%, #0a4a3e 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: linear-gradient(30deg, rgba(255,255,255,.4) 1px, transparent 1px), linear-gradient(120deg, rgba(255,255,255,.25) 1px, transparent 1px); background-size: 68px 68px; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 110px; background: linear-gradient(176deg, transparent 49%, var(--cream) 50%); }
.sun-glow { position: absolute; width: 520px; height: 520px; right: 4%; top: 11%; border-radius: 50%; background: radial-gradient(circle, rgba(244, 212, 124, .24), rgba(231, 173, 52, .06) 42%, transparent 70%); filter: blur(8px); }
.hero-grid { min-height: 750px; padding-top: 126px; padding-bottom: 100px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 52px; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 12px; color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.eyebrow.dark { color: var(--emerald-700); }
h1, h2, h3, blockquote { font-family: var(--serif); }
h1 { margin: 0; max-width: 700px; font-size: clamp(55px, 6.2vw, 90px); line-height: 1.03; letter-spacing: -.035em; font-weight: 600; }
h1 em, h2 em { color: var(--gold-light); font-weight: inherit; }
.hero-text { max-width: 610px; margin: 27px 0 34px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 52px; padding: 0 24px; border-radius: 999px; font-size: 14px; font-weight: 700; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--emerald-950); background: var(--gold); box-shadow: 0 15px 35px rgba(231, 173, 52, .18); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border: 1px solid rgba(255,255,255,.28); color: var(--white); }
.button-ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.trust-row { display: flex; flex-wrap: wrap; gap: 21px; margin-top: 38px; color: rgba(255,255,255,.58); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.trust-row i { display: inline-grid; place-items: center; width: 18px; height: 18px; margin-right: 4px; border: 1px solid rgba(231,173,52,.5); border-radius: 50%; color: var(--gold-light); font-size: 10px; font-style: normal; }

.hero-art { position: relative; min-height: 545px; display: grid; place-items: center; }
.logo-stage { position: relative; z-index: 3; width: min(465px, 90%); aspect-ratio: 1; border-radius: 50%; filter: drop-shadow(0 35px 50px rgba(0,0,0,.35)); animation: float 6s ease-in-out infinite; }
.logo-stage img { width: 100%; height: 100%; object-fit: contain; }
.hero-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(231,173,52,.22); }
.ring-one { width: 510px; height: 510px; }
.ring-two { width: 620px; height: 620px; border-style: dashed; opacity: .55; animation: rotate 38s linear infinite; }
.floating-label { position: absolute; z-index: 4; padding: 7px 15px; border: 1px solid rgba(231,173,52,.35); border-radius: 999px; color: var(--gold-light); background: rgba(3,42,37,.75); backdrop-filter: blur(8px); font-family: var(--serif); font-size: 14px; font-style: italic; letter-spacing: .06em; }
.label-top { top: 9%; right: 4%; }
.label-bottom { bottom: 11%; left: 0; }
@keyframes float { 50% { transform: translateY(-11px); } }
@keyframes rotate { to { transform: rotate(360deg); } }

.intro-strip { margin-top: -1px; padding: 88px 0 54px; background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: .85fr 2fr; gap: 70px; align-items: start; }
.section-number { color: var(--emerald-700); font-size: 11px; font-weight: 700; letter-spacing: .17em; }
.intro-grid > p:last-child { margin: 0; max-width: 760px; font-family: var(--serif); font-size: clamp(25px, 3vw, 39px); line-height: 1.42; color: var(--emerald-900); }

.section { padding: 110px 0; }
.products { background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: flex-end; margin-bottom: 48px; }
.section-heading h2, .origin-copy h2, .story h2, .video-band h2, .contact h2 { margin: 0; font-size: clamp(39px, 5vw, 63px); line-height: 1.12; letter-spacing: -.025em; color: var(--emerald-950); }
.section-heading h2 em, .story h2 em { color: var(--emerald-700); }
.section-heading > p { max-width: 430px; margin: 0 0 7px; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.product-card { grid-column: span 2; overflow: hidden; border: 1px solid rgba(7,80,68,.12); border-radius: 4px; background: rgba(255,255,255,.58); transition: transform .3s ease, box-shadow .3s ease, background .3s ease; }
.product-card:nth-child(4) { grid-column: 2 / span 2; }
.product-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: 0 22px 50px rgba(3,42,37,.10); }
.product-visual { height: 205px; display: grid; place-items: center; position: relative; overflow: hidden; }
.product-visual::before { content: ""; position: absolute; width: 165px; height: 165px; border-radius: 50%; background: rgba(255,255,255,.48); box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); }
.product-visual::after { content: ""; position: absolute; inset: 20px; border: 1px solid rgba(3,42,37,.08); border-radius: 50%; }
.product-visual span { position: relative; z-index: 2; font-size: 78px; filter: drop-shadow(0 14px 16px rgba(0,0,0,.15)); transition: transform .35s ease; }
.product-card:hover .product-visual span { transform: scale(1.08) rotate(-3deg); }
.citrus .product-visual { background: #efd19d; }
.oil .product-visual { background: #d1d5a4; }
.cheese .product-visual { background: #e7c87f; }
.pastry .product-visual { background: #dab28a; }
.wine .product-visual { background: #bdaca2; }
.product-body { padding: 28px 27px 32px; }
.card-kicker { margin: 0 0 8px; color: var(--emerald-700); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }
.product-body h3 { margin: 0 0 12px; color: var(--emerald-950); font-size: 26px; line-height: 1.2; }
.product-body > p:last-child { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.origin { position: relative; overflow: hidden; color: var(--white); background: var(--emerald-950); }
.origin::before { content: ""; position: absolute; width: 700px; height: 700px; left: -250px; bottom: -420px; border: 1px solid rgba(231,173,52,.14); border-radius: 50%; box-shadow: 0 0 0 90px rgba(231,173,52,.03), 0 0 0 180px rgba(231,173,52,.025); }
.origin-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.origin-mark { min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(231,173,52,.24); background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.01)); }
.origin-sun { width: 250px; height: 250px; display: grid; place-items: center; border-radius: 50%; background: repeating-conic-gradient(from 0deg, transparent 0 5deg, rgba(231,173,52,.4) 5.5deg 6deg); animation: rotate 60s linear infinite; }
.origin-sun span { width: 95px; height: 95px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #fff5a9, var(--gold) 53%, #b66d08 100%); box-shadow: 0 0 45px rgba(231,173,52,.4); }
.origin-mark p { margin: 24px 0 0; font-family: var(--serif); font-size: 38px; letter-spacing: .24em; color: var(--gold-light); }
.origin-mark small { margin-top: 10px; color: rgba(255,255,255,.4); letter-spacing: .18em; }
.origin-copy h2 { color: var(--white); }
.origin-copy > p:not(.eyebrow) { margin: 25px 0 34px; color: rgba(255,255,255,.67); font-size: 17px; }
.quality-list { border-top: 1px solid rgba(255,255,255,.13); }
.quality-list > div { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.quality-list strong { color: var(--gold); font-family: var(--serif); font-size: 18px; }
.quality-list span { display: flex; flex-direction: column; }
.quality-list b { font-size: 15px; color: var(--white); }
.quality-list small { margin-top: 2px; color: rgba(255,255,255,.5); font-size: 13px; }

.story { background: var(--white); }
.story-grid { display: grid; grid-template-columns: 1.05fr .75fr; gap: 110px; align-items: center; }
.story-copy .lead { margin: 27px 0 20px; color: var(--ink); font-family: var(--serif); font-size: 22px; line-height: 1.55; }
.story-copy > p:not(.eyebrow, .lead) { color: var(--muted); }
.text-link { display: inline-flex; gap: 24px; margin-top: 18px; color: var(--emerald-700); font-weight: 700; border-bottom: 1px solid rgba(7,80,68,.25); padding-bottom: 5px; }
.quote-card { position: relative; overflow: hidden; min-height: 470px; padding: 52px; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--emerald-800); box-shadow: var(--shadow); }
.quote-card::before { content: "“"; position: absolute; right: 23px; top: -55px; color: rgba(231,173,52,.13); font-family: var(--serif); font-size: 270px; line-height: 1; }
.quote-card img { position: absolute; width: 210px; top: 32px; right: 38px; opacity: .33; filter: saturate(.75); }
.quote-card blockquote { position: relative; margin: 0; font-size: 29px; line-height: 1.4; }
.quote-card > p { margin: 22px 0 0; color: var(--gold-light); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }

.video-band { padding: 86px 0; color: var(--white); background: linear-gradient(110deg, #6d2d1c, #9f4729); }
.video-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: center; }
.video-band h2 { color: var(--white); }
.video-band > .container > div > p:last-child { max-width: 600px; color: rgba(255,255,255,.72); }
.video-button { display: flex; align-items: center; gap: 19px; padding: 24px; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); transition: .25s ease; }
.video-button:hover { background: rgba(255,255,255,.15); transform: translateY(-3px); }
.play { width: 58px; height: 58px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #8b3723; background: var(--white); font-size: 18px; padding-left: 3px; }
.video-button > span:last-child { display: flex; flex-direction: column; }
.video-button b { font-size: 15px; }
.video-button small { color: rgba(255,255,255,.6); }

.contact { background: var(--cream); }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: center; padding: 76px; color: var(--white); background: var(--emerald-900); box-shadow: var(--shadow); }
.contact-card::after { content: ""; position: absolute; right: -110px; top: -140px; width: 430px; height: 430px; border: 1px solid rgba(231,173,52,.15); border-radius: 50%; box-shadow: 0 0 0 65px rgba(231,173,52,.03), 0 0 0 130px rgba(231,173,52,.02); }
.contact h2 { position: relative; z-index: 2; color: var(--white); }
.contact-card > div:first-child > p:last-child { max-width: 620px; color: rgba(255,255,255,.68); }
.contact-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }
.button-gold { color: var(--emerald-950); background: var(--gold); }
.button-gold:hover { background: var(--gold-light); }
.contact-mail { color: var(--gold-light); font-size: 14px; border-bottom: 1px solid rgba(244,212,124,.4); }
.contact-actions p { margin: 0; color: rgba(255,255,255,.54); font-size: 12px; }

footer { padding: 58px 0 25px; color: var(--white); background: #021e1a; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 38px; }
.footer-brand img { width: 64px; height: 64px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 30px; color: rgba(255,255,255,.65); font-size: 13px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 35px; border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.36); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.product-card:nth-child(2) { transition-delay: .08s; }
.product-card:nth-child(3) { transition-delay: .16s; }
.product-card:nth-child(4) { transition-delay: .08s; }
.product-card:nth-child(5) { transition-delay: .16s; }

@media (max-width: 980px) {
  .site-header { height: 76px; }
  .brand img { width: 50px; height: 50px; }
  .menu-button { display: block; }
  nav { position: absolute; left: 24px; right: 24px; top: 76px; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 16px; color: var(--white); background: var(--emerald-950); box-shadow: var(--shadow); }
  nav.is-open { display: flex; }
  nav a { padding: 11px 13px; }
  .nav-cta { text-align: center; margin-top: 5px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 135px; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-art { min-height: 490px; }
  .logo-stage { width: min(440px, 76vw); }
  .ring-two { width: 570px; height: 570px; }
  .hero::after { height: 60px; }
  .intro-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-card { grid-column: span 3; }
  .product-card:nth-child(4) { grid-column: span 3; }
  .product-card:nth-child(5) { grid-column: 2 / span 4; }
  .origin-grid, .story-grid, .video-grid, .contact-card { grid-template-columns: 1fr; gap: 55px; }
  .origin-mark { min-height: 450px; }
  .story-grid { gap: 55px; }
  .quote-card { min-height: 420px; }
  .contact-card { padding: 58px; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 30px, 1160px); }
  .brand small { display: none; }
  .brand strong { font-size: 14px; }
  .hero { min-height: 0; }
  .hero-grid { min-height: 0; padding: 118px 0 105px; gap: 28px; }
  h1 { font-size: clamp(47px, 14vw, 68px); }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .button { width: 100%; }
  .trust-row { justify-content: center; gap: 12px; }
  .hero-art { min-height: 375px; width: 100%; }
  .logo-stage { width: min(335px, 90vw); }
  .ring-one { width: 360px; height: 360px; }
  .ring-two { width: 420px; height: 420px; }
  .floating-label { font-size: 12px; }
  .label-top { right: 0; }
  .label-bottom { left: 2%; }
  .intro-strip { padding-top: 60px; }
  .intro-grid > p:last-child { font-size: 27px; }
  .section { padding: 78px 0; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card, .product-card:nth-child(4), .product-card:nth-child(5) { grid-column: 1; }
  .product-visual { height: 185px; }
  .origin-grid { gap: 48px; }
  .origin-mark { min-height: 385px; }
  .origin-sun { width: 205px; height: 205px; }
  .origin-mark p { font-size: 29px; }
  .quote-card { min-height: 390px; padding: 38px 30px; }
  .quote-card blockquote { font-size: 25px; }
  .video-grid { gap: 34px; }
  .contact-card { width: calc(100% - 30px); padding: 46px 27px; gap: 37px; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; gap: 18px; }
  .footer-bottom { gap: 8px; }
}

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