/* ============================================================
   GRAND RAPIDS AUTO SPA LLC — Premium Website Styles
   ============================================================ */

/* ── 1. Custom Properties ── */
:root {
  --bg:          #07070a;
  --surface-1:   #0d0d12;
  --surface-2:   #13131a;
  --surface-3:   #1a1a24;
  --surface-4:   #21212e;

  --border:      rgba(180, 180, 210, 0.10);
  --border-mid:  rgba(180, 180, 210, 0.18);
  --border-hi:   rgba(180, 180, 210, 0.32);

  --chrome-hi:   #f0f0f8;
  --chrome:      #c0c0d0;
  --chrome-mid:  #888898;
  --chrome-lo:   #4a4a60;

  --text:        #e0e0ec;
  --text-muted:  #8080a0;
  --text-dim:    #404058;

  --red:         #c81818;
  --red-bright:  #e82020;
  --red-lo:      #8a0f0f;
  --red-glow:    rgba(200, 24, 24, 0.40);
  --red-glow-lo: rgba(200, 24, 24, 0.15);

  --gold:        #c8941a;
  --gold-light:  #e8aa28;

  --blue-accent: #1a5fd4;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-label:   'Rajdhani', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', 'Arial', sans-serif;

  --nav-h:     72px;
  --section-y: clamp(5rem, 8vw, 8rem);
  --container: min(1340px, 92vw);

  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-back:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

@property --beam-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── 3. Typography ── */
.font-display { font-family: var(--font-display); }
.font-label   { font-family: var(--font-label); }

.chrome-text {
  display: inline-block;
  background: linear-gradient(160deg,
    #ffffff  0%,
    #dcdcec  22%,
    #a0a0b8  50%,
    #d0d0e0  75%,
    #ffffff  100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.red-text { color: var(--red-bright); }
.gold-text { color: var(--gold); }
.muted-text { color: var(--text-muted); }

/* ── 4. Layout ── */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--red-bright);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: 0.02em;
  color: var(--chrome-hi);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.7;
}

/* angular section-break accent */
.slash-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--red-lo) 20%,
    var(--red) 50%,
    var(--red-lo) 80%,
    transparent 100%
  );
  margin: 0;
  position: relative;
}
.slash-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--red-bright);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ── 5. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: skewX(-10deg);
  transition: transform 0.25s var(--ease-expo),
              box-shadow 0.25s var(--ease-expo),
              background 0.2s;
  white-space: nowrap;
}
.btn > span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: skewX(10deg);
}
.btn:hover  { transform: skewX(-10deg) translateY(-2px); }
.btn:active { transform: skewX(-10deg) translateY(0px);  }

.btn-primary {
  background: var(--red);
  color: #fff;
  font-size: 0.82rem;
}
.btn-primary > span { padding: 0.78rem 1.8rem; }
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 4px 28px var(--red-glow), 0 2px 12px rgba(0,0,0,0.4);
}

.btn-chrome {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  color: var(--chrome);
  font-size: 0.82rem;
  border: 1px solid var(--border-mid);
}
.btn-chrome > span { padding: 0.74rem 1.75rem; }
.btn-chrome:hover {
  border-color: var(--border-hi);
  background: rgba(255,255,255,0.06);
  color: var(--chrome-hi);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.btn-lg > span { padding: 0.95rem 2.4rem !important; font-size: 0.9rem; }

.btn-sm > span { padding: 0.55rem 1.3rem !important; font-size: 0.78rem; }

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  transform: none;
}
.btn-icon:hover { transform: translateY(-2px); }
.btn-icon > span { padding: 0; transform: none; }

/* ── 6. Navigation ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-expo),
              border-color 0.4s var(--ease-expo),
              backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(7, 7, 10, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  width: var(--container);
  margin-inline: auto;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  padding: 0.5rem 0.9rem;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--red-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-expo);
}
.nav-links a:hover { color: var(--chrome-hi); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 1.5rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4rem;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--chrome);
  border-radius: 1px;
  transition: all 0.3s var(--ease-expo);
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. Mobile Menu ── */
#mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(7, 7, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 850;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-expo);
  border-top: 1px solid var(--border);
}
#mobile-menu.open { transform: translateX(0); }

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 2rem 0;
}
.mobile-menu-links a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.8rem);
  letter-spacing: 0.05em;
  color: var(--chrome-mid);
  padding: 0.6rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-links a:first-child { border-top: 1px solid var(--border); }
