/* ============================================================
   STILL DRIVEN AUTO DETAIL — Main Stylesheet
   Fonts: Satoshi (display) + General Sans (body) via Fontshare
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors */
  --navy:          #1A1F2E;
  --navy-deep:     #0F131C;
  --navy-mid:      #242938;
  --navy-border:   #2E3447;
  /* Chartreuse — used on dark/navy backgrounds */
  --gold:          #DFFF00;
  --gold-light:    #EEFF55;
  --gold-dim:      rgba(223,255,0,0.15);
  --gold-dim2:     rgba(223,255,0,0.08);
  /* Gold — used on light backgrounds */
  --gold-on-light:       #B8922A;
  --gold-light-on-light: #D4A940;
  --gold-dim-on-light:   rgba(184,146,42,0.15);
  --gold-dim2-on-light:  rgba(184,146,42,0.08);

  /* Light Mode Surfaces */
  --color-bg:      #F5F4F0;
  --color-surface: #FAFAF7;
  --color-white:   #FFFFFF;
  --color-border:  #E2E0DA;
  --color-divider: #D0CEC7;

  /* Text */
  --color-text:       #28251D;
  --color-text-muted: #6B6860;
  --color-text-faint: #B8B6B0;

  /* Typography */
  --font-display: 'Satoshi', 'Helvetica Neue', sans-serif;
  --font-body:    'General Sans', 'Helvetica Neue', sans-serif;

  /* Type Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --sp-1:  0.25rem;  --sp-2:  0.5rem;   --sp-3:  0.75rem;
  --sp-4:  1rem;     --sp-5:  1.25rem;  --sp-6:  1.5rem;
  --sp-8:  2rem;     --sp-10: 2.5rem;   --sp-12: 3rem;
  --sp-16: 4rem;     --sp-20: 5rem;     --sp-24: 6rem;
  --sp-32: 8rem;

  /* Layout */
  --content-narrow:  680px;
  --content-default: 960px;
  --content-wide:   1200px;

  /* Misc */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --transition: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--sp-20);
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
h1, h2, h3, h4, h5 { text-wrap: balance; line-height: 1.15; }
p, li { text-wrap: pretty; max-width: 72ch; }
a { color: inherit; text-decoration: none; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--gold-dim); color: var(--color-text); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--radius-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-5), 5vw, var(--sp-12));
}
.container--narrow { max-width: var(--content-narrow); }
.container--default { max-width: var(--content-default); }

.section-pad { padding-block: clamp(var(--sp-12), 8vw, var(--sp-24)); }
.section-pad-sm { padding-block: clamp(var(--sp-8), 5vw, var(--sp-16)); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border-width: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(223,255,0,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-dark {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}
.btn-outline-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }

/* ---------- Labels ---------- */
.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: var(--sp-2);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition),
              padding var(--transition);
  padding-block: var(--sp-5);
}
.nav.scrolled {
  background: rgba(15, 19, 28, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
  padding-block: var(--sp-3);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}
/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--color-white);
  flex-shrink: 0;
}
.nav__logo-mark svg { width: 36px; height: 36px; }
.nav__logo-img { height: 52px; width: auto; display: block; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.nav__logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--color-white); }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }

.nav__cta { margin-left: var(--sp-2); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  color: var(--color-white);
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99;
  padding-top: 5rem;
  padding-inline: var(--sp-8);
  flex-direction: column;
  gap: var(--sp-1);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-white);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--navy-border);
  transition: color var(--transition), padding-left var(--transition);
}
.nav__mobile a:hover { color: var(--gold); padding-left: var(--sp-3); }
.nav__mobile .btn { margin-top: var(--sp-6); align-self: flex-start; color: var(--navy) !important; }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ============================================================
   HERO (full-viewport dark)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,13,20,0.92) 0%,
    rgba(10,13,20,0.6) 55%,
    rgba(10,13,20,0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(var(--sp-24), 14vw, var(--sp-32));
  max-width: 680px;
}
.hero__label { margin-bottom: var(--sp-5); }
.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.07;
  margin-bottom: var(--sp-5);
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--sp-8);
  max-width: 52ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
