/* ============================================================
   HEARTHBORN — Design Tokens & Styles
   Rustic Tennessee Heritage / Patriotic Settler Aesthetic
   Premium Rebuild — Richer, more dramatic design
   ============================================================ */

/* --- Type Scale --- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* --- Spacing (4px base) --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Fonts --- */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;

  /* --- Content Widths --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;

  /* --- Radius --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* --- Transitions --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   LIGHT MODE — Hearthborn Heritage Palette
   ============================================================ */
:root, [data-theme="light"] {
  --color-bg:             #F5F0E8;
  --color-surface:        #FAF7F2;
  --color-surface-2:      #FFFDF9;
  --color-surface-offset: #EDE8DF;
  --color-border:         #D1C9B8;
  --color-divider:        #DDD6C8;

  --color-text:           #2C2418;
  --color-text-muted:     #6B5F4F;
  --color-text-faint:     #A89E8E;
  --color-text-inverse:   #FAF7F2;

  --color-primary:        #3B5E3A;
  --color-primary-hover:  #2D4A2C;
  --color-primary-active: #1F351F;

  --color-accent:         #8B3A2A;
  --color-accent-hover:   #6F2E21;
  --color-accent-light:   #C47A5A;

  --color-navy:           #1B2D4F;
  --color-navy-light:     #3A5278;

  --color-gold:           #B8860B;
  --color-gold-light:     #D4A843;
  --color-gold-dark:      #8B6914;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 60 / 0.08);
  --shadow-md: 0 4px 12px oklch(0.2 0.02 60 / 0.1);
  --shadow-lg: 0 12px 32px oklch(0.2 0.02 60 / 0.14);
  --shadow-xl: 0 20px 48px oklch(0.2 0.02 60 / 0.18);
}

/* ============================================================
   DARK MODE — Deep cabin at night
   ============================================================ */
[data-theme="dark"] {
  --color-bg:             #1A1611;
  --color-surface:        #211C15;
  --color-surface-2:      #28221A;
  --color-surface-offset: #1E1912;
  --color-border:         #3D3529;
  --color-divider:        #332C22;

  --color-text:           #D9D0C2;
  --color-text-muted:     #8F8576;
  --color-text-faint:     #5C5347;
  --color-text-inverse:   #1A1611;

  --color-primary:        #6B9E6A;
  --color-primary-hover:  #5A8B59;
  --color-primary-active: #4A7849;

  --color-accent:         #C47A5A;
  --color-accent-hover:   #D48A6A;
  --color-accent-light:   #8B3A2A;

  --color-navy:           #6B8AB8;
  --color-navy-light:     #8AAAD0;

  --color-gold:           #D4A843;
  --color-gold-light:     #E8C06A;
  --color-gold-dark:      #B8960B;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.45);
  --shadow-xl: 0 20px 48px oklch(0 0 0 / 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #1A1611;
    --color-surface:        #211C15;
    --color-surface-2:      #28221A;
    --color-surface-offset: #1E1912;
    --color-border:         #3D3529;
    --color-divider:        #332C22;
    --color-text:           #D9D0C2;
    --color-text-muted:     #8F8576;
    --color-text-faint:     #5C5347;
    --color-text-inverse:   #1A1611;
    --color-primary:        #6B9E6A;
    --color-primary-hover:  #5A8B59;
    --color-primary-active: #4A7849;
    --color-accent:         #C47A5A;
    --color-accent-hover:   #D48A6A;
    --color-accent-light:   #8B3A2A;
    --color-navy:           #6B8AB8;
    --color-navy-light:     #8AAAD0;
    --color-gold:           #D4A843;
    --color-gold-light:     #E8C06A;
    --color-gold-dark:      #B8960B;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.25);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.45);
    --shadow-xl: 0 20px 48px oklch(0 0 0 / 0.55);
  }
}

/* ============================================================
   SVG DEFS (hidden)
   ============================================================ */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ============================================================
   PARCHMENT / GRAIN TEXTURE OVERLAY
   ============================================================ */
.parchment-texture {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .parchment-texture {
  opacity: 0.04;
  mix-blend-mode: soft-light;
}

/* ============================================================
   GLOBAL LAYOUT
   ============================================================ */
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.container--narrow {
  max-width: var(--content-default);
}

.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

/* ============================================================
   GOLD ACCENT RULES
   ============================================================ */
.gold-rule {
  border: none;
  height: 1px;
  background: linear-gradient(to right, var(--color-gold), var(--color-gold-light), transparent);
  max-width: 120px;
  margin: var(--space-4) 0 var(--space-6) 0;
  opacity: 0.6;
}

.gold-rule--center {
  margin-inline: auto;
  background: linear-gradient(to right, transparent, var(--color-gold), var(--color-gold-light), var(--color-gold), transparent);
  max-width: 180px;
}

/* ============================================================
   ORNAMENTAL SECTION DIVIDERS
   ============================================================ */
.ornament-divider {
  padding: var(--space-4) var(--space-4);
  color: var(--color-gold);
  display: flex;
  justify-content: center;
}

.ornament-divider svg {
  width: 100%;
  max-width: 480px;
  height: 40px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
}

.header__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.header__nav a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-out);
}

