/* ═══════════════════════════════════════════════════
   TERRA LIVESTOCK & CO — Warm editorial design system
   Paper · ink-olive · harvest gold · terracotta
   ═══════════════════════════════════════════════════ */

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

:root {
  --paper:      #f5efe1;
  --paper-deep: #ece3cf;
  --ink:        #23291f;
  --ink-soft:   #4c5244;
  --ink-faint:  #8b8e80;
  --olive:      #44512e;
  --gold:       #a87b2f;
  --clay:       #b05c34;
  --night:      #181d14;
  --night-soft: #e9e4d2;
  --hairline:   rgba(35, 41, 31, 0.16);
  --hairline-lt: rgba(233, 228, 210, 0.18);

  --serif: 'Fraunces', 'Noto Naskh Arabic', Georgia, serif;
  --sans:  'Inter', 'Noto Naskh Arabic', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.83, 0, 0.17, 1);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--paper); }

a { color: inherit; }
em { font-style: italic; }

/* ── PAPER GRAIN ── */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 2000;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.grain-defs { position: absolute; }

/* ── CURSOR ── */
@media (pointer: fine) {
  #cursor {
    width: 6px; height: 6px;
    background: var(--clay);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
  }
  #cursor-follower {
    width: 32px; height: 32px;
    border: 1px solid rgba(168, 123, 47, 0.55);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background 0.3s;
  }
  body:has(a:hover) #cursor-follower,
  body:has(button:hover) #cursor-follower {
    width: 52px; height: 52px;
    border-color: var(--clay);
    background: rgba(176, 92, 52, 0.06);
  }
}
@media (pointer: coarse) {
  #cursor, #cursor-follower { display: none; }
}

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--paper);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease-in-out), visibility 0.7s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-inner {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.loader-word {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 300; letter-spacing: -0.02em;
  line-height: 1; color: var(--ink);
  animation: loaderRise 1.1s var(--ease-out) both;
}
.loader-rule {
  display: block; height: 1px; width: 0;
  background: var(--gold);
  animation: loaderRule 1.2s var(--ease-out) 0.3s forwards;
}
.loader-sub {
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--ink-faint);
  opacity: 0; animation: fadeIn 0.8s 0.7s forwards;
}
@keyframes loaderRise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes loaderRule { to { width: 180px; } }

/* ── LOGO ── */
.nav-logo, .footer-brand { text-decoration: none; }
.logo-word {
  display: block;
  font-family: var(--serif);
  font-size: 26px; font-weight: 400;
  letter-spacing: 0.01em; line-height: 1;
  color: currentColor;
}
.logo-sub {
  display: block;
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px;
}

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 48px;
  color: var(--ink);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
#nav.scrolled {
  background: rgba(245, 239, 225, 0.88);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1500px; margin: 0 auto;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft);
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0; right: 0;
  height: 1px; background: var(--clay);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-right { display: flex; align-items: center; gap: 28px; }
.lang-switcher { display: flex; align-items: center; gap: 10px; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 10.5px;
  letter-spacing: 0.15em; font-weight: 500;
  color: var(--ink-faint); padding: 0;
  transition: color 0.3s;
}
.lang-btn.active { color: var(--clay); }
.lang-btn:hover { color: var(--ink); }

.nav-cta {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--paper);
  background: var(--ink);
  padding: 11px 22px; border-radius: 100px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
}
.nav-cta:hover { background: var(--clay); transform: translateY(-1px); }

.nav-menu-btn {
  background: none; border: none; cursor: pointer;
  display: none; flex-direction: column; gap: 6px; padding: 4px;
}
.nav-menu-btn span {
  display: block; width: 26px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, width 0.3s;
}
.nav-menu-btn.open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-menu-btn.open span:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

