/* ============================================================
   VINTAGE MODERN MATERIALS — PML Funder Site
   Brand tokens sampled from deck visuals (navy / cream / gold)
   Mobile-first, WCAG AA, 12px minimum text
   ============================================================ */

/* ===== BRAND TOKENS ===== */
:root {
  /* Primary palette */
  --navy:            #0F1C2D;
  --navy-elev:       #1E3A5F;
  --cream:           #F5F0E8;
  --paper:           #FAF6EE;
  --gold:            #C9A84C;
  --gold-warm:       #B8962E;

  /* Text */
  --text-on-dark:    #FFFFFF;
  --text-on-light:   #0F1C2D;
  --text-muted-dark: rgba(255,255,255,0.72);
  --text-muted-light: rgba(15,28,45,0.65);

  /* Borders */
  --rule-gold:       rgba(201,168,76,0.85);
  --rule-subtle:     rgba(255,255,255,0.12);

  /* Typography */
  --font-display:    'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:       'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Spacing (8pt grid) */
  --sp-4:  4px;
  --sp-8:  8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-80: 80px;
  --sp-96: 96px;

  /* Radius */
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;

  /* Transition */
  --t-fast:   150ms ease-out;
  --t-normal: 250ms ease-out;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-on-light);
  background-color: var(--navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -9999px;
  left: var(--sp-16);
  background: var(--gold);
  color: var(--navy);
  padding: var(--sp-8) var(--sp-16);
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 9999;
}
.skip-link:focus {
  top: var(--sp-16);
}

/* ===== CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-24);
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--sp-24);
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--sp-64) 0;
}

.section--dark {
  background-color: var(--navy);
}

.section--cream {
  background-color: var(--cream);
}

@media (min-width: 768px) {
  .section {
    padding: var(--sp-96) 0;
  }
}

/* ===== LABELS (gold spaced caps) ===== */
.label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-16);
}

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

.label--navy {
  color: var(--text-muted-light);
}

.label--sm {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

/* ===== RULES ===== */
.rule {
  width: 100%;
  height: 1px;
  background: var(--rule-gold);
  margin: var(--sp-24) 0;
}

.rule--thin {
  margin: var(--sp-16) 0;
  opacity: 0.7;
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-32);
}

.section-heading--white {
  color: var(--text-on-dark);
}

.section-heading--navy {
  color: var(--text-on-light);
}

.section-subhead {
  font-size: 1rem;
  color: var(--text-muted-light);
  margin-top: -var(--sp-24);
  margin-bottom: var(--sp-40);
}

.section-body-dark {
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--sp-40);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px var(--sp-32);
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background-color var(--t-fast), transform var(--t-fast);
  text-align: center;
  min-height: 48px;
  line-height: 1.4;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background-color: var(--gold-warm);
}

.btn--primary:focus-visible {
  outline: 3px solid var(--text-on-dark);
  outline-offset: 3px;
}

.btn--full {
  display: block;
  width: 100%;
}

/* ===== SCROLL REVEAL ===== */
.section {
  opacity: 1;
  transform: translateY(0);
}

.section.reveal-ready {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.section--hero {
  padding-top: var(--sp-80);
  padding-bottom: var(--sp-80);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--text-on-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-24);
}

.hero-opportunity {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-8);
}

.operator-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-24);
  margin-top: var(--sp-8);
}

.hero-bullets {
  margin-bottom: var(--sp-40);
}

.hero-bullets li {
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.8;
  padding-left: var(--sp-16);
  position: relative;
}

.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
  align-items: flex-start;
}

.hero-scroll-link {
  color: var(--text-muted-dark);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--t-fast);
}

.hero-scroll-link:hover {
  color: var(--gold);
}

/* ===== AT A GLANCE ===== */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-32);
  margin-top: var(--sp-24);
}

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