.header__nav a:hover {
  color: var(--color-text);
}

.header__nav a:hover::after {
  width: 100%;
}

.theme-toggle {
  padding: var(--space-2);
  color: var(--color-text-muted);
  border-radius: var(--radius-full);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: oklch(from var(--color-text) l c h / 0.06);
}

/* Mobile nav */
.mobile-toggle {
  display: none;
  padding: var(--space-2);
  color: var(--color-text);
}

@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-6) var(--space-4);
    gap: var(--space-4);
    box-shadow: var(--shadow-md);
  }
  .header__nav.open { display: flex; }
  .theme-toggle--desktop { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 60px;
}

.hero__bg {
  position: absolute;
  inset: -15%;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0.12 0.02 60 / 0.4) 0%,
    oklch(0.1 0.02 60 / 0.6) 40%,
    oklch(0.08 0.02 60 / 0.85) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: var(--space-8) var(--space-4);
}

.hero__tagline {
  font-size: var(--text-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  color: #FAF7F2;
  margin-bottom: var(--space-6);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: oklch(0.85 0.02 60);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.6;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--color-accent);
  color: #FAF7F2;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--color-accent);
  transition: all 0.3s var(--ease-out);
}

.hero__cta:hover {
  background: transparent;
  color: #FAF7F2;
  border-color: #FAF7F2;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px oklch(0 0 0 / 0.4);
}

.hero__cta:active {
  transform: translateY(0);
}

.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: oklch(0.85 0.02 60 / 0.6);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   MISSION / ABOUT
   ============================================================ */
.mission {
  background: var(--color-surface);
}

.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 768px) {
  .mission__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

.mission__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
}

.mission__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.mission__image:hover img {
  transform: scale(1.03);
}

.mission__label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.mission__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  color: var(--color-text);
  font-weight: 400;
}

.mission__text {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

/* Decorative Drop Cap */
.mission__text--drop-cap::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 3.8em;
  line-height: 0.8;
  padding-right: 0.1em;
  margin-top: 0.05em;
  color: var(--color-accent);
  font-weight: 700;
}

.mission__quote {
  position: relative;
  border-left: 3px solid var(--color-gold);
  padding: var(--space-6) var(--space-6) var(--space-6) var(--space-8);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--color-text);
  margin-top: var(--space-8);
  line-height: 1.5;
  background: linear-gradient(to right, oklch(from var(--color-gold) l c h / 0.04), transparent);
}

.mission__quote-mark {
  font-size: 2em;
  line-height: 0;
  vertical-align: -0.2em;
  color: var(--color-gold);
  opacity: 0.5;
}

/* ============================================================
   STATS BANNER — Animated counters
   ============================================================ */
.stats-banner {
  background: var(--color-navy);
  color: #FAF7F2;
  padding-block: clamp(var(--space-12), 5vw, var(--space-20));
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(0.15 0.04 250 / 0.5), oklch(0.1 0.02 250 / 0.8));
  pointer-events: none;
}

.stats-banner__grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(var(--space-6), 4vw, var(--space-12));
  flex-wrap: wrap;
}

.stats-banner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-4) var(--space-6);
  min-width: 140px;
}

.stats-banner__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1;
  margin-bottom: var(--space-1);
  font-variant-numeric: tabular-nums;
}

.stats-banner__unit {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-1);
}

.stats-banner__text-stat {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(0.8 0.02 60 / 0.7);
}

.stats-banner__label {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
}

.stats-banner__icon {
  color: var(--color-gold-light);
  margin-bottom: var(--space-2);
  opacity: 0.8;
}

.stats-banner__desc {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(0.8 0.02 60 / 0.6);
  margin-top: var(--space-1);
}

.stats-banner__divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--color-gold-light), transparent);
  opacity: 0.3;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .stats-banner__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
  }
  .stats-banner__divider { display: none; }
  .stats-banner__item { min-width: auto; }
}

/* ============================================================
   THE CRAFTSMAN
   ============================================================ */
.craftsman {
  background: var(--color-bg);
}

.craftsman__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 768px) {
  .craftsman__grid { grid-template-columns: 1fr; }
}