.mobile-menu-links a:hover {
  color: var(--chrome-hi);
  background: rgba(200, 24, 24, 0.06);
}
.mobile-menu-cta { margin-top: 2rem; }

/* ── 8. Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/gallery/gmc/gmc-1.jpg') center 35% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s linear;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(7,7,10,0.97) 0%, rgba(7,7,10,0.80) 42%, rgba(7,7,10,0.30) 72%, rgba(7,7,10,0.15) 100%),
    linear-gradient(to top,    rgba(7,7,10,0.92) 0%, transparent 30%),
    linear-gradient(to bottom, rgba(7,7,10,0.60) 0%, transparent 20%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}

/* subtle red light on the right side */
.hero-glow {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50vw;
  height: 70vh;
  background: radial-gradient(ellipse at center, rgba(200,24,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 6rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(-24px);
  animation: revealX 0.8s var(--ease-expo) 0.3s forwards;
}
.hero-eyebrow-line {
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--red-bright), var(--red-lo));
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(32px);
}
.hero-line:nth-child(1) { animation: revealY 0.8s var(--ease-expo) 0.55s forwards; }
.hero-line:nth-child(2) {
  animation: revealY 0.8s var(--ease-expo) 0.70s forwards;
  margin-left: 0.05em;
}

.hero-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  max-width: 44ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: revealY 0.8s var(--ease-expo) 0.9s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: revealY 0.8s var(--ease-expo) 1.05s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: revealY 0.8s var(--ease-expo) 1.2s forwards;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--chrome-hi);
}
.hero-stat-label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border-mid);
  flex-shrink: 0;
}

.hero-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-lo);
  z-index: 2;
  opacity: 0;
  animation: revealY 0.8s var(--ease-expo) 1.5s forwards;
  transition: color 0.2s;
}
.hero-scroll-cue:hover { color: var(--chrome-mid); }
.scroll-arrow {
  width: 20px;
  height: 20px;
  animation: bounce 2s ease-in-out infinite;
}

/* race stripe accent below hero headline */
.hero-stripe {
  display: block;
  width: clamp(120px, 20vw, 220px);
  height: 3px;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--red-bright) 0%, var(--red-lo) 60%, transparent 100%);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: stripeIn 0.7s var(--ease-expo) 0.85s forwards;
}

/* ── 9. About ── */
.about {
  background: var(--surface-1);
  padding: var(--section-y) 0;
}

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

.about-copy .section-heading { margin-bottom: 1.25rem; }
.about-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-copy p:last-of-type { margin-bottom: 2rem; }

.about-tagline {
  font-family: var(--font-label);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--chrome);
  border-left: 3px solid var(--red);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.pillar {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--red);
  transition: height 0.4s var(--ease-expo);
}
.pillar:hover { border-color: var(--border-hi); background: var(--surface-3); }
.pillar:hover::before { height: 100%; }

.pillar-icon {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  display: block;
}
.pillar-title {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 0.35rem;
}
.pillar-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.stat-panel::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red), transparent);
}

.stat-number-big {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}
.stat-number-big.counting { color: var(--red-bright); }
.stat-desc {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-image {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: brightness(0.9);
  transition: filter 0.4s, transform 0.6s var(--ease-expo);
}
.about-image:hover img { filter: brightness(1); transform: scale(1.02); }

/* ── 10. Packages ── */
.packages {
  background: var(--bg);
  padding: var(--section-y) 0;
}

.packages-header {
  text-align: center;
  margin-bottom: 3rem;
}
.packages-header .section-label { justify-content: center; }
.packages-header .section-label::before { display: none; }
.packages-header .section-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--red-bright);
}

