/* ════════════════════════════════════════════════════════════════
   NILE ORIGIN SOURCING — DESIGN SYSTEM
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Brand palette */
  --green-900: #061714;
  --green-800: #0B2B26;   /* Deep Forest Green — primary */
  --green-700: #133E37;
  --green-600: #1B5048;
  --green-300: #4F7A72;
  --green-100: #D5DDD9;

  --gold-700: #8E7035;
  --gold-600: #A88847;
  --gold-500: #C5A059;    /* Champagne Gold — accent */
  --gold-400: #D4B679;
  --gold-200: #EDDDB7;
  --gold-100: #F4E9D2;

  --cream-100: #FAF7EE;
  --cream-200: #F2EBD8;
  --cream-300: #E6DCC1;

  --ink-900: #0A0A08;
  --ink-700: #2A2A26;
  --ink-500: #6B6B62;
  --ink-300: #B8B5A8;

  --white: #FFFFFF;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Layout */
  --container: 1280px;
  --container-narrow: 1080px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ════════════════════════════════════════════════════════════════
   RESET / BASE
   ════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, textarea, select, button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 3px; border-radius: 2px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════════════════════ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--green-800);
  margin: 0;
  line-height: 1.05;
}
em {
  font-style: italic;
  font-variation-settings: "SOFT" 100;
  color: var(--gold-600);
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn svg { transition: transform 0.3s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }

.btn--gold {
  background: var(--gold-500);
  color: var(--green-900);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 6px 20px -6px rgba(197,160,89,0.5);
}
.btn--gold:hover {
  background: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 12px 28px -8px rgba(197,160,89,0.6);
}

.btn--ghost {
  background: transparent;
  color: var(--cream-100);
  border-color: rgba(245, 241, 232, 0.35);
}
.btn--ghost:hover {
  background: rgba(245, 241, 232, 0.08);
  border-color: var(--gold-500);
  color: var(--gold-200);
}

.btn--lg { padding: 16px 32px; font-size: 14px; }
.btn--block { width: 100%; }

/* ════════════════════════════════════════════════════════════════
   ANNOUNCE BAR
   ════════════════════════════════════════════════════════════════ */

.announce {
  background: var(--green-900);
  color: var(--gold-200);
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(197,160,89,0.18);
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px var(--gutter);
}
.announce__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 0 rgba(197,160,89,0.6);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197,160,89,0.6); }
  50% { box-shadow: 0 0 0 8px rgba(197,160,89,0); }
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 43, 38, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(197,160,89,0.12);
  transition: padding 0.3s var(--ease-out);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream-100);
}
.nav__logo {
  width: 44px; height: 44px;
  object-fit: contain;
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav__brand-line1 { font-size: 16px; color: var(--cream-100); }
.nav__brand-line2 { font-size: 12px; color: var(--gold-500); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; font-family: var(--font-body); font-weight: 500; }

.nav__links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-100);
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-500);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:hover { color: var(--gold-200); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  color: var(--cream-100);
}
.nav__toggle span {
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: all 0.3s var(--ease-out);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px var(--gutter) 24px;
  background: var(--green-800);
  border-top: 1px solid rgba(197,160,89,0.12);
}
.nav__mobile a:not(.btn) {
  padding: 14px 0;
  font-size: 16px;
  color: var(--cream-100);
  border-bottom: 1px solid rgba(197,160,89,0.08);
  font-family: var(--font-display);
  font-weight: 400;
}
.nav__mobile .btn { margin-top: 16px; }
.nav.is-open .nav__mobile { display: flex; }

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--green-800);
  color: var(--cream-100);
  overflow: hidden;
  padding: clamp(80px, 14vh, 160px) 0 clamp(60px, 10vh, 120px);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(197,160,89,0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(79,122,114,0.25), transparent 60%);
}
.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: 60px;
}
.hero__content {
  position: relative;
  z-index: 2;
}
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 560px;
  min-height: 380px;
}
.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  transform: rotate(-1.5deg);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.06) brightness(0.96);
}
.hero__photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,43,38,0.35) 100%);
  pointer-events: none;
}
.hero__seal {
  position: absolute;
  width: 56%;
  max-width: 240px;
  aspect-ratio: 1;
  color: var(--gold-500);
  bottom: -8%;
  right: -10%;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.4));
  z-index: 3;
}
.hero__seal svg { width: 100%; height: 100%; }
.hero__seal-rotor {
  transform-origin: 120px 120px;
  animation: hero-rotate 50s linear infinite;
}
@keyframes hero-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.hero__meta-wrap {
  position: relative;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px 8px 0;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-200);
}
.eyebrow__line {
  width: 36px; height: 1px;
  background: var(--gold-500);
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(38px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--cream-100);
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
  max-width: 16ch;
}
.hero__title-row {
  display: block;
}
.hero__title-row--accent {
  color: var(--gold-500);
  font-weight: 300;
}
.hero__title-row--accent em {
  color: var(--gold-200);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.78);
  max-width: 50ch;
  margin: 0 0 36px;
  font-weight: 300;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(197,160,89,0.18);
  max-width: 100%;
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__meta-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  color: var(--gold-500);
  letter-spacing: -0.02em;
}
.hero__meta-label {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(245, 241, 232, 0.6);
  letter-spacing: 0.02em;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  right: var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-200);
  opacity: 0.65;
  z-index: 2;
}
.hero__scroll svg {
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .hero__visual { max-height: 420px; min-height: 320px; max-width: 480px; margin: 0 auto; width: 100%; }
  .hero__seal { right: -4%; bottom: -6%; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
  .hero__ctas .btn { width: 100%; }
  /* Hide the photo on mobile but keep a centered, smaller seal as a brand mark */
  .hero__visual {
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    height: 180px;
    margin-top: 12px;
    margin-bottom: 0;
  }
  .hero__photo { display: none; }
  .hero__seal {
    position: relative;
    inset: auto;
    width: 160px;
    margin: 0 auto;
    bottom: auto;
    right: auto;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
  }
}

/* ════════════════════════════════════════════════════════════════
   TRUST STRIP
   ════════════════════════════════════════════════════════════════ */

.trust-strip {
  background: var(--green-900);
  color: var(--gold-200);
  padding: 28px 0;
  border-bottom: 1px solid rgba(197,160,89,0.1);
}
.trust-strip__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.45);
  margin: 0 0 16px;
  text-align: center;
}
.trust-strip__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.05em;
  color: var(--gold-200);
}
.trust-strip__items li {
  position: relative;
}

