/* ═══════════════════════════════════════════════
   GARMANY — Luxury Retail Design System
   Palette: Warm Cream / Burgundy / Blush / Charcoal
   Typography: Playfair Display + Jost
═══════════════════════════════════════════════ */

:root {
  /* Core Palette */
  --cream: #FFFFFF;
  --cream-warm: #FFFFFF;
  --blush: #E8D5C4;
  --blush-light: #F0E4D8;
  --burgundy: #55200d;
  --burgundy-deep: #55200d;
  --burgundy-light: #6e3015;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --charcoal-soft: #6B6B6B;
  --gold: #B8956A;
  --gold-light: #D4B896;
  --white: #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --side-pad: clamp(24px, 5vw, 80px);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise Texture */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════
   SKIP NAVIGATION (Accessibility)
═══════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--burgundy);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px var(--side-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--side-pad);
  box-shadow: 0 1px 0 rgba(85, 32, 13, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: clamp(36px, 5vw, 52px);
  width: auto;
  transition: filter 0.5s ease;
}

.nav.scrolled .nav-logo img {
  filter: invert(1) brightness(0.2);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.5s ease;
}

.nav.scrolled .nav-links a {
  color: var(--charcoal);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.5s ease;
}

.nav.scrolled .nav-links a::after {
  background: var(--burgundy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 24px;
  border: 1px solid var(--gold-light);
  color: var(--gold-light) !important;
  transition: all 0.4s ease;
}

.nav.scrolled .nav-cta {
  border-color: var(--burgundy);
  color: var(--burgundy) !important;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--gold-light);
  color: var(--charcoal) !important;
}

.nav.scrolled .nav-cta:hover,
.nav.scrolled .nav-cta.active {
  background: var(--burgundy);
  color: #FFFFFF !important;
}

.nav-cta::after {
  display: none !important;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg,
      rgba(42, 42, 42, 0.3) 0%,
      rgba(42, 42, 42, 0.15) 50%,
      rgba(42, 42, 42, 0.1) 100%),
    url('hero-couple.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.3) 80px,
      rgba(255,255,255,0.3) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.3) 80px,
      rgba(255,255,255,0.3) 81px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--side-pad);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: #5b8ab6;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(247, 243, 238, 0.7);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  max-width: 520px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1s 0.9s forwards;
}

.hero-badge {
  position: absolute;
  right: calc(var(--side-pad) + 80px);
  bottom: 60px;
  z-index: 2;
  text-align: right;
  opacity: 0;
  animation: fadeUp 1s 1.1s forwards;
}

.hero-badge-year {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  color: rgba(247, 243, 238, 0.85);
  line-height: 1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-badge-text {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}

.hero-scroll span {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.7);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Page Hero (Interior Pages) */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
  padding-top: 80px;
}

.page-hero-short {
  min-height: 45vh;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%);
  background-size: cover;
  background-position: center;
}

/* Page-specific hero backgrounds */
.page-story .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('story-bg.jpg');
  background-size: cover;
  background-position: center;
}

.page-team .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('team-bg.jpg');
  background-size: cover;
  background-position: center;
}

.page-services .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('services-bg.jpg');
  background-size: cover;
  background-position: center;
}

.page-visit .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('visit-bg.jpg');
  background-size: cover;
  background-position: center;
}

.page-gentlemen .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('interior-hallway.jpg');
  background-size: cover;
  background-position: center;
}

.page-women .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('interior-chandelier.jpg');
  background-size: cover;
  background-position: center;
}

.page-etiquette .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('store-bar.jpg');
  background-size: cover;
  background-position: center;
}

.page-tailored .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('store-dressing.jpg');
  background-size: cover;
  background-position: center;
}

.page-mobile .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('store-experience.jpg');
  background-size: cover;
  background-position: center;
}

.page-gives .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('storefront-exterior.jpg');
  background-size: cover;
  background-position: center;
}

.page-testimonials .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('gallery-1.jpg');
  background-size: cover;
  background-position: center;
}

