/* ==========================================================================
   Agro Capital US — Premium Armenian Agricultural Brand
   Editorial Luxury vibe: warm cream, deep green, apricot, gold, pomegranate
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --cream: #F4EBD9;
  --cream-2: #F8F1E1;
  --ivory: #FBF6EC;
  --bone: #EADFC4;
  --paper: #F0E6CF;

  --olive: #213A2A;
  --olive-2: #2E4D3A;
  --olive-3: #3E5645;
  --moss: #4A6651;

  --apricot: #D88240;
  --apricot-2: #E89A4D;
  --pomegranate: #A8362B;
  --pomegranate-2: #8E2A20;
  --gold: #B8893C;
  --gold-2: #C9A24A;
  --earth: #5C3F22;
  --earth-2: #3D2A18;

  --ink: #1F1A12;
  --ink-2: #2B241A;
  --muted: #6B6052;
  --muted-2: #8A7E6B;
  --line: rgba(31, 26, 18, 0.10);
  --line-strong: rgba(31, 26, 18, 0.18);

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 0 rgba(31,26,18,.04), 0 10px 30px -18px rgba(31,26,18,.18);
  --shadow-2: 0 1px 0 rgba(31,26,18,.05), 0 22px 50px -22px rgba(31,26,18,.28);
  --shadow-3: 0 2px 0 rgba(31,26,18,.06), 0 40px 90px -30px rgba(31,26,18,.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-snappy: cubic-bezier(0.32, 0.72, 0, 1);

  --container: 1280px;
  --container-tight: 1120px;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(1200px 800px at 80% -10%, rgba(216, 130, 64, 0.10), transparent 60%),
    radial-gradient(900px 700px at -10% 30%, rgba(33, 58, 42, 0.06), transparent 60%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 200ms var(--ease); }
button { font: inherit; cursor: pointer; }
::selection { background: var(--apricot); color: var(--ivory); }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
@media (min-width: 1024px){
  .container { width: min(100% - 4rem, var(--container)); }
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--olive); color: var(--ivory);
  padding: .75rem 1rem; border-radius: 8px; z-index: 200;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Grain overlay (fixed, pointer-events none) ---------- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 60;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.2  0 0 0 0 0.15  0 0 0 0 0.08  0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Type ---------- */
.h-display, .display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
}
.h-display {
  font-size: clamp(2rem, 1.4rem + 3vw, 4.25rem);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.h-display em {
  font-style: italic;
  font-weight: 300;
  color: var(--olive);
  font-variation-settings: "opsz" 144;
}
.display {
  font-size: clamp(2.6rem, 1.2rem + 5.6vw, 6rem);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display .display-line {
  display: block;
}
.display .italic {
  font-style: italic;
  font-weight: 300;
  color: var(--apricot);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--earth);
  padding: .5rem .85rem;
  border-radius: var(--radius-pill);
  background: rgba(216, 130, 64, 0.08);
  border: 1px solid rgba(216, 130, 64, 0.18);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--apricot);
  box-shadow: 0 0 0 4px rgba(216, 130, 64, 0.15);
}
.eyebrow-light {
  color: var(--cream);
  background: rgba(251, 246, 236, 0.10);
  border-color: rgba(251, 246, 236, 0.22);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-weight: 500;
  font-size: .95rem;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 250ms var(--ease-snappy), background 250ms var(--ease), color 250ms var(--ease), box-shadow 300ms var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn:active { transform: translateY(1px) scale(.985); }

.btn-pill { border-radius: var(--radius-pill); padding: 0.7rem 0.8rem 0.7rem 1.1rem; }
.btn-lg { padding: 0.95rem 1rem 0.95rem 1.35rem; font-size: 1rem; }

.btn-primary {
  background: var(--olive);
  color: var(--cream-2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 10px 28px -16px rgba(33,58,42,.6);
}
.btn-primary:hover {
  background: var(--olive-2);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 16px 36px -16px rgba(33,58,42,.7);
}
.btn-primary .btn-icon {
  background: rgba(255,255,255,0.10);
  color: var(--cream-2);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream-2);
}
.btn-dark:hover { background: var(--ink-2); }
.btn-dark .btn-icon { background: rgba(255,255,255,0.10); }

.btn-warm {
  background: var(--apricot);
  color: var(--ink);
  box-shadow: 0 10px 30px -16px rgba(216,130,64,.6);
}
.btn-warm:hover { background: var(--apricot-2); }
.btn-warm .btn-icon { background: rgba(31,26,18,0.10); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(31,26,18,0.04); border-color: rgba(31,26,18,0.22); }
.btn-ghost .btn-icon { background: rgba(31,26,18,0.06); color: var(--ink); }

.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  transition: transform 280ms var(--ease-snappy), background 250ms var(--ease);
}
.btn-icon svg { width: 12px; height: 12px; }
.btn-lg .btn-icon { width: 34px; height: 34px; }
.btn-lg .btn-icon svg { width: 14px; height: 14px; }
.btn:hover .btn-icon { transform: translate(2px, -2px) rotate(0deg) scale(1.06); }

