:root {
  --void: #0a0608;
  --ink: #14080e;
  --panel: #1c1016;
  --panel-2: #26151d;
  --line: rgba(232, 196, 106, 0.2);
  --gold: #e8c46a;
  --gold-soft: #f0d58a;
  --gold-deep: #b8923a;
  --felt: #1f6b3a;
  --felt-bright: #2a8a4c;
  --crimson: #9b1b2e;
  --mist: #e8dfd2;
  --white: #fffaf3;
  --muted: #9a8f86;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Figtree", system-ui, sans-serif;
  color: var(--white);
  background: var(--void);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Atmosphere — felt dust + warm wheel glow */
.felt-bg {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(232, 196, 106, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 30%, rgba(155, 27, 46, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(31, 107, 58, 0.14), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(20, 8, 14, 0.9), transparent 70%),
    var(--void);
}

.felt-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(232, 196, 106, 0.28) 0.55px, transparent 0.7px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 20%, black, transparent);
}

.font-display {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.gold-text {
  color: var(--gold);
}

.muted {
  color: var(--muted);
}

.focus-ring:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: var(--safe-top);
  background: rgba(10, 6, 8, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(10, 6, 8, 0.94);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-inner {
    padding: 0.9rem 1.5rem;
  }
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 44px;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(232, 196, 106, 0.4), 0 0 20px rgba(184, 146, 58, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy span:first-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy span:last-child {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mist);
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--white);
  background: rgba(232, 196, 106, 0.1);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(28, 16, 22, 0.85);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  visibility: hidden;
  pointer-events: none;
}

.nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(20rem, 86vw);
  height: 100%;
  padding: calc(1.25rem + var(--safe-top)) 1.25rem calc(1.5rem + var(--safe-bottom));
  background: linear-gradient(180deg, #1c1016, #0a0608);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 0.75rem;
}

.nav-drawer-panel a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-weight: 600;
  color: var(--mist);
}

.nav-drawer-panel a[aria-current="page"],
.nav-drawer-panel a:hover {
  background: rgba(232, 196, 106, 0.1);
  color: var(--white);
}

/* Buttons */
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  border-radius: 14px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-store:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 196, 106, 0.5);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.btn-store i {
  font-size: 1.55rem;
  line-height: 1;
}

.btn-store .meta {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.btn-store .meta small {
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

.btn-store .meta strong {
  font-size: 1.05rem;
  font-weight: 700;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.65rem 1.2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--mist);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(232, 196, 106, 0.08);
  color: var(--white);
  border-color: rgba(232, 196, 106, 0.4);
}

.btn-felt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--felt-bright), var(--felt));
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 0 2px rgba(232, 196, 106, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-felt:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 0 0 2px rgba(232, 196, 106, 0.65), 0 12px 28px rgba(31, 107, 58, 0.35);
}

/* Layout shells */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 0.85rem;
  max-width: 18ch;
}

.section-lead {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
}

