/* ============================================
   COASTAL GLOSS MOBILE DETAILING — Design Tokens
   Deep ocean blues + warm sand palette
   ============================================ */

:root, [data-theme="light"] {
  /* Type Scale */
  --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);

  /* Spacing (4px base) */
  --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;

  /* Surfaces — warm sand */
  --color-bg:             #FAF8F5;
  --color-surface:        #FFFFFF;
  --color-surface-2:      #F5F2ED;
  --color-surface-offset: #EDE9E3;
  --color-border:         #D4CCBF;
  --color-divider:        #E5DFD7;

  /* Text */
  --color-text:           #1A1A2E;
  --color-text-muted:     #5C5C6E;
  --color-text-faint:     #9C9CAA;
  --color-text-inverse:   #FAF8F5;

  /* Primary — Deep Ocean Navy */
  --color-primary:        #0B2545;
  --color-primary-hover:  #13315C;
  --color-primary-active: #081C36;

  /* Accent — Coastal Teal */
  --color-accent:         #1B7A8C;
  --color-accent-hover:   #158797;
  --color-accent-active:  #146272;

  /* Gold accent for premium tier */
  --color-gold:           #C8963E;
  --color-gold-hover:     #B5852E;

  /* Semantic */
  --color-success:        #2D7738;
  --color-error:          #B83340;
  --color-bitcoin:        #F7931A;

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

  /* Shadows (warm-toned) */
  --shadow-sm: 0 1px 2px oklch(0.25 0.02 60 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.25 0.02 60 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.25 0.02 60 / 0.12);

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

  /* Fonts */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Switzer', 'Helvetica Neue', sans-serif;
}

/* DARK MODE */
[data-theme="dark"] {
  --color-bg:             #0D1117;
  --color-surface:        #161B22;
  --color-surface-2:      #1C2028;
  --color-surface-offset: #21262D;
  --color-border:         #30363D;
  --color-divider:        #262C33;

  --color-text:           #E6E1D9;
  --color-text-muted:     #8B8B99;
  --color-text-faint:     #5C5C6A;
  --color-text-inverse:   #0D1117;

  --color-primary:        #5B8FBF;
  --color-primary-hover:  #7AABDA;
  --color-primary-active: #4A7DA8;

  --color-accent:         #3CB5C9;
  --color-accent-hover:   #52C9DE;
  --color-accent-active:  #2A9DB0;

  --color-gold:           #DBAA52;
  --color-gold-hover:     #E8BC6A;

  --color-success:        #5DAA6A;
  --color-error:          #E06070;
  --color-bitcoin:        #F7A63A;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #0D1117;
    --color-surface:        #161B22;
    --color-surface-2:      #1C2028;
    --color-surface-offset: #21262D;
    --color-border:         #30363D;
    --color-divider:        #262C33;
    --color-text:           #E6E1D9;
    --color-text-muted:     #8B8B99;
    --color-text-faint:     #5C5C6A;
    --color-text-inverse:   #0D1117;
    --color-primary:        #5B8FBF;
    --color-primary-hover:  #7AABDA;
    --color-primary-active: #4A7DA8;
    --color-accent:         #3CB5C9;
    --color-accent-hover:   #52C9DE;
    --color-accent-active:  #2A9DB0;
    --color-gold:           #DBAA52;
    --color-gold-hover:     #E8BC6A;
    --color-success:        #5DAA6A;
    --color-error:          #E06070;
    --color-bitcoin:        #F7A63A;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ============================================
   LAYOUT
   ============================================ */

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

@media (min-width: 768px) {
  .container { padding-inline: var(--space-8); }
}

@media (min-width: 1024px) {
  .container { padding-inline: var(--space-12); }
}

/* ============================================
   SKIP LINK
   ============================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-radius: var(--radius-md);
  z-index: 100;
  text-decoration: none;
  font-size: var(--text-sm);
}
.skip-link:focus {
  top: var(--space-2);
}

/* ============================================
   HEADER / NAV
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

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

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

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav-desktop {
  display: none;
  gap: var(--space-6);
  align-items: center;
}

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

.nav-desktop a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-1) 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-interactive);
}

.nav-desktop a:hover {
  color: var(--color-text);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-5);
  background: var(--color-accent);
  color: #fff !important;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--color-accent-hover);
}

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

/* Mobile hamburger */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-text);
}

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

.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: var(--space-8) var(--space-4);
  display: none;
  flex-direction: column;
  gap: var(--space-6);
  z-index: 49;
}

.mobile-nav.open {
  display: flex;
}

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

.mobile-nav a {
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
}