/* Gold scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.4);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(184,146,42,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Page hero (interior pages — shorter) */
.page-hero {
  position: relative;
  background: var(--navy);
  padding-block: clamp(var(--sp-16), 10vw, var(--sp-24));
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 340px;
  padding-top: calc(var(--sp-16) + 60px);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184,146,42,0.08) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero__label { margin-bottom: var(--sp-4); }
.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}
.page-hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-base);
  max-width: 52ch;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  border-bottom: 1px solid var(--navy-border);
  padding-block: var(--sp-4);
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-8);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  white-space: nowrap;
}
.trust-item__icon {
  color: var(--gold);
  font-size: var(--text-base);
}
.trust-sep {
  color: var(--navy-border);
  font-size: var(--text-sm);
}
@media (max-width: 600px) {
  .trust-sep { display: none; }
  .trust-strip__inner { gap: var(--sp-3) var(--sp-5); }
}

/* ============================================================
   SERVICES OVERVIEW (Home)
   ============================================================ */
.services-overview {
  background: var(--color-bg);
}
.section-header { margin-bottom: clamp(var(--sp-8), 4vw, var(--sp-12)); }
.section-header .label { margin-bottom: var(--sp-3); }
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
}
.section-sub {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  margin-top: var(--sp-3);
  max-width: 52ch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-5);
}
.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim2);
  border-radius: var(--radius-md);
  color: var(--gold);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}
.service-card__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: auto;
  transition: gap var(--transition);
}
.service-card__link:hover { gap: var(--sp-2); }

/* ============================================================
   VALUE PROPS
   ============================================================ */
.value-props { background: var(--navy); }
.value-props .section-title { color: var(--color-white); }
.value-props .section-sub { color: rgba(255,255,255,0.55); }
.value-props .label { color: var(--gold); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-5);
  margin-top: clamp(var(--sp-8), 4vw, var(--sp-12));
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: border-color var(--transition), background var(--transition);
}
.value-card:hover {
  border-color: rgba(184,146,42,0.3);
  background: rgba(255,255,255,0.06);
}
.value-card__num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: var(--sp-3);
  -webkit-text-stroke: 1px rgba(184,146,42,0.3);
  color: transparent;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}
.value-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ============================================================
   BEFORE/AFTER SLIDER
   ============================================================ */
.ba-section { background: var(--color-bg); }
.ba-section .section-header { text-align: center; }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-6);
}
.ba-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .ba-before { clip-path: inset(0 50% 0 0); }
.ba-slider .ba-after  { clip-path: none; }

.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  pointer-events: none;
}
.ba-label {
  position: absolute;
  bottom: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  pointer-events: none;
}
.ba-label--before { left: var(--sp-3); }
.ba-label--after  { right: var(--sp-3); }

.ba-info {
  background: var(--color-white);
  border-top: 3px solid var(--gold);
  padding: var(--sp-4) var(--sp-5);
}
.ba-info__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--sp-1);
}
.ba-info__service {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--color-surface); }
.testimonials .section-header { text-align: center; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-5);
}
.testimonial-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.testimonial-stars { color: var(--gold); font-size: var(--text-base); letter-spacing: 2px; }
.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
}
.testimonial-vehicle {
  font-size: var(--text-xs);
  color: var(--gold);
  margin-top: var(--sp-1);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
/* ── Instagram Section ── */
.instagram-section { background: var(--navy); }
.instagram-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: clamp(var(--sp-8), 6vw, var(--sp-16)) 0;
}
.instagram-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-dim2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.instagram-text { flex: 1; }
.instagram-section .label { color: var(--gold); margin-bottom: var(--sp-2); }
.instagram-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-3);
}
.instagram-sub {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-base);
  max-width: 480px;
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}
.instagram-btn { display: inline-flex; }
@media (max-width: 600px) {
  .instagram-inner { flex-direction: column; text-align: center; }
  .instagram-sub { margin-inline: auto; }
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(184,146,42,0.12) 0%, transparent 60%);
}
.cta-banner__inner { position: relative; z-index: 2; }
.cta-banner__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--sp-3);
}
.cta-banner__sub {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-base);
  margin-bottom: var(--sp-8);
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list { background: var(--color-bg); }

.service-block {
  border-bottom: 1px solid var(--color-border);
  padding-block: clamp(var(--sp-10), 6vw, var(--sp-16));
}
.service-block:last-child { border-bottom: none; }

