@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/DMSans-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/PlayfairDisplay-Italic-Variable.ttf") format("truetype");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans Sinhala";
  src: url("assets/fonts/NotoSansSinhala-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

.legal-main { overflow-wrap: anywhere; }

:root {
  --forest: #102b22;
  --forest-2: #173d30;
  --cream: #f4efe4;
  --paper: #faf7f0;
  --sand: #ded1bc;
  --cinnamon: #a85f3e;
  --gold: #c7a15d;
  --ink: #18211d;
  --muted: #69736d;
  --line: rgba(24,33,29,.14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", "Manrope", Arial, sans-serif;
  --sinhala: "Noto Sans Sinhala", "Nirmala UI", Arial, sans-serif;
  --pad: clamp(22px, 4.5vw, 72px);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1440px, 100%); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(96px, 12vw, 180px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -80px; background: white; color: var(--forest); padding: 12px 18px; z-index: 1000; transition: top .2s; }
.skip-link:focus { top: 18px; }
.grain { position: fixed; inset: 0; pointer-events: none; z-index: 900; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); }

.site-header { position: absolute; top: 0; left: 0; right: 0; z-index: 50; height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 var(--pad); color: #fff; border-bottom: 1px solid rgba(255,255,255,.18); transition: background .35s, height .35s, transform .35s; }
.site-header.sticky { position: fixed; height: 74px; background: rgba(16,43,34,.91); backdrop-filter: blur(18px); box-shadow: 0 12px 32px rgba(6,20,14,.16); }
.site-header.hidden { transform: translateY(-100%); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; }
.brand-mark { width: 43px; height: 43px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 13px; letter-spacing: .04em; }
.brand > span:last-child { display: flex; flex-direction: column; }
.brand strong { font-family: var(--serif); font-size: 20px; font-weight: 500; letter-spacing: -.02em; line-height: 1; }
.brand small { font-size: 8px; letter-spacing: .22em; text-transform: uppercase; margin-top: 5px; opacity: .72; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); margin-left: auto; }
.site-nav a { text-decoration: none; font-size: 13px; position: relative; }
.site-nav > a:not(.nav-cta):after { content: ""; height: 1px; position: absolute; left: 0; bottom: -6px; width: 100%; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.site-nav > a:not(.nav-cta):hover:after { transform: scaleX(1); transform-origin: left; }
.nav-cta { border: 1px solid rgba(255,255,255,.65); border-radius: 999px; padding: 13px 18px; display: flex; gap: 20px; align-items: center; transition: background .25s, color .25s; }
.nav-cta:hover { background: #fff; color: var(--forest); }
.menu-toggle { display: none; background: transparent; color: white; border: 0; width: 45px; height: 45px; padding: 13px 8px; }
.menu-toggle span { display: block; height: 1px; background: currentColor; margin: 6px 0; transition: transform .3s; }
.language-switcher { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
.language-switcher button { min-width: 42px; height: 31px; border: 1px solid rgba(255,255,255,.32); border-radius: 999px; padding: 0 8px; background: rgba(7,25,18,.14); color: #fff; display: inline-flex; align-items: center; justify-content: center; gap: 4px; cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .2s; }
.language-switcher button:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.72); }
.language-switcher button:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.language-switcher button.active { background: var(--gold); border-color: var(--gold); color: #102b22; }
.language-switcher .flag { position: relative; width: 16px; height: 11px; display: inline-block; flex: 0 0 auto; overflow: hidden; border-radius: 1px; box-shadow: 0 0 0 1px rgba(255,255,255,.28); }
.language-switcher .flag-de { background: linear-gradient(to bottom, #161616 0 33.333%, #d00 33.333% 66.666%, #ffce00 66.666%); }
.language-switcher .flag-us { background: repeating-linear-gradient(to bottom, #b22234 0 7.69%, #fff 7.69% 15.38%); }
.language-switcher .flag-us:before { content: ""; position: absolute; left: 0; top: 0; width: 45%; height: 54%; background: #3c3b6e; }
.language-switcher .flag-lk { border: 1px solid #f7b718; background: linear-gradient(to right, #00534e 0 23%, #f15a24 23% 46%, #8d153a 46%); }
.language-switcher button b { font: 600 8px/1 var(--sans); letter-spacing: .06em; }
html[lang="si"] body { font-family: var(--sinhala); }
html[lang="si"] h1, html[lang="si"] h2, html[lang="si"] h3, html[lang="si"] em, html[lang="si"] .gallery-slide figcaption strong { font-family: var(--sinhala); letter-spacing: normal; }
html[lang="si"] em { font-style: normal; }
html[lang="si"] h1 { font-size: clamp(54px, 7.2vw, 96px); line-height: 1.06; }
.version-switch { position: fixed; right: 16px; bottom: 16px; z-index: 100; display: flex; align-items: center; gap: 2px; padding: 5px; background: rgba(250,247,240,.94); box-shadow: 0 8px 30px rgba(16,43,34,.18); border: 1px solid rgba(16,43,34,.12); border-radius: 999px; color: var(--forest); backdrop-filter: blur(10px); }
.version-switch span { padding: 8px 12px; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.version-switch a { background: var(--forest); color: white; border-radius: 999px; padding: 9px 13px; text-decoration: none; font-size: 11px; }

.hero { position: relative; height: max(760px, 100svh); min-height: 680px; overflow: hidden; color: white; background: var(--forest); }
.hero-media, .hero-media img, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { height: 114%; top: -7%; will-change: transform; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(6,23,17,.82) 0%, rgba(6,23,17,.45) 46%, rgba(6,23,17,.12) 75%), linear-gradient(0deg, rgba(5,19,14,.82) 0%, transparent 38%); }
.hero-content { position: relative; z-index: 2; height: 100%; width: min(1440px, 100%); margin: auto; padding: clamp(160px, 18vh, 220px) var(--pad) 155px; display: flex; flex-direction: column; }
.hero-topline { text-transform: uppercase; letter-spacing: .22em; font-size: 10px; display: flex; align-items: center; gap: 14px; opacity: .82; }
.hero-topline span { width: 42px; height: 1px; background: var(--gold); }
h1, h2 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -.052em; }
h1 { font-size: clamp(60px, 8.8vw, 142px); line-height: .88; max-width: 1220px; margin-top: auto; }
h1 em, h2 em { color: var(--gold); font-weight: 500; }
.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-top: clamp(36px, 5vw, 68px); }
.hero-bottom > p { margin: 0; width: min(500px, 100%); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.55; color: rgba(255,255,255,.78); }
.circle-link { flex: 0 0 112px; height: 112px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: white; text-decoration: none; font-size: 10px; line-height: 1.25; text-transform: uppercase; letter-spacing: .1em; transition: background .3s, color .3s, transform .3s; }
.circle-link:hover { background: white; color: var(--forest); transform: rotate(-6deg); }
.circle-link b { font-size: 18px; font-weight: 400; }
.hero-proof { position: absolute; right: var(--pad); bottom: 32px; z-index: 3; display: flex; gap: 44px; }
.hero-proof div { display: flex; flex-direction: column; gap: 4px; }
.hero-proof small { font-size: 8px; letter-spacing: .15em; text-transform: uppercase; opacity: .56; }
.hero-proof strong { font-size: 11px; font-weight: 500; }
.concept-label, .image-disclaimer { position: absolute; z-index: 5; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.concept-label { left: var(--pad); bottom: 34px; }
.image-disclaimer { right: 14px; bottom: 12px; background: rgba(7,22,17,.66); padding: 7px 9px; backdrop-filter: blur(5px); }
.image-disclaimer.dark { color: rgba(255,255,255,.74); }

.section-label { display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: var(--muted); white-space: nowrap; }
.section-label span { width: 28px; height: 28px; border: 1px solid var(--line); display: grid; place-items: center; border-radius: 50%; font-size: 8px; }
.section-label.light { color: rgba(255,255,255,.64); }
.section-label.light span { border-color: rgba(255,255,255,.25); }
.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .7fr 1.75fr 1fr; align-items: start; gap: clamp(40px, 6vw, 100px); }
.intro-heading .micro { color: var(--cinnamon); margin: 0 0 26px; font-size: 11px; letter-spacing: .1em; }
.intro-heading h2, .products-title h2, .wholesale-title h2, .comparison-copy h2 { font-size: clamp(48px, 6vw, 94px); line-height: .98; }
.intro-heading h2 em, .products-title h2 em, .wholesale-title h2 em, .comparison-copy h2 em { color: var(--cinnamon); }
.intro-copy { padding-top: 46px; }
.intro-copy p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.intro-copy .lead { color: var(--ink); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.55; }
.impact-intent { margin: 24px 0; padding: 16px 18px; background: var(--cream); color: var(--forest) !important; font-size: 13px !important; }
.evidence-note { border-left: 2px solid var(--gold); padding-left: 16px; font-size: 12px !important; }
.text-link { display: inline-flex; align-items: center; gap: 28px; text-decoration: none; padding-bottom: 8px; border-bottom: 1px solid currentColor; margin-top: 22px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translate(3px,-3px); }

.origin-film { position: relative; height: min(86vw, 900px); min-height: 620px; overflow: hidden; color: white; }
.origin-film-media, .origin-film-overlay { position: absolute; inset: -9% 0; }
.origin-film-media img { width: 100%; height: 100%; object-fit: cover; }
.origin-film-overlay { inset: 0; background: linear-gradient(0deg, rgba(6,22,15,.72), rgba(6,22,15,.08) 68%); }
.origin-film-content { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: clamp(66px, 8vw, 110px); }
.origin-film-content > p { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .17em; font-size: 10px; opacity: .75; }
.origin-film-content h2 { font-size: clamp(54px, 7.4vw, 118px); line-height: .94; }
.coordinates { display: flex; gap: 10px; margin-top: 40px; flex-wrap: wrap; }
.coordinates span { border: 1px solid rgba(255,255,255,.3); padding: 10px 14px; border-radius: 999px; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; backdrop-filter: blur(6px); }

.products { background: var(--cream); }
.products-header { display: grid; grid-template-columns: .7fr 2.75fr; gap: 50px; align-items: start; margin-bottom: clamp(54px, 7vw, 96px); }
.products-title { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(40px, 7vw, 120px); align-items: end; }
.products-title p { color: var(--muted); line-height: 1.7; font-size: 14px; margin: 0 0 5px; }
.quality-highlight { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(34px, 6vw, 90px); align-items: end; margin: 0 0 34px; padding: clamp(30px, 4vw, 52px); background: var(--sand); border-left: 4px solid var(--cinnamon); }
.quality-highlight span { display: block; margin-bottom: 16px; color: var(--cinnamon); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.quality-highlight strong { display: block; max-width: 760px; font-family: var(--serif); font-size: clamp(29px, 3.4vw, 52px); font-weight: 500; line-height: 1.08; }
.quality-highlight p { max-width: 620px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.product-stage { display: grid; grid-template-columns: 1.5fr 1fr; min-height: 700px; background: var(--forest); color: white; }
.product-photo { position: relative; min-height: 650px; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.product-stage:hover .product-photo img { transform: scale(1.025); }
.photo-index { position: absolute; left: 20px; top: 20px; background: rgba(255,255,255,.88); color: var(--forest); padding: 8px 10px; font-size: 9px; letter-spacing: .1em; }
.product-panel { padding: clamp(38px, 5vw, 76px); display: flex; flex-direction: column; }
.product-kicker { color: var(--gold); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 40px; }
.product-row { display: grid; grid-template-columns: 35px 1fr; gap: 18px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.16); }
.product-row > span { font-size: 9px; color: rgba(255,255,255,.45); padding-top: 7px; }
.product-row h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(25px, 2.4vw, 39px); margin: 0; letter-spacing: -.03em; }
.product-row p { color: rgba(255,255,255,.58); font-size: 13px; line-height: 1.65; max-height: 0; opacity: 0; overflow: hidden; margin: 0; transition: max-height .5s, opacity .5s, margin .5s; }
.product-row.active p { max-height: 100px; opacity: 1; margin-top: 14px; }
.button { border: 0; text-decoration: none; min-height: 54px; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; padding: 0 20px; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; }
.button-light { background: var(--paper); color: var(--forest); margin-top: auto; }
.button-cinnamon { background: var(--cinnamon); color: white; }
.button span { font-size: 16px; transition: transform .25s; }
.button:hover span { transform: translate(3px,-3px); }
.format-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); margin-top: 58px; }
.format-card { padding: 38px clamp(22px, 3vw, 46px) 12px 0; border-right: 1px solid var(--line); margin-right: clamp(22px, 3vw, 46px); }
.format-card:last-child { border-right: 0; }
.format-card > span { font-size: 9px; color: var(--cinnamon); }
.format-card h3 { font-family: var(--serif); font-weight: 500; font-size: 31px; margin: 28px 0 12px; }
.format-card p { color: var(--muted); font-size: 13px; line-height: 1.65; min-height: 65px; }
.format-card a { font-size: 10px; text-transform: uppercase; letter-spacing: .09em; text-decoration: none; }

.spice-range { background: var(--paper); }
.spice-range-heading { display: grid; grid-template-columns: .7fr 2.75fr; gap: 50px; align-items: start; }
.spice-range-heading .micro { color: var(--cinnamon); margin: 0 0 22px; font-size: 11px; letter-spacing: .1em; }
.spice-range-heading h2, .cinnamon-story-title h2 { font-size: clamp(48px, 6vw, 94px); line-height: .98; }
.spice-range-heading h2 em, .cinnamon-story-title h2 em { color: var(--cinnamon); }
.spice-range-heading > div:last-child > p:last-child { color: var(--muted); line-height: 1.75; max-width: 720px; }
.spice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; width: min(100%, 1020px); margin: 58px auto 0; background: var(--line); border: 1px solid var(--line); }
.spice-card { background: var(--cream); min-height: 400px; display: flex; flex-direction: column; overflow: hidden; }
.spice-card-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.spice-card-body { padding: clamp(22px, 2.4vw, 32px); display: flex; flex-direction: column; flex: 1; }
.spice-card-body > span { color: var(--cinnamon); font-size: 9px; }
.spice-card h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px, 2.6vw, 40px); margin: 28px 0 14px; }
.spice-card p { color: var(--muted); line-height: 1.7; font-size: 13px; }
.spice-card small { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); color: var(--cinnamon); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.pepper-origin { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(150px, .5fr) minmax(270px, .95fr); width: min(100%, 1080px); min-height: 400px; margin: 34px auto 0; background: var(--forest); color: white; }
.pepper-origin figure { position: relative; min-height: 400px; margin: 0; overflow: hidden; }
.pepper-origin figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.pepper-origin figure:hover img { transform: scale(1.025); }
.pepper-origin figure:after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent, rgba(5,18,13,.74)); pointer-events: none; }
.pepper-origin figcaption { position: absolute; z-index: 1; left: 22px; bottom: 20px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.pepper-origin-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 4vw, 60px); }
.pepper-origin-copy > span { color: var(--gold); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.pepper-origin-copy h3 { margin: 28px 0 24px; font-family: var(--serif); font-size: clamp(31px, 3.2vw, 48px); font-weight: 500; line-height: 1.04; }
.pepper-origin-copy h3 em { color: var(--gold); }
.pepper-origin-copy p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.75; }
.cinnamon-story { background: var(--sand); }
.cinnamon-story-grid { display: grid; grid-template-columns: .7fr 1.5fr 1fr; gap: clamp(35px, 6vw, 90px); }
.cinnamon-story-copy { padding-top: 44px; color: #5d655f; line-height: 1.75; }
.cinnamon-story-copy .lead { color: var(--ink); font-size: 18px; }

.gallery-section { background: var(--forest); color: white; padding: clamp(95px, 11vw, 160px) 0 70px; overflow: hidden; }
.gallery-intro { display: grid; grid-template-columns: .7fr 2.75fr; gap: 50px; margin-bottom: 62px; }
.gallery-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; }
.gallery-heading h2 { font-size: clamp(54px, 7vw, 110px); line-height: .92; }
.gallery-heading p { max-width: 270px; margin: 0 0 4px; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.6; }
.gallery-track-wrap { position: relative; }
.gallery-track { display: flex; gap: clamp(16px, 2vw, 30px); width: max-content; padding-left: var(--pad); transition: transform 1s var(--ease); will-change: transform; }
.gallery-slide { width: min(68vw, 980px); height: min(46vw, 650px); min-height: 400px; margin: 0; position: relative; overflow: hidden; opacity: .43; transform: scale(.94); transform-origin: center; transition: opacity .7s, transform .7s; }
.gallery-slide.current { opacity: 1; transform: scale(1); }
.gallery-slide:after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(5,18,13,.72)); pointer-events: none; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 7s linear; }
.gallery-slide.current img { transform: scale(1.055); }
.gallery-slide figcaption { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 24px; display: block; }
.gallery-slide figcaption span { font-size: 9px; opacity: .55; }
.gallery-slide figcaption strong { font-family: var(--serif); font-size: clamp(25px, 2.5vw, 38px); font-weight: 500; }
.gallery-slide figcaption small { font-size: 8px; text-transform: uppercase; letter-spacing: .1em; opacity: .55; }
.gallery-controls { display: flex; align-items: center; gap: 22px; margin-top: 42px; }
.gallery-progress { height: 1px; background: rgba(255,255,255,.2); flex: 1; }
.gallery-progress i { display: block; width: 25%; height: 100%; background: var(--gold); transition: width .7s var(--ease); }
.gallery-controls p { font-size: 10px; letter-spacing: .12em; white-space: nowrap; }
.gallery-controls button { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: white; cursor: pointer; margin-left: 4px; transition: background .25s, color .25s; }
.gallery-controls button:hover { background: white; color: var(--forest); }