/* ════════════════════════════════════════════════════════════════
   SECTION HEAD (shared)
   ════════════════════════════════════════════════════════════════ */

section { padding: clamp(80px, 12vh, 140px) 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 8vh, 88px);
  text-align: center;
}
.section-head__num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold-600);
  margin-bottom: 12px;
}
.section-head__kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 20px;
}
.section-head__title {
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-weight: 300;
  font-variation-settings: "opsz" 144;
}
.section-head__lede {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: var(--ink-500);
  max-width: 60ch;
  margin: 0 auto;
}

.section-head--light .section-head__num { color: var(--gold-200); }
.section-head--light .section-head__kicker { color: rgba(245, 241, 232, 0.55); }
.section-head--light .section-head__title { color: var(--cream-100); }
.section-head--light .section-head__title em { color: var(--gold-500); }
.section-head--light .section-head__lede { color: rgba(245, 241, 232, 0.7); }

/* ════════════════════════════════════════════════════════════════
   THE LOGIC / WHY
   ════════════════════════════════════════════════════════════════ */

.why {
  background: var(--cream-100);
  position: relative;
}
.why::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
  opacity: 0.4;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.why__card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  padding: 36px 32px;
  border-radius: 4px;
  position: relative;
  transition: all 0.4s var(--ease-out);
}
.why__card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(11,43,38,0.12);
}
.why__card--featured {
  background: var(--green-800);
  color: var(--cream-100);
  border-color: var(--green-800);
}
.why__card--featured h3 { color: var(--cream-100); }
.why__card--featured p { color: rgba(245, 241, 232, 0.78); }
.why__card--featured .why__icon { color: var(--gold-500); }
.why__card--featured .why__bullets li { color: rgba(245, 241, 232, 0.65); border-color: rgba(197,160,89,0.18); }
.why__card--featured .why__bullets li::before { color: var(--gold-500); }