.stat-card {
  text-align: center;
  padding: var(--sp-32) var(--sp-24);
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: 0 4px 24px rgba(15,28,45,0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--sp-8);
}

.stat-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-warm);
  text-transform: uppercase;
  margin-bottom: var(--sp-8);
}

.stat-body {
  color: var(--text-muted-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-24);
  margin-top: var(--sp-8);
}

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

.step-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: var(--sp-32) var(--sp-24);
  color: var(--text-on-light);
}

.step-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--sp-16);
  line-height: 1;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-12);
}

.step-body {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}

/* ===== USE OF FUNDS + SECURITY ===== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-48);
}

@media (min-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.detail-card {
  border-left: 2px solid var(--gold);
  padding: var(--sp-16) var(--sp-20);
  background: var(--paper);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: var(--sp-16);
  box-shadow: 0 4px 24px rgba(15,28,45,0.06);
}

.detail-card__title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-8);
}

.detail-card__body {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

/* ===== RETURN STRUCTURE ===== */
.years-display {
  text-align: center;
  margin: var(--sp-40) 0;
}

.years-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.years-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
  margin-top: var(--sp-12);
}

.highlight-box {
  background: var(--navy-elev);
  border-radius: var(--r-md);
  padding: var(--sp-24) var(--sp-32);
  text-align: center;
  color: var(--text-on-dark);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: var(--sp-32);
}

.example-block {
  text-align: center;
  padding: var(--sp-32);
}

.example-numbers {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--gold);
  margin: var(--sp-8) 0;
}

.example-sub {
  color: var(--text-muted-dark);
  font-size: 0.9375rem;
}

/* ===== PROJECTIONS ===== */
.projections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-24);
  margin-top: var(--sp-32);
}

@media (min-width: 640px) {
  .projections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.proj-card {
  background: var(--paper);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--r-md) var(--r-md);
  padding: var(--sp-24);
  box-shadow: 0 4px 24px rgba(15,28,45,0.08);
}

.proj-investment-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: var(--sp-12);
}

.proj-returned {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}

.proj-returned-label {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-bottom: var(--sp-12);
}

.proj-profit-row {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-12);
}

.proj-cycles-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: var(--sp-8);
}

.proj-cycle-list {
  margin-bottom: var(--sp-12);
}

.proj-cycle-list li {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  line-height: 1.9;
}

.proj-total {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  padding-top: var(--sp-8);
}

/* ===== COMPARISON ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-16);
  margin-top: var(--sp-24);
  margin-bottom: var(--sp-24);
}

@media (min-width: 640px) {
  .comparison-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.comparison-item {
  text-align: center;
  padding: var(--sp-24) var(--sp-16);
  border: 1px solid var(--rule-subtle);
  border-radius: var(--r-md);
}

.comparison-item--vmm {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.comparison-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-8);
}

.comparison-value--gold {
  color: var(--gold);
}

.comparison-name {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

.comparison-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 600px;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-24);
  margin-top: var(--sp-32);
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.process-card {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: var(--sp-32) var(--sp-24);
  box-shadow: 0 4px 24px rgba(15,28,45,0.08);
}

.process-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-16);
}

.process-step-label {
  margin-bottom: var(--sp-8);
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--sp-12);
}

.process-body {
  font-size: 0.9375rem;
  color: var(--text-muted-light);
  line-height: 1.65;
  margin-bottom: var(--sp-16);
}

.process-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.pill {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--navy);
  color: var(--text-on-dark);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ===== VIDEO PLACEHOLDER ===== */
.video-placeholder {
  border: 2px dashed var(--gold);
  border-radius: var(--r-lg);
  background: var(--navy-elev);
  padding: var(--sp-64) var(--sp-32);
  text-align: center;
  margin-top: var(--sp-32);
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-16);
}

.play-icon {
  opacity: 0.8;
}

.video-placeholder__text {
  color: var(--text-muted-dark);
  font-size: 1.0625rem;
  font-weight: 500;
}