.pkg-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  width: fit-content;
  margin-inline: auto;
  overflow: hidden;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.pkg-tab {
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  color: var(--chrome-mid);
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: color 0.3s, background 0.3s;
}
.pkg-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red-bright);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-expo);
}
.pkg-tab.active {
  color: var(--chrome-hi);
  background: rgba(200, 24, 24, 0.06);
}
.pkg-tab.active::after { transform: scaleX(1); }
.pkg-tab:hover:not(.active) { color: var(--chrome); background: rgba(255,255,255,0.03); }

.pkg-panel { display: none; }
.pkg-panel.active { display: block; }

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

.pkg-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease-expo);
}
.pkg-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.pkg-card.pkg-featured {
  border-color: rgba(232, 32, 32, 0.55);
  background: var(--surface-3);
  isolation: isolate;
  box-shadow: inset 0 0 0 1px rgba(232, 32, 32, 0.12);
}
.pkg-card.pkg-featured:hover {
  border-color: var(--red);
  box-shadow: 0 16px 48px var(--red-glow-lo), 0 8px 24px rgba(0,0,0,0.5);
}
.pkg-card.pkg-beam::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 2px;
  pointer-events: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  background: conic-gradient(
    from var(--beam-angle),
    transparent 0deg,
    transparent 238deg,
    rgba(232, 32, 32, 0.18) 256deg,
    var(--red) 278deg,
    #ffeded 288deg,
    var(--red-bright) 298deg,
    rgba(232, 32, 32, 0.22) 318deg,
    transparent 338deg,
    transparent 360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: pkg-beam-spin 4.5s linear infinite;
}
.pkg-card.pkg-beam > * {
  position: relative;
  z-index: 1;
}

@keyframes pkg-beam-spin {
  to { --beam-angle: 360deg; }
}

