/* ============================================================
   AFNATOLIA: design system
   Palette: bottle-glass green, label cream, oil gold, sage leaf
   Type: Fraunces (display) + Manrope (body)
   ============================================================ */

:root {
  --pine:       #1C2A1E;
  --pine-deep:  #141F16;
  --pine-soft:  #263826;
  --cream:      #F2ECDB;
  --sand:       #E6DCC4;
  --ink:        #1E2619;
  --gold:       #C99B3F;
  --gold-bright:#E9C879;
  --gold-ink:   #9A7327;
  --leaf:       #7E8F5F;
  --hairline-d: rgba(242, 236, 219, .14);
  --hairline-l: rgba(30, 38, 25, .16);
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", "Segoe UI", -apple-system, sans-serif;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --wrap: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  background: var(--pine);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
figure { margin: 0; }
::selection { background: var(--gold); color: var(--pine-deep); }
:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 3rem); }

/* ---------- Shared type ---------- */
.eyebrow {
  font: 600 .78rem/1.4 var(--font-body);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.section-light .eyebrow { color: var(--gold-ink); }

.h2 {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: .9rem 0 1.5rem;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 450;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
}
.lead { font-size: clamp(1.05rem, 1.4vw, 1.15rem); line-height: 1.75; opacity: .92; max-width: 42rem; }
.story-text p:not(.eyebrow):not(.lead) { max-width: 40rem; opacity: .88; margin-top: 1rem; }

.section-light { background: var(--cream); color: var(--ink); }

/* Line mask reveals (activated only when JS + animation available) */
.line { display: block; overflow: hidden; }
.line-inner { display: block; }
html.js .line-inner { transform: translateY(114%); }
html.js [data-reveal] { opacity: 0; transform: translateY(34px); }
html.js [data-img-reveal] { clip-path: inset(0% 0% 100% 0%); }

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 250;
  opacity: .055;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 300;
  background: var(--cream);
  display: grid; place-items: center;
}
html:not(.js) .preloader { display: none; }
.pre-inner { text-align: center; }
.pre-word { display: flex; gap: .04em; overflow: hidden; justify-content: center; }
.pre-word span {
  font-family: var(--font-display);
  font-weight: 420;
  font-size: clamp(2.2rem, 7vw, 4.2rem);
  color: var(--pine);
  display: inline-block;
  transform: translateY(130%);
}
.pre-word span:last-child {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.pre-bar {
  width: min(240px, 56vw); height: 2px;
  background: rgba(30, 38, 25, .14);
  margin: 1.5rem auto .9rem;
  overflow: hidden;
}
.pre-bar-fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: scaleX(0); transform-origin: left;
}
.pre-tag { font-size: .64rem; letter-spacing: .32em; color: var(--ink); opacity: .5; }

/* ---------- Oil rail (signature) ---------- */
.oil-rail {
  position: fixed;
  left: clamp(1.1rem, 2.4vw, 2.2rem);
  top: 14vh; bottom: 14vh;
  width: 2px; z-index: 40;
  background: var(--hairline-d);
  --p: 0;
}
.oil-fill {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  transform: scaleY(var(--p)); transform-origin: top;
}
.oil-drop {
  position: absolute;
  left: 50%;
  top: calc(var(--p) * 100%);
  width: 9px; height: 13px;
  transform: translate(-50%, -4px);
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold) 70%);
  border-radius: 50% 50% 50% 50% / 62% 62% 38% 38%;
  box-shadow: 0 0 14px rgba(233, 200, 121, .75);
}
@media (max-width: 1100px) { .oil-rail { display: none; } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .45s ease, box-shadow .45s ease;
}
.nav.is-scrolled {
  background: rgba(20, 31, 22, .82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--hairline-d);
}
.nav-inner {
  max-width: calc(var(--wrap) + 4rem);
  margin-inline: auto;
  padding: 1.05rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand-mark { width: 17px; height: 17px; color: var(--gold); flex: none; }
.brand-name { font: 700 .92rem/1 var(--font-body); letter-spacing: .24em; }
.nav-links { display: flex; gap: clamp(1.2rem, 2.6vw, 2.4rem); }
.nav-links a {
  font: 500 .93rem/1 var(--font-body);
  color: rgba(242, 236, 219, .85);
  position: relative; padding-block: .4rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold-bright);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--cream); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 1.3rem; }