.craftsman__flag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  padding: var(--space-3) var(--space-5);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--color-navy);
  font-weight: 600;
  letter-spacing: 0.04em;
  position: relative;
}

.craftsman__flag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gold);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

[data-theme="dark"] .craftsman__flag {
  color: var(--color-navy-light);
}

/* ============================================================
   LANDSCAPE / CINEMATIC BREAKS
   ============================================================ */
.landscape-break {
  position: relative;
  height: 55vh;
  min-height: 320px;
  overflow: hidden;
}

.landscape-break__parallax {
  position: absolute;
  inset: -20%;
}

.landscape-break__parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.landscape-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(from var(--color-bg) l c h / 0.7) 0%,
    oklch(0.1 0.02 60 / 0.4) 25%,
    oklch(0.1 0.02 60 / 0.4) 75%,
    oklch(from var(--color-bg) l c h / 0.7) 100%
  );
  z-index: 1;
}

.landscape-break__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.landscape-break__quote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #FAF7F2;
  text-align: center;
  max-width: 700px;
  padding: var(--space-4);
  text-shadow: 0 2px 24px oklch(0.1 0.02 60 / 0.8);
  font-style: italic;
  line-height: 1.5;
}

/* Craftsman hands break — slightly taller and more dramatic */
.landscape-break--hands {
  height: 60vh;
  min-height: 360px;
}

/* ============================================================
   GALLERY / PORTFOLIO — Staggered Grid
   ============================================================ */
.gallery {
  background: var(--color-surface);
}

.gallery__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
}

.gallery__label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.gallery__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  font-weight: 400;
}

/* Staggered masonry-like grid */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-6);
}

/* Large item spans 1 col, 2 rows */
.gallery__item--large {
  grid-row: 1 / 3;
  aspect-ratio: auto;
  min-height: 500px;
}

@media (max-width: 768px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--large {
    grid-row: auto;
    min-height: 300px;
  }
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-6) var(--space-8);
  background: linear-gradient(to top, oklch(0.08 0.02 60 / 0.9) 0%, oklch(0.1 0.02 60 / 0.3) 40%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.gallery__item:hover .gallery__info {
  opacity: 1;
}

.gallery__item-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: #FAF7F2;
  margin-bottom: var(--space-2);
}

.gallery__item-desc {
  font-size: var(--text-xs);
  color: oklch(0.8 0.02 60);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery__item-tag {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding: var(--space-1) var(--space-4);
  background: var(--color-accent);
  color: #FAF7F2;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* ============================================================
   THE STORY — Process section
   ============================================================ */
.story {
  background: var(--color-navy);
  color: #FAF7F2;
  position: relative;
  overflow: hidden;
}

.story__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.story__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__content {
  position: relative;
  z-index: 1;
}

.story__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
}

.story__label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.story__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
}

.story__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

@media (max-width: 768px) {
  .story__steps { grid-template-columns: 1fr; }
}

.story__step {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  border: 1px solid oklch(1 0 0 / 0.06);
  border-radius: var(--radius-lg);
  background: oklch(1 0 0 / 0.02);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.story__step:hover {
  background: oklch(1 0 0 / 0.05);
  border-color: oklch(from var(--color-gold-light) l c h / 0.2);
}

.story__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 2px solid var(--color-gold-light);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-gold-light);
  margin-bottom: var(--space-4);
}

.story__step-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  font-weight: 500;
}

.story__step-text {
  color: oklch(0.8 0.02 60);
  line-height: 1.7;
  font-size: var(--text-sm);
}

/* ============================================================
   VETERAN-OWNED BANNER
   ============================================================ */
.veteran-banner {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.veteran-banner__bg {
  position: absolute;
  inset: -20%;
}

.veteran-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.veteran-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    oklch(0.08 0.03 250 / 0.75) 0%,
    oklch(0.1 0.03 250 / 0.85) 50%,
    oklch(0.08 0.03 250 / 0.75) 100%
  );
  z-index: 1;
}

.veteran-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-12) var(--space-4);
}

.veteran-banner__star {
  color: var(--color-gold-light);
  margin-inline: auto;
  margin-bottom: var(--space-4);
  opacity: 0.9;
}

.veteran-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: #FAF7F2;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
}

.veteran-banner__text {
  font-size: var(--text-lg);
  color: oklch(0.85 0.02 60 / 0.8);
  font-style: italic;
  max-width: 500px;
  margin-inline: auto;
  line-height: 1.5;
}

.veteran-banner__stripe {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: var(--space-6);
}

.veteran-banner__stripe span {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
}