.page-experience .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('service-bar.jpg');
  background-size: cover;
  background-position: center;
}

.page-journey .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('journey-1.jpg');
  background-size: cover;
  background-position: center;
}

.page-careers .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('team-bg.jpg');
  background-size: cover;
  background-position: center;
}

.page-events .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('store-experience.jpg');
  background-size: cover;
  background-position: center;
}

.page-magazine .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('interior-chandelier.jpg');
  background-size: cover;
  background-position: center;
}

.page-brand .page-hero-bg {
  background:
    linear-gradient(135deg,
      rgba(85, 32, 13, 0.85) 0%,
      rgba(110, 50, 25, 0.8) 50%,
      rgba(140, 75, 40, 0.75) 100%),
    url('interior-hallway.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--side-pad);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 16px;
}

.page-hero-title em {
  font-style: italic;
  color: #5b8ab6;
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 300;
  color: rgba(247, 243, 238, 0.7);
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   LEGACY STRIP
═══════════════════════════════════════════════ */
.legacy-strip {
  background: var(--burgundy-deep);
  padding: 60px var(--side-pad);
  display: flex;
  justify-content: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.legacy-stat {
  text-align: center;
}

.legacy-stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
}

.legacy-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.75);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--burgundy);
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid var(--burgundy);
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(85, 32, 13, 0.3);
}

/* Hero section blue button override */
.hero .btn-primary {
  background: #5b8ab6;
  border-color: #5b8ab6;
}

.hero .btn-primary:hover {
  background: #4a7aa6;
  border-color: #4a7aa6;
  box-shadow: 0 8px 24px rgba(91, 138, 182, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease;
}

.btn-ghost:hover {
  border-color: #7ba3c9;
  color: #7ba3c9;
}

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(44, 44, 44, 0.3);
  transition: all 0.4s ease;
}

.btn-ghost-dark:hover {
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-text:hover {
  gap: 12px;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: transparent;
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--gold);
  transition: all 0.4s ease;
}

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

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  background: var(--charcoal);
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid var(--charcoal);
  transition: all 0.4s ease;
}

.btn-dark:hover {
  background: transparent;
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════════
   SECTION TYPOGRAPHY
═══════════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--burgundy);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: #5b8ab6;
}

.section-title-center {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 28px;
}

.section-title-center em {
  font-style: italic;
  color: #5b8ab6;
}

.section-title-large {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 32px;
}

.section-title-large em {
  font-style: italic;
  color: #5b8ab6;
}

/* ═══════════════════════════════════════════════
   STORY PREVIEW (Homepage)
═══════════════════════════════════════════════ */
.story-preview {
  padding: 0;
  background: var(--cream);
}

.story-preview-inner {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 0;
  align-items: center;
}

.story-preview-visual {
  position: relative;
}

.story-preview-visual .story-preview-accent {
  display: none;
}

.story-preview-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.story-preview-image img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


.story-preview-image::before {
  display: none;
}

.story-preview-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.monogram {
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 100px);
  font-weight: 300;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0.1em;
  opacity: 0.2;
}

.story-preview-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--burgundy);
  opacity: 0.2;
  pointer-events: none;
}

.story-preview-content {
  padding: clamp(40px, 4vw, 80px) clamp(40px, 4vw, 80px) clamp(40px, 4vw, 80px) clamp(60px, 6vw, 120px);
}

.story-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════
   EXPERIENCE TEASER (Homepage)
═══════════════════════════════════════════════ */
.experience-teaser {
  background: var(--charcoal);
  padding: var(--section-pad) var(--side-pad);
  text-align: center;
}

.experience-teaser-header {
  max-width: 700px;
  margin: 0 auto 48px;
}

.experience-teaser .section-eyebrow {
  justify-content: center;
  color: var(--gold-light);
}

.experience-teaser .section-eyebrow::before {
  background: var(--gold-light);
}

.experience-teaser .section-title {
  color: #FFFFFF;
  text-align: center;
}

.experience-teaser .section-title em {
  color: #5b8ab6;
}

.senses-mini-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.sense-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sense-mini-icon {
  font-size: 32px;
}

