/* ============================================
   THE GARDEN ROUTE BARBER SHOP — Style
   Dark-first barbershop aesthetic:
   charcoal backgrounds, warm gold accents, cream text
   ============================================ */

/* ---- 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 ---- */
  --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;

  /* ---- 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);

  /* ---- Content widths ---- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;

  /* ---- Fonts ---- */
  --font-display: 'Boska', Georgia, serif;
  --font-body: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
}

/* ========== DARK MODE (Default) ========== */
:root,
[data-theme='dark'] {
  --color-bg: #111111;
  --color-surface: #181818;
  --color-surface-2: #1e1e1e;
  --color-surface-offset: #151515;
  --color-divider: #2a2a2a;
  --color-border: #333333;

  --color-text: #f0ead6;
  --color-text-muted: #a09882;
  --color-text-faint: #5e584c;

  --color-gold: #c8a45e;
  --color-gold-hover: #d4b56e;
  --color-gold-active: #b8943e;
  --color-gold-highlight: rgba(200, 164, 94, 0.12);

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
}

/* ========== LIGHT MODE ========== */
[data-theme='light'] {
  --color-bg: #f5f1eb;
  --color-surface: #ffffff;
  --color-surface-2: #faf8f5;
  --color-surface-offset: #ebe7e0;
  --color-divider: #ddd8d0;
  --color-border: #c8c2b8;

  --color-text: #1a1714;
  --color-text-muted: #6b6358;
  --color-text-faint: #a09888;

  --color-gold: #9e7c30;
  --color-gold-hover: #8a6a24;
  --color-gold-active: #7a5c1a;
  --color-gold-highlight: rgba(158, 124, 48, 0.1);

  --shadow-sm: 0 1px 2px rgba(26,23,20,0.06);
  --shadow-md: 0 4px 12px rgba(26,23,20,0.08);
  --shadow-lg: 0 12px 32px rgba(26,23,20,0.12);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --color-bg: #f5f1eb;
    --color-surface: #ffffff;
    --color-surface-2: #faf8f5;
    --color-surface-offset: #ebe7e0;
    --color-divider: #ddd8d0;
    --color-border: #c8c2b8;
    --color-text: #1a1714;
    --color-text-muted: #6b6358;
    --color-text-faint: #a09888;
    --color-gold: #9e7c30;
    --color-gold-hover: #8a6a24;
    --color-gold-active: #7a5c1a;
    --color-gold-highlight: rgba(158, 124, 48, 0.1);
    --shadow-sm: 0 1px 2px rgba(26,23,20,0.06);
    --shadow-md: 0 4px 12px rgba(26,23,20,0.08);
    --shadow-lg: 0 12px 32px rgba(26,23,20,0.12);
  }
}

/* ========== GLOBAL ========== */
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

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

/* ========== SECTION LABELS ========== */
.section-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.section-intro {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: var(--space-12);
  max-width: 36ch;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition:
    background var(--transition-interactive),
    color var(--transition-interactive),
    box-shadow var(--transition-interactive),
    transform var(--transition-interactive);
}

.btn:active {
  transform: translateY(0) !important;
}

.btn-gold {
  background: var(--color-gold);
  color: #111111;
}
.btn-gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

[data-theme='light'] .btn-gold {
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-border);
  color: var(--color-text);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-1px);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: background 0.3s ease, border-color 0.3s ease;
}

[data-theme='light'] .site-header {
  background: rgba(245,241,235,0.88);
}

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

.logo-link {
  text-decoration: none;
  color: var(--color-text);
  display: flex;
  align-items: center;
}

.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.main-nav ul {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.main-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-interactive);
}

.main-nav a:hover {
  color: var(--color-text);
}
.main-nav a:hover::after {
  width: 100%;
}

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

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}
.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-gold-highlight);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: var(--space-2);
}
.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu-btn[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding: var(--space-6);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.mobile-nav a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}

@media (max-width: 768px) {
  .main-nav,
  .header-actions .btn {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
}

/* ========== WALK-IN BADGE (Header) ========== */
.walkin-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: var(--color-gold-highlight);
  border: 1px solid rgba(200,164,94,0.25);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-32) var(--space-6) var(--space-16);
  overflow: hidden;
  background: var(--color-bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 17, 17, 0.75) 0%,
    rgba(17, 17, 17, 0.85) 50%,
    rgba(17, 17, 17, 0.95) 100%
  );
}

[data-theme='light'] .hero-bg::after {
  background: linear-gradient(
    to bottom,
    rgba(245, 241, 235, 0.75) 0%,
    rgba(245, 241, 235, 0.85) 50%,
    rgba(245, 241, 235, 0.95) 100%
  );
}

/* Barber pole stripes */
.hero-stripes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.stripe {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--color-gold-highlight),
    transparent
  );
}
.stripe-1 { left: 15%; opacity: 0.4; }
.stripe-2 { left: 50%; opacity: 0.2; }
.stripe-3 { left: 85%; opacity: 0.4; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--color-gold-highlight);
  border: 1px solid rgba(200,164,94,0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-8);
}