.why__icon {
  width: 52px; height: 52px;
  color: var(--green-800);
  margin-bottom: 24px;
}
.why__icon svg { width: 100%; height: 100%; }

.why__card h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.why__card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0 0 20px;
}
.why__bullets li {
  font-size: 13px;
  padding: 10px 0 10px 22px;
  border-top: 1px solid var(--cream-300);
  color: var(--ink-700);
  position: relative;
}
.why__bullets li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold-600);
  font-size: 8px;
  top: 14px;
}

.why__quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 var(--gutter);
}
.why__quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  color: var(--green-800);
  margin: 0;
  font-variation-settings: "SOFT" 100, "opsz" 144;
  position: relative;
}
.why__quote-mark {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 0;
  color: var(--gold-500);
  position: absolute;
  top: 18px; left: -40px;
  opacity: 0.4;
  font-style: normal;
}
@media (max-width: 720px) {
  .why__quote-mark { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   THE COLLECTION (Portfolio gallery)
   ════════════════════════════════════════════════════════════════ */

.collection {
  background: var(--green-800);
  color: var(--cream-100);
  position: relative;
}

.collection__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}
.filter {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 241, 232, 0.65);
  border: 1px solid rgba(197,160,89,0.25);
  border-radius: 999px;
  transition: all 0.25s var(--ease-out);
  letter-spacing: 0.02em;
}
.filter:hover {
  color: var(--cream-100);
  border-color: var(--gold-500);
}
.filter.is-active {
  background: var(--gold-500);
  color: var(--green-900);
  border-color: var(--gold-500);
  font-weight: 600;
}

.collection__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
  grid-auto-rows: 200px;
  margin-bottom: 64px;
}

/* Editorial card sizes */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--green-700);
  cursor: pointer;
  grid-column: span 3;
  grid-row: span 1;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
}
.gallery-card.is-hidden { display: none; }
.gallery-card.size-tall { grid-row: span 2; grid-column: span 3; }
.gallery-card.size-wide { grid-column: span 6; grid-row: span 1; }
.gallery-card.size-large { grid-column: span 6; grid-row: span 2; }
.gallery-card.size-square { grid-column: span 3; grid-row: span 1; }
.gallery-card.size-normal { grid-column: span 3; grid-row: span 1; }

@media (max-width: 980px) {
  .collection__grid { grid-auto-rows: 220px; grid-template-columns: repeat(6, 1fr); }
  .gallery-card,
  .gallery-card.size-square,
  .gallery-card.size-normal { grid-column: span 3; }
  .gallery-card.size-tall { grid-column: span 3; grid-row: span 2; }
  .gallery-card.size-wide { grid-column: span 6; }
  .gallery-card.size-large { grid-column: span 6; grid-row: span 2; }
}
@media (max-width: 600px) {
  .collection__grid { grid-auto-rows: 240px; gap: 10px; grid-template-columns: 1fr; }
  .gallery-card,
  .gallery-card.size-tall,
  .gallery-card.size-wide,
  .gallery-card.size-large,
  .gallery-card.size-square,
  .gallery-card.size-normal { grid-column: 1 / -1; grid-row: span 1; }
}

.gallery-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
  filter: saturate(1.05) contrast(1.02);
}
.gallery-card:hover img { transform: scale(1.06); }

.gallery-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,23,20,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.gallery-card:hover .gallery-card__overlay { opacity: 1; }
.gallery-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream-100);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.gallery-card__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.gallery-card__zoom {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.15);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-100);
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s var(--ease-out);
}
.gallery-card:hover .gallery-card__zoom {
  opacity: 1;
  transform: translateY(0);
}

.collection__cta { text-align: center; }
.collection__cta-note {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.5);
}

/* ════════════════════════════════════════════════════════════════
   PROCESS / TIMELINE
   ════════════════════════════════════════════════════════════════ */