.sense-mini-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: #FFFFFF;
}

.experience-teaser-cta {
  margin-top: 32px;
}

/* ═══════════════════════════════════════════════
   BRANDS TEASER (Homepage)
═══════════════════════════════════════════════ */
.brands-teaser {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream-warm);
  text-align: center;
}

.brands-teaser .section-eyebrow {
  justify-content: center;
}

.brands-teaser .section-eyebrow::before {
  display: none;
}

.brands-marquee {
  max-width: 1400px;
  margin: 40px auto;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.brands-marquee::before,
.brands-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--cream-warm), transparent);
}

.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--cream-warm), transparent);
}

.brands-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  white-space: nowrap;
  transition: color 0.3s ease;
  cursor: default;
  opacity: 0.5;
}

.brand-name:hover {
  color: var(--burgundy);
  opacity: 1;
}

.brand-divider {
  color: var(--blush);
  font-size: 8px;
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════════ */
.testimonial {
  background: #f0f0f0;
  padding: var(--section-pad) var(--side-pad);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: var(--side-pad);
  font-family: var(--font-display);
  font-size: clamp(200px, 25vw, 400px);
  font-weight: 300;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 40px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #333333;
}

.testimonial-divider {
  width: 40px;
  height: 1px;
  background: #333333;
  margin: 0 auto 20px;
}

/* ═══════════════════════════════════════════════
   VISIT CTA SECTION
═══════════════════════════════════════════════ */
.visit-cta-section {
  position: relative;
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
  text-align: center;
}

/* Homepage visit CTA with background image */
body:not(.page-story):not(.page-team):not(.page-services):not(.page-visit) .visit-cta-section {
  background:
    url('visit-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 70vh;
}

.visit-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.visit-cta-inner .section-eyebrow {
  justify-content: center;
}

.visit-cta-inner .section-eyebrow::before {
  display: none;
}

.visit-cta-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal-soft);
  margin-bottom: 32px;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   STORY SECTIONS (Story Page)
═══════════════════════════════════════════════ */
.story-section {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.story-section-alt {
  background: var(--cream-warm);
}

.story-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.story-section-inner.story-section-with-image {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.story-section-inner.reverse {
  grid-template-columns: 1fr 1fr;
}

.story-chapter {
  display: flex;
  gap: 32px;
}

.story-chapter-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
}

.story-chapter-content {
  flex: 1;
}

.story-chapter-text p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-light);
  margin-bottom: 20px;
}

.story-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--blush);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(93, 42, 50, 0.2);
}

.story-image-frame img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(93, 42, 50, 0.6) 0%, transparent 50%);
  z-index: 1;
}

.story-image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.story-accent-line {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--burgundy);
  opacity: 0.2;
  pointer-events: none;
}

/* Philosophy Section */
.philosophy-section {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
  text-align: center;
}

.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-inner .section-eyebrow {
  justify-content: center;
}

.philosophy-inner .section-eyebrow::before {
  display: none;
}

.philosophy-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   SENSES SECTION
═══════════════════════════════════════════════ */
.senses {
  background: var(--charcoal);
  padding: var(--section-pad) var(--side-pad);
  position: relative;
  overflow: hidden;
}

.senses::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent, rgba(85, 32, 13, 0.15));
  pointer-events: none;
}

.senses-header {
  max-width: 1400px;
  margin: 0 auto 60px;
}

.senses-header .section-eyebrow {
  color: var(--gold-light);
}

.senses-header .section-eyebrow::before {
  background: var(--gold-light);
}

.senses-header .section-title {
  color: #FFFFFF;
  max-width: 700px;
}

.senses-header .section-title em {
  color: #5b8ab6;
}

.senses-intro {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(247, 243, 238, 0.6);
  max-width: 500px;
}

.senses-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

.sense-card {
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.5s ease;
}

.sense-card:hover {
  background: rgba(85, 32, 13, 0.15);
  border-color: rgba(85, 32, 13, 0.3);
  transform: translateY(-4px);
}