.nav-phone { font: 600 .88rem/1 var(--font-body); color: rgba(242, 236, 219, .8); letter-spacing: .04em; }
.nav-phone:hover { color: var(--gold-bright); }

.lang { display: inline-flex; align-items: center; gap: .45rem; }
.lang-sep { opacity: .35; font-size: .85rem; }
.lang-btn {
  font: 600 .84rem/1 var(--font-body);
  letter-spacing: .08em;
  opacity: .55;
  padding: .35rem .15rem;
  border-bottom: 1px solid transparent;
  transition: opacity .3s, border-color .3s, color .3s;
}
.lang-btn[aria-pressed="true"] { opacity: 1; color: var(--gold-bright); border-color: var(--gold-bright); }
.section-light .lang-btn[aria-pressed="true"] { color: var(--gold-ink); border-color: var(--gold-ink); }
.lang-btn:hover { opacity: 1; }

.burger { display: none; width: 40px; height: 40px; position: relative; z-index: 130; }
.burger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--cream);
  transition: transform .4s var(--ease-out), top .4s var(--ease-out);
}
.burger span:first-child { top: 15px; }
.burger span:last-child { top: 23px; }
.burger.is-open span:first-child { top: 19px; transform: rotate(45deg); }
.burger.is-open span:last-child { top: 19px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 95;
  background: var(--pine-deep);
  transform: translateY(-102%);
  transition: transform .55s var(--ease-out);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem clamp(1.5rem, 8vw, 4rem) 3rem;
  visibility: hidden;
}
.mmenu.is-open { transform: translateY(0); visibility: visible; }
.mmenu-links { display: flex; flex-direction: column; gap: 1.1rem; }
.mmenu-links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 9vw, 3rem);
  line-height: 1.1;
}
.mmenu-links a:hover { color: var(--gold-bright); }
.mmenu-foot {
  margin-top: 3rem; display: flex; flex-direction: column; gap: .8rem;
  font-size: .95rem; opacity: .85;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
  padding: 8rem 1.5rem 6rem;
}
.hero-bg { position: absolute; inset: -6%; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.94) brightness(.72) contrast(1.03);
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 42%, transparent 0%, rgba(20, 31, 22, .38) 78%),
    linear-gradient(180deg, rgba(20, 31, 22, .62) 0%, rgba(20, 31, 22, .18) 34%, rgba(20, 31, 22, .28) 66%, var(--pine) 98%);
}
.hero-branch {
  position: absolute; top: -2%; z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 30px 34px rgba(10, 16, 10, .45)) saturate(.96);
  will-change: transform;
}
.hero-branch-l { left: -2%; width: clamp(130px, 17vw, 300px); }
.hero-branch-r { right: -7%; width: clamp(190px, 27vw, 480px); }
.hero-inner { position: relative; z-index: 3; text-align: center; max-width: 62rem; }
.hero-eyebrow { margin-bottom: 1.6rem; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 390;
  font-size: clamp(3.1rem, 10.5vw, 7.8rem);
  line-height: .99;
  letter-spacing: -.015em;
}
.hero-accent {
  font-style: italic;
  font-weight: 420;
  background: linear-gradient(105deg, var(--gold-bright) 10%, var(--gold) 55%, #A87A2A 95%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  padding-right: .06em;
}
.hero-sub {
  margin: 2rem auto 0;
  max-width: 44rem;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.8;
  color: rgba(242, 236, 219, .88);
}
.hero-cta { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.scroll-cue-line { position: relative; width: 1px; height: 52px; background: rgba(242, 236, 219, .25); overflow: hidden; }
.scroll-cue-line::after {
  content: ""; position: absolute; left: -1.5px; top: -10px;
  width: 4px; height: 10px; border-radius: 3px;
  background: var(--gold-bright);
  animation: cue-fall 2.1s cubic-bezier(.45, 0, .6, 1) infinite;
}
@keyframes cue-fall { 0% { top: -12px; } 62%, 100% { top: 60px; } }
.scroll-cue-label { font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(242, 236, 219, .55); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  font: 600 .94rem/1 var(--font-body);
  letter-spacing: .02em;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s, color .3s, background-color .3s;
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .34) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(130%); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #2A1E06;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201, 155, 63, .35); }
.btn-ghost { border: 1px solid rgba(242, 236, 219, .38); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); transform: translateY(-2px); }
.btn-green { background: var(--pine); color: var(--cream); }
.btn-green:hover { background: var(--pine-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(30, 38, 25, .3); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--pine);
  border-block: 1px solid var(--hairline-d);
  padding: .95rem 0;
  overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-group { display: flex; flex: none; }
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  color: var(--gold);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Story ---------- */
.story { position: relative; overflow: hidden; padding-block: clamp(5.5rem, 11vw, 9.5rem); }
.story-tree {
  position: absolute; right: -7%; top: 2%;
  height: 96%; width: auto;
  opacity: .13;
  mix-blend-mode: multiply;
  filter: grayscale(25%) sepia(10%);
  pointer-events: none;
}
.story-grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.7rem 2rem;
  margin-top: 2.6rem; padding-top: 2.2rem;
  border-top: 1px solid var(--hairline-l);
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 480;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  line-height: 1.1;
}
.stat-label { font-size: .84rem; letter-spacing: .04em; opacity: .62; margin-top: .3rem; }

.story-media { position: relative; min-height: 580px; }
.story-img {
  position: absolute; overflow: hidden; border-radius: 20px;
  box-shadow: 0 32px 64px rgba(30, 38, 25, .22);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-a { top: 0; left: 0; width: 74%; aspect-ratio: 4 / 3; }
.story-img-b {
  bottom: 0; right: 0; width: 46%; aspect-ratio: 3 / 4;
  border: 6px solid var(--cream);
  box-shadow: 0 26px 52px rgba(30, 38, 25, .3);
}

/* ---------- Founder ---------- */
.founder {
  position: relative;
  background: var(--pine);
  border-bottom: 1px solid var(--hairline-d);
  padding-block: clamp(5.5rem, 11vw, 9.5rem);
}
.founder-grid {
  display: grid; grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.founder-body .lead { max-width: 40rem; }
.founder-body p:not(.lead):not(.founder-sig) { max-width: 40rem; opacity: .88; margin-top: 1.1rem; }
.founder-sig { margin-top: 2.4rem; display: flex; flex-direction: column; gap: .35rem; }
.founder-sig-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--gold-bright);
}
.founder-sig-role {
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(242, 236, 219, .55);
}

/* ---------- Oils ---------- */
.oils {
  position: relative;
  background: linear-gradient(180deg, var(--pine) 0%, var(--pine-deep) 100%);
  padding-block: clamp(5.5rem, 11vw, 9.5rem);
}
.sec-head { max-width: 48rem; margin-bottom: clamp(2.6rem, 6vw, 4.4rem); }
.cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.card {
  background: rgba(38, 56, 38, .5);
  border: 1px solid rgba(233, 200, 121, .13);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .55s var(--ease-out), border-color .4s ease, box-shadow .55s var(--ease-out);
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 200, 121, .42);
  box-shadow: 0 26px 48px rgba(10, 16, 10, .4);
}
.card-media { aspect-ratio: 3 / 4; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 1.25rem 1.3rem 1.55rem; }
.card-title { font-family: var(--font-display); font-weight: 450; font-size: 1.32rem; line-height: 1.2; }
.card-desc { font-size: .9rem; line-height: 1.65; opacity: .78; margin-top: .55rem; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.chip {
  border: 1px solid rgba(233, 200, 121, .35);
  color: var(--gold-bright);
  border-radius: 999px;
  padding: .26rem .78rem;
  font: 600 .76rem/1.3 var(--font-body);
  letter-spacing: .05em;
}
.oils-note {
  margin: 2.4rem 0 clamp(3rem, 7vw, 4.5rem);
  font-family: var(--font-display); font-style: italic;
  font-size: 1.12rem;
  color: rgba(242, 236, 219, .62);
}
.oils-band {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: rgba(242, 236, 219, .045);
  border: 1px solid var(--hairline-d);
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
}
.oils-band-text p { opacity: .85; margin-top: .9rem; max-width: 34rem; }
.band-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.7rem; }
.oils-band-media img { border-radius: 14px; }

