/* ============================================================
   OBSIDIAN AUTO SPA — style.css
   Dark luxury aesthetic. Black + gold.
============================================================ */

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

/* ===== CSS VARIABLES ===== */
:root {
  --bg:           #080808;
  --surface:      #111111;
  --text:         #F5F5F0;
  --gold:         #C9A84C;
  --gold-hover:   #E8C876;
  --muted:        #888888;
  --border:       rgba(255, 255, 255, 0.07);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --ease-out:     cubic-bezier(0.32, 0.72, 0, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:       0.25s cubic-bezier(0.32, 0.72, 0, 1);
  --t-med:        0.45s cubic-bezier(0.32, 0.72, 0, 1);
  --t-slow:       0.8s  cubic-bezier(0.32, 0.72, 0, 1);
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================================
   NOISE GRAIN OVERLAY
============================================================ */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ============================================================
   LAYOUT UTILITIES
============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: background-color var(--t-fast),
              border-color var(--t-fast),
              color var(--t-fast),
              transform var(--t-fast);
  will-change: transform;
}

.btn--gold {
  background-color: var(--gold);
  color: #080808;
  border-color: var(--gold);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--large {
  padding: 1.125rem 3rem;
  font-size: 0.75rem;
  min-height: 56px;
}

/* ============================================================
   NAVIGATION
============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.75rem 2.5rem;
  transition: background-color 0.6s var(--ease-out),
              backdrop-filter 0.6s var(--ease-out),
              -webkit-backdrop-filter 0.6s var(--ease-out),
              border-color 0.6s var(--ease-out),
              padding 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background-color: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 1.125rem 2.5rem;
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: 0.1em;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.4375rem;
  color: var(--gold);
  letter-spacing: 0.35em;
  margin-top: 0.15rem;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links > a:not(.btn-nav) {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t-fast);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-links > a:not(.btn-nav):hover {
  color: var(--text);
}

/* Nav Book Now button */
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.375rem;
  min-height: 44px;
  background-color: var(--gold);
  color: #080808;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color var(--t-fast), transform var(--t-fast);
}
.btn-nav:hover,
.btn-nav:focus-visible {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 600;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--text);
  transform-origin: center;
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 490;
  background-color: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: color var(--t-fast),
              opacity 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
}
.mobile-link:hover { color: var(--gold); }

.mobile-link--gold {
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.75rem 2.5rem;
  margin-top: 0.5rem;
  transition: color var(--t-fast),
              background-color var(--t-fast),
              border-color var(--t-fast),
              opacity 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
}
.mobile-link--gold:hover {
  background-color: var(--gold);
  color: #080808;
  border-color: var(--gold);
}

.mobile-menu.open .mobile-link:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.08s; }
.mobile-menu.open .mobile-link:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.13s; }
.mobile-menu.open .mobile-link:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.18s; }
.mobile-menu.open .mobile-link:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.23s; }

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

.hero__glow {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, 95vw);
  height: min(700px, 70vh);
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 76, 0.11) 0%,
    rgba(201, 168, 76, 0.05) 35%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 9rem 1.5rem 5rem;
  max-width: 1100px;
  width: 100%;
}

/* Eyebrow — initially hidden, GSAP reveals */
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2.25rem;
  opacity: 0;
}

/* Main headline */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.75rem, 13vw, 14rem);
  line-height: 0.88;
  letter-spacing: 0.025em;
  color: var(--text);
  margin-bottom: 2.25rem;
  display: flex;
  flex-direction: column;
}

/* Each word line clips its chars */
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em; /* prevents descender clip */
}

/* Individual chars — start hidden, GSAP animates in */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  will-change: transform, opacity;
}

.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2vw, 1.0625rem);
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.04em;
  max-width: 480px;
  margin: 0 auto 3rem;
  opacity: 0;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.2s var(--ease-in-out) infinite;
}
.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  color: var(--muted);
  opacity: 0.6;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
}

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 6rem 0;
  background-color: var(--bg);
}

.section-header {
  margin-bottom: 3.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.service-card {
  background-color: var(--bg);
  transition: background-color var(--t-med);
}
.service-card:hover {
  background-color: rgba(201, 168, 76, 0.035);
}

.service-card__inner {
  padding: 2.75rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.service-card__icon {
  color: rgba(201, 168, 76, 0.5);
  transition: color var(--t-fast);
  flex-shrink: 0;
}
.service-card:hover .service-card__icon {
  color: var(--gold);
}

.service-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  transition: color var(--t-fast);
}
.service-card:hover .service-card__name {
  color: var(--gold);
}

.service-card__desc {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  flex: 1;
}

/* ============================================================
   WHY OBSIDIAN
============================================================ */
.why {
  padding: 4rem 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why__grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.why__stat {
  flex: 1;
  text-align: center;
  padding: 2rem 3rem;
}

.why__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 0.625rem;
}

.why__label {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
}

.why__divider {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.5), transparent);
  flex-shrink: 0;
}

/* ============================================================
   ABOUT
============================================================ */
.about {
  padding: 7rem 0;
  background-color: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: var(--text);
  position: sticky;
  top: 7rem;
}

.about__right {
  padding-top: 0.5rem;
}

.about__text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.about__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  margin-top: 1.25rem;
  transition: color var(--t-fast), opacity var(--t-fast);
  opacity: 0.85;
}
.about__instagram:hover {
  color: var(--gold-hover);
  opacity: 1;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  padding: 6rem 0;
  background-color: var(--surface);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: var(--border);
  gap: 1px;
  border: 1px solid var(--border);
}

