:root {
  --amber: #C8873A;
  --amber-light: #E8A84C;
  --amber-dark: #8B5E1A;
  --green-deep: #1B3D2F;
  --green-mid: #2D5A45;
  --cream: #F5EFE3;
  --cream-dark: #EDE5D8;
  --warm-white: #FDFBF8;
  --stone: #B8A98A;
  --text-dark: #1A1A18;
  --text-mid: #4A4840;
  --text-light: #7A7670;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--amber); color: var(--warm-white); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(200, 135, 58, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(27, 61, 47, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, rgba(26, 26, 24, 0.3), transparent);
  pointer-events: none;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 8rem 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text { }

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 300;
  line-height: 1.02;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(245, 239, 227, 0.55);
  max-width: 400px;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease 0.9s forwards;
}

.hero-image-frame {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oil-drop-visual {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.oil-ring {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(200, 135, 58, 0.25);
  animation: pulseRing 4s ease-in-out infinite;
}

.oil-ring-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(200, 135, 58, 0.18);
  animation: pulseRing 4s ease-in-out 0.7s infinite;
}

.oil-ring-3 {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(200, 135, 58, 0.12);
  animation: pulseRing 4s ease-in-out 1.4s infinite;
}

.oil-highlight {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(232, 168, 76, 0.35) 0%, rgba(200, 135, 58, 0.12) 40%, transparent 75%);
  animation: glowPulse 5s ease-in-out infinite;
}

.oil-core {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #F0B060 0%, #C8873A 40%, #8B5E1A 100%);
  box-shadow: 0 0 50px rgba(200, 135, 58, 0.5), 0 0 100px rgba(200, 135, 58, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.15);
  animation: coreGlow 5s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.oil-core::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 20px;
  width: 22px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(4px);
}

.leaf-accent {
  position: absolute;
  width: 55px;
  height: 90px;
  border-radius: 70% 0 70% 0;
}

.leaf-1 {
  background: linear-gradient(135deg, #2D5A45 0%, #1B3D2F 100%);
  top: -10px;
  right: -5px;
  transform: rotate(-25deg);
  opacity: 0.8;
  animation: leafSway 6s ease-in-out infinite;
}

.leaf-2 {
  background: linear-gradient(225deg, #3D6A54 0%, #2D5A45 100%);
  bottom: -10px;
  left: -5px;
  transform: rotate(155deg);
  opacity: 0.6;
  animation: leafSway 6s ease-in-out 1s infinite;
}

.stone-surface {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(184, 169, 138, 0.25) 0%, transparent 70%);
  filter: blur(12px);
}

.hero-tagline-stamp {
  position: absolute;
  bottom: -3rem;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  opacity: 0.45;
}

.hero-tagline-stamp span {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(245, 239, 227, 0.08);
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 5rem;
  padding-top: 4rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.stat {
  padding: 2rem 3rem;
  border-right: 1px solid rgba(245, 239, 227, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--amber-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(245, 239, 227, 0.45);
  font-weight: 300;
  line-height: 1.55;
}

/* ORIGIN */
.origin {
  background: var(--cream);
  padding: 9rem 5rem;
}

.origin-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.origin-map-visual {
  position: sticky;
  top: 5rem;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-ring {
  position: relative;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200, 135, 58, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.world-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(200, 135, 58, 0.1);
  border-radius: 50%;
}

.inner-ring {
  width: 160px;
  height: 160px;
  border: 1px solid rgba(200, 135, 58, 0.06);
  border-radius: 50%;
}

.sa-dot, .korea-dot, .grasse-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 14px rgba(200, 135, 58, 0.7);
  animation: dotPulse 3s ease-in-out infinite;
}

.sa-dot { bottom: 28%; left: 38%; }
.korea-dot { top: 18%; right: 8%; animation-delay: 0.5s; }
.grasse-dot { top: 55%; right: 5%; animation-delay: 1s; }

.sa-label, .korea-label, .grasse-label {
  position: absolute;
  font-size: 0.6rem;
  color: var(--text-mid);
  white-space: nowrap;
  font-weight: 500;
  line-height: 1.5;
}

.sa-label { bottom: 24%; left: -15px; }
.korea-label { top: 12%; right: -5px; }
.grasse-label { top: 50%; right: -5px; }

.trade-line-1, .trade-line-2 {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, rgba(200, 135, 58, 0.4), rgba(200, 135, 58, 0.8), rgba(200, 135, 58, 0.4));
  transform-origin: left center;
}

.trade-line-1 {
  width: 70px;
  bottom: 35%;
  right: 18%;
  transform: rotate(-20deg);
}

.trade-line-2 {
  width: 55px;
  top: 50%;
  right: 15%;
  transform: rotate(40deg);
}

.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.origin-body p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.3rem;
}

.origin-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--cream-dark);
}

.spec-item { display: flex; flex-direction: column; gap: 0.3rem; }

.spec-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-light);
}

.spec-value {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--green-deep);
}

/* EXTRACTS */
.extracts {
  background: var(--warm-white);
  padding: 9rem 5rem;
}

.extracts-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.extracts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.extract-card {
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.extract-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(200, 135, 58, 0.12);
}

.extract-visual {
  height: 110px;
  position: relative;
  overflow: hidden;
}