/* ---------- Gift boxes ----------
   A boutique vitrine on deep pine: each photo floats in a soft gold
   spotlight, with a caption ledger and a filmstrip of thumbnails. */
.gifts {
  position: relative;
  background: var(--pine-deep);
  border-top: 1px solid var(--hairline-d);
  padding-block: clamp(5.5rem, 11vw, 9.5rem);
  overflow: clip;
}
/* Without JavaScript the gallery renders as a simple stacked set of
   photos; the slideshow styles only apply once main.js marks it ready. */
.gal { max-width: 660px; margin-inline: auto; }
.gal:not(.is-ready) .gal-stage { display: grid; gap: 1.4rem; }
.gal:not(.is-ready) .gal-nav,
.gal:not(.is-ready) .gal-meta,
.gal:not(.is-ready) .gal-thumbs { display: none; }
.gal-slide img {
  width: auto; height: auto;
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .38);
}
.gal.is-ready .gal-stage {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--pine);
  border: 1px solid var(--hairline-d);
  border-radius: 20px;
  overflow: hidden;
}
.gal.is-ready .gal-slide {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  /* explicit 100% track: without it, the photo's height:100% resolves
     as auto in Chrome and the image overflows the frame */
  grid-template: 100% / 100%;
  padding: clamp(.9rem, 2.5vw, 1.4rem);
  opacity: 0; visibility: hidden;
  transition: opacity .7s ease, visibility 0s linear .7s;
}
.gal.is-ready .gal-slide.is-active {
  opacity: 1; visibility: visible;
  transition: opacity .7s ease;
}
/* Each slide is two layers: a blurred, darkened echo of the photo that
   fills the whole frame, and the complete photo contained on top of it.
   The frame always looks full, and no photo is ever cropped. */
