/* ============================================================
   Future Hunter Alliance — Design System
   High-end hunting lodge / Iowa whitetail editorial
   ============================================================ */

:root {
  /* Core palette */
  --espresso: #0c0a08;
  --timber: #121a14;
  --timber-mid: #1a241c;
  --velvet: #1e3328;
  --velvet-soft: #2a4536;
  --bone: #f3ebe0;
  --bone-dim: #e8dcc8;
  --antler: #e8dcc8;
  --ivory: #faf6ef;
  --paper: #f3ebe0;
  --paper-deep: #e6d9c8;
  --whiskey: #b08d57;
  --whiskey-bright: #c9a227;
  --brass: #b08d57;
  --brass-bright: #d4b06a;
  --frost: #8a9a9e;
  --frost-dim: rgba(138, 154, 158, 0.35);
  --charcoal: #1a1714;
  --ink: #2a241c;
  --muted: #6b6358;
  --muted-light: rgba(243, 235, 224, 0.62);
  --white: #ffffff;

  --border: rgba(176, 141, 87, 0.22);
  --border-soft: rgba(26, 23, 20, 0.1);
  --shadow: 0 8px 32px rgba(12, 10, 8, 0.18);
  --shadow-lg: 0 20px 60px rgba(12, 10, 8, 0.28);
  --shadow-inset: inset 0 1px 0 rgba(243, 235, 224, 0.06);

  --radius: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;

  --font-display: "Cormorant Garamond", "Palatino Linotype", Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, -apple-system, "Segoe UI", sans-serif;

  --max: 1120px;
  --max-narrow: 720px;
  --nav-h: 76px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--velvet);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--whiskey); }
a:focus-visible {
  outline: 2px solid var(--whiskey-bright);
  outline-offset: 3px;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}
.container-narrow {
  width: min(100% - 2.5rem, var(--max-narrow));
  margin-inline: auto;
}

/* —— Motifs: timber grain, brass rules, watermarks —— */
.timber-grain {
  position: relative;
}
.timber-grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background:
    repeating-linear-gradient(
      92deg,
      transparent 0,
      transparent 17px,
      rgba(0, 0, 0, 0.55) 17px,
      rgba(0, 0, 0, 0.55) 18px
    ),
    repeating-linear-gradient(
      88deg,
      transparent 0,
      transparent 31px,
      rgba(255, 255, 255, 0.04) 31px,
      rgba(255, 255, 255, 0.04) 32px
    );
  z-index: 0;
}

.hairline {
  display: block;
  width: 3.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--whiskey), transparent);
  margin: 1.25rem 0 1.5rem;
  border: 0;
}
.hairline-center {
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--whiskey), transparent);
  width: 5rem;
}
.hairline-brass {
  height: 1px;
  background: var(--brass);
  opacity: 0.55;
  border: 0;
  margin: 2rem 0;
}

.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--whiskey);
  margin: 1.5rem 0;
  opacity: 0.7;
}
.flourish img,
.flourish svg {
  width: 100px;
  height: auto;
}

.watermark {
  position: absolute;
  pointer-events: none;
  color: var(--whiskey);
  opacity: 0.07;
  z-index: 0;
}
.watermark-deer {
  right: -2%;
  bottom: -8%;
  width: min(48vw, 380px);
}
.watermark-antler {
  left: 4%;
  top: 18%;
  width: 64px;
  opacity: 0.1;
}

/* —— Skip link —— */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--whiskey-bright);
  color: var(--espresso);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* —— Header / Nav —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12, 10, 8, 0.94);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom: 1px solid rgba(176, 141, 87, 0.28);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--bone);
  line-height: 1.15;
}
.logo:hover { color: var(--antler); }
.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--whiskey);
  flex-shrink: 0;
  opacity: 0.9;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-mark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-style: italic;
}
.logo-tag {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--whiskey);
  font-weight: 500;
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(232, 220, 200, 0.3);
  color: var(--bone);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-toggle:hover {
  border-color: var(--whiskey);
  color: var(--antler);
}
.nav-toggle[aria-expanded="true"] {
  background: rgba(176, 141, 87, 0.15);
  border-color: var(--whiskey);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}