.service-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  align-items: center;
}
.service-block__grid.reverse { direction: rtl; }
.service-block__grid.reverse > * { direction: ltr; }

.service-block__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-3);
  background: var(--gold-dim-on-light);
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-on-light);
  margin-bottom: var(--sp-4);
}
.service-block__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--sp-4);
}
.service-block__desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}
.service-includes {
  margin-bottom: var(--sp-5);
}
.service-includes h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-3);
}
.service-includes ul { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--color-text);
}
.service-includes li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23B8922A' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 2px;
}
.service-block__price {
  display: inline-flex;
  align-items: baseline;
  gap: var(--sp-1);
  padding: var(--sp-3) var(--sp-5);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-5);
}
.service-block__price-from {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}
.service-block__price-amount {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
}
.service-block__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.service-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-block:hover .service-block__img img { transform: scale(1.03); }

.service-note {
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--gold-dim2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

/* FAQ */
.faq-section { background: var(--color-surface); }
.faq-section .section-header { text-align: center; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border: 1.5px solid var(--color-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-bottom: var(--sp-5);
}

@media (max-width: 768px) {
  .service-block__grid,
  .service-block__grid.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .service-block__img { order: -1; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--color-bg); }
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-8), 6vw, var(--sp-20));
  align-items: center;
}
.about-story__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.about-story__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-story__img-accent {
  position: absolute;
  bottom: var(--sp-5);
  right: calc(-1 * var(--sp-5));
  background: var(--gold);
  color: var(--navy);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.4;
}
.about-story__content .label { margin-bottom: var(--sp-4); }
.about-story__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.about-story__body {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.about-story__verse {
  margin-top: var(--sp-2);
  padding: var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--gold);
  font-style: italic;
  color: var(--color-text);
  font-size: var(--text-sm);
}
.about-story__verse cite {
  display: block;
  margin-top: var(--sp-1);
  font-style: normal;
  font-size: var(--text-xs);
  color: var(--gold);
  font-weight: 600;
}

@media (max-width: 768px) {
  .about-story__grid { grid-template-columns: 1fr; }
  .about-story__img { aspect-ratio: 4/3; }
  .about-story__img-accent { right: var(--sp-3); }
}

/* Values */
.about-values { background: var(--navy); }
.about-values .section-title { color: var(--color-white); }
.about-values .label { color: var(--gold); }
.about-values .section-sub { color: rgba(255,255,255,0.55); }

/* Stats */
.about-stats { background: var(--color-surface); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--sp-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.stat-item {
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  border-right: 1px solid var(--color-border);
  background: var(--color-white);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat-num span { color: var(--gold); }
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--color-border); }
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters { background: var(--color-bg); padding-block: var(--sp-6); border-bottom: 1px solid var(--color-border); }
.filter-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.filter-btn {
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--transition);
  background: transparent;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--color-white);
}
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.gallery-ba { background: var(--color-bg); }
.gallery-ba .section-header { text-align: center; }

.gallery-grid-section { background: var(--color-surface); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,13,20,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: white;
  font-weight: 600;
}
.gallery-item.span-2 { grid-column: span 2; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.span-2 { grid-column: span 1; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--color-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  align-items: start;
}
.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--sp-6), 4vw, var(--sp-10));
}
.form-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}
.form-sub {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--sp-6);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-group { display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.form-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-label span { color: var(--gold); }
.form-input, .form-select, .form-textarea {
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,0.12);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; margin-top: var(--sp-2); justify-content: center; }
.form-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  text-align: center;
  margin-top: var(--sp-3);
}

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  color: white;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-5);
}
.contact-info-items { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}
.contact-info-item__icon {
  width: 36px; height: 36px;
  background: rgba(184,146,42,0.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-info-item__icon svg { width: 16px; height: 16px; }
.contact-info-item__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}
.contact-info-item__value {
  font-size: var(--text-sm);
  color: white;
  font-weight: 500;
}
.contact-social { display: flex; gap: var(--sp-3); margin-top: var(--sp-5); }
.social-link {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.social-link svg { width: 16px; height: 16px; }
.response-note {
  background: var(--gold-dim2);
  border: 1px solid rgba(184,146,42,0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}
.response-note strong { color: var(--color-text); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--navy-border);
  padding-block: clamp(var(--sp-10), 6vw, var(--sp-16));
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16));
  margin-bottom: clamp(var(--sp-8), 4vw, var(--sp-12));
}
.footer__brand .nav__logo { margin-bottom: var(--sp-4); }
.footer__brand .nav__logo-name { font-size: 1.1rem; }
.footer__brand .nav__logo-img { height: 54px; }
.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: var(--sp-5);
}
.footer__col-title {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--color-white); }
.footer__bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: var(--sp-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}
.footer__faith {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.25);
  font-style: italic;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Form success state */