.sense-icon {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 20px;
  display: block;
}

.sense-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.sense-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247, 243, 238, 0.75);
}

.sense-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.5s ease;
}

.sense-card:hover .sense-accent {
  width: 100%;
}

/* ═══════════════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════════════ */
.team-section {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream-warm);
}

.team-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.team-inner .section-eyebrow {
  justify-content: center;
}

.team-inner .section-eyebrow::before {
  display: none;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 48px;
}

.team-member {
  text-align: center;
}

.team-member-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blush);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-member-placeholder {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--burgundy);
  opacity: 0.4;
}

.team-member-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-member-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
}

.team-member-bio {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-soft);
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS GRID
═══════════════════════════════════════════════ */
.testimonials-section {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.testimonials-header .section-eyebrow {
  justify-content: center;
}

.testimonials-header .section-eyebrow::before {
  display: none;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--cream-warm);
  padding: 40px;
  border: 1px solid var(--blush);
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.testimonial-card cite {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-style: normal;
}

/* ═══════════════════════════════════════════════
   SERVICES FULL (Services Page)
═══════════════════════════════════════════════ */
.services-full {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.services-header-full {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-header-full .section-eyebrow {
  justify-content: center;
}

.services-header-full .section-eyebrow::before {
  display: none;
}

.services-intro {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-soft);
}

.services-grid-full {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.service-card-full {
  background: var(--cream-warm);
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  gap: 24px;
  transition: all 0.4s ease;
  border-bottom: 2px solid transparent;
}

.service-card-full:hover {
  background: var(--blush-light);
  border-bottom-color: var(--burgundy);
}

.service-card-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--blush);
  line-height: 1;
  transition: color 0.4s ease;
}

.service-card-full:hover .service-card-number {
  color: var(--burgundy);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.service-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-soft);
  margin-bottom: 20px;
}

.service-card-features {
  list-style: none;
}

.service-card-features li {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--charcoal-light);
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}

.service-card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--burgundy);
}

/* Amenities Gallery */
.amenities-gallery {
  padding: clamp(64px, 8vw, 120px) var(--side-pad);
  background: var(--charcoal);
}

.amenities-header {
  text-align: center;
  margin-bottom: 48px;
}

.amenities-header .section-eyebrow {
  color: var(--gold);
}

.amenities-header .section-title {
  color: #FFFFFF;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.amenity-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.amenity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.amenity-item:hover img {
  transform: scale(1.05);
}

.amenity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.amenity-item:hover .amenity-overlay {
  transform: translateY(0);
  opacity: 1;
}

.amenity-overlay h4 {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
}

.amenity-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

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

  .amenity-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

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

  .amenity-large {
    grid-column: span 1;
  }
}

/* Emergency Service */
.emergency-service {
  background: var(--burgundy);
  padding: 48px var(--side-pad);
}

.emergency-service-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  text-align: left;
}

.emergency-icon {
  font-size: 40px;
}

.emergency-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.emergency-content p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(247, 243, 238, 0.7);
  margin-bottom: 12px;
}

.emergency-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
}

.emergency-number:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   BRANDS FULL (Services Page)
═══════════════════════════════════════════════ */
.brands-full {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream-warm);
}

.brands-header-full {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.brands-header-full .section-eyebrow {
  justify-content: center;
}

.brands-header-full .section-eyebrow::before {
  display: none;
}

.brands-intro {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-soft);
}

.brands-featured {
  max-width: 1200px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.brand-feature-large {
  background: var(--cream);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.brand-feature-large::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.brand-feature-large:hover::after {
  opacity: 1;
}

.brand-feature-content {
  position: relative;
  z-index: 1;
}

.brand-feature-large h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  transition: color 0.5s ease;
}

.brand-feature-large:hover h3 {
  color: #FFFFFF;
}

.brand-feature-category {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 16px;
  transition: color 0.5s ease;
}

.brand-feature-large:hover .brand-feature-category {
  color: var(--gold-light);
}

.brand-feature-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-soft);
  transition: color 0.5s ease;
}