.testimonial-card {
  background-color: var(--surface);
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border: 1px solid transparent;
  margin: -1px;
  transition: border-color var(--t-med),
              background-color var(--t-med);
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  background-color: rgba(201, 168, 76, 0.02);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
}

.testimonial-card__text {
  font-size: 0.875rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 245, 240, 0.75);
  line-height: 1.85;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}

.testimonial-card__vehicle {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  position: relative;
  padding: 7rem 0;
  background-color: var(--bg);
  overflow: hidden;
}

.cta-banner__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.cta-banner__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 76, 0.09) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 3.5rem;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 5rem 0 3rem;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__logo {
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  color: rgba(136, 136, 136, 0.7);
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.footer__nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  min-height: 44px;
  transition: color var(--t-fast);
}
.footer__nav a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: rgba(136, 136, 136, 0.45);
}

.footer__credit {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.75;
}

/* ============================================================
   SECTION SUB TEXT
============================================================ */
.section-sub {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 55ch;
  margin-top: 1.25rem;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.how-it-works {
  padding: 6rem 0;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
}

.steps {
  display: flex;
  align-items: flex-start;
  margin-top: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.875rem;
  line-height: 1;
}

.step__desc {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 22ch;
  margin: 0 auto;
}

.step__connector {
  width: 80px;
  flex-shrink: 0;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.5), rgba(201, 168, 76, 0.15));
  margin-top: 2rem; /* align with middle of step number */
  align-self: flex-start;
  position: relative;
}
.step__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: rgba(201, 168, 76, 0.5);
  border-radius: 50%;
}

/* ============================================================
   PRICING TEASER
============================================================ */
.pricing {
  padding: 6rem 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.pricing-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  transition: border-color var(--t-med);
}
.pricing-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
}

.pricing-card--featured {
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}
.pricing-card--featured:hover {
  border-color: var(--gold-hover);
}

.pricing-card__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  align-self: flex-start;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}

.pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pricing-card__list li {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}
.pricing-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(201, 168, 76, 0.45);
  font-size: 0.75rem;
}

.pricing__cta {
  text-align: center;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery {
  padding: 6rem 0;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-tile {
  background-color: #1a1a1a;
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 240px;
  text-align: center;
  padding: 2rem;
  cursor: pointer;
  transition: border-color var(--t-med),
              transform var(--t-med);
  will-change: transform;
}
.gallery-tile--tall {
  min-height: 320px;
}
.gallery-tile:hover {
  border-color: rgba(201, 168, 76, 0.55);
  transform: scale(1.02);
}

.gallery-tile__label {
  font-family: var(--font-display);
  font-size: 1.375rem;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.1;
}

.gallery-tile__sub {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  color: rgba(136, 136, 136, 0.5);
  text-transform: uppercase;
}

/* ============================================================
   FOCUS STYLES (accessibility)
============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE — 1024px (tablet landscape)
============================================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    gap: 5rem;
  }

  .about__heading {
    font-size: clamp(3rem, 8vw, 6rem);
  }

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

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

/* ============================================================
   RESPONSIVE — 768px (tablet portrait / large mobile)
============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero__content {
    padding: 8rem 1.5rem 4rem;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .btn {
    justify-content: center;
    width: 100%;
  }

  /* Services */
  .services {
    padding: 6rem 0;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Why */
  .why {
    padding: 3.5rem 0;
  }
  .why__grid {
    flex-direction: column;
    gap: 2.5rem;
  }
  .why__stat {
    padding: 1rem 2rem;
  }
  .why__divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.5), transparent);
  }

  /* How It Works */
  .how-it-works {
    padding: 5rem 0;
  }
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .step {
    padding: 0;
    width: 100%;
    max-width: 360px;
  }
  .step__connector {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.5), rgba(201, 168, 76, 0.1));
    align-self: center;
  }
  .step__connector::after {
    display: none;
  }

  /* Pricing */
  .pricing {
    padding: 5rem 0;
  }
  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .pricing-card--featured {
    transform: none;
  }

  /* Gallery */
  .gallery {
    padding: 5rem 0;
  }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About */
  .about {
    padding: 5rem 0;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__heading {
    position: static;
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .about__text {
    max-width: 100%;
  }

  /* Testimonials */
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta-banner {
    padding: 7rem 0;
  }

  /* Footer */
  .footer__top {
    flex-direction: column;
    gap: 2.5rem;
  }
  .footer__nav {
    gap: 1.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* ============================================================
   RESPONSIVE — 480px (small mobile)
============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  #nav {
    padding: 1.25rem 1.25rem;
  }
  #nav.scrolled {
    padding: 0.875rem 1.25rem;
  }

  .services {
    padding: 4rem 0;
  }
  .service-card__inner {
    padding: 2rem 1.5rem;
  }

  .why {
    padding: 3rem 0;
  }

  .how-it-works {
    padding: 4rem 0;
  }

  .pricing {
    padding: 4rem 0;
  }
  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .about {
    padding: 4.5rem 0;
  }

  .testimonials {
    padding: 4rem 0;
  }
  .testimonial-card {
    padding: 2rem 1.5rem;
  }

  .gallery {
    padding: 4rem 0;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 5rem 0;
  }

  .footer {
    padding: 4rem 0 2.5rem;
  }
}

/* ============================================================
   PRINT (strip animations, show everything)
============================================================ */
@media print {
  .noise,
  .hero__scroll-hint,
  .hamburger,
  .mobile-menu {
    display: none !important;
  }
  .hero__eyebrow,
  .hero__sub,
  .hero__ctas,
  .char {
    opacity: 1 !important;
    transform: none !important;
  }
  body {
    background: white;
    color: black;
  }
}