.video-placeholder__sub {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}

/* ===== SLIDER ===== */
.section--slider {
  overflow: hidden;
  padding-bottom: var(--sp-48);
}

.section--slider .container {
  margin-bottom: var(--sp-32);
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slide-left 75s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes slide-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.slider-img {
  height: 280px;
  width: auto;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .slider-img {
    height: 380px;
  }
}

@media (min-width: 1024px) {
  .slider-img {
    height: 480px;
  }
}

/* Reduced motion: disable animation, show static scroll */
@media (prefers-reduced-motion: reduce) {
  .slider-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    padding: 0 var(--sp-24);
  }
  .slider-img {
    scroll-snap-align: start;
  }
}

/* ===== FORM ===== */
.lead-form {
  margin-top: var(--sp-40);
  display: flex;
  flex-direction: column;
  gap: var(--sp-24);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-on-dark);
  display: block;
}

.required-star {
  color: var(--gold);
  margin-left: 2px;
}

.optional-note {
  font-weight: 400;
  color: var(--text-muted-dark);
  font-size: 0.8125rem;
}

.form-input {
  width: 100%;
  background: var(--navy-elev);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  padding: 14px var(--sp-16);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-on-dark);
  min-height: 48px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}

.form-input:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.3);
}

.form-input--error {
  border-color: #E87070;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23C9A84C' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-select option {
  background: var(--navy);
  color: var(--text-on-dark);
}

.form-textarea {
  min-height: 108px;
  resize: vertical;
}

.form-error {
  font-size: 0.8125rem;
  color: #E87070;
  min-height: 1.2em;
  line-height: 1.4;
}

/* Investment options */
.investment-fieldset {
  border: none;
  padding: 0;
}

.investment-fieldset legend {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-12);
  display: block;
  width: 100%;
}

.investment-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
}

.investment-option {
  display: flex;
  cursor: pointer;
}

.investment-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.investment-label {
  display: block;
  padding: 10px var(--sp-20);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  background: var(--navy-elev);
  transition: background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.investment-option input[type="radio"]:checked + .investment-label {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

.investment-option input[type="radio"]:focus-visible + .investment-label {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.investment-option:hover .investment-label {
  border-color: var(--gold);
  color: var(--text-on-dark);
}

/* Form disclaimer */
.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
  text-align: center;
  margin-top: var(--sp-8);
}

/* Submit button loading state */
.btn--loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* Success state */
.success-card {
  background: var(--navy-elev);
  border: 1px solid var(--gold);
  border-radius: var(--r-lg);
  padding: var(--sp-48) var(--sp-32);
  text-align: center;
  margin-top: var(--sp-40);
}

.success-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-24);
}

.success-card__heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: var(--sp-16);
}

.success-card__body {
  color: var(--text-muted-dark);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: var(--sp-16);
}

.success-card__footer {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}

/* Error toast */
.error-toast {
  background: #2D1010;
  border: 1px solid #E87070;
  border-radius: var(--r-sm);
  padding: var(--sp-16) var(--sp-20);
  color: #FFB3B3;
  font-size: 0.9375rem;
  margin-bottom: var(--sp-16);
  display: none;
}

.error-toast.is-shown {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--rule-subtle);
  padding: var(--sp-48) 0 var(--sp-32);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-32);
  margin-bottom: var(--sp-32);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
}

.footer-sub {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  margin-top: var(--sp-8);
}

.footer-col--center {
  text-align: center;
}

.footer-col--right {
  text-align: left;
}

@media (min-width: 768px) {
  .footer-col--right {
    text-align: right;
  }
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

.footer-contact {
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  margin-bottom: var(--sp-4);
}

.footer-phone {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--t-fast);
}

.footer-phone:hover {
  color: var(--gold-warm);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  padding-top: var(--sp-24);
  border-top: 1px solid var(--rule-subtle);
  text-align: center;
}