.wholesale { background: var(--paper); }
.wholesale-grid { display: grid; grid-template-columns: .7fr 1.45fr 1fr; gap: clamp(30px, 5vw, 86px); }
.wholesale-lead { padding-top: 40px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.process-list { list-style: none; grid-column: 2 / 4; margin: 70px 0 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 25px; padding: 31px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); font-size: 9px; color: var(--cinnamon); }
.process-list h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0 0 8px; }
.process-list p { margin: 0; color: var(--muted); font-size: 13px; }

.comparison { background: var(--sand); }
.comparison-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.comparison-copy h2 { margin-top: 48px; }
.comparison-copy > p { color: #5d655f; line-height: 1.75; max-width: 540px; margin-top: 30px; }
.compare-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 32px 0; }
.compare-points span { border-top: 1px solid rgba(24,33,29,.25); padding-top: 14px; font-size: 12px; color: #5c655e; display: flex; flex-direction: column; gap: 5px; }
.compare-points b { color: var(--forest); text-transform: uppercase; letter-spacing: .1em; font-size: 9px; }
.comparison-facts { display: grid; gap: 1px; background: rgba(16,43,34,.15); border: 1px solid rgba(16,43,34,.15); }
.comparison-facts article { background: var(--cream); padding: clamp(28px, 4vw, 52px); display: grid; gap: 12px; }
.comparison-facts small { color: var(--cinnamon); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.comparison-facts strong { font-family: var(--serif); color: var(--forest); font-size: clamp(25px, 3vw, 42px); font-weight: 500; line-height: 1.05; }
.comparison-facts p { margin: 0; color: var(--muted); line-height: 1.65; }
.cinnamon-story-copy a { color: var(--cinnamon); font-weight: 600; text-underline-offset: 3px; }

.contact { position: relative; min-height: 820px; color: white; padding: clamp(100px, 12vw, 170px) 0; overflow: hidden; }
.contact-bg, .contact-overlay { position: absolute; inset: -9% 0; }
.contact-bg img { width: 100%; height: 100%; object-fit: cover; }
.contact-overlay { inset: 0; background: linear-gradient(90deg, rgba(8,30,22,.95), rgba(8,30,22,.82)); }
.contact-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 9vw, 150px); }
.contact-heading > span { text-transform: uppercase; letter-spacing: .18em; font-size: 10px; color: var(--gold); }
.contact-heading h2 { font-size: clamp(55px, 7vw, 106px); line-height: .91; margin-top: 24px; }
.contact-heading p { color: rgba(255,255,255,.62); font-size: 15px; line-height: 1.7; max-width: 480px; margin-top: 32px; }
.contact-methods { margin-top: 38px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-methods > a, .contact-methods > div { display: flex; align-items: center; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.18); text-decoration: none; }
.contact-methods b { flex: 0 0 36px; width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--gold); font-weight: 400; }
.contact-methods span { display: flex; flex-direction: column; min-width: 0; }
.contact-methods small { color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.contact-methods strong { font-size: 12px; font-weight: 500; overflow-wrap: anywhere; }
.enquiry-form { padding: 44px; background: var(--paper); color: var(--ink); align-self: start; }
.enquiry-form fieldset { border: 0; margin: 0; min-width: 0; padding: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.enquiry-form label { display: flex; flex-direction: column; gap: 8px; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; color: var(--muted); margin-bottom: 23px; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { border: 0; border-bottom: 1px solid rgba(24,33,29,.24); border-radius: 0; padding: 11px 0 14px; background: transparent; color: var(--ink); outline: 0; text-transform: none; letter-spacing: 0; resize: vertical; }
.enquiry-form input::placeholder, .enquiry-form textarea::placeholder { color: rgba(24,33,29,.38); }
.enquiry-form select option { color: var(--ink); }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--gold); }
.enquiry-form .button { width: 100%; margin-top: 8px; }
.form-submit b { font-size: 16px; font-weight: 400; }
.form-note { color: var(--muted); font-size: 9px; line-height: 1.55; margin: 13px 0 0; text-align: center; }
.no-script-contact { font-size: 12px; margin: 0; }
.no-script-contact a { color: var(--green); font-weight: 700; overflow-wrap: anywhere; }

footer { background: #091b15; color: white; padding: 75px 0 22px; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 50px; align-items: start; padding-bottom: 65px; }
.brand-footer { width: max-content; }
.footer-main > p { color: rgba(255,255,255,.48); margin: 0; max-width: 260px; font-size: 13px; line-height: 1.65; }
.footer-main > div { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.footer-main > div a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.36); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom b { font-weight: inherit; }
.footer-bottom a { color: var(--gold); }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { min-height: 92px; padding: 18px var(--pad); display: flex; align-items: center; gap: 24px; background: var(--forest); color: white; }
.legal-header .legal-back { margin-left: auto; color: rgba(255,255,255,.8); text-decoration: none; font-size: 13px; }
.legal-main { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: clamp(70px, 10vw, 130px) 0; }
.legal-main section[hidden] { display: none; }
.legal-main h1 { color: var(--forest); font-size: clamp(54px, 8vw, 94px); line-height: .95; margin-bottom: 44px; }
.legal-main h2 { color: var(--forest); font-size: clamp(24px, 3vw, 34px); line-height: 1.15; margin: 48px 0 14px; }
.legal-main p { color: var(--muted); font-size: 16px; line-height: 1.75; }
.legal-main a { color: var(--cinnamon); text-underline-offset: 3px; }
.legal-kicker { color: var(--cinnamon) !important; font-size: 10px !important; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.legal-warning { padding: 22px 24px; border-left: 4px solid var(--gold); background: #fff5d9; color: #51451f; font-size: 14px; line-height: 1.6; }
.legal-footer { padding: 28px var(--pad); background: #091b15; color: rgba(255,255,255,.62); font-size: 12px; text-align: center; }
.legal-footer a { color: var(--gold); }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 200; transform: translate(-50%, 130%); background: white; color: var(--forest); padding: 14px 22px; box-shadow: 0 10px 35px rgba(0,0,0,.25); border-radius: 3px; font-size: 12px; transition: transform .45s var(--ease); }
.toast.show { transform: translate(-50%, 0); }
.floating-whatsapp { position: fixed; z-index: 180; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 9px; padding: 12px 16px; border-radius: 100px; background: #287b53; color: #fff; box-shadow: 0 12px 32px rgba(16,43,32,.3); text-decoration: none; font-size: 11px; font-weight: 700; transition: transform .2s, background .2s; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #1f6945; }
.floating-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 1020px) {
  .site-nav { gap: 18px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .intro-grid, .wholesale-grid, .cinnamon-story-grid { grid-template-columns: .55fr 1.45fr; }
  .intro-copy { grid-column: 2; }
  .wholesale-lead { grid-column: 2; padding-top: 0; }
  .cinnamon-story-copy { grid-column: 2; padding-top: 0; }
  .process-list { grid-column: 2; margin-top: 30px; }
  .products-title { grid-template-columns: 1fr; }
  .quality-highlight { grid-template-columns: 1fr; align-items: start; }
  .product-stage { grid-template-columns: 1.1fr .9fr; }
  .pepper-origin { grid-template-columns: minmax(0, 1.6fr) minmax(170px, .55fr); }
  .pepper-origin-copy { grid-column: 1 / -1; }
  .comparison-grid { grid-template-columns: 1fr; }
  .gallery-slide { width: 78vw; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  .section { padding-block: 90px; }
  .site-header { height: 78px; }
  .site-header.sticky { background: rgba(16,43,34,.97); backdrop-filter: none; }
  .site-header.hidden { transform: none; }
  .site-header .brand strong { font-size: 17px; }
  .site-header .brand small { letter-spacing: .14em; }
  .language-switcher { margin-left: auto; gap: 2px; }
  .language-switcher button { min-width: 30px; width: 30px; height: 30px; padding: 0; }
  .language-switcher button b { display: none; }
  .language-switcher .flag { width: 18px; height: 12px; }
  html[lang="si"] h1 { font-size: clamp(42px, 12vw, 60px); line-height: 1.12; }
  .site-nav { position: fixed; inset: 0; background: var(--forest); flex-direction: column; justify-content: center; transform: translateY(-100%); transition: transform .55s var(--ease); z-index: -1; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a:not(.nav-cta) { display: block; font-family: var(--serif); font-size: 36px; }
  .nav-cta { margin-top: 20px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .hero { min-height: 710px; }
  .hero-media img { object-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,19,14,.9), rgba(5,19,14,.18) 75%); }
  .hero-content { padding-top: 130px; padding-bottom: 125px; }
  .hero-topline { margin-bottom: auto; }
  h1 { font-size: clamp(55px, 17vw, 83px); }
  .hero-bottom { align-items: center; margin-top: 30px; }
  .circle-link { flex-basis: 88px; height: 88px; font-size: 8px; }
  .hero-proof { left: var(--pad); right: var(--pad); bottom: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .hero-proof div { min-width: 0; }
  .hero-proof strong { font-size: 9px; line-height: 1.35; overflow-wrap: anywhere; }
  .concept-label { display: none; }
  .intro-grid, .products-header, .gallery-intro, .wholesale-grid, .spice-range-heading, .cinnamon-story-grid { grid-template-columns: 1fr; }
  .intro-heading, .products-title, .gallery-heading, .wholesale-title, .wholesale-lead, .process-list { grid-column: 1; }
  .intro-copy { grid-column: 1; padding-top: 0; }
  .cinnamon-story-copy { grid-column: 1; }
  .intro-heading h2, .products-title h2, .wholesale-title h2, .comparison-copy h2 { font-size: clamp(45px, 13vw, 67px); }
  .origin-film { min-height: 670px; }
  .origin-film-media img { object-position: 58% center; }
  .products-header { margin-bottom: 45px; }
  .products-title { gap: 22px; }
  .quality-highlight { grid-template-columns: 1fr; gap: 22px; padding: 28px 24px; }
  .product-stage { grid-template-columns: 1fr; }
  .product-photo { min-height: 390px; }
  .product-panel { min-height: 530px; }
  .format-grid { grid-template-columns: 1fr; }
  .spice-grid { grid-template-columns: 1fr; }
  .pepper-origin { grid-template-columns: 1fr; }
  .pepper-origin figure { min-height: 260px; }
  .pepper-origin-wide { min-height: 0 !important; aspect-ratio: 4 / 3; }
  .pepper-origin-copy { grid-column: 1; }
  .format-card { border-right: 0; border-bottom: 1px solid var(--line); margin: 0; padding: 32px 0; }
  .format-card p { min-height: 0; }
  .gallery-heading { align-items: start; flex-direction: column; }
  .gallery-slide { width: 86vw; height: 62vh; min-height: 460px; }
  .gallery-slide figcaption small { display: none; }
  .gallery-controls { gap: 12px; }
  .process-list { margin-top: 15px; }
  .contact { min-height: auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-heading h2 { font-size: clamp(53px, 15vw, 78px); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .enquiry-form { padding: 30px 22px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .version-switch span { display: none; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 48px; height: 48px; justify-content: center; padding: 0; }
  .floating-whatsapp span { display: none; }
}

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