/* ==========================================================================
   Moore Detailing — Midnight & Steel design system
   Palette: Navy Black #0F1B2A · Steel Blue #1C3A5E · Brushed Gold #C8A24B · Off-White #E8EAED
   ========================================================================== */

:root {
  --navy: #0F1B2A;
  --navy-deep: #0A1320;
  --steel: #1C3A5E;
  --steel-soft: rgba(28, 58, 94, 0.45);
  --gold: #C8A24B;
  --gold-bright: #E3BC62;
  --off: #E8EAED;
  --muted: rgba(232, 234, 237, 0.62);
  --hairline: rgba(200, 162, 75, 0.28);
  --card-line: rgba(232, 234, 237, 0.08);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--off);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.container { width: min(1140px, 92%); margin: 0 auto; }

::selection { background: var(--gold); color: var(--navy); }

/* --------------------------------------------------------------------------
   Intro overlay (home page only)
   -------------------------------------------------------------------------- */

.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: transform 0.9s var(--ease-out), opacity 0.9s var(--ease-out);
}

.intro.done { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.intro.skip { display: none; }

.intro__logo {
  width: min(580px, 88vw);
  opacity: 0;
  filter: blur(14px);
  transform: scale(1.08);
  animation: introLogo 1.1s var(--ease-out) 0.35s forwards;
}

.intro__tag {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(16px);
  animation: introTag 0.8s var(--ease-out) 1.25s forwards;
}

@keyframes introLogo { to { opacity: 1; filter: blur(0); transform: scale(1); } }
@keyframes introTag  { to { opacity: 1; transform: translateY(0); } }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(10, 19, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline);
}

.header__inner {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__brand { display: flex; align-items: center; gap: 12px; }
.header__brand img { height: 52px; width: 52px; object-fit: cover; border-radius: 8px; }
.header__brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.header__brand span em { font-style: normal; color: var(--gold); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav a:hover, .nav a.active { color: var(--off); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.nav .btn { margin-left: 8px; }
.nav a.btn--gold { color: var(--navy); }
.nav a.btn--gold:hover, .nav a.btn--gold.active { color: var(--navy); }
.nav a.btn--gold::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--off);
  margin: 5px auto;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 162, 75, 0.25);
}

.btn--ghost { background: transparent; color: var(--gold); }
.btn--ghost:hover { background: rgba(200, 162, 75, 0.1); transform: translateY(-2px); }

.btn--sm { padding: 10px 20px; font-size: 0.78rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-h) + 40px) 0 80px;
  background:
    radial-gradient(ellipse 80% 55% at 70% 18%, rgba(28, 58, 94, 0.55), transparent 65%),
    radial-gradient(ellipse 55% 40% at 15% 85%, rgba(200, 162, 75, 0.07), transparent 60%),
    var(--navy-deep);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232,234,237,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(232,234,237,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent 75%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.hero__eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold); }

.hero h1 {
  font-size: clamp(2.6rem, 7.5vw, 5rem);
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--gold); }

.hero__sub {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  max-width: 52ch;
  margin-bottom: 40px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Page hero (interior pages) */
.page-hero {
  padding: calc(var(--header-h) + 90px) 0 70px;
  background:
    radial-gradient(ellipse 75% 90% at 75% 0%, rgba(28, 58, 94, 0.5), transparent 65%),
    var(--navy-deep);
  border-bottom: 1px solid var(--card-line);
}
.page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); margin: 14px 0 16px; }
.page-hero p { color: var(--muted); max-width: 62ch; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: 96px 0; position: relative; }
.section--steel {
  background: linear-gradient(180deg, rgba(28, 58, 94, 0.28), rgba(28, 58, 94, 0.08));
  border-top: 1px solid var(--card-line);
  border-bottom: 1px solid var(--card-line);
}

.section-head { margin-bottom: 56px; max-width: 640px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold); }

.section-head h2 { font-size: clamp(1.9rem, 4.5vw, 2.8rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); }

/* --------------------------------------------------------------------------
   Marquee strip
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  background: var(--navy-deep);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.marquee__track span::after { content: "◆"; color: var(--gold); font-size: 0.55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

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

.card {
  background: linear-gradient(160deg, rgba(28, 58, 94, 0.32), rgba(15, 27, 42, 0.6));
  border: 1px solid var(--card-line);
  border-radius: 10px;
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--hairline);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover::before { opacity: 1; }

.card__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 18px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card .card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.card .card__link::after { content: "→"; transition: transform 0.3s var(--ease-out); }
.card:hover .card__link::after { transform: translateX(5px); }

/* Value props */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prop {
  padding: 30px 26px;
  border-left: 1px solid var(--hairline);
}
.prop__icon { font-size: 1.6rem; color: var(--gold); margin-bottom: 16px; display: block; }
.prop h3 { font-size: 1.12rem; margin-bottom: 10px; }
.prop p { color: var(--muted); font-size: 0.93rem; }

/* --------------------------------------------------------------------------
   Services page
   -------------------------------------------------------------------------- */

.pkg {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--card-line);
}
.pkg:first-child { border-top: 1px solid var(--card-line); }
.pkg__name h3 { font-size: 1.35rem; margin-bottom: 6px; }
.pkg__name .tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--hairline);
  border-radius: 99px;
  padding: 4px 12px;
  margin-top: 8px;
}
.pkg__body p { color: var(--muted); margin-bottom: 14px; }
.pkg__body ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.pkg__body li {
  color: var(--muted);
  font-size: 0.92rem;
  padding-left: 22px;
  position: relative;
}
.pkg__body li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 4px;
}
.pkg__cta { align-self: center; }