.mobile-nav .nav-cta {
  text-align: center;
  justify-content: center;
  margin-top: var(--space-4);
  padding: var(--space-4);
  font-size: var(--text-base);
  border-bottom: none;
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    oklch(0.15 0.03 240 / 0.88) 0%,
    oklch(0.15 0.03 240 / 0.65) 50%,
    oklch(0.15 0.02 240 / 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-block: var(--space-32) var(--space-16);
}

@media (min-width: 768px) {
  .hero-content { padding-block: var(--space-16); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-4);
  background: oklch(1 0 0 / 0.12);
  border: 1px solid oklch(1 0 0 / 0.15);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: #fff;
  margin-bottom: var(--space-6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: #fff;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero p {
  font-size: var(--text-base);
  color: oklch(1 0 0 / 0.8);
  margin-bottom: var(--space-8);
  max-width: 540px;
  line-height: 1.7;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
}

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

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  background: oklch(1 0 0 / 0.12);
  border: 1px solid oklch(1 0 0 / 0.2);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: oklch(1 0 0 / 0.18);
}

/* ============================================
   SECTION — HOW IT WORKS
   ============================================ */

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
}

.step-card {
  text-align: left;
  position: relative;
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
}

.step-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

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

/* ============================================
   SERVICES / PRICING
   ============================================ */

.services-section {
  background: var(--color-surface-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

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

.pricing-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}

.pricing-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border: 2px solid var(--color-accent);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: var(--space-2);
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card.featured .pricing-card-inner {
  padding-top: var(--space-6);
}

.tier-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}

.pricing-card.executive .tier-label {
  color: var(--color-gold);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-4);
}

.price-range {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--color-divider);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}

.price-row .vehicle {
  color: var(--color-text-muted);
}

.price-row .price {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-text);
}

.price-row .price-original {
  text-decoration: line-through;
  color: var(--color-text-faint);
  font-weight: 400;
  margin-right: var(--space-2);
}

.first-time-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  background: var(--color-success);
  color: #fff;
  border-radius: var(--radius-full);
  margin-left: var(--space-2);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.5;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: var(--color-accent);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pricing-card .btn-primary {
  width: 100%;
  justify-content: center;
}

.pricing-card.executive .btn-primary {
  background: var(--color-gold);
}

.pricing-card.executive .btn-primary:hover {
  background: var(--color-gold-hover);
}

/* Vehicle toggle */
.vehicle-toggle {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
  background: var(--color-surface);
  padding: var(--space-1);
  border-radius: var(--radius-full);
  display: inline-flex;
  margin-inline: auto;
}

.vehicle-toggle-wrap {
  text-align: center;
  margin-bottom: var(--space-10);
}

.vehicle-toggle button {
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: transparent;
}

.vehicle-toggle button.active {
  background: var(--color-primary);
  color: #fff;
}

/* Pricing notes */
.pricing-notes {
  margin-top: var(--space-10);
  text-align: center;
}

.pricing-notes p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-inline: auto;
  margin-bottom: var(--space-2);
}

.bitcoin-note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-bitcoin) l c h / 0.3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-top: var(--space-4);
}

.bitcoin-icon {
  width: 20px;
  height: 20px;
  color: var(--color-bitcoin);
}

/* ============================================
   GALLERY — SPLIT SECTION
   ============================================ */

.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 500px;
}

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

.split-image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-12) var(--space-8);
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.split-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-6);
}

.split-content p {
  font-size: var(--text-base);
  color: oklch(1 0 0 / 0.75);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.requirement-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
}

.requirement-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.85);
}

.requirement-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

[data-theme="dark"] .requirement-list li svg {
  color: var(--color-accent);
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking-section {
  background: var(--color-surface-2);
}

.booking-content {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.booking-content .btn-primary {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
}

.booking-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-10);
  text-align: left;
}

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

.perk {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
}

.perk svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  margin-top: 2px;
}

.perk h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.perk p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 720px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-divider);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.faq-question svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding-block: var(--space-16) var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

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

.footer-brand p {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.6);
  margin-top: var(--space-4);
  line-height: 1.6;
  max-width: 320px;
}

.footer h4 {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(1 0 0 / 0.5);
  margin-bottom: var(--space-4);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  font-size: var(--text-sm);
  color: oklch(1 0 0 / 0.75);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid oklch(1 0 0 / 0.1);
  font-size: var(--text-xs);
  color: oklch(1 0 0 / 0.4);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom a {
  color: oklch(1 0 0 / 0.5);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: oklch(1 0 0 / 0.75);
}

/* ============================================
   SCROLL REVEALS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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