.veteran-banner__stripe span:nth-child(1) { background: var(--color-navy-light); opacity: 0.8; }
.veteran-banner__stripe span:nth-child(2) { background: #FAF7F2; opacity: 0.6; }
.veteran-banner__stripe span:nth-child(3) { background: var(--color-accent-light); opacity: 0.8; }

/* ============================================================
   PROVENANCE CARD — Richer with texture & seal
   ============================================================ */
.provenance {
  background: var(--color-bg);
}

.provenance__header {
  text-align: center;
  margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
}

.provenance__label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.provenance__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  font-weight: 400;
}

.provenance__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xl);
  position: relative;
}

/* Subtle texture overlay on card */
.provenance__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
  border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
  .provenance__card { grid-template-columns: 1fr; }
}

.provenance__card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.provenance__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.provenance__card:hover .provenance__card-image img {
  transform: scale(1.04);
}

.provenance__card-body {
  padding: clamp(var(--space-6), 4vw, var(--space-12));
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Wax seal positioning */
.provenance__seal {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  opacity: 0.85;
  filter: drop-shadow(0 2px 6px oklch(0 0 0 / 0.2));
}

@media (max-width: 768px) {
  .provenance__seal {
    width: 56px;
    height: 56px;
    top: var(--space-4);
    right: var(--space-4);
  }
}

.provenance__card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.provenance__card-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-gold);
  border-image: linear-gradient(to right, var(--color-gold), var(--color-gold-light), transparent) 1;
}

@media (max-width: 480px) {
  .provenance__card-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

.provenance__card-meta > div {
  padding-right: var(--space-4);
  border-right: 1px solid oklch(from var(--color-gold) l c h / 0.15);
}

.provenance__card-meta > div:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.provenance__card-meta dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-faint);
  margin-bottom: var(--space-1);
}

.provenance__card-meta dd {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: 500;
}

.provenance__card-text {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: var(--text-sm);
}

/* ============================================================
   CONTACT / INQUIRE
   ============================================================ */
.contact {
  background: var(--color-surface);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
}

.contact__label {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.contact__heading {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-weight: 400;
}

.contact__text {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.contact__detail a {
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gold);
  transition: color var(--transition-interactive);
}

.contact__detail a:hover {
  color: var(--color-text);
}

.contact__detail svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--color-surface-2);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact__form label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: var(--space-1);
}

.contact__form input,
.contact__form textarea,
.contact__form select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.contact__form input:focus,
.contact__form textarea:focus,
.contact__form select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px oklch(from var(--color-gold) l c h / 0.12);
  outline: none;
}

.contact__form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  background: var(--color-accent);
  color: #FAF7F2;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--color-accent);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  align-self: flex-start;
}

.contact__submit:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact__submit:active {
  transform: translateY(0);
}

/* ============================================================
   ENHANCED FOOTER
   ============================================================ */
.footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-16);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 500;
}

.footer__tagline {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* Footer mini navigation */
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding-block: var(--space-6);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.footer__nav a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition-interactive);
}

.footer__nav a:hover {
  color: var(--color-gold);
}

/* Footer bottom row */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-faint);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}

.footer__tn-outline {
  color: var(--color-text-faint);
  flex-shrink: 0;
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer__copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer__flag {
  display: flex;
  gap: 3px;
  align-items: center;
}

.footer__flag span {
  display: block;
  width: 20px;
  height: 3px;
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
/* Default visible state */
.fade-in,
.reveal-up {
  opacity: 1;
}

/* CSS scroll-driven (native, Chromium) */
@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
  .reveal-up {
    clip-path: inset(30% 0 0 0);
    opacity: 0;
    animation: reveal-clip-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 80%;
  }
}

@keyframes reveal-fade {
  to { opacity: 1; }
}

@keyframes reveal-clip-fade {
  to { clip-path: inset(0 0 0 0); opacity: 1; }
}

/* Fallback: JS IntersectionObserver sets .is-visible */
@supports not (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .fade-in.is-visible {
    opacity: 1;
  }
  .reveal-up {
    clip-path: inset(25% 0 0 0);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-up.is-visible {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

/* ============================================================
   FIELD GROUP (form)
   ============================================================ */
.field-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

/* ============================================================
   AMERICAN FLAG BANNER (subtle decorative stripe)
   ============================================================ */
.flag-stripe {
  height: 4px;
  background: linear-gradient(
    to right,
    var(--color-navy) 0%,
    var(--color-navy) 33.33%,
    #FAF7F2 33.33%,
    #FAF7F2 66.66%,
    var(--color-accent) 66.66%,
    var(--color-accent) 100%
  );
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .parallax-bg img {
    transform: none !important;
  }
  .parchment-texture {
    display: none;
  }
  .fade-in,
  .reveal-up {
    opacity: 1 !important;
    clip-path: none !important;
    transition: none !important;
    animation: none !important;
  }
}