/* ── FULL MENU ── */
#fullMenu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--paper-deep);
  clip-path: circle(0% at calc(100% - 56px) 44px);
  transition: clip-path 0.8s var(--ease-out);
  display: flex; align-items: center; justify-content: center;
}
#fullMenu.open { clip-path: circle(150% at calc(100% - 56px) 44px); }
.full-menu-inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  width: 100%; max-width: 1200px; padding: 0 56px 80px;
}
.full-menu-nav { display: flex; flex-direction: column; gap: 8px; }
.full-menu-link {
  display: flex; align-items: baseline; gap: 22px;
  text-decoration: none; color: var(--ink-soft);
  transition: color 0.3s, transform 0.4s var(--ease-out);
  transform: translateY(28px); opacity: 0;
}
#fullMenu.open .full-menu-link { animation: menuItemIn 0.6s var(--ease-out) both; }
#fullMenu.open .full-menu-link:nth-child(1) { animation-delay: 0.10s; }
#fullMenu.open .full-menu-link:nth-child(2) { animation-delay: 0.15s; }
#fullMenu.open .full-menu-link:nth-child(3) { animation-delay: 0.20s; }
#fullMenu.open .full-menu-link:nth-child(4) { animation-delay: 0.25s; }
#fullMenu.open .full-menu-link:nth-child(5) { animation-delay: 0.30s; }
#fullMenu.open .full-menu-link:nth-child(6) { animation-delay: 0.35s; }
@keyframes menuItemIn {
  from { transform: translateY(28px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.full-menu-link:hover { color: var(--clay); }
.full-menu-num { font-size: 11px; letter-spacing: 0.25em; color: var(--gold); }
.full-menu-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300; line-height: 1.05;
}
.full-menu-info {
  font-size: 12px; color: var(--ink-faint);
  letter-spacing: 0.06em; line-height: 2;
}

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 56px; }
.container-wide { max-width: 1500px; margin: 0 auto; padding: 0 56px; }

/* ── CHAPTER HEADS ── */
.chapter-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 40px;
  padding-top: 6px;
  border-top: 1px solid var(--hairline);
}
.chapter-num {
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--clay);
}
.chapter-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-faint);
}
.chapter-head.light { border-top-color: var(--hairline-lt); }
.chapter-head.light .chapter-label { color: rgba(233,228,210,0.55); }
.chapter-head.light .chapter-num { color: var(--gold); }

/* ── TITLES ── */
.section-title {
  font-family: var(--serif);
  font-size: clamp(44px, 5.6vw, 88px);
  font-weight: 300; line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 36px;
}
.section-title em { color: var(--clay); font-weight: 300; }
.section-title.light { color: var(--night-soft); }
.section-title.light em { color: var(--gold); }
.section-title.centered { text-align: center; }

/* masked line reveal */
.line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line .li { display: inline-block; transform: translateY(115%); will-change: transform; }
.line .li.shown, .no-js .line .li { transform: translateY(0); }
.line .li { transition: transform 1.1s var(--ease-out); }
.line:nth-child(2) .li { transition-delay: 0.12s; }

.body-text {
  font-size: 16.5px; color: var(--ink-soft);
  line-height: 1.8; max-width: 540px;
}