.orange-visual { background: linear-gradient(135deg, #E8701A 0%, #B84A0A 100%); }
.lemon-visual { background: linear-gradient(135deg, #F5D060 0%, #D4A010 100%); }
.grapefruit-visual { background: linear-gradient(135deg, #E88040 0%, #C05018 100%); }
.mandarin-visual { background: linear-gradient(135deg, #E87030 0%, #B84010 100%); }
.blood-orange-visual { background: linear-gradient(135deg, #C03020 0%, #801808 100%); }

.extract-info { padding: 1.1rem; }

.extract-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}

.extract-botanical {
  font-size: 0.62rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 0.9rem;
  font-family: 'Cormorant Garamond', serif;
}

.extract-specs { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.9rem; }

.extract-spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.extract-spec span:first-child { color: var(--text-light); }
.extract-spec span:last-child { color: var(--green-deep); font-weight: 500; }

.extract-use {
  font-size: 0.72rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* BUYERS */
.buyers {
  background: var(--green-deep);
  padding: 9rem 5rem;
}

.buyers-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.buyers-header .section-eyebrow { color: var(--amber-light); }
.buyers-header .section-heading { color: var(--cream); }

.buyers-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.buyer-card {
  background: rgba(245, 239, 227, 0.04);
  border: 1px solid rgba(245, 239, 227, 0.1);
  border-radius: 3px;
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.buyer-card:hover { border-color: rgba(200, 135, 58, 0.25); }

.buyer-icon {
  width: 44px;
  height: 44px;
  color: var(--amber-light);
  margin-bottom: 1.5rem;
}

.buyer-icon svg { width: 100%; height: 100%; }

.buyer-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.buyer-desc {
  font-size: 0.88rem;
  color: rgba(245, 239, 227, 0.55);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.buyer-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.buyer-points li {
  font-size: 0.82rem;
  color: rgba(245, 239, 227, 0.45);
  padding-left: 1.2rem;
  position: relative;
}

.buyer-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.55;
}

.buyer-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 239, 227, 0.08);
}

.buyer-stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--amber-light);
}

.buyer-stat-label {
  font-size: 0.72rem;
  color: rgba(245, 239, 227, 0.35);
  line-height: 1.5;
}

/* MANIFESTO */
.manifesto {
  background: var(--cream);
  padding: 9rem 5rem;
}

.manifesto-inner { max-width: 820px; margin: 0 auto; }

.manifesto-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--green-deep);
  line-height: 1.55;
  margin-bottom: 3rem;
  padding-left: 2rem;
  border-left: 2px solid var(--amber);
}

.manifesto-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--cream-dark);
}

.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 0.75rem;
}

.pillar p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.75;
}

/* CLOSING */
.closing {
  background: var(--green-deep);
  padding: 9rem 5rem;
  text-align: center;
}

.closing-inner { max-width: 760px; margin: 0 auto; }

.closing-visual { margin-bottom: 3rem; }

.closing-emblem { display: flex; justify-content: center; opacity: 0.55; }
.closing-emblem svg { width: 80px; height: 80px; }

.closing-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.closing-sub {
  font-size: 0.95rem;
  color: rgba(245, 239, 227, 0.45);
  margin-bottom: 3.5rem;
}

.closing-origin-stamp {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0.35;
}

.closing-origin-stamp span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}

/* FOOTER */
.site-footer {
  background: var(--warm-white);
  border-top: 1px solid var(--cream-dark);
  padding: 2.5rem 5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green-deep);
}

.footer-tagline { font-size: 0.72rem; color: var(--text-light); }

.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem; }

.footer-meta span {
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
}

/* ANIMATIONS */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes pulseRing {
  0%, 100% { opacity: 0.25; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.025); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes coreGlow {
  0%, 100% { box-shadow: 0 0 50px rgba(200, 135, 58, 0.5), 0 0 100px rgba(200, 135, 58, 0.2), inset 0 0 20px rgba(255,255,255,0.15); }
  50% { box-shadow: 0 0 70px rgba(200, 135, 58, 0.7), 0 0 140px rgba(200, 135, 58, 0.25), inset 0 0 25px rgba(255,255,255,0.2); }
}

@keyframes leafSway {
  0%, 100% { transform: rotate(-25deg) translateY(0); }
  50% { transform: rotate(-20deg) translateY(-3px); }
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 14px rgba(200, 135, 58, 0.7); }
  50% { box-shadow: 0 0 22px rgba(200, 135, 58, 0.9); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .extracts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .manifesto-pillars { grid-template-columns: 1fr; gap: 2rem; }
  .extracts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding: 6rem 2.5rem 3rem; gap: 3rem; }
  .hero-visual { margin: 0 auto; }
  .hero-stats { grid-template-columns: 1fr; padding: 2rem 2.5rem; }
  .stat { border-right: none; border-bottom: 1px solid rgba(245, 239, 227, 0.08); }
  .stat:last-child { border-bottom: none; }
  .origin-inner { grid-template-columns: 1fr; gap: 3rem; }
  .origin-map-visual { position: static; height: 260px; }
  .extracts-grid { grid-template-columns: repeat(2, 1fr); }
  .buyers-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-meta { align-items: flex-start; }
  .closing-origin-stamp { flex-direction: column; gap: 0.5rem; align-items: center; }
  .origin, .extracts, .buyers, .manifesto, .closing { padding: 6rem 2.5rem; }
}

@media (max-width: 500px) {
  .extracts-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.8rem; }
  .hero-image-frame { width: 280px; height: 280px; }
  .world-ring { width: 240px; height: 240px; }
}