.btn-text {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--olive);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line-strong);
  transition: gap 250ms var(--ease), border-color 250ms var(--ease), color 250ms var(--ease);
}
.btn-text svg { width: 14px; height: 14px; }
.btn-text:hover { gap: .75rem; border-color: var(--olive); }

.btn-text-sm {
  font-weight: 600; color: var(--olive);
  font-size: .9rem;
}
.btn-text-sm:hover { color: var(--apricot); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 1.1rem 0;
  transition: padding 350ms var(--ease), background 350ms var(--ease), backdrop-filter 350ms var(--ease), border-color 350ms var(--ease);
}
.site-header.is-scrolled {
  padding: 0.55rem 0;
  background: rgba(244, 235, 217, 0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-shell {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px){
  .header-shell { width: min(100% - 4rem, var(--container)); }
}

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  color: var(--olive);
}
.brand-mark {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--olive);
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text {
  display: inline-flex; flex-direction: column; line-height: 1; gap: 2px;
}
.brand-line-1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-line-2 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--apricot);
}

.primary-nav {
  justify-self: center;
  display: none;
  gap: 0.25rem;
  padding: 0.35rem;
  background: rgba(251, 246, 236, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.primary-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius-pill);
  transition: color 200ms var(--ease), background 200ms var(--ease);
}
.primary-nav a:hover { color: var(--olive); background: rgba(33,58,42,0.06); }
.primary-nav a.is-active { color: var(--ivory); background: var(--olive); }

@media (min-width: 920px) { .primary-nav { display: inline-flex; } }

.header-cta { display: inline-flex; align-items: center; gap: .6rem; justify-self: end; }
.header-cta .btn-primary { display: none; }
@media (min-width: 640px) { .header-cta .btn-primary { display: inline-flex; } }

.menu-toggle {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--ivory);
  border: 1px solid var(--line-strong);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span {
  display: block; width: 18px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 350ms var(--ease-snappy), opacity 200ms var(--ease);
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }
@media (min-width: 920px) { .menu-toggle { display: none; } }

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  position: fixed; inset: 0;
  z-index: 70;
  background: var(--cream);
  background-image:
    radial-gradient(800px 600px at 80% 0%, rgba(216,130,64,0.18), transparent 60%),
    radial-gradient(700px 500px at 0% 100%, rgba(33,58,42,0.12), transparent 60%);
  padding: 6rem 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
  opacity: 0; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 350ms var(--ease), transform 400ms var(--ease-snappy);
}
.mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  display: flex; align-items: baseline; gap: 1.25rem;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  opacity: 0; transform: translateY(14px);
  transition: opacity 500ms var(--ease) calc(var(--i,0) * 60ms), transform 500ms var(--ease-snappy) calc(var(--i,0) * 60ms), color 200ms var(--ease);
}
.mobile-nav nav a:last-child { border-bottom: 1px solid var(--line); }
.mobile-nav nav a .mn-index {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--apricot);
}
.mobile-nav nav a:hover { color: var(--olive); }
.mobile-nav.is-open nav a { opacity: 1; transform: translateY(0); }
.mobile-nav nav a:nth-child(1) { --i: 1; }
.mobile-nav nav a:nth-child(2) { --i: 2; }
.mobile-nav nav a:nth-child(3) { --i: 3; }
.mobile-nav nav a:nth-child(4) { --i: 4; }
.mobile-nav nav a:nth-child(5) { --i: 5; }
.mobile-nav nav a:nth-child(6) { --i: 6; }