.brand-feature-large:hover .brand-feature-desc {
  color: rgba(247, 243, 238, 0.7);
}

.brands-all {
  max-width: 1400px;
  margin: 0 auto 60px;
  text-align: center;
}

.brands-all-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 24px;
}

.brand-categories {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.brand-category h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--blush);
}

.brand-category ul {
  list-style: none;
}

.brand-category li {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════
   VISIT PAGE
═══════════════════════════════════════════════ */
.visit-main {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.visit-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.visit-info-block {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--blush);
}

.visit-info-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.visit-info-value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.5;
}

.visit-info-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  margin-top: 12px;
  transition: gap 0.3s ease;
}

.visit-info-link:hover {
  gap: 10px;
}

.visit-phone {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--burgundy);
  text-decoration: none;
}

.visit-phone:hover {
  text-decoration: underline;
}

.visit-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visit-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal-light);
}

.visit-hours-row.closed {
  color: var(--charcoal-soft);
  opacity: 0.6;
}

.visit-map-large {
  position: sticky;
  top: 120px;
}

.visit-map-container {
  aspect-ratio: 1;
  background: var(--blush-light);
  position: relative;
  overflow: hidden;
}

.visit-map-stylized {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--blush-light) 50%, var(--blush) 100%);
}

.visit-store-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.visit-store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-store-image .map-address-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(93, 42, 50, 0.9);
  padding: 16px 24px;
  border-radius: 4px;
}

.map-pin-large {
  width: 60px;
  height: 60px;
  border-radius: 50% 50% 50% 0;
  background: var(--burgundy);
  transform: rotate(-45deg);
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 32px rgba(85, 32, 13, 0.3);
}

.map-pin-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--cream);
  border-radius: 50%;
}

.map-address-overlay {
  text-align: center;
}

.map-street {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--charcoal);
}

.map-city {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-top: 8px;
}

.map-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, var(--charcoal) 60px, var(--charcoal) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, var(--charcoal) 60px, var(--charcoal) 61px);
  pointer-events: none;
}

/* Appointment Section */
.appointment-section {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream-warm);
}

.appointment-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.appointment-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal-light);
  margin-bottom: 32px;
}

.appointment-ctas {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.appointment-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.appointment-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.appointment-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.appointment-feature-text h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.appointment-feature-text p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--charcoal-soft);
  line-height: 1.5;
}

/* Emergency Section */
.emergency-section {
  background: var(--burgundy-deep);
  padding: 60px var(--side-pad);
}

.emergency-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.emergency-badge {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold-light);
  padding: 16px 24px;
  border: 1px solid var(--gold);
  flex-shrink: 0;
}

.emergency-section .emergency-content h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.emergency-section .emergency-content p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(247, 243, 238, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

.emergency-hotline {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold-light);
  text-decoration: none;
}

.emergency-hotline:hover {
  text-decoration: underline;
}

/* Expect Section */
.expect-section {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.expect-header {
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
}

.expect-header .section-eyebrow {
  justify-content: center;
}

.expect-header .section-eyebrow::before {
  display: none;
}

.expect-timeline {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.expect-step {
  text-align: center;
}

.expect-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.expect-step-content h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.expect-step-content p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-soft);
}

/* Store Gallery */
.gallery-section {
  padding: clamp(64px, 8vw, 120px) var(--side-pad);
  background: var(--cream-warm);
}

.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4/3;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(93, 42, 50, 0.9) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

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

  .gallery-item-large {
    grid-column: span 1;
  }
}

/* Magazine CTA */
.magazine-cta {
  background: var(--charcoal);
  padding: clamp(48px, 6vw, 80px) var(--side-pad);
}

.magazine-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.magazine-cta-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #FFFFFF;
}

.magazine-cta-content h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.magazine-cta-content p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(247, 243, 238, 0.5);
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS PAGE
═══════════════════════════════════════════════ */
.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-radius: 4px;
  padding: 40px;
  position: relative;
}

.testimonial-card-featured {
  border-left: 3px solid var(--gold);
}