/* ── REVEAL (class-toggled, CSS transition) ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.shown { opacity: 1; transform: translateY(0); }

.anim-fade { opacity: 0; }
.anim-rise { }
body.loaded .anim-fade { animation: fadeUp 1s var(--ease-out) both; }
body.loaded .anim-rise.d2 { transform: translateY(0); transition-delay: 0.15s; }
body.loaded .anim-rise.d3 { transform: translateY(0); transition-delay: 0.3s; }
body.loaded .d1 { animation-delay: 0.1s; }
body.loaded .d4 { animation-delay: 0.55s; }
body.loaded .d5 { animation-delay: 0.7s; }
body.loaded .d6 { animation-delay: 0.9s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--paper);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; padding: 17px 38px;
  border: none; border-radius: 100px; cursor: pointer;
  position: relative; overflow: hidden;
  transition: color 0.35s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--clay); border-radius: 100px;
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary { z-index: 0; }
.btn-primary.full-width { width: 100%; }

.btn-text {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding: 17px 4px;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.btn-text:hover { color: var(--clay); border-color: var(--clay); gap: 16px; }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-sun {
  position: absolute;
  top: -18%; right: -8%;
  width: 56vw; height: 56vw; max-width: 880px; max-height: 880px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 71, 0.32) 0%, rgba(212, 160, 71, 0.12) 42%, transparent 68%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.eyebrow-rule { display: block; width: 48px; height: 1px; background: var(--clay); }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(72px, 12.5vw, 200px);
  font-weight: 300; line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 48px;
}
.hero-title em { color: var(--clay); }
.hero-title .li { transition: transform 1.3s var(--ease-out); }

.hero-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.hero-sub {
  font-size: 17px; color: var(--ink-soft);
  max-width: 480px; line-height: 1.75;
}
.hero-cta-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 2;
  margin-top: 72px;
  border-top: 1px solid var(--hairline);
}
.hero-stats-row {
  display: flex; align-items: center; gap: 64px;
  padding-top: 24px; padding-bottom: 28px;
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: var(--serif);
  font-size: 34px; font-weight: 400; line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-faint);
}
.stat-scroll {
  margin-left: auto;
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-faint);
}
.stat-scroll svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ── MARQUEE ── */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 0; white-space: nowrap;
  background: var(--paper);
}
.marquee-track {
  display: inline-flex; align-items: center;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--serif); font-style: italic;
  font-size: 17px; font-weight: 300;
  color: var(--ink-soft); padding: 0 26px;
}
.marquee-track i { color: var(--clay); font-style: normal; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT ── */
.section-about { padding: 140px 0 150px; }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 96px;
  align-items: start;
}
.about-pillars { margin-top: 56px; }
.pillar {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
}
.pillar:first-child { border-top: 1px solid var(--hairline); }
.pillar-icon { width: 30px; height: 30px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pillar h4 {
  font-family: var(--serif); font-size: 21px; font-weight: 400;
  color: var(--ink); margin-bottom: 5px;
}
.pillar p { font-size: 13.5px; color: var(--ink-faint); line-height: 1.6; max-width: 420px; }

/* ── PHOTO SLOTS (placeholders for future photography) ── */
.photo-slot { position: relative; }
.photo-slot-inner {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(168deg, #e3d9c0 0%, #d8cbab 55%, #cfc09c 100%);
}
.photo-slot.wide { margin-top: 96px; }
.photo-slot.wide .photo-slot-inner { aspect-ratio: 21 / 9; }
.photo-plate {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  border: 1px solid rgba(35, 41, 31, 0.14);
  margin: 18px;
  transition: transform 0.8s var(--ease-out);
}
.plate-icon { width: 44px; height: 44px; color: rgba(35, 41, 31, 0.4); }
.photo-plate figcaption { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.plate-kicker {
  font-size: 9.5px; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(35, 41, 31, 0.42);
}
.plate-title {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: rgba(35, 41, 31, 0.62);
  text-align: center; padding: 0 24px;
}
.photo-badge {
  position: absolute; bottom: -26px; left: -26px;
  width: 124px; height: 124px;
  background: var(--clay); color: var(--paper);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(176, 92, 52, 0.28);
}
.badge-num { font-family: var(--serif); font-size: 40px; font-weight: 400; line-height: 1; }
.badge-text {
  font-size: 8.5px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; line-height: 1.4; max-width: 90px;
}

/* ── PRODUCTS HORIZONTAL ── */
.section-products { position: relative; background: var(--paper-deep); }
.products-sticky {
  height: 100vh;
  overflow: hidden; display: flex; flex-direction: column;
  justify-content: center;
  padding-top: 110px;
}
.products-header { width: 100%; margin-bottom: 48px; }
.products-header .section-title { margin-bottom: 24px; }
.products-progress {
  width: 200px; height: 1px;
  background: var(--hairline);
  position: relative;
}
.products-progress span {
  position: absolute; left: 0; top: -1px;
  height: 3px; width: 0%;
  background: var(--clay);
  transition: width 0.1s linear;
}

.products-track-wrap { overflow: visible; padding-left: max(56px, calc((100vw - 1500px) / 2 + 56px)); }
.products-track { display: flex; gap: 20px; width: max-content; will-change: transform; }

.product-card {
  flex-shrink: 0; width: 400px; min-height: 480px;
  padding: 44px 40px 40px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 28px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(35, 41, 31, 0.10);
}
.product-num {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; color: var(--clay);
}
.product-photo {
  margin: -44px -40px 0; height: 220px;
  position: relative; overflow: hidden;
  background: var(--olive);
}
.product-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.9) contrast(1.03);
  transition: transform 0.8s var(--ease-out);
}
.product-card:hover .product-photo img { transform: scale(1.06); }
.product-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(10,46,31,0) 55%, rgba(10,46,31,0.18));
  mix-blend-mode: multiply;
}
.product-body { flex: 1; }
.product-card h3 {
  font-family: var(--serif); font-size: 30px;
  font-weight: 400; color: var(--ink); line-height: 1.12;
  margin-bottom: 14px; letter-spacing: -0.01em;
}
.product-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.7; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.product-tags span {
  font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(168, 123, 47, 0.4);
  border-radius: 100px;
  padding: 5px 12px;
}