.mobile-shop { align-self: flex-start; }
.mobile-foot {
  margin-top: auto;
  display: flex; flex-direction: column; gap: .35rem;
  font-size: .9rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.mobile-foot a { color: var(--ink); font-weight: 500; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: clamp(6rem, 14vh, 10rem);
  padding-bottom: clamp(4rem, 12vh, 7rem);
  overflow: hidden;
  isolation: isolate;
}
.ararat {
  position: absolute; inset: auto 0 0 0; height: 60%;
  z-index: -1; pointer-events: none;
}
.ararat svg { width: 100%; height: 100%; display: block; }

.ornament-strip {
  position: absolute; top: 0; bottom: 0; width: 20px;
  z-index: -1; opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='40' viewBox='0 0 20 40'><g fill='none' stroke='%23B8893C' stroke-width='1'><path d='M10 2 L18 10 L10 18 L2 10 Z'/><path d='M10 22 L18 30 L10 38 L2 30 Z'/></g></svg>");
  background-repeat: repeat-y;
  background-size: 20px 40px;
}
.ornament-strip-left { left: 0.5rem; }
@media (max-width: 900px) { .ornament-strip { display: none; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px){
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4rem;
  }
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { margin-bottom: 1.5rem; }
.hero-sub {
  margin: 1.5rem 0 2rem;
  font-size: clamp(1.05rem, 0.95rem + 0.3vw, 1.2rem);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.hero-tag {
  margin-top: 2.25rem;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .5rem;
  color: var(--earth);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05rem;
}
.hero-tag .sep { color: var(--apricot); }

/* Hero card stack */
.hero-card-stack {
  position: relative;
  min-height: 460px;
  perspective: 1200px;
}
@media (min-width: 980px){ .hero-card-stack { min-height: 560px; } }

.hc {
  position: absolute;
  width: 62%;
  border-radius: var(--radius-lg);
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 0.55rem 0.55rem 0.9rem;
  box-shadow: var(--shadow-2);
  margin: 0;
  transition: transform 600ms var(--ease-snappy), box-shadow 400ms var(--ease);
}
.hc img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
}
.hc figcaption {
  padding: .65rem .6rem 0;
  display: flex; flex-direction: column; gap: .15rem;
}
.hc-kicker {
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--earth); font-weight: 600;
}
.hc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}

.hc-1 { top: 0; right: 0; width: 58%; transform: rotate(3deg); z-index: 2; }
.hc-2 { top: 18%; left: 2%; width: 52%; transform: rotate(-4deg); z-index: 3; }
.hc-3 { bottom: 6%; right: 6%; width: 56%; transform: rotate(2deg); z-index: 1; }

.hero-card-stack:hover .hc-1 { transform: rotate(5deg) translateY(-6px); }
.hero-card-stack:hover .hc-2 { transform: rotate(-6deg) translate(-8px, -2px); }
.hero-card-stack:hover .hc-3 { transform: rotate(3deg) translateY(6px); }

.hc-meta {
  position: absolute;
  left: -1rem; bottom: 14%;
  background: var(--olive);
  color: var(--cream-2);
  padding: .85rem 1.1rem;
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  z-index: 4;
  box-shadow: var(--shadow-2);
  transform: rotate(-3deg);
}
.hc-meta-label {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--apricot-2); font-weight: 600;
}
.hc-meta-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
}

@media (max-width: 640px) {
  .hc { width: 60%; }
  .hc-1 { top: 0; right: 0; }
  .hc-2 { top: 18%; left: 0; width: 56%; }
  .hc-3 { bottom: 0; right: 8%; width: 56%; }
  .hc-meta { left: -.25rem; bottom: 6%; }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--apricot), transparent);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ""; position: absolute; left: 0; top: -40%; width: 1px; height: 50%;
  background: var(--ink);
  animation: scroll-drop 2.2s var(--ease) infinite;
}
@keyframes scroll-drop {
  0% { transform: translateY(-100%); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(220%); opacity: 0; }
}
@media (max-width: 640px) { .scroll-cue { display: none; } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--ivory);
  overflow: hidden;
  padding: 1.25rem 0;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 2rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--earth);
  will-change: transform;
}
.marquee-track .m-dot { color: var(--apricot); font-size: .8rem; font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}
.section-head {
  display: flex; flex-direction: column; gap: 1.1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 64ch;
}
.section-head.center { margin-inline: auto; text-align: center; align-items: center; }
.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem);
}
@media (min-width: 980px){
  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 5rem;
  }
}
.about-prose .lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.05rem + 0.8vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--olive);
  line-height: 1.35;
  margin-top: 0;
}
.about-prose p { color: var(--ink-2); max-width: 64ch; }
.about-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}
.stat {
  display: flex; flex-direction: column; gap: .35rem;
  padding: 0.5rem 0;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  font-weight: 500;
  color: var(--olive);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-text { color: var(--apricot); font-style: italic; }
.stat-label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}