.process {
  background: var(--cream-100);
  position: relative;
}

.process__steps {
  display: grid;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.process__step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--cream-300);
  position: relative;
}
.process__step:last-child { border-bottom: 1px solid var(--cream-300); }

.process__step-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.85;
  color: var(--gold-500);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.04em;
}

.process__step-body h3 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.process__step-lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-500);
  max-width: 56ch;
  margin: 0 0 28px;
}

.process__step-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
  border-top: 1px solid var(--cream-300);
}
.process__step-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--cream-300);
  font-size: 14px;
}
.process__step-list li > span:first-child {
  color: var(--ink-700);
  font-weight: 500;
}
.process__step-list li > span:last-child {
  color: var(--gold-700);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .process__step-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .process__step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }
  .process__step-num { font-size: 60px; }
}

/* ════════════════════════════════════════════════════════════════
   HARVEST CALENDAR
   ════════════════════════════════════════════════════════════════ */

.calendar {
  background: var(--green-800);
  color: var(--cream-100);
  position: relative;
}

.calendar__wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.calendar__legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(245, 241, 232, 0.7);
}
.calendar__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 12px; height: 12px;
  border-radius: 2px;
}
.dot--peak { background: var(--gold-500); }
.dot--avail { background: var(--gold-700); }
.dot--off { background: rgba(245, 241, 232, 0.08); border: 1px solid rgba(245, 241, 232, 0.12); }

.calendar__table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(197,160,89,0.18);
  border-radius: 4px;
}
.calendar__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}
.calendar__table th, .calendar__table td {
  padding: 14px 4px;
  text-align: center;
  border-bottom: 1px solid rgba(197,160,89,0.12);
  border-right: 1px solid rgba(197,160,89,0.08);
  position: relative;
}
.calendar__table th {
  background: rgba(6,23,20,0.5);
  color: var(--gold-200);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 4px;
}
.calendar__th-product {
  text-align: left !important;
  padding-left: 20px !important;
  width: 200px;
}
.calendar__table tbody td:first-child {
  text-align: left;
  padding-left: 20px;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--cream-100);
  font-weight: 400;
  background: rgba(6,23,20,0.3);
}
.calendar__table tbody tr:hover td:first-child {
  color: var(--gold-200);
}
.cal-cell {
  height: 28px;
  border-radius: 2px;
  margin: 0 2px;
  cursor: default;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cal-cell.peak { background: var(--gold-500); }
.cal-cell.avail { background: var(--gold-700); opacity: 0.75; }
.cal-cell.off { background: rgba(245, 241, 232, 0.04); }
.cal-cell:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 2px rgba(197,160,89,0.4);
}
.cal-cell.peak:hover, .cal-cell.avail:hover { z-index: 2; position: relative; }

.calendar__note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(245, 241, 232, 0.55);
  text-align: center;
  font-style: italic;
  font-family: var(--font-display);
}

/* ════════════════════════════════════════════════════════════════
   TRUST / STANDARDS
   ════════════════════════════════════════════════════════════════ */

.trust {
  background: var(--cream-200);
  position: relative;
}

.trust__inner {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.trust__copy .section-head__num,
.trust__copy .section-head__kicker {
  display: inline-block;
  margin-right: 12px;
}
.trust__copy .section-head__kicker {
  margin-bottom: 24px;
}
.trust__title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
  line-height: 1.05;
}
.trust__lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0 0 36px;
  max-width: 50ch;
}
.trust__list {
  display: grid;
  gap: 0;
}
.trust__list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-top: 1px solid var(--cream-300);
}
.trust__list li:last-child { border-bottom: 1px solid var(--cream-300); }
.trust__list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 17px;
  color: var(--green-800);
  letter-spacing: -0.005em;
}
.trust__list span {
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: 0.01em;
}