.pkg-badge-wrap {
  padding: 1.5rem 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pkg-badge {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  transform: skewX(-8deg);
}
.pkg-badge > span { transform: skewX(8deg); display: block; }
.pkg-badge.platinum { background: linear-gradient(135deg, #9b8b55 0%, #e9dfb3 35%, #f7f3df 50%, #b9ad7a 100%); color: #050506; }
.pkg-badge.gold     { background: linear-gradient(135deg, #8d5b0c 0%, #e0ad33 42%, #f5d777 56%, #a76f12 100%); color: #050506; }
.pkg-badge.basic    { background: linear-gradient(135deg, #252532 0%, #3a3a4a 48%, #1b1b25 100%); color: var(--chrome); border: 1px solid var(--border-mid); }

.pkg-popular {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.pkg-body { padding: 1.25rem 1.75rem; flex: 1; }

.pkg-price {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.pkg-price-sub {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.pkg-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.pkg-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 1.25rem;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}
.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.pkg-feature-check {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  color: var(--red-bright);
}
.pkg-featured .pkg-feature { color: var(--text); }

.pkg-section-title {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  margin: 1rem 0 0.6rem;
}

.pkg-footer {
  padding: 0 1.75rem 1.75rem;
  margin-top: auto;
}
.pkg-footer .btn { width: 100%; justify-content: center; }

/* ── 11. Gallery ── */
.gallery {
  background: var(--surface-1);
  padding: var(--section-y) 0;
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gallery-filter-shell {
  margin-bottom: 2.5rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  background: transparent;
  color: var(--chrome-mid);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.filter-btn:hover { color: var(--chrome); border-color: var(--border-mid); }
.filter-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}


.gallery-grid {
  display: grid;
  gap: 2.25rem;
}

.gallery-group {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1200px) { .gallery-group { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 860px)  { .gallery-group { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.gallery-group-heading {
  display: none;
  grid-column: 1 / -1;
  align-items: center;
  gap: 0.8rem;
  margin: 1.5rem 0 0.15rem;
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chrome);
}
.gallery-group-heading:first-child {
  margin-top: 0;
}
.gallery-group-heading::before {
  content: '';
  width: 2.4rem;
  height: 1px;
  background: var(--red-bright);
}
.gallery[data-active-filter="all"] .gallery-group-heading {
  display: flex;
}
.gallery[data-active-filter="all"] .gallery-group:not(.gallery-group--videos) .gallery-group-heading + .gallery-item {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}
.gallery-group--videos .gallery-item,
.gallery[data-active-filter="video"] .gallery-item.is-video {
  aspect-ratio: 9 / 16;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface-3);
  aspect-ratio: 4 / 3;
  transition: border-color 0.3s, transform 0.4s var(--ease-expo);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.gallery-item:hover { border-color: var(--border-hi); transform: scale(1.015); }

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.88);
  transition: filter 0.4s, transform 0.6s var(--ease-expo);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.gallery-item:hover img { filter: brightness(1); transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,10,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-caption {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome);
}

/* video gallery cards */
.gallery-item.is-video .gallery-video-card {
  height: 100%;
  background: var(--surface-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.gallery-item.is-video .gallery-video-card::before {
  content: '';
  position: absolute;
  inset: -12px;
  z-index: 0;
  background: var(--video-thumb, var(--surface-3)) center / cover no-repeat;
  filter: blur(10px) brightness(0.48) saturate(0.9);
  transform: scale(1.06);
  pointer-events: none;
}
.gallery-item.is-video .gallery-video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(200, 24, 24, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.2), rgba(7, 7, 10, 0.68));
  pointer-events: none;
}
.gallery-item.is-video .video-badge,
.gallery-item.is-video .play-icon,
.gallery-item.is-video .video-label {
  position: relative;
  z-index: 1;
}
.play-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(200, 24, 24, 0.15);
  border: 1px solid var(--red-lo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.gallery-item:hover .play-icon {
  background: rgba(200, 24, 24, 0.35);
  border-color: var(--red);
}
.play-icon svg { width: 1.2rem; height: 1.2rem; color: var(--chrome); margin-left: 3px; }
.video-label {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.video-badge {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--red-lo);
  color: var(--chrome);
  padding: 0.2rem 0.6rem;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.gallery-item.hidden { display: none; }
.gallery-group.hidden { display: none; }

@media (max-width: 860px) {
  .gallery-filter-shell {
    position: sticky;
    top: calc(var(--nav-h) + 0.5rem);
    z-index: 60;
    margin-bottom: 1.25rem;
    padding: 0.65rem 0 0.75rem;
    overflow: hidden;
    background: rgba(13, 13, 18, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .gallery-filter-shell::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 3rem;
    background: linear-gradient(90deg, rgba(13, 13, 18, 0), rgba(13, 13, 18, 0.96) 72%);
    pointer-events: none;
  }
  .gallery-filter-shell::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0.95rem;
    z-index: 3;
    width: 0.48rem;
    height: 0.48rem;
    border-top: 2px solid var(--red-bright);
    border-right: 2px solid var(--red-bright);
    transform: translateY(-50%) rotate(45deg);
    animation: gallery-filter-cue 1.4s ease-in-out infinite;
    pointer-events: none;
  }
  .gallery-filters {
    flex-wrap: nowrap;
    width: 100%;
    min-width: 0;
    padding-right: 2.4rem;
    position: relative;
    z-index: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-btn {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .gallery-grid {
    display: grid;
    gap: 0.75rem;
  }
  .gallery-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .gallery[data-active-filter="all"] .gallery-group-heading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 1rem 0 0.1rem;
    font-family: var(--font-label);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--chrome);
  }
  .gallery[data-active-filter="all"] .gallery-group-heading:first-child {
    margin-top: 0;
  }
  .gallery[data-active-filter="all"] .gallery-group-heading::before {
    content: '';
    width: 1.75rem;
    height: 1px;
    background: var(--red-bright);
  }
  .gallery[data-active-filter="all"] .gallery-group:not(.gallery-group--videos) .gallery-group-heading + .gallery-item {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .gallery-item {
    break-inside: auto;
    margin-bottom: 0;
    aspect-ratio: 1 / 1;
  }
  .gallery-item img {
    height: 100%;
  }
  .gallery-item.is-video .gallery-video-card {
    height: 100%;
    aspect-ratio: auto;
    padding: 1rem;
    gap: 0.7rem;
  }
  .gallery-item.is-video .play-icon {
    width: 3rem;
    height: 3rem;
  }
  .gallery-item.is-video .video-label {
    width: 100%;
    font-size: 0.64rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
    overflow-wrap: normal;
  }
}

@keyframes gallery-filter-cue {
  0%, 100% {
    opacity: 0.45;
    right: 0.95rem;
  }
  50% {
    opacity: 1;
    right: 0.55rem;
  }
}

/* ── 12. Lightbox ── */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 4, 7, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-expo);
}
#lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: min(1200px, 95vw);
  max-height: 92vh;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.lightbox-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
}
.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: calc(92vh - 80px);
  object-fit: contain;
  border: 1px solid var(--border);
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0;
  flex-shrink: 0;
}
.lightbox-caption {
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome-mid);
}
.lightbox-counter {
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome-mid);
  background: var(--surface-3);
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}
.lightbox-close:hover { color: var(--chrome-hi); border-color: var(--border-hi); }
.lightbox-close svg { width: 1.1rem; height: 1.1rem; }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 13, 18, 0.75);
  border: 1px solid var(--border);
  color: var(--chrome-mid);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.lightbox-nav:hover { color: var(--chrome-hi); background: var(--surface-3); border-color: var(--border-hi); }
.lightbox-nav svg { width: 1.1rem; height: 1.1rem; }
.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }

/* ── 13. Reviews ── */
.reviews {
  background: var(--bg);
  padding: var(--section-y) 0;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.reviews-rating-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1rem 1.5rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.rating-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--chrome-hi);
}
.rating-info { display: flex; flex-direction: column; gap: 0.2rem; }
.rating-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; }
.rating-count {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}


/* Review cards — rendered dynamically by main.js via Google Places API */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
  transition: border-color 0.3s, background 0.3s;
}
.review-card:hover { border-color: var(--border-hi); background: var(--surface-3); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; right: 1rem;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(200, 24, 24, 0.08);
  pointer-events: none;
}
.review-stars { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.review-text  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--surface-4);
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem; color: var(--chrome-mid);
  flex-shrink: 0; overflow: hidden;
}
.review-name { font-family: var(--font-label); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; color: var(--chrome); }
.review-date { font-size: 0.75rem; color: var(--text-dim); }
.google-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-label); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted);
  margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border);
}
.google-g {
  width: 0.9rem; height: 0.9rem; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #4285f4, #ea4335, #fbbc05, #34a853);
}