/* ---------- MISSION / VISION ---------- */
.mv { background: var(--cream-2); }
.mv-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 760px){
  .mv-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .mv-grid-3 .mv-card-vision { grid-column: 1 / -1; }
}
@media (min-width: 1100px){
  .mv-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .mv-grid-3 .mv-card-vision { grid-column: auto; }
}
.mv-card {
  position: relative;
  padding: 0.5rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(33,58,42,0.06), rgba(216,130,64,0.04));
  border: 1px solid var(--line);
}
.mv-inner {
  background: var(--ivory);
  border-radius: calc(var(--radius-xl) - 8px);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
  height: 100%;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.mv-card-alt {
  background: linear-gradient(200deg, rgba(216,130,64,0.10), rgba(33,58,42,0.05));
}
.mv-card-vision {
  background: linear-gradient(160deg, rgba(33,58,42,0.12), rgba(184,137,60,0.08));
}
.mv-card-vision .mv-inner {
  background: var(--olive);
  color: var(--cream-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.mv-card-vision .mv-num { color: var(--apricot-2); }
.mv-card-vision .mv-kicker { color: var(--apricot-2); }
.mv-card-vision .mv-title { color: var(--cream-2); }
.mv-card-vision .mv-body { color: rgba(251,246,236,0.78); }
.mv-card-vision .mv-list { border-top-color: rgba(251,246,236,0.16); }
.mv-card-vision .mv-list li { color: rgba(251,246,236,0.85); }
.mv-card-vision .mv-list li::before { background: var(--apricot-2); }

.mv-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--apricot);
  font-weight: 300;
  line-height: 1;
}
.mv-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--apricot);
  font-weight: 600;
  margin-top: -0.35rem;
}
.mv-title {
  font-size: clamp(1.35rem, 1rem + 0.9vw, 1.75rem);
}
.mv-body { color: var(--ink-2); max-width: 50ch; }
.mv-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .6rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--line);
}
.mv-list li {
  display: flex; align-items: center; gap: .65rem;
  font-size: 0.95rem;
  color: var(--ink-2);
}
.mv-list li::before {
  content: ""; width: 6px; height: 6px;
  background: var(--apricot);
  border-radius: 50%;
}

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  position: relative;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 350ms var(--ease-snappy), border-color 250ms var(--ease), box-shadow 350ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.why-card::after {
  content: "";
  position: absolute; inset: auto -20% -50% auto;
  width: 60%; aspect-ratio: 1/1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(216,130,64,0.18), transparent 70%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  z-index: -1;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(216,130,64,0.32);
  box-shadow: var(--shadow-2);
}
.why-card:hover::after { opacity: 1; }
.why-icn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(33,58,42,0.06);
  border-radius: 12px;
  color: var(--olive);
  margin-bottom: 1.25rem;
  transition: background 300ms var(--ease), color 300ms var(--ease);
}
.why-icn svg { width: 22px; height: 22px; }
.why-card:hover .why-icn { background: var(--olive); color: var(--apricot-2); }
.why-card h3 {
  font-size: 1.25rem; margin: 0 0 .6rem;
  letter-spacing: -0.01em;
}
.why-card p { margin: 0; color: var(--muted); font-size: .95rem; max-width: 36ch; }