/* ── ESTATE (dark chapter) ── */
.section-estate {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--night);
  padding: 140px 0;
}
#estateCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.section-estate::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(24,29,20,0.5), transparent 30%, transparent 70%, rgba(24,29,20,0.6));
  pointer-events: none;
}
.estate-content { position: relative; z-index: 1; }
.estate-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  margin-top: 64px; max-width: 820px;
  background: var(--hairline-lt);
  border: 1px solid var(--hairline-lt);
}
.estate-fact {
  padding: 36px 32px;
  background: rgba(24, 29, 20, 0.82);
  backdrop-filter: blur(8px);
}
.fact-icon { width: 30px; height: 30px; color: var(--gold); margin-bottom: 16px; }
.estate-fact h4 {
  font-family: var(--serif); font-size: 21px;
  font-weight: 400; color: var(--night-soft); margin-bottom: 8px;
}
.estate-fact p { font-size: 13.5px; color: rgba(233,228,210,0.55); line-height: 1.65; }

/* ── SUSTAINABILITY ── */
.section-sustain { padding: 150px 0; }
.sustain-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 96px; align-items: end;
}
.sustain-metrics {
  display: flex; flex-direction: column;
}
.metric {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.metric:first-child { border-top: 1px solid var(--hairline); }
.metric-val {
  font-family: var(--serif); font-size: 52px;
  font-weight: 300; color: var(--ink); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.metric-val small { font-size: 22px; color: var(--clay); font-style: italic; }
.metric-label {
  font-size: 10.5px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-faint);
  text-align: right;
}

/* ── AGRITOURISM ── */
.section-agri { padding: 150px 0; background: var(--paper-deep); }
.agri-list { margin-top: 72px; }
.agri-row {
  display: grid;
  grid-template-columns: 60px 280px 1fr 40px;
  align-items: center; gap: 32px;
  padding: 34px 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding 0.4s var(--ease-out), background 0.4s;
}
.agri-row:first-child { border-top: 1px solid var(--hairline); }
.agri-row:hover { padding-left: 16px; }
.agri-idx {
  font-family: var(--serif); font-style: italic;
  font-size: 19px; color: var(--clay);
}
.agri-row h4 {
  font-family: var(--serif); font-size: 27px;
  font-weight: 400; color: var(--ink); letter-spacing: -0.01em;
}
.agri-row p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; max-width: 560px; }
.agri-arrow { color: var(--ink-faint); transition: color 0.3s, transform 0.4s var(--ease-out); }
.agri-row:hover .agri-arrow { color: var(--clay); transform: translateX(6px); }

/* ── CTA ── */
.section-cta {
  position: relative; padding: 150px 0;
  background: var(--olive);
  overflow: hidden; text-align: center;
}
.section-cta::before {
  content: ''; position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 70vw; height: 70vw; max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,71,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-options {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-top: 56px;
}
.cta-option-btn {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 34px;
  border: 1px solid rgba(233,228,210,0.25);
  border-radius: 100px;
  text-decoration: none; color: var(--night-soft);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease-out);
}
.cta-option-btn:hover {
  border-color: var(--gold);
  background: rgba(212,160,71,0.12);
  transform: translateY(-4px);
}
.cta-opt-num { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold); letter-spacing: 0; text-transform: none; }