.testimonial-card-quote {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  font-style: italic;
  margin: 0;
}

.testimonial-card-featured .testimonial-card-quote {
  font-size: 1.1rem;
}

.testimonial-card-author {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--burgundy);
  margin: 20px 0 0;
}

.testimonial-card-author::before {
  content: '— ';
}

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

  .testimonial-card-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-card-quote {
    font-size: 0.95rem;
  }
}

/* ═══════════════════════════════════════════════
   ETIQUETTE PAGE
═══════════════════════════════════════════════ */
.etiquette-qa {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--side-pad);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.etiquette-item {
  border-bottom: 1px solid var(--blush);
  padding-bottom: 48px;
}

.etiquette-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.etiquette-question,
.etiquette-answer {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.etiquette-answer {
  margin-top: 24px;
}

.etiquette-q-label,
.etiquette-a-label {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
  text-align: center;
}

.etiquette-q-label {
  color: var(--burgundy);
}

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

.etiquette-q-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
}

.etiquette-q-from {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal-soft);
  margin: 8px 0 0;
  font-style: italic;
}

.etiquette-a-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  margin: 0;
}

@media (max-width: 600px) {
  .etiquette-q-label,
  .etiquette-a-label {
    font-size: 1.5rem;
    width: 28px;
  }

  .etiquette-q-text {
    font-size: 1.05rem;
  }

  .etiquette-question,
  .etiquette-answer {
    gap: 14px;
  }
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--cream-warm);
  padding: 60px var(--side-pad) 32px;
  border-top: 1px solid var(--blush);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  padding-right: 40px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 108px;
  width: auto;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

.footer-column h3 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #595959;
  line-height: 1.5;
}

.footer-column a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #595959;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--burgundy);
}

.footer-slogan {
  max-width: 1400px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--blush);
  text-align: center;
}

.footer-slogan img {
  max-width: 320px;
  width: 100%;
  height: auto;
  opacity: 0.85;
}

.footer-bottom {
  max-width: 1400px;
  margin: 24px auto 0;
  padding-top: 0;
  text-align: center;
}

.footer-copyright {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--charcoal-soft);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .story-preview-inner,
  .story-section-inner,
  .story-section-inner.reverse,
  .story-section-inner.story-section-with-image {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-preview-visual,
  .story-visual {
    max-width: 500px;
  }

  .senses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands-featured,
  .brand-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid-full {
    grid-template-columns: 1fr;
  }

  .visit-main-inner,
  .appointment-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .expect-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .team-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero-badge {
    display: none;
  }

  .senses-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brands-featured,
  .brand-categories {
    grid-template-columns: 1fr;
  }

  .appointment-features {
    grid-template-columns: 1fr;
  }

  .expect-timeline {
    grid-template-columns: 1fr;
  }

  .magazine-cta-inner {
    text-align: center;
    justify-content: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-cta-group,
  .appointment-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .legacy-strip {
    gap: 24px;
  }

  .emergency-service-inner,
  .emergency-inner {
    flex-direction: column;
    text-align: center;
  }

  .story-chapter {
    flex-direction: column;
  }
}

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

  .senses-mini-grid {
    gap: 24px;
  }
}

/* ═══════════════════════════════════════════════
   TEAM PAGE
═══════════════════════════════════════════════ */
.team-philosophy {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
  text-align: center;
}

.team-philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
}

.team-philosophy-inner .section-eyebrow {
  justify-content: center;
}

.team-philosophy-inner .section-eyebrow::before {
  display: none;
}

.team-section {
  padding: var(--section-pad) var(--side-pad);
  background: var(--cream);
}

.team-section-alt {
  background: var(--cream-warm);
}

.team-section-header {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.team-section-header .section-eyebrow {
  justify-content: center;
}

.team-section-header .section-eyebrow::before {
  display: none;
}

.team-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
}

.team-grid .team-member {
  flex: 0 0 200px;
}

.team-grid-featured {
  max-width: 400px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
}

.team-member-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--blush);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--blush-light);
}