.form-success {
  display: none;
  padding: var(--sp-8);
  text-align: center;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}
.form-success p { color: var(--color-text-muted); font-size: var(--text-sm); }
.form-success__icon {
  width: 56px; height: 56px;
  background: var(--gold-dim2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin: 0 auto var(--sp-4);
}

/* ============================================================
   LIGHT BACKGROUND GOLD OVERRIDES
   Chartreuse stays on dark/navy sections only.
   Everything on a light background uses original gold.
   ============================================================ */

/* Label eyebrows on light sections — using real section class names */
.services-overview .label,
.ba-section .label,
.value-props .label,
.testimonials .label,
.faq-section .label,
.about-story .label,
.about-values .label,
.about-stats .label,
.contact-section .label,
.gallery-ba .label,
.gallery-grid-section .label {
  color: var(--gold-on-light) !important;
}

/* Divider lines next to labels on light sections */
.services-overview .label::before,
.ba-section .label::before,
.value-props .label::before,
.testimonials .label::before,
.faq-section .label::before,
.about-story .label::before,
.about-values .label::before,
.about-stats .label::before,
.contact-section .label::before,
.gallery-ba .label::before,
.gallery-grid-section .label::before {
  background: var(--gold-on-light) !important;
}

/* Learn more / inline links on light sections */
.services-overview a,
.service-card a,
.ba-section a,
.about-story a,
.about-values a {
  color: var(--gold-on-light) !important;
}

/* Service card icon backgrounds & borders */
.service-card__icon {
  background: var(--gold-dim-on-light) !important;
  border-color: var(--gold-dim2-on-light) !important;
  color: var(--gold-on-light) !important;
}

/* Service card top border on hover */
.service-card { border-top-color: transparent; }
.service-card:hover { border-top-color: var(--gold-on-light) !important; }

/* Testimonial stars */
.testimonial-stars { color: var(--gold-on-light) !important; }

/* Testimonial card left border */
.testimonial-card { border-top-color: var(--gold-on-light) !important; }

/* FAQ accordion indicator */
.faq-item.active .faq-indicator,
.faq-indicator {
  background: var(--gold-on-light) !important;
  border-color: var(--gold-on-light) !important;
}
.faq-question:hover { color: var(--gold-on-light) !important; }
.faq-item.active .faq-question { color: var(--gold-on-light) !important; }
.faq-item.active { border-left-color: var(--gold-on-light) !important; }

/* About page values label & stat number accent */
.stat-num span { color: var(--gold-on-light) !important; }
.about-section .about-values .label { color: var(--gold-on-light) !important; }

/* Contact / form page */
.form-label span { color: var(--gold-on-light) !important; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold-on-light) !important; }
.contact-info-item .contact-icon { color: var(--gold-on-light) !important; }

/* Services page process steps */
.process-section .step-num { color: var(--gold-on-light) !important; }
.process-section .step:first-child .step-num { color: var(--gold-on-light) !important; }
.process-section .step-connector { background: var(--gold-on-light) !important; }

/* Services page pricing note */
.pricing-note { border-left-color: var(--gold-on-light) !important; }
.pricing-note a { color: var(--gold-on-light) !important; }

/* Book page callout note */
.book-note { border-left-color: var(--gold-on-light) !important; }
.book-note a { color: var(--gold-on-light) !important; }

/* Gallery filter active button */
.filter-btn.active {
  background: var(--gold-on-light) !important;
  border-color: var(--gold-on-light) !important;
}

/* Form success icon */
.form-success__icon {
  background: var(--gold-dim-on-light) !important;
  color: var(--gold-on-light) !important;
}