.hero-badge svg {
  display: inline;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  margin-bottom: var(--space-6);
}

.hero-title-the {
  display: block;
  font-size: var(--text-lg);
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.hero-title-main {
  display: block;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  color: var(--color-text);
}

.hero-title-sub {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

.hero-tagline {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
}

.hero-walkin-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-8);
  background: var(--color-gold);
  color: #111111;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

[data-theme='light'] .hero-walkin-badge {
  color: #ffffff;
}

.hero-noappt {
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-faint);
  animation: float 2s ease-in-out infinite;
}

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

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.about-photos {
  display: grid;
  grid-template-rows: 3fr 2fr;
  gap: var(--space-4);
  position: sticky;
  top: calc(var(--space-16) + 60px);
}

.about-photo-main,
.about-photo-secondary {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
}

.about-photo-main img,
.about-photo-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-main {
  aspect-ratio: 4 / 3;
}

.about-photo-secondary {
  aspect-ratio: 16 / 9;
}

.about-lead {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  max-width: 60ch;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text strong {
  color: var(--color-gold);
  font-weight: 500;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .about-photos {
    position: static;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
  .about-photo-main {
    grid-column: 1 / -1;
  }
}

/* ========== SERVICES ========== */
.services {
  background: var(--color-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.service-card {
  padding: var(--space-8) var(--space-6);
  background: var(--color-surface-2);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.service-card:hover {
  border-color: var(--color-gold-highlight);
  box-shadow: var(--shadow-sm);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
  color: var(--color-gold);
}

.service-icon svg {
  width: 48px;
  height: 48px;
}

.service-card h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--color-text);
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.services-cta {
  text-align: center;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-4);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-divider);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.gallery-item:not(.gallery-item-large) {
  aspect-ratio: 4 / 3;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item-large {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }
  .gallery-item:not(.gallery-item-large) {
    aspect-ratio: 1;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  .gallery-item-large {
    aspect-ratio: 4 / 3;
  }
  .gallery-item:not(.gallery-item-large) {
    aspect-ratio: 16 / 9;
  }
}

/* ========== VIDEOS ========== */
.videos {
  background: var(--color-bg);
}

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

.video-embed h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.video-embed-tiktok {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-embed-tiktok blockquote {
  width: 100%;
}

.video-embed-instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instagram-embeds {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  width: 100%;
  align-items: center;
}

.instagram-embeds blockquote {
  margin: 0 !important;
}

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

/* ========== SOCIAL PROOF ========== */
.reviews {
  text-align: center;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin-inline: auto;
}

.proof-card {
  padding: var(--space-8);
  background: var(--color-surface);
  border: 1px solid var(--color-divider);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  position: relative;
}

.proof-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.proof-value-sm {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.proof-stars {
  display: flex;
  gap: 2px;
  margin-block: var(--space-1);
}

.proof-stars svg {
  display: inline-block;
}

.proof-label-big {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gold);
}

.proof-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.proof-icon {
  margin-top: var(--space-3);
}

.proof-badge-icon svg {
  display: inline;
}

@media (max-width: 640px) {
  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ========== HOURS & LOCATION ========== */
.hours {
  background: var(--color-surface);
}

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

.hours-table-wrap h3,
.location-info h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.hours-table {
  width: 100%;
  max-width: 360px;
}

.hours-table td {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.hours-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
  font-weight: 500;
}

.hours-sat td {
  color: var(--color-gold) !important;
}

.hours-closed td:last-child {
  color: var(--color-text-faint);
}

.location-info address {
  font-style: normal;
  margin-bottom: var(--space-6);
}

.location-info address p {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.location-info address svg {
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 3px;
  display: inline;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}

.contact-link svg {
  flex-shrink: 0;
  color: var(--color-gold);
  display: inline;
}

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

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

/* ========== CONNECT ========== */
.connect {
  text-align: center;
}

.connect-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  justify-content: center;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color var(--transition-interactive), transform var(--transition-interactive);
}

.social-link svg {
  display: inline;
}

.social-link span {
  font-size: var(--text-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-link:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
.site-footer {
  padding: var(--space-12) var(--space-6);
  border-top: 1px solid var(--color-divider);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.footer-logo .logo-mark {
  width: 36px;
  height: 36px;
  margin-inline: auto;
}

.footer-walkins {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-phone {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-phone:hover {
  color: var(--color-gold);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: var(--space-4);
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-in {
  opacity: 1;
}

@supports (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    animation: reveal-fade linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }
}

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

/* Fallback for browsers without scroll-driven animations */
@supports not (animation-timeline: scroll()) {
  .fade-in {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .fade-in.is-visible {
    opacity: 1;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 480px) {
  .hero-title-main {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section-intro {
    margin-bottom: var(--space-8);
  }
  .walkin-badge {
    display: none;
  }
}