/* Add-on chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  border: 1px solid var(--card-line);
  border-radius: 99px;
  padding: 12px 22px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.chip:hover { border-color: var(--gold); color: var(--off); }

/* Values row (About page) */
.values-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.values-row span {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(200, 162, 75, 0.07);
  padding: 20px 8px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.72rem, 1.15vw, 0.98rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Service area cards (Contact page) */
.area-code {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}
.area-cities { color: var(--muted); font-size: 0.95rem; line-height: 1.9; }

/* Protection tiers */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tier {
  background: linear-gradient(160deg, rgba(28, 58, 94, 0.32), rgba(15, 27, 42, 0.6));
  border: 1px solid var(--card-line);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.4s var(--ease-out), border-color 0.4s ease;
}
.tier:hover { transform: translateY(-6px); }
.tier--featured { border-color: var(--gold); position: relative; }
.tier--featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.tier h3 { font-size: 1.2rem; }
.tier .tier__price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold);
}
.tier p { color: var(--muted); font-size: 0.92rem; flex-grow: 1; }
.tier .tag-soon {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  border: 1px solid var(--card-line);
  background: linear-gradient(150deg, var(--steel-soft), rgba(15, 27, 42, 0.85));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.gallery-item:hover { border-color: var(--hairline); }
.gallery-item span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.gallery-item .ph-icon { font-size: 1.8rem; color: var(--gold); opacity: 0.7; }

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: start; }
.about-copy p { color: var(--muted); margin-bottom: 20px; }
.about-copy p strong { color: var(--off); }

.about-side { display: flex; flex-direction: column; gap: 22px; position: sticky; top: calc(var(--header-h) + 30px); }
.side-card {
  background: linear-gradient(160deg, rgba(28, 58, 94, 0.32), rgba(15, 27, 42, 0.6));
  border: 1px solid var(--card-line);
  border-radius: 10px;
  padding: 28px;
}
.side-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.side-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 16px; }
.side-card .btn { width: 100%; }

.stat-row { display: flex; gap: 40px; margin: 34px 0; flex-wrap: wrap; }
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
}
.stat span { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: linear-gradient(160deg, rgba(28, 58, 94, 0.32), rgba(15, 27, 42, 0.6));
  border: 1px solid var(--card-line);
  border-radius: 10px;
  padding: 30px 26px;
}
.quote .stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 14px; font-size: 0.85rem; }
.quote p { color: var(--muted); font-size: 0.95rem; font-style: italic; margin-bottom: 16px; }
.quote cite { font-style: normal; font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.1em; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  text-align: center;
  padding: 110px 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(200, 162, 75, 0.1), transparent 70%),
    var(--navy-deep);
  border-top: 1px solid var(--hairline);
}
.cta-band h2 { font-size: clamp(2rem, 5.5vw, 3.2rem); margin-bottom: 18px; }
.cta-band h2 em { font-style: normal; color: var(--gold); }
.cta-band p { color: var(--muted); margin-bottom: 36px; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }

.contact-info h2 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info > p { color: var(--muted); margin-bottom: 30px; }
.contact-lines { display: flex; flex-direction: column; gap: 18px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--card-line);
  border-radius: 10px;
  transition: border-color 0.3s ease;
}
.contact-line:hover { border-color: var(--hairline); }
.contact-line .ico { color: var(--gold); font-size: 1.2rem; width: 24px; text-align: center; }
.contact-line b { display: block; font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.contact-line span { font-size: 0.98rem; }

.form {
  background: linear-gradient(160deg, rgba(28, 58, 94, 0.32), rgba(15, 27, 42, 0.6));
  border: 1px solid var(--card-line);
  border-radius: 12px;
  padding: 40px 34px;
  display: grid;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(10, 19, 32, 0.6);
  border: 1px solid var(--card-line);
  border-radius: 6px;
  color: var(--off);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 15px;
  transition: border-color 0.3s ease;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Contact preference pills */
.radio-row { display: flex; gap: 12px; }
.radio-pill { flex: 1; cursor: pointer; position: relative; }
.radio-pill input { position: absolute; opacity: 0; pointer-events: none; }
.radio-pill span {
  display: block;
  text-align: center;
  padding: 13px 15px;
  border: 1px solid var(--card-line);
  border-radius: 6px;
  background: rgba(10, 19, 32, 0.6);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.radio-pill:hover span { border-color: var(--hairline); }
.radio-pill input:checked + span {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 162, 75, 0.09);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.footer {
  border-top: 1px solid var(--card-line);
  background: var(--navy-deep);
  padding: 70px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 50px;
}
.footer__brand img { height: 76px; width: 76px; object-fit: cover; border-radius: 10px; margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: 0.92rem; max-width: 32ch; }
.footer__tag {
  font-family: var(--font-display);
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 16px;
}
.footer h4 { font-size: 0.82rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--off); font-size: 0.94rem; transition: color 0.25s ease; }
.footer ul a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--card-line);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
}
.footer__bottom a { color: var(--gold); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .grid--3, .props, .tiers, .quotes, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-side { position: static; }
  .pkg { grid-template-columns: 1fr; gap: 16px; }
  .pkg__cta { justify-self: start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .grid--3, .grid--2, .props, .tiers, .quotes, .gallery-grid { grid-template-columns: 1fr; }
  .pkg__body ul { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .prop { border-left: none; border-top: 1px solid var(--hairline); padding: 26px 4px; }
  .hero__scroll { display: none; }
  .values-row { grid-template-columns: 1fr; }
  .values-row span { padding: 14px 8px; font-size: 0.85rem; }

  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: rgba(10, 19, 32, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.05rem; }
  .nav .btn { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .intro { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  .hero__scroll::after { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