/* ---------- SERVICES ---------- */
.services { background: var(--cream-2); }
.services-stack {
  display: flex; flex-direction: column;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.srv {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
}
@media (min-width: 880px) {
  .srv { grid-template-columns: 1.05fr 1fr; }
  .srv-rev .srv-media { order: 2; }
  .srv-rev .srv-body { order: 1; }
}
.srv-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bone);
  box-shadow: var(--shadow-2);
  aspect-ratio: 4/3;
}
.srv-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 900ms var(--ease);
}
.srv:hover .srv-media img { transform: scale(1.04); }
.srv-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: .4rem .75rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600;
  color: var(--earth);
}
.srv-body h3 {
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.2rem);
  margin: 0 0 1rem;
}
.srv-body p {
  color: var(--ink-2);
  max-width: 48ch;
  margin-bottom: 1.5rem;
}

/* ---------- PRODUCTS ---------- */
.cat-tabs {
  display: flex; flex-wrap: wrap; gap: .4rem;
  padding: 0.4rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  margin-bottom: 2.5rem;
  align-self: flex-start;
  width: fit-content;
}
.cat-tab {
  padding: 0.6rem 1.05rem;
  border-radius: var(--radius-pill);
  border: 0;
  background: transparent;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 250ms var(--ease), color 250ms var(--ease);
}
.cat-tab:hover { background: rgba(33,58,42,0.06); color: var(--olive); }
.cat-tab.is-active {
  background: var(--olive);
  color: var(--cream-2);
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 1.1rem; } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.pcard {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 400ms var(--ease-snappy), border-color 250ms var(--ease), box-shadow 350ms var(--ease);
}
.pcard:hover {
  transform: translateY(-4px);
  border-color: rgba(216,130,64,0.35);
  box-shadow: var(--shadow-2);
}
.pcard-img {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(160deg, var(--bone), var(--paper));
  overflow: hidden;
}
.pcard-img img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 1rem;
  transition: transform 700ms var(--ease);
}
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-body {
  padding: 1.1rem 1.1rem 1.25rem;
  display: flex; flex-direction: column; gap: .35rem;
  flex: 1;
}
.pcard-cat {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--apricot); font-weight: 600;
}
.pcard h3 {
  font-size: 1.15rem;
  margin: 0;
  font-weight: 500;
}
.pcard p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.pcard .btn-text-sm { margin-top: .65rem; align-self: flex-start; }
.pcard .btn-pill { margin-top: .85rem; align-self: flex-start; }

/* Featured cards span 2 cols (desktop) */
@media (min-width: 1024px) {
  .pcard-feat { grid-column: span 2; grid-row: span 1; }
  .pcard-feat .pcard-img { aspect-ratio: 16/10; }
  .pcard-feat .pcard-img img { padding: 1.5rem; }
  .pcard-feat .pcard-body { padding: 1.5rem 1.75rem 1.75rem; gap: .6rem; }
  .pcard-feat h3 { font-size: 1.6rem; }
}

.pcard.is-hidden { display: none; }

.product-foot {
  margin-top: 3rem;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.product-foot p { color: var(--muted); font-style: italic; font-family: var(--font-display); font-size: 1.1rem; }

/* ---------- HERITAGE ---------- */
.heritage {
  position: relative;
  color: var(--cream-2);
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
  isolation: isolate;
}
.heritage-bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.heritage-bg svg { width: 100%; height: 100%; }

.heritage-grid {
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 920px) {
  .heritage-grid { grid-template-columns: 1.2fr 1fr; gap: 5rem; }
}
.heritage-copy h2 { color: var(--cream-2); }
.heritage-copy h2 em { color: var(--apricot-2); }
.h-display-light em { color: var(--apricot-2); }
.heritage-copy p {
  font-size: 1.1rem;
  color: rgba(251, 246, 236, 0.78);
  max-width: 54ch;
  margin: 1.5rem 0 2rem;
}
.heritage-quote {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(251, 246, 236, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(251, 246, 236, 0.04);
  backdrop-filter: blur(2px);
}
.arevakhach {
  width: 90px; height: 90px;
  margin-bottom: 1.25rem;
  opacity: .9;
}
.heritage-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2.1rem);
  margin: 0 0 1rem;
  line-height: 1.25;
  color: var(--cream-2);
}
.heritage-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--apricot-2); font-weight: 500;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.contact-card {
  position: relative;
  display: flex; flex-direction: column; gap: .35rem;
  padding: 1.75rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 350ms var(--ease-snappy), border-color 250ms var(--ease), box-shadow 350ms var(--ease);
  color: var(--ink);
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(33,58,42,0.28);
  box-shadow: var(--shadow-2);
}
.cc-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(33,58,42,0.07);
  color: var(--olive);
  margin-bottom: 1rem;
}
.cc-icon svg { width: 22px; height: 22px; }
.cc-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.cc-value {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.4rem);
  font-weight: 500;
  margin: .15rem 0 .8rem;
  word-break: break-word;
}
.cc-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 600; color: var(--olive);
  transition: gap 250ms var(--ease), color 250ms var(--ease);
}
.cc-cta svg { width: 13px; height: 13px; }
.contact-card:hover .cc-cta { gap: .65rem; color: var(--apricot); }