.nav-links a {
  color: rgba(243, 235, 224, 0.82);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--bone);
  background: rgba(176, 141, 87, 0.1);
}
.nav-links a[aria-current="page"] {
  color: var(--whiskey-bright);
}
.nav-links .nav-cta {
  background: transparent;
  color: var(--espresso) !important;
  background: var(--whiskey);
  font-weight: 700;
  margin-left: 0.4rem;
  border-color: var(--whiskey);
  letter-spacing: 0.08em;
}
.nav-links .nav-cta:hover {
  background: var(--whiskey-bright);
  border-color: var(--whiskey-bright);
  color: var(--espresso) !important;
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--espresso);
    padding: 0.85rem 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(176, 141, 87, 0.28);
    gap: 0.2rem;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.9rem 1rem; }
  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 0.6rem;
    text-align: center;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.65rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.1s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--whiskey);
  color: var(--espresso);
  border-color: var(--whiskey);
  box-shadow: 0 2px 12px rgba(176, 141, 87, 0.25);
}
.btn-primary:hover {
  background: var(--whiskey-bright);
  border-color: var(--whiskey-bright);
  color: var(--espresso);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--bone);
  border-color: rgba(176, 141, 87, 0.55);
}
.btn-secondary:hover {
  background: rgba(176, 141, 87, 0.12);
  border-color: var(--whiskey-bright);
  color: var(--antler);
}
.btn-outline {
  background: transparent;
  color: var(--velvet);
  border-color: rgba(176, 141, 87, 0.55);
}
.btn-outline:hover {
  background: var(--velvet);
  color: var(--bone);
  border-color: var(--velvet);
}
.btn-brass-outline {
  background: transparent;
  color: var(--whiskey);
  border-color: var(--whiskey);
}
.btn-brass-outline:hover {
  background: rgba(176, 141, 87, 0.12);
  color: var(--whiskey-bright);
  border-color: var(--whiskey-bright);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* —— Heroes —— */
.hero {
  position: relative;
  color: var(--bone);
  padding: clamp(4.5rem, 12vw, 8rem) 0 clamp(5rem, 12vw, 8.5rem);
  overflow: hidden;
  background-color: var(--espresso);
  min-height: clamp(28rem, 72vh, 40rem);
  display: flex;
  align-items: center;
}
.hero .container { position: relative; z-index: 2; }

/* Photo hero with dark cinematic scrim */
.hero-photo {
  background-color: var(--espresso);
  background-image: url("assets/hero-whitetail-dawn.png");
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(12, 10, 8, 0.88) 0%,
      rgba(12, 10, 8, 0.72) 38%,
      rgba(18, 26, 20, 0.45) 68%,
      rgba(12, 10, 8, 0.55) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 10, 8, 0.55) 0%,
      transparent 35%,
      rgba(12, 10, 8, 0.75) 100%
    );
}