.trust__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.trust__seal {
  width: clamp(220px, 30vw, 320px);
  aspect-ratio: 1;
  color: var(--green-800);
  position: relative;
}
.trust__seal svg {
  width: 100%; height: 100%;
  animation: rotateSeal 60s linear infinite;
}
.trust__seal svg text { animation: counterRotate 60s linear infinite; }
@keyframes rotateSeal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes counterRotate { /* not used; just keeping spec close */
  from { transform: none; }
  to { transform: none; }
}

@media (max-width: 880px) {
  .trust__inner { grid-template-columns: 1fr; gap: 48px; }
  .trust__visual { order: -1; }
  .trust__seal { width: 200px; }
}

/* ════════════════════════════════════════════════════════════════
   QUOTE FORM
   ════════════════════════════════════════════════════════════════ */

.quote {
  background: var(--green-900);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,160,89,0.08), transparent 70%);
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.quote__intro .section-head__num,
.quote__intro .section-head__kicker {
  display: inline-block;
  margin-right: 12px;
}
.quote__intro .section-head__num { color: var(--gold-200); }
.quote__intro .section-head__kicker { color: rgba(245, 241, 232, 0.55); margin-bottom: 24px; }

.quote__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--cream-100);
  margin: 0 0 24px;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}
.quote__title em { color: var(--gold-500); font-style: italic; font-variation-settings: "SOFT" 100, "opsz" 144; }
.quote__lede {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.7);
  margin: 0 0 40px;
  max-width: 46ch;
}

.quote__expect {
  display: grid;
  gap: 0;
  padding-top: 8px;
  margin-bottom: 40px;
}
.quote__expect li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(197,160,89,0.15);
}
.quote__expect li:last-child { border-bottom: 1px solid rgba(197,160,89,0.15); }
.quote__expect-step {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-500);
  font-weight: 500;
}
.quote__expect strong {
  display: block;
  color: var(--cream-100);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 2px;
}
.quote__expect span {
  font-size: 12px;
  color: rgba(245, 241, 232, 0.55);
  letter-spacing: 0.02em;
}

.quote__contact {
  padding-top: 8px;
}
.quote__contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.45);
  margin: 0 0 6px;
}
.quote__contact-link {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold-500);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  word-break: break-word;
}
.quote__contact-link:hover { border-color: var(--gold-500); }

.quote__form {
  background: rgba(245, 241, 232, 0.03);
  border: 1px solid rgba(197,160,89,0.18);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 44px);
  backdrop-filter: blur(8px);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form__row .form__field { margin-bottom: 0; }
.form__field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.65);
}
.form__field label span { color: var(--gold-500); }

.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(6,23,20,0.4);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: 3px;
  color: var(--cream-100);
  font-size: 15px;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C5A059' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}
.form__field select option {
  background: var(--green-800);
  color: var(--cream-100);
}
.form__field input::placeholder,
.form__field textarea::placeholder {
  color: rgba(245, 241, 232, 0.35);
}
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: rgba(6,23,20,0.6);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
}

.form__check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.7);
}
.form__check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold-500);
}
.form__check label {
  cursor: pointer;
  letter-spacing: 0.01em;
}

.form__note {
  margin: 16px 0 0;
  font-size: 12px;
  color: rgba(245, 241, 232, 0.45);
  text-align: center;
  letter-spacing: 0.01em;
}