.contact-card-shop {
  background: var(--olive);
  color: var(--cream-2);
  border-color: transparent;
}
.contact-card-shop .cc-icon { background: rgba(251,246,236,0.10); color: var(--apricot-2); }
.contact-card-shop .cc-label { color: rgba(251,246,236,0.65); }
.contact-card-shop .cc-cta { color: var(--apricot-2); }
.contact-card-shop:hover .cc-cta { color: var(--cream-2); }

.contact-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.contact-form h3 {
  font-size: clamp(1.4rem, 1.1rem + 0.8vw, 1.9rem);
  margin: 0 0 .5rem;
}
.cf-help { color: var(--muted); margin: 0 0 1.5rem; }
.cf-help a { color: var(--olive); border-bottom: 1px solid var(--line-strong); }
.cf-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .cf-grid { grid-template-columns: 1fr 1fr; } }
.cf-field { display: flex; flex-direction: column; gap: .35rem; }
.cf-field.cf-full { grid-column: 1 / -1; }
.cf-field span {
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.cf-field input,
.cf-field textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--cream-2);
  color: var(--ink);
  transition: border-color 200ms var(--ease), box-shadow 250ms var(--ease), background 200ms var(--ease);
}
.cf-field input:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--olive);
  background: var(--ivory);
  box-shadow: 0 0 0 4px rgba(33,58,42,0.08);
}
.cf-actions {
  margin-top: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
}
.cf-note { color: var(--muted); margin: 0; font-size: .9rem; }
.cf-note.is-ok { color: var(--olive); }
.cf-note.is-err { color: var(--pomegranate); }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 235, 217, 0.78);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.brand-foot { color: var(--cream); }
.brand-foot .brand-mark { background: rgba(244,235,217,0.06); border-color: rgba(244,235,217,0.16); color: var(--cream); }
.brand-foot .brand-line-1 { color: var(--cream); }
.foot-brand p {
  margin: 1rem 0 1.5rem;
  max-width: 38ch;
  color: rgba(244, 235, 217, 0.65);
}
.foot-brand .btn-primary { background: var(--apricot); color: var(--ink); }
.foot-brand .btn-primary:hover { background: var(--apricot-2); }
.foot-brand .btn-primary .btn-icon { background: rgba(31,26,18,0.10); color: var(--ink); }

.foot-col {
  display: flex; flex-direction: column; gap: .65rem;
}
.foot-col h4 {
  font-family: var(--font-body);
  font-size: .72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--apricot); font-weight: 600;
  margin: 0 0 .5rem;
}
.foot-col a {
  color: rgba(244, 235, 217, 0.78);
  font-size: 0.95rem;
  transition: color 200ms var(--ease);
  display: inline-flex; align-items: center;
}
.foot-col a:hover { color: var(--apricot); }
.foot-tag {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(244,235,217,0.55);
  font-size: 1rem;
}

.footer-base {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244, 235, 217, 0.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem;
  color: rgba(244, 235, 217, 0.45);
  font-size: .82rem;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease-snappy), filter 900ms var(--ease);
  transition-delay: 60ms;
}
.reveal[data-stagger="1"] { transition-delay: 100ms; }
.reveal[data-stagger="2"] { transition-delay: 180ms; }
.reveal[data-stagger="3"] { transition-delay: 260ms; }
.reveal[data-stagger="4"] { transition-delay: 340ms; }
.reveal[data-stagger="5"] { transition-delay: 420ms; }
.reveal[data-stagger="6"] { transition-delay: 500ms; }
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; filter: none; }
  html { scroll-behavior: auto; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 8px;
}