/* CSS-only timber hero (inner pages without photo) */
.hero-timber {
  background:
    radial-gradient(ellipse 70% 50% at 75% 15%, rgba(176, 141, 87, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 85%, rgba(30, 51, 40, 0.5), transparent 50%),
    linear-gradient(165deg, var(--espresso) 0%, var(--timber) 40%, var(--velvet) 100%);
}
.hero-timber::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(
    95deg,
    transparent 0,
    transparent 18px,
    rgba(0, 0, 0, 0.6) 18px,
    rgba(0, 0, 0, 0.6) 19px
  );
  pointer-events: none;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--whiskey-bright);
  margin-bottom: 1.15rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 4.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 14ch;
  color: var(--bone);
  margin-bottom: 1.35rem;
  text-shadow: 0 2px 24px rgba(12, 10, 8, 0.45);
}
.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  line-height: 1.6;
  max-width: 36ch;
  color: rgba(243, 235, 224, 0.88);
  margin-bottom: 0.35rem;
  font-weight: 300;
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(243, 235, 224, 0.58);
  max-width: 40ch;
  margin-top: 1rem;
  letter-spacing: 0.02em;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--espresso);
  color: var(--bone);
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}
.page-hero.page-hero-photo {
  background-color: var(--espresso);
  background-image: url("assets/hero-whitetail-dawn.png");
  background-size: cover;
  background-position: center 45%;
  min-height: 18rem;
}
.page-hero.page-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(12, 10, 8, 0.9) 0%,
      rgba(12, 10, 8, 0.75) 45%,
      rgba(18, 26, 20, 0.55) 100%
    ),
    linear-gradient(180deg, rgba(12, 10, 8, 0.4), rgba(12, 10, 8, 0.7));
}
.page-hero.hero-timber {
  background:
    radial-gradient(ellipse 50% 80% at 90% 20%, rgba(176, 141, 87, 0.2), transparent 55%),
    linear-gradient(160deg, var(--espresso), var(--timber) 60%, var(--velvet));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  max-width: 18ch;
  color: var(--bone);
}
.page-hero p {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(243, 235, 224, 0.78);
  max-width: 46ch;
  line-height: 1.65;
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}
.section-alt {
  background: var(--paper-deep);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section-dark {
  background: var(--timber);
  color: var(--bone);
  box-shadow: var(--shadow-inset);
}
.section-dark.timber-grain > * { position: relative; z-index: 1; }
.section-dark h2,
.section-dark h3 { color: var(--bone); }
.section-dark p { color: rgba(243, 235, 224, 0.8); }
.section-velvet {
  background: var(--velvet);
  color: var(--bone);
}
.section-velvet h2,
.section-velvet h3 { color: var(--bone); }

.section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--whiskey);
  margin-bottom: 0.75rem;
}
.section-dark .section-label,
.section-velvet .section-label {
  color: var(--whiskey-bright);
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.65rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.18;
  color: var(--espresso);
  margin-bottom: 1.1rem;
}
.section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--velvet);
  margin-bottom: 0.5rem;
}
.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.section p + p { margin-top: 1.1rem; }

/* —— Cards — leather / barnwood panels —— */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.35rem;
  margin-top: 2.25rem;
}
.card {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.55) 0%, transparent 40%),
    var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.card::before {
  /* thin brass top edge */
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--whiskey), transparent);
  opacity: 0.7;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(176, 141, 87, 0.45);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--velvet);
  border: 1px solid rgba(176, 141, 87, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  color: var(--whiskey-bright);
  font-size: 1.1rem;
}
.card-icon img,
.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--whiskey-bright);
}
.card h3 { margin-bottom: 0.55rem; color: var(--espresso); }
.card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.35rem;
  line-height: 1.6;
}
.card .btn { width: 100%; }

.card-panel {
  /* barnwood / leather dark panel */
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%),
    var(--timber-mid);
  border: 1px solid rgba(176, 141, 87, 0.25);
  color: var(--bone);
  box-shadow: var(--shadow);
}
.card-panel::before {
  background: linear-gradient(90deg, transparent, var(--whiskey-bright), transparent);
}
.card-panel h3 { color: var(--antler); }
.card-panel p { color: rgba(243, 235, 224, 0.7); }
.card-panel:hover {
  border-color: rgba(176, 141, 87, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 30%),
    var(--velvet);
}

.card-dark {
  background: rgba(243, 235, 224, 0.04);
  border-color: rgba(176, 141, 87, 0.2);
  box-shadow: none;
}
.card-dark:hover {
  background: rgba(243, 235, 224, 0.08);
  box-shadow: none;
}
.card-dark h3 { color: var(--antler); }
.card-dark p { color: rgba(243, 235, 224, 0.7); }

/* —— Mission strip —— */
.mission-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .mission-strip { grid-template-columns: 1.15fr 1fr; gap: 3.5rem; }
}
.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  color: var(--espresso);
  border-left: 2px solid var(--whiskey);
  padding-left: 1.35rem;
  margin: 1.75rem 0;
}