/* ── CONTACT ── */
.section-contact { padding: 150px 0; }
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 96px;
  align-items: start;
}
.contact-details { margin-top: 56px; }
.contact-detail {
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}
.contact-detail:first-child { border-top: 1px solid var(--hairline); }
.contact-detail strong {
  display: block;
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 8px; font-weight: 600;
}
.contact-detail p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }
.contact-detail a { text-decoration: none; border-bottom: 1px solid var(--hairline); transition: color 0.3s, border-color 0.3s; }
.contact-detail a:hover { color: var(--clay); border-color: var(--clay); }

.contact-form-wrap {
  background: var(--paper-deep);
  border: 1px solid var(--hairline);
  padding: 48px;
}
.contact-form { display: flex; flex-direction: column; gap: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-group { display: flex; flex-direction: column; gap: 9px; }
.form-group label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-faint);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none; border-bottom: 1px solid rgba(35,41,31,0.3);
  border-radius: 0;
  color: var(--ink); font-family: var(--sans);
  font-size: 15px; padding: 10px 2px;
  outline: none; appearance: none;
  transition: border-color 0.3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(35,41,31,0.32); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--clay); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--paper); }
.contact-form .btn-primary { margin-top: 10px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--night); color: var(--night-soft);
  padding: 96px 0 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 72px;
  border-bottom: 1px solid var(--hairline-lt);
}
.footer-brand .logo-word { font-size: 34px; color: var(--night-soft); }
.footer-brand p {
  font-size: 13.5px; color: rgba(233,228,210,0.45); line-height: 1.7;
  max-width: 270px; margin-top: 20px;
}
.footer-col h5 {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 13.5px; color: rgba(233,228,210,0.5);
  text-decoration: none; transition: color 0.3s;
}
.footer-col a:hover { color: var(--night-soft); }
.footer-bottom { padding: 26px 0; }
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.footer-bottom p { font-size: 11px; color: rgba(233,228,210,0.35); letter-spacing: 0.04em; }
.footer-made { font-family: var(--serif); font-style: italic; font-size: 13px !important; }

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .line .li, .reveal, .anim-fade { opacity: 1 !important; transform: none !important; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .agri-row { grid-template-columns: 40px 1fr 40px; gap: 12px 32px; }
  .agri-row p { grid-column: 2; }
  .agri-row .agri-arrow { grid-row: 1; grid-column: 3; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .container, .container-wide { padding: 0 28px; }
  #nav, #nav.scrolled { padding-left: 28px; padding-right: 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .about-grid, .sustain-grid, .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-stats-row { flex-wrap: wrap; gap: 28px; }
  .stat-scroll { display: none; }
  .estate-facts { grid-template-columns: 1fr; }
  .full-menu-inner { padding: 0 28px 60px; flex-direction: column; align-items: flex-start; gap: 48px; }
  .photo-badge { left: auto; right: 16px; bottom: -20px; }
  .products-track-wrap { padding-left: 28px; }
}
@media (max-width: 600px) {
  .section-about, .section-sustain, .section-agri, .section-cta, .section-contact { padding: 96px 0; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 30px 22px; }
  .product-card { width: 320px; min-height: 440px; padding: 34px 28px 30px; }
  .product-photo { margin: -34px -28px 0; height: 190px; }
  .footer-inner { grid-template-columns: 1fr; gap: 44px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-options { flex-direction: column; align-items: stretch; }
  .cta-option-btn { justify-content: center; }
  .agri-row { grid-template-columns: 1fr; gap: 10px; }
  .agri-row .agri-arrow, .agri-idx { display: none; }
}

/* ── RTL SUPPORT ── */
[dir="rtl"] body { font-family: 'Noto Naskh Arabic', var(--sans); }
[dir="rtl"] .about-grid,
[dir="rtl"] .sustain-grid,
[dir="rtl"] .contact-grid,
[dir="rtl"] .agri-row { direction: rtl; }
[dir="rtl"] .section-title, [dir="rtl"] .hero-title { letter-spacing: 0; }
[dir="rtl"] .stat-scroll { margin-left: 0; margin-right: auto; }