.team-member-image-large {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blush);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid var(--burgundy);
}

.team-member-image img,
.team-member-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-placeholder {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--burgundy);
  opacity: 0.4;
}

.team-member-image-large .team-member-placeholder {
  font-size: 48px;
}

.team-member-featured {
  text-align: center;
}

.team-member-info {
  text-align: center;
}

.team-member-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-member-featured .team-member-name {
  font-size: 28px;
}

.team-member-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
}

@media (max-width: 768px) {
  .team-grid {
    gap: 24px 32px;
  }

  .team-grid .team-member {
    flex: 0 0 140px;
  }
}

/* ═══════════════════════════════════════════════
   MOBILE NAVIGATION
═══════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    display: flex !important;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    color: var(--charcoal) !important;
    border-bottom: 1px solid var(--blush);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    margin-top: 20px;
    padding: 16px 24px;
    text-align: center;
    border: 1px solid var(--burgundy) !important;
    color: var(--burgundy) !important;
  }
}

/* ═══════════════════════════════════════════════
   COMPREHENSIVE MOBILE OPTIMIZATIONS
═══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Root spacing adjustments */
  :root {
    --section-pad: clamp(48px, 8vw, 80px);
    --side-pad: clamp(20px, 5vw, 40px);
  }

  /* Hero adjustments */
  .hero {
    min-height: 100svh;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 60px);
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-cta-group {
    width: 100%;
  }

  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  /* Page hero adjustments */
  .page-hero {
    min-height: 50vh;
    padding-top: 70px;
  }

  .page-hero-short {
    min-height: 40vh;
  }

  .page-hero-title {
    font-size: clamp(36px, 10vw, 60px);
  }

  .page-hero-subtitle {
    font-size: 14px;
  }

  /* Section titles */
  .section-title,
  .section-title-center {
    font-size: clamp(28px, 7vw, 40px);
  }

  .section-title-large {
    font-size: clamp(24px, 6vw, 36px);
  }

  /* Legacy strip */
  .legacy-strip {
    padding: 20px var(--side-pad);
    gap: 16px;
  }

  .legacy-stat-number {
    font-size: clamp(24px, 6vw, 32px);
  }

  .legacy-stat-label {
    font-size: 9px;
  }

  /* Story preview */
  .story-preview-inner {
    gap: 32px;
  }

  .story-preview-visual {
    max-width: 100%;
  }

  .story-preview-image {
    aspect-ratio: 4/5;
  }

  .story-text {
    font-size: 14px;
  }

  /* Buttons - better touch targets */
  .btn-primary,
  .btn-ghost,
  .btn-ghost-dark,
  .btn-gold,
  .btn-text {
    min-height: 48px;
    padding: 14px 28px;
    font-size: 11px;
  }

  /* Experience teaser senses */
  .senses-mini-grid {
    gap: 20px 32px;
  }

  .sense-mini-name {
    font-size: 16px;
  }

  /* Testimonial */
  .testimonial-quote {
    font-size: clamp(20px, 5vw, 28px);
  }

  /* Philosophy section */
  .philosophy-inner {
    padding: 0;
  }

  .philosophy-text {
    font-size: 15px;
  }

  /* Senses grid */
  .sense-card {
    padding: 28px 24px;
  }

  .sense-name {
    font-size: 20px;
  }

  .sense-desc {
    font-size: 14px;
  }

  /* Story sections */
  .story-chapter-number {
    font-size: 48px;
  }

  .story-chapter-text p {
    font-size: 14px;
  }

  /* Testimonials section */
  .testimonial-card {
    padding: 28px 24px;
  }

  .testimonial-card blockquote {
    font-size: 16px;
  }

  /* Visit CTA */
  .visit-cta-text {
    font-size: 14px;
  }

  /* Services full */
  .service-card-full {
    padding: 28px 24px;
  }

  .service-card-title {
    font-size: 22px;
  }

  .service-card-desc {
    font-size: 14px;
  }

  /* Visit page */
  .visit-info-block {
    padding: 24px;
  }

  .visit-hours-row {
    font-size: 14px;
  }

  .visit-phone {
    font-size: 24px;
  }

  /* Appointment section */
  .appointment-text {
    font-size: 14px;
  }

  .appointment-feature {
    padding: 20px;
  }

  .appointment-feature-icon {
    font-size: 28px;
  }

  /* Emergency section */
  .emergency-badge {
    font-size: 28px;
    width: 80px;
    height: 80px;
  }

  .emergency-hotline {
    font-size: 24px;
  }

  /* What to expect */
  .expect-step {
    padding: 24px;
  }

  .expect-step-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .expect-step h4 {
    font-size: 18px;
  }

  .expect-step p {
    font-size: 14px;
  }

  /* Footer refinements */
  .footer {
    padding: 48px var(--side-pad) 24px;
  }

  .footer-logo img {
    height: 80px;
  }

  .footer-tagline {
    font-size: 14px;
  }

  .footer-column h3 {
    margin-bottom: 16px;
  }

  .footer-column li,
  .footer-column a {
    font-size: 13px;
  }

  .footer-slogan {
    margin-top: 32px;
    padding-top: 24px;
  }

  .footer-slogan img {
    max-width: 240px;
  }

  .footer-bottom {
    margin-top: 20px;
  }
}