/* Elfsight widget wrapper */
.elfsight-wrap {
  margin-bottom: 2.5rem;
  /* force dark background behind the widget while it loads */
  background: var(--surface-2);
  min-height: 120px;
}

/* Override Elfsight's white/light backgrounds to match the dark theme */
.elfsight-wrap .eapps-widget-toolbar,
.elfsight-wrap [class*="ReviewsWidget"],
.elfsight-wrap [class*="Card__"],
.elfsight-wrap [class*="review-card"] {
  background: var(--surface-2) !important;
  color: var(--text) !important;
}
/* Note: for best results, also set these in Elfsight's appearance settings:
   Background color  → #13131a
   Text color        → #e0e0ec
   Stars color       → #c8941a
   Font              → leave as default (sans-serif is fine)
   Layout            → Grid or Slider, 3 columns
*/

.reviews-cta {
  text-align: center;
  padding: 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.reviews-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* ── 14. Contact ── */
.contact {
  background: var(--surface-1);
  padding: var(--section-y) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-copy .section-heading { margin-bottom: 1rem; }
.contact-copy p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-detail-icon {
  width: 2.2rem;
  height: 2.2rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.contact-detail-icon svg { width: 0.9rem; height: 0.9rem; color: var(--red-bright); }
.contact-detail-text {
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--chrome-mid);
  line-height: 1.5;
}
.contact-detail-text small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.1rem;
}

/* Form */
.quote-form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2.5rem;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-grid .form-field.full,
.form-grid .form-submit { grid-column: 1 / -1; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chrome-mid);
}
.form-label .required { color: var(--red-bright); margin-left: 0.2rem; }