.gal-bg { display: none; }
.gal.is-ready .gal-bg {
  display: block;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  margin: 0;
  object-fit: cover;
  transform: scale(1.15);
  filter: blur(24px) saturate(.85) brightness(.5);
  border-radius: 0;
  box-shadow: none;
}
.gal.is-ready .gal-ph {
  position: relative;
  width: 100%; height: 100%;
  max-width: none; max-height: none;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}
.gal.is-ready .gal-stage::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 90px rgba(10, 16, 10, .5);
  pointer-events: none;
}
@media (prefers-reduced-motion: no-preference) {
  .gal.is-ready .gal-ph { transform: scale(.975); transition: transform 1.4s var(--ease-out); }
  .gal.is-ready .gal-slide.is-active .gal-ph { transform: scale(1); }
}
.gal-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(242, 236, 219, .28);
  color: var(--cream);
  background: rgba(20, 31, 22, .4);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: border-color .3s, color .3s, background-color .3s;
}
.gal-prev { left: .4rem; }
.gal-next { right: .4rem; }
.gal-nav:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.gal-nav svg { width: 19px; height: 19px; }
.gal-meta {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hairline-d);
}
.gal-cap {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.45;
  color: var(--gold-bright);
}
.gal-count {
  font: 600 .74rem/1 var(--font-body);
  letter-spacing: .28em;
  color: rgba(242, 236, 219, .5);
  white-space: nowrap;
}
.gal-thumbs {
  position: relative;
  display: flex; gap: .7rem;
  margin-top: 1.2rem;
  overflow-x: auto;
  /* padding + negative margin keep focus rings and the hover lift
     from being clipped, while thumbs stay flush with the edges */
  padding: 6px 6px .5rem;
  margin-inline: -6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(242, 236, 219, .25) transparent;
}
.gal-thumb {
  flex: none;
  width: 74px; height: 90px;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .55;
  transition: opacity .3s, border-color .3s, transform .3s var(--ease-out);
}
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumb:hover { opacity: .85; transform: translateY(-2px); }
.gal-thumb.is-active { opacity: 1; border-color: var(--gold); }
.gal-cta { margin-top: 2rem; text-align: center; }