/* —— Timeline —— */
.timeline {
  list-style: none;
  margin-top: 2.25rem;
  position: relative;
  padding-left: 1.6rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 1px;
  background: linear-gradient(180deg, var(--whiskey), var(--velvet));
}
.timeline li {
  position: relative;
  padding: 0 0 2.25rem 1.6rem;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 0.5rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--whiskey);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 1px var(--whiskey);
  transform: translateX(-4px);
}
.section-alt .timeline li::before {
  border-color: var(--paper-deep);
}
.timeline-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--whiskey);
  margin-bottom: 0.3rem;
}
.timeline h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}
.timeline p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Gear list —— */
.gear-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 1.75rem 0 2rem;
}
.gear-list li {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--velvet);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: border-color 0.2s, background 0.2s;
}
.gear-list li:hover {
  border-color: var(--whiskey);
  background: var(--white);
}
.gear-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--whiskey);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* —— Callout / notice —— */
.callout {
  background: linear-gradient(135deg, rgba(176, 141, 87, 0.1), rgba(30, 51, 40, 0.05));
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-left: 2px solid var(--whiskey);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
  margin: 1.75rem 0;
}
.callout strong { color: var(--espresso); font-weight: 600; }
.callout p { margin: 0; color: var(--ink); font-size: 0.98rem; }

.notice-muted {
  background: rgba(26, 23, 20, 0.05);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.5rem;
  border: 1px solid var(--border-soft);
}
.notice-muted code {
  font-size: 0.85em;
  background: rgba(12, 10, 8, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 2px;
}

/* —— YouTube CTA —— */
.yt-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  background: var(--timber);
  color: var(--bone);
  border-radius: var(--radius-md);
  border: 1px solid rgba(176, 141, 87, 0.28);
  padding: 2rem 2.15rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.yt-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: repeating-linear-gradient(
    92deg,
    transparent 0,
    transparent 16px,
    rgba(0, 0, 0, 0.5) 16px,
    rgba(0, 0, 0, 0.5) 17px
  );
  pointer-events: none;
}
.yt-cta > * { position: relative; z-index: 1; }
.yt-cta-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.15);
  border: 1px solid rgba(176, 141, 87, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
  color: var(--whiskey-bright);
}
.yt-cta h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--antler);
  margin-bottom: 0.3rem;
  font-size: 1.45rem;
}
.yt-cta p {
  color: rgba(243, 235, 224, 0.7);
  margin: 0;
  font-size: 0.95rem;
}
.yt-cta .btn { margin-left: auto; }
@media (max-width: 640px) {
  .yt-cta .btn { margin-left: 0; width: 100%; }
}

/* —— Form stub —— */
.form-stub {
  background: var(--ivory);
  border: 1px dashed rgba(176, 141, 87, 0.45);
  border-radius: var(--radius-md);
  padding: 2.75rem 2rem;
  text-align: center;
  margin-top: 2rem;
  box-shadow: var(--shadow);
}
.form-stub h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0.55rem;
  color: var(--espresso);
}
.form-stub p {
  color: var(--muted);
  max-width: 38ch;
  margin: 0 auto 1.5rem;
}

/* —— Contact cards —— */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--whiskey), transparent);
  opacity: 0.6;
}
.contact-card:hover {
  border-color: rgba(176, 141, 87, 0.5);
  box-shadow: var(--shadow);
}
.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--espresso);
}
.contact-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.15rem;
}

/* —— Principles —— */
.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
  list-style: none;
}
.principles li {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  position: relative;
}
.principles li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(176, 141, 87, 0.4), transparent);
}
.principles strong {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--velvet);
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}
.principles span { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }

/* —— Footer —— */
.site-footer {
  background: var(--espresso);
  color: rgba(243, 235, 224, 0.68);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(176, 141, 87, 0.4);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--whiskey-bright) 50%, transparent 95%);
  opacity: 0.55;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.75rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand .logo-mark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: var(--bone);
  margin-bottom: 0.65rem;
  letter-spacing: 0.03em;
}
.footer-brand p {
  font-size: 0.95rem;
  max-width: 34ch;
  line-height: 1.65;
  color: rgba(243, 235, 224, 0.6);
}
.footer-col h4 {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--whiskey);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a {
  color: rgba(243, 235, 224, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--whiskey-bright); }
.footer-col span { color: rgba(243, 235, 224, 0.5); font-size: 0.95rem; }

.footer-bottom {
  border-top: 1px solid rgba(243, 235, 224, 0.08);
  padding-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--whiskey);
}
.footer-meta {
  color: rgba(243, 235, 224, 0.42);
  letter-spacing: 0.02em;
}

/* —— Utility —— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.prose-narrow { max-width: 720px; }

/* Frost accent sparingly */
.accent-frost { color: var(--frost); }