.form-input,
.form-select,
.form-textarea {
  background: var(--surface-3);
  border: 1px solid var(--border-mid);
  color: var(--text);
  font-size: 0.92rem;
  padding: 0.75rem 1rem;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red-lo);
  box-shadow: 0 0 0 3px rgba(200, 24, 24, 0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23606070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-select option { background: var(--surface-3); color: var(--text); }

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

.form-submit {
  margin-top: 0.5rem;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.success-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(200, 24, 24, 0.1);
  border: 1px solid var(--red-lo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.success-icon svg { width: 1.8rem; height: 1.8rem; color: var(--red-bright); }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--chrome-hi);
  margin-bottom: 0.75rem;
}
.form-success p { font-size: 0.95rem; color: var(--text-muted); }

/* ── 15. Social ── */
.social-section {
  background: var(--bg);
  padding: var(--section-y) 0;
}

.social-header {
  text-align: center;
  margin-bottom: 3rem;
}
.social-header .section-label { justify-content: center; }
.social-header .section-label::before { display: none; }
.social-header .section-label::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--red-bright);
}

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

.social-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  transition: border-color 0.35s, transform 0.35s var(--ease-expo), box-shadow 0.35s;
  text-decoration: none;
}
.social-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transition: opacity 0.3s;
}
.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hi);
}

/* TikTok */
.social-card.tiktok::before { background: linear-gradient(90deg, #010101, #69C9D0, #EE1D52); }
.social-card.tiktok:hover { box-shadow: 0 12px 40px rgba(105, 201, 208, 0.12); }
.social-card.tiktok .social-platform-color { color: #69C9D0; }

/* Instagram */
.social-card.instagram::before {
  background: linear-gradient(90deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}
.social-card.instagram:hover { box-shadow: 0 12px 40px rgba(200, 50, 130, 0.15); }
.social-card.instagram .social-platform-color { color: #C13584; }

/* Facebook */
.social-card.facebook::before { background: linear-gradient(90deg, #1877F2, #0a5cbf); }
.social-card.facebook:hover { box-shadow: 0 12px 40px rgba(24, 119, 242, 0.15); }
.social-card.facebook .social-platform-color { color: #1877F2; }

.social-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
}
.social-icon svg { width: 100%; height: 100%; }

.social-platform {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.social-handle {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--chrome-hi);
  margin-bottom: 0.75rem;
}
.social-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.social-follow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.social-follow svg { width: 0.9rem; height: 0.9rem; transition: transform 0.3s var(--ease-expo); }
.social-card:hover .social-follow { color: var(--chrome-hi); }
.social-card:hover .social-follow svg { transform: translate(3px, -3px); }

/* ── 16. Footer ── */
footer {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {}
.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 28ch;
}
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.footer-social-btn {
  width: 2.25rem;
  height: 2.25rem;
  background: var(--surface-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  color: var(--chrome-mid);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-btn:hover {
  color: var(--chrome-hi);
  border-color: var(--border-hi);
  background: var(--surface-4);
}
.footer-social-btn svg { width: 1rem; height: 1rem; }

.footer-col-title {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--chrome); }

.footer-info { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-info-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-info-item svg { width: 0.85rem; height: 0.85rem; color: var(--red-bright); margin-top: 0.18rem; flex-shrink: 0; }
.footer-info-item span { font-size: 0.87rem; color: var(--text-muted); line-height: 1.5; }

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-muted); }

/* ── 17. Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── 18. Keyframe Animations ── */
@keyframes revealY {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes revealX {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes stripeIn {
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50%       { box-shadow: 0 0 24px 4px var(--red-glow-lo); }
}

.pulse-red { animation: pulse-red 2.5s ease-in-out infinite; }

/* ── 19. Responsive Overrides ── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-panel { flex: 1; min-width: 160px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .lightbox-prev { left: -3rem; }
  .lightbox-next { right: -3rem; }
}

@media (max-width: 900px) {
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .social-grid .social-card:last-child { grid-column: 1 / -1; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 640px) {
  :root { --section-y: 4rem; }
  .social-grid { grid-template-columns: 1fr; }
  .social-grid .social-card:last-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .form-field.full { grid-column: auto; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-nav { width: 2.5rem; height: 4rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .pkg-tabs { flex-direction: column; width: 100%; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
}

/* ── 20. Utility ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