/* Hero — atmospheric felt plane (no photo) */
.hero {
  position: relative;
  min-height: min(88vh, 46rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 72% 28%, rgba(232, 196, 106, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 50% at 12% 70%, rgba(31, 107, 58, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 85%, rgba(155, 27, 46, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(10, 6, 8, 0.2) 0%, transparent 40%, var(--void) 100%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(232, 196, 106, 0.22) 0.55px, transparent 0.7px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  width: min(42rem, 90vw);
  height: min(42rem, 90vw);
  top: 8%;
  right: -12%;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(232, 196, 106, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(232, 196, 106, 0.05),
    0 0 80px rgba(232, 196, 106, 0.06);
  animation: hero-ring 22s ease-in-out infinite alternate;
}

@keyframes hero-ring {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.55;
  }
  to {
    transform: translateY(-3%) scale(1.04);
    opacity: 0.9;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6.5rem 0 2.75rem;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 8rem 0 3.5rem;
  }
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
  animation: rise-in 0.8s ease-out both;
}

.hero-brand img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(232, 196, 106, 0.45), 0 12px 40px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .hero-brand img {
    width: 88px;
    height: 88px;
  }
}

.hero-brand-text .name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff4cc 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-brand-text .tag {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.hero h1 {
  font-family: "Figtree", system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  line-height: 1.35;
  max-width: 28ch;
  margin: 0 0 0.85rem;
  color: var(--mist);
  animation: rise-in 0.85s ease-out 0.08s both;
}

.hero > .shell > p,
.hero-content > p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.6;
  animation: rise-in 0.9s ease-out 0.14s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
  animation: rise-in 0.95s ease-out 0.2s both;
}

.age-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.5;
  animation: rise-in 1s ease-out 0.26s both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Variant strip */
.variant-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.variant-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(28, 16, 22, 0.7);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mist);
}

.variant-chip i {
  color: var(--gold);
}

/* Features */
.feature-rail {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .feature-rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .feature-rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-item {
  padding: 0.25rem 0;
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.feature-item .icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(232, 196, 106, 0.1);
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.feature-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Showcase */
.showcase-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.value-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.value-list i {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(31, 107, 58, 0.22);
  color: var(--gold);
  border: 1px solid rgba(232, 196, 106, 0.25);
}

.value-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.value-list span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.shot-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  align-items: end;
}

.shot-stack .phone-frame:first-child {
  transform: translateY(1.25rem);
}

@media (min-width: 768px) {
  .shot-stack {
    gap: 1.15rem;
  }
}

.phone-frame {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(232, 196, 106, 0.28);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
  background: #000;
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 1.35rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(31, 107, 58, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 0%, rgba(232, 196, 106, 0.12), transparent 50%),
    linear-gradient(135deg, rgba(28, 16, 22, 0.95), rgba(10, 6, 8, 0.95));
}

@media (min-width: 768px) {
  .cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2.25rem 2.5rem;
  }
}

.cta-band h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 0.45rem;
  font-weight: 600;
  max-width: 18ch;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.55;
}

/* Inner pages */
.page-hero {
  padding: 3.25rem 0 1.5rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 4.5rem 0 2rem;
  }
}

.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  line-height: 1.05;
  max-width: 16ch;
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.65;
  font-size: 1.05rem;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.prose-panel p {
  color: var(--mist);
  line-height: 1.75;
  margin: 0 0 1.15rem;
  font-size: 1.05rem;
}

.prose-panel p:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}

.email-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.email-block .label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.email-block .mailto {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(232, 196, 106, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.email-block .mailto:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.email-block .mailto i {
  color: var(--gold);
}

.email-block .meta-line {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 28rem;
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-btn {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  text-align: left;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--white);
}

.faq-btn i {
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-btn i {
  transform: rotate(45deg);
}

.faq-panel {
  display: none;
  padding: 0 0 1.1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 40rem;
}

.faq-item.open .faq-panel {
  display: block;
}

/* Legal */
.legal-meta {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.legal-meta a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-lead {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.65;
}

.legal-body {
  padding-bottom: 4rem;
  max-width: 48rem;
}

.legal-body h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 600;
  margin: 2.25rem 0 0.75rem;
}

.legal-body p,
.legal-body li {
  color: var(--mist);
  line-height: 1.7;
  font-size: 1rem;
}

.legal-body ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 1rem;
}

.legal-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 2.75rem 0 calc(1.75rem + var(--safe-bottom));
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 8, 14, 0.5), rgba(10, 6, 8, 0.95));
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 2.5rem;
  }
}

.footer-brand {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.footer-brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
  max-width: 28rem;
}

.footer-col h3 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col a {
  display: block;
  min-height: 40px;
  padding: 0.35rem 0;
  color: var(--mist);
  font-size: 0.95rem;
}

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

.footer-col a.btn-store {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  margin-top: 0.5rem;
  padding: 0.55rem 1rem 0.55rem 0.85rem;
  color: var(--white);
  font-size: inherit;
}

.footer-col a.btn-store:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 196, 106, 0.12);
  display: grid;
  gap: 0.65rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.footer-bottom .disclaimer {
  max-width: 48rem;
  opacity: 0.9;
}