/* ---------- Harvest ---------- */
.harvest { position: relative; padding-block: clamp(5.5rem, 11vw, 9.5rem) clamp(9rem, 16vw, 13rem); }
.hv-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.hv-visual {
  position: sticky; top: 13vh;
  height: 74vh;
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 36px 70px rgba(30, 38, 25, .28);
}
.hv-img { position: absolute; inset: 0; }
html.js .hv-img { clip-path: inset(0 0 100% 0); }
html.js .hv-img.is-active { clip-path: inset(0); }
.hv-img img { width: 100%; height: 100%; object-fit: cover; }
.hv-steps { display: flex; flex-direction: column; }
.hv-step {
  min-height: 62vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-block: 2.6rem;
  border-top: 1px solid var(--hairline-l);
}
.hv-step:first-child { border-top: 0; }
.hv-num {
  display: flex; align-items: center; gap: 1.1rem;
  font-family: var(--font-display); font-style: italic;
  font-size: 1.05rem; color: var(--gold-ink);
}
.hv-num::after { content: ""; height: 1px; flex: 1; max-width: 130px; background: var(--hairline-l); }
.hv-step .h3 { margin-top: 1.1rem; }
.hv-step p { max-width: 33rem; opacity: .88; margin-top: .8rem; }
.hv-step-media { display: none; }
/* Decorative strip only: crop the tall source image to its olive band at the
   bottom, and keep it shorter than the section's bottom padding so it can
   never sit on top of the step text. */
.hv-net {
  position: absolute; bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: min(660px, 82vw);
  height: clamp(7.5rem, 14vw, 11.875rem);
  object-fit: cover;
  object-position: bottom;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 60%);
  mask-image: linear-gradient(180deg, transparent, #000 60%);
}

/* ---------- Quote ---------- */
.quote {
  position: relative; overflow: hidden;
  background: var(--pine-deep);
  padding-block: clamp(8rem, 17vw, 13rem);
}
.quote-bg { position: absolute; inset: -12%; }
.quote-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .48; filter: saturate(.9); }
.quote-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 31, 22, .94), rgba(20, 31, 22, .52) 50%, rgba(20, 31, 22, .94));
}
.quote-inner { position: relative; z-index: 2; text-align: center; max-width: 58rem; }
.quote-text {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.85rem, 4.4vw, 3.3rem);
  line-height: 1.28;
}
.quote-by {
  margin-top: 1.8rem;
  font-size: .76rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-bright); opacity: .85;
}

/* ---------- Contact ---------- */
.contact { padding-block: clamp(5.5rem, 11vw, 9.5rem); }
.contact-grid {
  display: grid; grid-template-columns: 1.05fr .9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.ct-cards { display: flex; flex-direction: column; gap: .85rem; margin: 2.1rem 0 2.2rem; }
.ct-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: .9rem;
  align-items: center;
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--hairline-l);
  border-radius: 16px;
  background: rgba(255, 255, 255, .32);
  transition: transform .4s var(--ease-out), border-color .3s, background-color .3s, box-shadow .4s;
}
.ct-card:hover {
  transform: translateY(-3px);
  border-color: rgba(154, 115, 39, .55);
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 16px 34px rgba(30, 38, 25, .12);
}
.ct-ico { grid-row: span 2; width: 25px; height: 25px; color: var(--gold-ink); }
.ct-k { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; opacity: .58; }
.ct-v { font: 600 1.02rem/1.4 var(--font-body); color: var(--ink); overflow-wrap: anywhere; }
.contact-media {
  border-radius: 26px; overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 36px 70px rgba(30, 38, 25, .26);
}
.contact-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact form ----------
   Styled as brand stationery: a crisp paper card, small gold field
   labels, and underline-only inputs that turn gold when focused. */