/* ═══════════════════════════════════════════════
   SMALL MOBILE (480px and below)
═══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .page-hero-title {
    font-size: clamp(32px, 9vw, 48px);
  }

  .section-title,
  .section-title-center {
    font-size: clamp(24px, 7vw, 32px);
  }

  .legacy-strip {
    flex-direction: column;
    gap: 12px;
    padding: 24px var(--side-pad);
  }

  .legacy-stat {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .legacy-stat-number {
    font-size: 28px;
  }

  .story-preview-image {
    aspect-ratio: 1/1;
  }

  .story-image-frame {
    max-width: 100%;
  }

  .team-grid .team-member {
    flex: 0 0 120px;
  }

  .team-member-image {
    width: 100px;
    height: 100px;
  }

  .team-member-name {
    font-size: 16px;
  }

  .team-member-title {
    font-size: 10px;
  }

  .visit-store-image {
    aspect-ratio: 4/3;
  }

  /* Brands marquee slowdown for readability */
  .brands-track {
    animation-duration: 40s;
  }
}

/* ═══════════════════════════════════════════════
   TOUCH DEVICE OPTIMIZATIONS
═══════════════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  /* Always show gallery overlays on touch devices */
  .gallery-item .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(93, 42, 50, 0.7) 0%, transparent 60%);
  }

  /* Always show amenity overlays */
  .amenity-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(93, 42, 50, 0.7) 0%, transparent 60%);
  }

  /* Disable hover effects that don't work on touch */
  .brand-feature-large::after {
    display: none;
  }

  .brand-feature-large:hover h3,
  .brand-feature-large:hover .brand-feature-category,
  .brand-feature-large:hover .brand-feature-desc {
    color: inherit;
  }
}

/* ═══════════════════════════════════════════════
   LANDSCAPE MOBILE
═══════════════════════════════════════════════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 100px var(--side-pad) 60px;
  }

  .page-hero {
    min-height: auto;
    padding: 100px var(--side-pad) 60px;
  }

  .hero-scroll {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   FOCUS STYLES (Accessibility)
═══════════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

.nav-links a:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.nav.scrolled .nav-links a:focus-visible,
.nav.scrolled .nav-cta:focus-visible {
  outline-color: var(--burgundy);
}

.btn-primary:focus-visible,
.btn-gold:focus-visible,
.btn-dark:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.hero .btn-primary:focus-visible,
.hero .btn-ghost:focus-visible {
  outline-color: var(--gold-light);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.nav.scrolled .nav-toggle:focus-visible {
  outline-color: var(--burgundy);
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .brands-track {
    animation: none;
  }

  .hero-scroll-line {
    animation: none;
    opacity: 0.6;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-subtitle,
  .hero-cta-group,
  .hero-badge,
  .hero-scroll {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