.form__success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(197,160,89,0.12);
  border: 1px solid var(--gold-500);
  border-radius: 4px;
  color: var(--gold-200);
}
.form__success[hidden] { display: none; }
.form__success strong { color: var(--cream-100); display: block; margin-bottom: 2px; }
.form__success span { font-size: 13px; }
.form__success svg { color: var(--gold-500); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 880px) {
  .quote__inner { grid-template-columns: 1fr; gap: 48px; }
  .form__row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */

.footer {
  background: var(--green-900);
  color: rgba(245, 241, 232, 0.6);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 64px;
  padding-bottom: 56px;
}
.footer__logo {
  width: 56px; height: 56px;
  margin-bottom: 16px;
}
.footer__tag {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream-100);
  margin: 0 0 12px;
  font-weight: 300;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 144;
}
.footer__addr {
  font-size: 13px;
  margin: 0;
  letter-spacing: 0.01em;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer__cols ul li {
  padding: 6px 0;
  font-size: 14px;
}
.footer__cols ul li a {
  color: rgba(245, 241, 232, 0.65);
  transition: color 0.2s;
}
.footer__cols ul li a:hover { color: var(--gold-200); }

.footer__bottom {
  border-top: 1px solid rgba(197,160,89,0.12);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(245, 241, 232, 0.4);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom-meta {
  font-family: var(--font-display);
  font-style: italic;
}

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════════════════════════
   LIGHTBOX
   ════════════════════════════════════════════════════════════════ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6,23,20,0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.3s var(--ease-out);
}
.lightbox[hidden] { display: none; }

.lightbox__figure {
  margin: 0;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox__figure figcaption {
  color: var(--cream-100);
  font-family: var(--font-display);
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.02em;
}

.lightbox__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.08);
  color: var(--cream-100);
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lightbox__close:hover {
  background: var(--gold-500);
  color: var(--green-900);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(245, 241, 232, 0.08);
  color: var(--cream-100);
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lightbox__nav:hover {
  background: var(--gold-500);
  color: var(--green-900);
}
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

@media (max-width: 720px) {
  .lightbox { padding: 20px; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
}

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

/* ════════════════════════════════════════════════════════════════
   THE CATALOGUE (Product specs by category)
   ════════════════════════════════════════════════════════════════ */

.catalogue {
  background: var(--cream-100);
  position: relative;
}
.catalogue .section-head__title em {
  color: var(--gold-600);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}

.catalogue__rows {
  display: grid;
  gap: 0;
  margin-bottom: 56px;
}

.catalogue__row {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--cream-300);
  position: relative;
}
.catalogue__row:last-child {
  border-bottom: 1px solid var(--cream-300);
}

.catalogue__category {
  padding-right: 12px;
  position: sticky;
  top: 110px;
  align-self: flex-start;
}
.catalogue__cat-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 14px;
}
.catalogue__category h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 400;
  color: var(--green-800);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144;
}
.catalogue__category p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0;
  max-width: 28ch;
}
.catalogue__ornament {
  width: 80px;
  height: 80px;
  color: var(--gold-500);
  opacity: 0.4;
  margin-top: 28px;
  display: block;
}

.catalogue__products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-content: start;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--cream-300);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.product-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -18px rgba(11, 43, 38, 0.18);
}

.product-card__photo {
  position: relative;
  height: 180px;
  background: var(--cream-200);
  overflow: hidden;
}
.product-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
  filter: saturate(1.05);
}
.product-card:hover .product-card__photo img {
  transform: scale(1.05);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--green-800);
  margin: 18px 20px 4px;
  letter-spacing: -0.005em;
  line-height: 1.2;
  font-variation-settings: "opsz" 144;
}
.product-card__variant {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-500);
  letter-spacing: 0;
  font-style: normal;
}

.product-card__specs {
  margin: 8px 20px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__specs .spec {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--cream-300);
}
.product-card__specs .spec:first-child {
  margin-top: 8px;
}
.product-card__specs dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 500;
}
.product-card__specs dt svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.product-card__specs dd {
  font-size: 13px;
  color: var(--ink-700);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

.catalogue__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-top: 32px;
}
.catalogue__footer p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-500);
  margin: 0;
  max-width: 60ch;
  font-variation-settings: "SOFT" 100;
}

@media (max-width: 900px) {
  .catalogue__row {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 0;
  }
  .catalogue__category {
    position: static;
    padding-right: 0;
  }
  .catalogue__category p { max-width: 50ch; }
  .catalogue__ornament { display: none; }
}
@media (max-width: 600px) {
  .catalogue__products {
    grid-template-columns: 1fr;
  }
  .product-card__photo {
    height: 220px;
  }
}

/* ════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.is-revealed > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.is-revealed > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-revealed > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-revealed > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-revealed > *:nth-child(5) { transition-delay: 0.32s; }

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

/* Selection */
::selection { background: var(--gold-500); color: var(--green-900); }

/* Smooth scroll padding for sticky nav */
html { scroll-padding-top: 90px; }