.ct-form {
  position: relative;
  display: grid; grid-template-columns: .8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  margin-top: clamp(3rem, 7vw, 5rem);
  padding: clamp(2rem, 4.5vw, 3.6rem);
  background: #F9F4E6;
  border: 1px solid var(--hairline-l);
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(30, 38, 25, .14);
}
.ct-form-mark { width: 30px; height: 30px; color: var(--gold); margin-bottom: 1.1rem; }
.ct-form-head .h3 { max-width: 16ch; }
.ct-form-sub { margin-top: 1rem; opacity: .8; max-width: 24rem; }
.ct-form-fields { display: flex; flex-direction: column; gap: 1.7rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.7rem 2.2rem; }
.cf-field { display: block; }
.cf-label {
  display: block;
  font: 600 .68rem/1.4 var(--font-body);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: .1rem;
}
.cf-input {
  -webkit-appearance: none; appearance: none;
  width: 100%;
  font: 500 1rem/1.6 var(--font-body);
  color: var(--ink);
  caret-color: var(--gold-ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(30, 38, 25, .28);
  border-radius: 0;
  padding: .5rem 0 .55rem;
  transition: border-color .3s, box-shadow .3s;
}
.cf-input:hover { border-bottom-color: rgba(30, 38, 25, .45); }
.cf-input:focus {
  outline: none;
  border-bottom-color: var(--gold-ink);
  box-shadow: 0 1px 0 var(--gold-ink);
}
.cf-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #F9F4E6 inset;
  -webkit-text-fill-color: var(--ink);
}
.cf-area { resize: vertical; min-height: 120px; }
/* Honeypot: parked far off screen; bots fill it, people never see it */
.cf-trap { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.cf-actions { display: flex; align-items: center; gap: 1.3rem; flex-wrap: wrap; margin-top: .4rem; }
.cf-actions .btn[disabled] { opacity: .6; cursor: default; transform: none; }
.cf-status { margin: 0; font-size: .93rem; font-weight: 600; }
.cf-status:empty { display: none; }
.cf-status.is-ok { color: #4C6B2F; }
.cf-status.is-err { color: #A4442A; }

/* ---------- Footer ---------- */
.footer {
  position: relative; overflow: hidden;
  background: var(--pine-deep);
  padding-top: clamp(4rem, 8vw, 6rem);
}
.foot-garland {
  position: absolute; top: -30px; right: -6%;
  width: min(520px, 55vw);
  opacity: .38;
  transform: rotate(5deg);
  filter: brightness(.82);
  pointer-events: none;
}
.foot-word {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(4.2rem, 14.5vw, 13rem);
  line-height: 1;
  letter-spacing: .05em;
  text-align: center;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(233, 200, 121, .2);
  user-select: none;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.foot-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr .8fr;
  gap: 2.5rem;
  padding-block: 2.4rem 3rem;
  border-top: 1px solid var(--hairline-d);
}
.foot-col { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; font-size: .95rem; }
.foot-col a { color: rgba(242, 236, 219, .78); }
.foot-col a:hover { color: var(--gold-bright); }
.foot-col span { color: rgba(242, 236, 219, .55); }
.foot-h {
  font: 700 .74rem/1.4 var(--font-body);
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-bright); opacity: .85;
  margin-bottom: .4rem;
}
.foot-tag { margin-top: 1.1rem; font-family: var(--font-display); font-style: italic; font-size: 1.05rem; opacity: .72; max-width: 20rem; }
.foot-legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem 1.5rem;
  border-top: 1px solid var(--hairline-d);
  padding-block: 1.4rem 2rem;
  font-size: .84rem;
  color: rgba(242, 236, 219, .5);
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: block; }
  .nav .lang { display: none; }
  .story-grid, .contact-grid, .oils-band, .founder-grid { grid-template-columns: 1fr; }
  .story-media { min-height: 0; margin-top: 1rem; }
  .story-img { position: static; }
  .story-img-a { width: 100%; }
  .story-img-b { width: 62%; margin: -3.5rem 0 0 auto; }
  .story-tree { opacity: .08; }
  .hv-wrap { grid-template-columns: 1fr; }
  .hv-visual { display: none; }
  .hv-step { min-height: 0; padding-block: 2.4rem; }
  .hv-step-media {
    display: block; overflow: hidden; border-radius: 16px;
    margin-top: 1.3rem; order: 5;
    box-shadow: 0 20px 44px rgba(30, 38, 25, .2);
  }
  .contact-media { order: -1; max-width: 520px; }
  .ct-form { grid-template-columns: 1fr; gap: 2rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.3rem 1.2rem; }
  .hero-branch-l { display: none; }
  .hero-branch-r { width: 220px; right: -14%; opacity: .9; }
  .hero-cta .btn { width: 100%; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-actions .btn { width: 100%; }
  .gal.is-ready .gal-stage { aspect-ratio: 1 / 1; }
  .gal-nav { width: 40px; height: 40px; }
  .gal-meta { flex-direction: column; gap: .4rem; }
  .gal-cap { min-height: 2.9em; }
  .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-legal { flex-direction: column; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .scroll-cue-line::after { animation: none; }
  .btn::after { display: none; }
}
