/* ============================================================
   NBH MOBILE DETAILING — main.css
   Sections:
     1.  Design Tokens (CSS Variables)
     2.  Reset & Base
     3.  Typography
     4.  Utilities
     5.  Buttons
     6.  Alerts / Messages
     7.  Navbar
     8.  Footer
     9.  Home — Hero
    10.  Home — Trust Bar
    11.  Home — Services Section
    12.  Home — Gallery Preview
    13.  Home — Reviews Section
    14.  Home — FAQ Section
    15.  Home — CTA Band
    16.  Service Detail
    17.  Landing Page
    18.  Gallery Page
    19.  Reviews Page
    20.  Contact Page
    21.  Contact Success Page
    22.  Blog List
    23.  Blog Post
    24.  Legal Page
    25.  Shared Components (FAQ accordion, review cards, sidebar cards)
    26.  Responsive / Media Queries
   ============================================================ */


/* ============================================================
   0. FONTS (@font-face — self-hosted)
   Files live in: static/fonts/
   Download from Google Fonts (TTF format is fine).

   Bebas Neue
   └── BebasNeue-Regular.ttf

   DM Sans
   ├── DMSans-Regular.ttf       (weight 400, normal)
   ├── DMSans-Italic.ttf        (weight 400, italic)
   ├── DMSans-Medium.ttf        (weight 500, normal)
   ├── DMSans-SemiBold.ttf      (weight 600, normal)
   └── DMSans-Bold.ttf          (weight 700, normal)

   Relative path ../fonts/ works because this file is at
   static/css/main.css and fonts are at static/fonts/.
   ============================================================ */

@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --dark-3:      #242424;
  --gold:        #c9952a;
  --gold-light:  #e8b84b;
  --gold-dim:    rgba(201, 149, 42, .18);
  --white:       #f5f5f0;
  --white-dim:   rgba(245, 245, 240, .55);
  --white-muted: rgba(245, 245, 240, .30);
  --font-head:   'Bebas Neue', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      4px;
  --transition:  .25s ease;
}


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

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .45;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--white);
}
h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h4 { font-size: 1.4rem; }

p   { color: var(--white-dim); max-width: 68ch; }
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }


/* ============================================================
   4. UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.gold          { color: var(--gold); }
.section       { padding-block: 100px; }
.section--sm   { padding-block: 60px; }

.section-label {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-block: 20px;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: .1em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: var(--transition);
  text-transform: uppercase;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 149, 42, .35);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--black);
  color: var(--gold);
  font-size: 1.05rem;
  padding: 16px 40px;
}
.btn--dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .4);
}


/* ============================================================
   6. ALERTS / MESSAGES
   ============================================================ */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 20px;
  border-left: 3px solid transparent;
}
.alert--error   { background: rgba(220, 53, 69, .1);  border-color: #dc3545; color: #f8b4bb; }
.alert--success { background: rgba(40, 167, 69, .1);  border-color: #28a745; color: #9de0b0; }


/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 149, 42, .12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.navbar__logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .1em;
  color: var(--white);
  line-height: 1.15;
}
.navbar__logo-text span { color: var(--gold); }

.navbar__phone {
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .05em;
  font-weight: 500;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar__nav a {
  display: block;
  padding: 6px 14px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-dim);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active         { color: var(--white); }
.navbar__nav a:hover::after,
.navbar__nav a.active::after  { transform: scaleX(1); }

.navbar__cta { margin-left: 12px; padding: 10px 22px; font-size: .9rem; }

/* Hamburger toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile drawer */
.navbar__drawer {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.navbar__drawer.open { display: flex; }
.navbar__drawer a {
  padding: 10px 4px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-dim);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  transition: color var(--transition);
}
.navbar__drawer a:hover { color: var(--gold); }


/* ============================================================
   8. FOOTER
   ============================================================ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 149, 42, .12);
  padding-block: 64px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.footer__brand-name span { color: var(--gold); }

.footer__tagline {
  font-size: .85rem;
  color: var(--white-muted);
  margin-bottom: 20px;
  max-width: 30ch;
}

.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 149, 42, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}
.footer__social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.footer__col h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .15em;
  color: var(--gold);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: .88rem;
  color: var(--white-muted);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: var(--white-muted);
  margin-bottom: 12px;
}
.footer__contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item a { color: var(--white-muted); transition: color var(--transition); }
.footer__contact-item a:hover { color: var(--gold); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .8rem;
  color: var(--white-muted);
  flex-wrap: wrap;
}

.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a { color: var(--white-muted); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--gold); }


/* ============================================================
   9. HOME — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(201, 149, 42, .08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(201, 149, 42, .04) 0%, transparent 60%);
}

.hero__stripe {
  position: absolute;
  right: -80px;
  top: 0;
  bottom: 0;
  width: 520px;
  background: linear-gradient(175deg, rgba(201, 149, 42, .07) 0%, rgba(201, 149, 42, .02) 100%);
  border-left: 1px solid rgba(201, 149, 42, .1);
  transform: skewX(-6deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 120px;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: .95;
  color: var(--white);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--white-dim);
  max-width: 50ch;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white-muted);
  animation: bounce 2.4s ease-in-out infinite;
}
.hero__scroll svg { color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}


/* ============================================================
   10. HOME — TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--dark-2);
  border-block: 1px solid rgba(201, 149, 42, .1);
  padding-block: 22px;
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--white-dim);
  white-space: nowrap;
}
.trust-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ============================================================
   11. HOME — SERVICES SECTION
   ============================================================ */
.services-section { background: var(--dark); }

.services-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}

.service-card {
  position: relative;
  background: var(--dark-2);
  padding: 40px 32px;
  transition: var(--transition);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s ease;
  transform-origin: left;
}
.service-card:hover::before  { opacity: 1; }
.service-card:hover::after   { transform: scaleX(1); }
.service-card:hover          { transform: translateY(-3px); }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 149, 42, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card__icon img { width: 28px; height: 28px; object-fit: contain; }

.service-card__icon-fallback {
  font-size: 1.4rem;
  color: var(--gold);
}

.service-card__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-head);
  font-size: 3.5rem;
  color: rgba(201, 149, 42, .07);
  line-height: 1;
  pointer-events: none;
}

.service-card__name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--white);
  position: relative;
}

.service-card__desc {
  font-size: .88rem;
  color: var(--white-muted);
  line-height: 1.6;
  max-width: 40ch;
}

.service-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.service-card:hover .service-card__link { gap: 12px; }


/* ============================================================
   12. HOME — GALLERY PREVIEW
   ============================================================ */
.gallery-preview { background: var(--black); }

.gallery-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 60px;
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--dark-3);
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 5; }
.gallery-item:nth-child(2) { grid-column: span 4; grid-row: span 3; }
.gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; grid-row: span 4; }
.gallery-item:nth-child(6) { grid-column: span 5; grid-row: span 3; }
.gallery-item:nth-child(n+7) { display: none; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item__overlay { background: rgba(201, 149, 42, .12); }

/* Placeholder for when no image is set */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  font-size: .75rem;
}


/* ============================================================
   13. HOME — REVIEWS SECTION
   ============================================================ */
.reviews-section         { background: var(--dark-2); }
.reviews-section__header { margin-bottom: 56px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}


/* ============================================================
   14. HOME — FAQ SECTION
   ============================================================ */
.faq-section { background: var(--dark); }

.faq-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}


/* ============================================================
   15. HOME — CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gold);
  padding-block: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'NBH';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: 18rem;
  color: rgba(0, 0, 0, .06);
  white-space: nowrap;
  pointer-events: none;
}
.cta-band h2 {
  color: var(--black);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(0, 0, 0, .6);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 45ch;
  margin-inline: auto;
}


/* ============================================================
   16. SERVICE DETAIL PAGE
   ============================================================ */
.service-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-2);
}
.service-hero__img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .35;
}
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 30%, rgba(10, 10, 10, .5) 100%);
}
.service-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
  padding-top: 80px;
}
.service-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--white-muted);
  margin-bottom: 20px;
}
.service-hero__breadcrumb a    { color: var(--gold); }
.service-hero__breadcrumb span { color: var(--white-muted); }

.service-body { background: var(--black); padding-block: 80px; }
.service-body__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.service-body__content { font-size: .97rem; color: var(--white-dim); line-height: 1.75; }
.service-body__content p { margin-bottom: 16px; max-width: none; }

.service-sidebar {
  position: sticky;
  top: 90px;
  background: var(--dark-2);
  border: 1px solid rgba(201, 149, 42, .15);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.service-sidebar h4 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.service-sidebar .btn     { width: 100%; justify-content: center; margin-bottom: 12px; }
.service-sidebar__phone   { text-align: center; font-size: .85rem; color: var(--white-muted); }
.service-sidebar__phone a { color: var(--gold); font-weight: 600; }

/* ── Service pricing block (shown above CTA in sidebar when prices are set) ── */
.service-price {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.service-price__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 14px;
}

.service-price__tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price__tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--dark-3);
  border: 1px solid rgba(201, 149, 42, .12);
  border-radius: var(--radius);
  padding: 10px 14px;
}

.service-price__vehicle {
  font-size: .85rem;
  color: var(--white-dim);
}

.service-price__amount {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .04em;
  color: var(--gold);
}

.service-gallery { background: var(--dark); padding-block: 72px; }
.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 4px;
  margin-top: 40px;
}
.service-gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark-3);
}
.service-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-gallery__item:hover img { transform: scale(1.06); }

.service-faqs { background: var(--dark-2); padding-block: 72px; }


/* ============================================================
   17. LANDING PAGE
   ============================================================ */
.lp-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-2);
}
.lp-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}
.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 35%, rgba(10, 10, 10, .4) 100%);
}
.lp-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 80px 60px;
}
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 149, 42, .25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.lp-body { background: var(--black); padding-block: 80px; }
.lp-body__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.lp-content { font-size: .97rem; color: var(--white-dim); line-height: 1.8; }
.lp-content h2,
.lp-content h3  { color: var(--white); margin-block: 28px 12px; }
.lp-content p   { max-width: none; margin-bottom: 16px; }
.lp-content ul  { padding-left: 20px; margin-bottom: 16px; color: var(--white-dim); }
.lp-content li  { margin-bottom: 6px; }
.lp-content a   { color: var(--gold); }

.lp-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-sidebar__card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 149, 42, .15);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.lp-sidebar__card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: .08em;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.lp-sidebar__card .btn    { width: 100%; justify-content: center; margin-bottom: 10px; }
.lp-sidebar__contact      { text-align: center; font-size: .85rem; color: var(--white-muted); margin-top: 4px; }
.lp-sidebar__contact a    { color: var(--gold); font-weight: 600; }
.lp-sidebar__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  color: var(--white-dim);
  margin-bottom: 12px;
}
.lp-sidebar__info-item .icon { color: var(--gold); flex-shrink: 0; }

.lp-map { background: var(--dark); padding-block: 64px; }
.lp-map__embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 149, 42, .1);
  margin-top: 36px;
}
.lp-map__embed iframe { width: 100%; height: 380px; border: none; display: block; }


/* ============================================================
   18. GALLERY PAGE
   ============================================================ */
.gallery-hero {
  background: var(--dark-2);
  padding-block: 80px 56px;
  border-bottom: 1px solid rgba(201, 149, 42, .1);
}
.gallery-hero h1 { margin-bottom: 12px; }
.gallery-hero p  { font-size: 1rem; }

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, .12);
  color: var(--white-dim);
  background: transparent;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.filter-pill:hover  { border-color: var(--gold); color: var(--gold); }
.filter-pill.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

.gallery-section { background: var(--black); padding-block: 72px; }

.masonry {
  columns: 3 280px;
  column-gap: 6px;
}
.masonry__item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  background: var(--dark-3);
  border-radius: 2px;
  cursor: pointer;
}
.masonry__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .5s ease;
}
.masonry__item:hover img { transform: scale(1.04); }

.masonry__item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.masonry__item:hover .masonry__item__overlay { opacity: 1; }

.masonry__item__caption {
  font-size: .8rem;
  color: var(--white);
  font-weight: 500;
}

.masonry__item__service-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.gallery-empty {
  text-align: center;
  padding: 100px 24px;
  color: var(--white-muted);
}
.gallery-empty__icon {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: .4;
}
.gallery-empty p { max-width: 36ch; margin-inline: auto; color: var(--white-muted); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .93);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 0 80px rgba(201, 149, 42, .12);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox__close:hover { color: var(--gold); }
.lightbox__caption {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .85rem;
  color: var(--white-muted);
  white-space: nowrap;
}


/* ============================================================
   19. REVIEWS PAGE
   ============================================================ */
.reviews-hero {
  background: var(--dark-2);
  padding-block: 80px 56px;
  border-bottom: 1px solid rgba(201, 149, 42, .1);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.rating-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.rating-big__num {
  font-family: var(--font-head);
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.rating-big__stars {
  display: flex;
  gap: 4px;
  font-size: 1.4rem;
  color: var(--gold);
}
.rating-big__label {
  font-size: .78rem;
  color: var(--white-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rating-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, .08);
}

.rating-stats { display: flex; flex-direction: column; gap: 8px; }

.rating-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
}
.rating-bar__label { color: var(--gold); width: 12px; text-align: right; }
.rating-bar__track {
  width: 140px;
  height: 5px;
  background: rgba(255, 255, 255, .08);
  border-radius: 3px;
  overflow: hidden;
}
.rating-bar__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}
.rating-bar__count { color: var(--white-muted); }

.reviews-body { background: var(--black); padding-block: 80px; }

.reviews-masonry {
  columns: 3 280px;
  column-gap: 20px;
}

.no-reviews {
  text-align: center;
  padding: 100px 24px;
  color: var(--white-muted);
}

.reviews-cta {
  background: var(--dark);
  padding-block: 80px;
  text-align: center;
  border-top: 1px solid rgba(201, 149, 42, .08);
}
.reviews-cta h2 { margin-bottom: 12px; }
.reviews-cta p  { margin-inline: auto; margin-bottom: 32px; max-width: 48ch; }


/* ============================================================
   20. CONTACT PAGE
   ============================================================ */
.contact-page {
  background: var(--black);
  padding-block: 80px;
  min-height: 80vh;
}
.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-form__header          { margin-bottom: 44px; }
.contact-form__header h1       { margin-bottom: 10px; }
.contact-form__header p        { font-size: 1rem; }

.form-section-label {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  margin-top: 36px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201, 149, 42, .15);
}
.form-section-label:first-child { margin-top: 0; }

.form-row    { display: grid; grid-template-columns: 1fr 1fr;       gap: 16px; }
.form-row--3 { display: grid; grid-template-columns: 1fr 1fr 1fr;   gap: 16px; }

.form-group     { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.form-label .req { color: var(--gold); margin-left: 3px; }

.form-input,
.form-select,
.form-textarea {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 13px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--white-muted); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 149, 42, .12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9952a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: var(--dark-2); color: var(--white); }

.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.field-error {
  font-size: .78rem;
  color: #f8b4bb;
  margin-top: 4px;
}
.form-input.error,
.form-select.error,
.form-textarea.error { border-color: #dc3545; }

.form-hint {
  font-size: .77rem;
  color: var(--white-muted);
  margin-top: 4px;
  font-style: italic;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.form-submit-note {
  font-size: .8rem;
  color: var(--white-muted);
  max-width: 30ch;
}

.form-errors {
  background: rgba(220, 53, 69, .08);
  border: 1px solid rgba(220, 53, 69, .3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.form-errors p { color: #f8b4bb; font-size: .88rem; margin: 0; }

.contact-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-sidebar__card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 149, 42, .12);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.contact-sidebar__card h4 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .88rem;
}
.contact-info-item .icon      { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.contact-info-item a          { color: var(--white-dim); transition: color var(--transition); }
.contact-info-item a:hover    { color: var(--gold); }
.contact-info-item span       { color: var(--white-dim); }

.contact-sidebar__promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.promise-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--white-dim);
}
.promise-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
/* ── Add-on section label modifier ── */
.form-section-label__optional {
  font-size: .7rem;
  color: var(--white-muted);
  text-transform: none;
  letter-spacing: 0;
}

/* ── Add-on checklist grid ── */
.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 4px;
}

/* ── Individual add-on card (the <label> wraps everything) ── */
.addon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  user-select: none;
}
.addon-item:hover {
  border-color: rgba(201, 149, 42, .35);
  background: var(--dark-3);
}

/* Checked state — driven by JS class toggled on click (see below),
   and also set server-side via addon-item--checked on POST re-render */
.addon-item--checked {
  border-color: var(--gold);
  background: var(--dark-3);
}

/* Hide the native checkbox — the custom .addon-item__check replaces it visually */
.addon-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Custom checkbox box */
.addon-item__check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 3px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
/* Checkmark — hidden by default */
.addon-item__check::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid var(--black);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity var(--transition);
}
/* Show filled box + checkmark when card is checked */
.addon-item--checked .addon-item__check {
  background: var(--gold);
  border-color: var(--gold);
}
.addon-item--checked .addon-item__check::after {
  opacity: 1;
}

/* Text content */
.addon-item__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.addon-item__name {
  font-size: .88rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}
.addon-item__meta {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .02em;
}


/* ============================================================
   21. CONTACT SUCCESS PAGE
   ============================================================ */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--black);
  padding-block: 100px;
}
.success-inner {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid rgba(201, 149, 42, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 36px;
  animation: popIn .5s cubic-bezier(.175, .885, .32, 1.275) forwards;
}
@keyframes popIn {
  0%   { transform: scale(.5); opacity: 0; }
  100% { transform: scale(1);  opacity: 1; }
}
.success-inner h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 16px;
}
.success-inner .sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  margin-bottom: 48px;
  max-width: 42ch;
  margin-inline: auto;
  line-height: 1.7;
}
.success-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  text-align: left;
}
.success-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.success-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.success-step__text              { font-size: .88rem; color: var(--white-dim); }
.success-step__text strong       { color: var(--white); display: block; margin-bottom: 2px; }
.success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   22. BLOG LIST
   ============================================================ */
.blog-hero {
  background: var(--dark-2);
  padding-block: 80px 56px;
  border-bottom: 1px solid rgba(201, 149, 42, .1);
}

.blog-body { background: var(--black); padding-block: 80px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
}
.blog-card:hover {
  border-color: rgba(201, 149, 42, .2);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.blog-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-3);
  position: relative;
}
.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.05); }

.blog-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: .3;
}

.blog-card__body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.blog-card__date {
  font-size: .75rem;
  color: var(--white-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.blog-card__service-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 149, 42, .2);
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
}
.blog-card__title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--gold); }

.blog-card__summary {
  font-size: .87rem;
  color: var(--white-muted);
  line-height: 1.65;
  max-width: none;
}
.blog-card__read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  transition: gap var(--transition);
}
.blog-card:hover .blog-card__read-more { gap: 12px; }

.blog-empty {
  text-align: center;
  padding: 100px 24px;
  color: var(--white-muted);
}


/* ============================================================
   23. BLOG POST
   ============================================================ */
.post-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark-2);
}
.post-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}
.post-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 30%, rgba(10, 10, 10, .5) 100%);
}
.post-hero__content {
  position: relative;
  z-index: 2;
  padding-block: 80px 60px;
  max-width: 820px;
}
.post-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--white-muted);
  margin-bottom: 18px;
}
.post-hero__breadcrumb a { color: var(--gold); }
.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.post-hero__date        { font-size: .8rem; color: var(--white-muted); }
.post-hero__service-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 149, 42, .2);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}

.post-body { background: var(--black); padding-block: 80px; }
.post-body__grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

/* Prose styles — wraps TinyMCE-rendered HTML */
.post-prose {
  font-size: .97rem;
  color: var(--white-dim);
  line-height: 1.8;
}
.post-prose h2,
.post-prose h3,
.post-prose h4 {
  color: var(--white);
  margin-block: 36px 14px;
  font-family: var(--font-head);
  letter-spacing: .04em;
}
.post-prose h2 { font-size: 2rem; }
.post-prose h3 { font-size: 1.5rem; }
.post-prose p              { margin-bottom: 18px; max-width: none; }
.post-prose a              { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-prose ul,
.post-prose ol             { padding-left: 22px; margin-bottom: 20px; }
.post-prose li             { margin-bottom: 8px; color: var(--white-dim); }
.post-prose strong         { color: var(--white); font-weight: 600; }
.post-prose em             { color: var(--white-dim); }
.post-prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin-block: 28px;
  background: var(--dark-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--white-dim);
  font-style: italic;
}
.post-prose img { width: 100%; border-radius: var(--radius); margin-block: 28px; }
.post-prose hr  { border: none; border-top: 1px solid rgba(255, 255, 255, .06); margin-block: 36px; }
.post-prose table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 24px;
  font-size: .9rem;
}
.post-prose th {
  background: var(--dark-3);
  color: var(--gold);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--font-head);
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(201, 149, 42, .2);
}
.post-prose td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  color: var(--white-dim);
}
.post-prose tr:last-child td { border-bottom: none; }

.post-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post-sidebar__card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 149, 42, .12);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.post-sidebar__card h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.post-sidebar__card .btn  { width: 100%; justify-content: center; margin-bottom: 10px; }
.post-sidebar__phone      { text-align: center; font-size: .82rem; color: var(--white-muted); }
.post-sidebar__phone a    { color: var(--gold); font-weight: 600; }

.post-sidebar__related a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  text-decoration: none;
  transition: var(--transition);
}
.post-sidebar__related a:last-child   { border-bottom: none; }
.post-sidebar__related a:hover        { transform: translateX(4px); }
.post-sidebar__related__title {
  font-size: .84rem;
  color: var(--white-dim);
  line-height: 1.4;
  transition: color var(--transition);
}
.post-sidebar__related a:hover .post-sidebar__related__title { color: var(--gold); }


/* ============================================================
   24. LEGAL PAGE
   ============================================================ */
.legal-hero {
  background: var(--dark-2);
  padding-block: 72px 48px;
  border-bottom: 1px solid rgba(201, 149, 42, .1);
}
.legal-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--white-muted);
  margin-bottom: 16px;
}
.legal-hero__breadcrumb a { color: var(--gold); }

.legal-body { background: var(--black); padding-block: 72px; }
.legal-body__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 90px;
  background: var(--dark-2);
  border: 1px solid rgba(201, 149, 42, .1);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.legal-nav h5 {
  font-family: var(--font-head);
  font-size: .85rem;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.legal-nav ul          { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.legal-nav ul li a     { font-size: .82rem; color: var(--white-muted); transition: color var(--transition); display: block; }
.legal-nav ul li a:hover { color: var(--gold); }
.legal-nav__updated {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .75rem;
  color: var(--white-muted);
}

.legal-prose {
  font-size: .95rem;
  color: var(--white-dim);
  line-height: 1.8;
}
.legal-prose h2,
.legal-prose h3 {
  color: var(--white);
  font-family: var(--font-head);
  letter-spacing: .04em;
  margin-block: 36px 14px;
}
.legal-prose h2      { font-size: 1.8rem; }
.legal-prose h3      { font-size: 1.3rem; color: var(--gold); }
.legal-prose p       { margin-bottom: 16px; max-width: none; }
.legal-prose ul,
.legal-prose ol      { padding-left: 22px; margin-bottom: 20px; }
.legal-prose li      { margin-bottom: 8px; }
.legal-prose a       { color: var(--gold); }
.legal-prose strong  { color: var(--white); }
.legal-prose hr      { border: none; border-top: 1px solid rgba(255, 255, 255, .06); margin-block: 32px; }

.legal-footer {
  background: var(--dark);
  padding-block: 48px;
  border-top: 1px solid rgba(255, 255, 255, .04);
}
.legal-footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.legal-footer__links a       { font-size: .85rem; color: var(--white-muted); transition: color var(--transition); }
.legal-footer__links a:hover { color: var(--gold); }


/* ============================================================
   25. SHARED COMPONENTS
   ============================================================ */

/* ── FAQ accordion (home + service_detail) ─── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  overflow: hidden;
}
.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .97rem;
  font-weight: 500;
  transition: color var(--transition);
}
.faq-item__trigger:hover   { color: var(--gold); }
.faq-item__icon {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(201, 149, 42, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-item__icon    { transform: rotate(45deg); background: var(--gold-dim); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-item__answer  { max-height: 400px; padding-bottom: 20px; }
.faq-item__answer p { font-size: .9rem; color: var(--white-dim); line-height: 1.7; }

/* ── Review card (home + reviews page) ─── */
.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, .04);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
/* home.html uses dark-3 bg; reviews.html overrides inline — both share the rest */
.review-card:hover {
  border-color: rgba(201, 149, 42, .2);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}
.review-card__quote {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(201, 149, 42, .07);
  pointer-events: none;
}
.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.review-card__stars .star       { color: var(--gold); font-size: .95rem; }
.review-card__stars .star--empty { color: var(--dark-3); }
.review-card__text {
  font-size: .9rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .05);
}
.review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1.5px solid rgba(201, 149, 42, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.review-card__name        { font-weight: 600; font-size: .88rem; color: var(--white); }
.review-card__meta        { font-size: .75rem; color: var(--white-muted); margin-top: 2px; }
.review-card__service     { font-size: .78rem; color: var(--gold); font-weight: 500; }
.review-card__service-tag {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 149, 42, .2);
  color: var(--gold);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ── Icon utility (used in footer, contact, landing page sidebars) ── */
.icon { color: var(--gold); flex-shrink: 0; }


/* ============================================================
   26. RESPONSIVE / MEDIA QUERIES
   Breakpoints:
     --bp-lg  : 1024px  (large tablets / small desktops)
     --bp-md  :  900px  (tablets — main layout collapse)
     --bp-sm  :  640px  (large phones)
     --bp-xs  :  480px  (small phones)
     --bp-xxs :  380px  (very small phones)
   ============================================================ */


/* ── 1024px — large tablet ─────────────────────── */
@media (max-width: 1024px) {

  /* Tighten section padding slightly */
  .section    { padding-block: 80px; }
  .section--sm { padding-block: 48px; }

  /* Reduce hero content vertical padding */
  .hero__content { padding-block: 100px; }

  /* Footer — start collapsing the wide 4-col grid */
  .footer__grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
  /* Hide the Quick Links column — merge into smaller layout */
  .footer__grid > div:nth-child(3) { display: none; }
}


/* ── 900px — tablet / main collapse ───────────── */
@media (max-width: 900px) {

  /* ── Global ── */
  .section     { padding-block: 64px; }
  .section--sm { padding-block: 40px; }
  .container   { padding-inline: 20px; }

  /* ── Typography ── */
  /* h3 clamp has 3vw which gets tiny; enforce a floor */
  h3 { font-size: clamp(1.4rem, 4vw, 2.4rem); }
  h4 { font-size: 1.25rem; }

  /* ── Navbar ── */
  .navbar__nav,
  .navbar__cta.btn  { display: none; }
  .navbar__toggle   { display: flex; }
  /* Phone number in nav takes up space — hide it at this breakpoint too */
  .navbar__phone    { display: none; }

  /* ── Footer ── */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer { padding-block: 48px 24px; }

  /* ── Home — hero ── */
  .hero__content  { padding-block: 80px; max-width: 100%; }
  .hero__stripe   { display: none; } /* decorative only — remove on tablet */
  .hero__sub      { font-size: 1rem; max-width: 100%; }
  .hero__scroll   { display: none; } /* not needed on touch */

  /* ── Home — trust bar ── */
  .trust-bar__inner { gap: 24px; }

  /* ── Home — services ── */
  .services-section__header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

  /* ── Home — gallery preview ── */
  /* Switch the 12-col asymmetric grid to a simpler 2-col grid */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) { display: none; }

  /* ── Home — reviews ── */
  .reviews-section__header { margin-bottom: 36px; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* ── Home — FAQ ── */
  .faq-section__inner { grid-template-columns: 1fr; gap: 40px; }

  /* ── Home — CTA band ── */
  .cta-band { padding-block: 60px; }
  /* Shrink the watermark so it doesn't overflow on tablet */
  .cta-band::before { font-size: 10rem; }

  /* ── Service detail ── */
  .service-hero__content { padding-top: 48px; padding-bottom: 40px; }
  .service-body { padding-block: 56px; }
  .service-body__grid { grid-template-columns: 1fr; gap: 36px; }
  .service-sidebar    { position: static; }
  .service-gallery    { padding-block: 52px; }
  .service-faqs       { padding-block: 52px; }
  .service-gallery__grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }

  /* ── Landing page ── */
  .lp-hero__content { padding-block: 48px 40px; }
  .lp-body          { padding-block: 56px; }
  .lp-body__grid    { grid-template-columns: 1fr; gap: 36px; }
  .lp-sidebar       { position: static; }
  .lp-map           { padding-block: 52px; }
  .lp-map__embed iframe { height: 280px; }

  /* ── Gallery page ── */
  .gallery-hero     { padding-block: 56px 40px; }
  .gallery-section  { padding-block: 52px; }
  .masonry          { columns: 2 200px; }

  /* ── Reviews page ── */
  .reviews-hero     { padding-block: 56px 40px; }
  .reviews-body     { padding-block: 56px; }
  .reviews-masonry  { columns: 2 220px; }
  /* Stack the rating summary vertically */
  .rating-summary   { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rating-divider   { width: 48px; height: 1px; } /* horizontal rule when stacked */
  .reviews-cta      { padding-block: 56px; }

  /* ── Contact page ── */
  .contact-page       { padding-block: 56px; }
  .contact-page__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-sidebar    { position: static; }
  .form-row           { grid-template-columns: 1fr; }
  .form-row--3        { grid-template-columns: 1fr 1fr; }
  .addon-grid { grid-template-columns: 1fr 1fr; }

  /* ── Contact success ── */
  .success-page { padding-block: 64px; }

  /* ── Blog list ── */
  .blog-hero   { padding-block: 56px 40px; }
  .blog-body   { padding-block: 56px; }
  .blog-grid   { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

  /* ── Blog post ── */
  .post-hero__content { padding-block: 56px 40px; }
  .post-body          { padding-block: 56px; }
  .post-body__grid    { grid-template-columns: 1fr; gap: 36px; }
  .post-sidebar       { position: static; }

  /* ── Legal page ── */
  .legal-hero        { padding-block: 52px 36px; }
  .legal-body        { padding-block: 52px; }
  .legal-body__inner { grid-template-columns: 1fr; gap: 32px; }
  .legal-nav         { position: static; margin-bottom: 0; }
  .legal-footer      { padding-block: 36px; }
}


/* ── 640px — large phones ──────────────────────── */
@media (max-width: 640px) {

  /* ── Global ── */
  .section     { padding-block: 52px; }
  .section--sm { padding-block: 32px; }
  .container   { padding-inline: 16px; }

  /* ── Typography ── */
  h1 { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* ── Footer ── */
  .footer__grid          { grid-template-columns: 1fr; gap: 28px; }
  /* Restore the Quick Links column on single-col layout */
  .footer__grid > div:nth-child(3) { display: block; }
  .footer__bottom        { flex-direction: column; text-align: center; gap: 12px; }
  .footer__bottom-links  { justify-content: center; }
  .footer { padding-block: 40px 20px; }

  /* ── Navbar ── */
  .navbar__inner { gap: 16px; }
  .navbar__logo-text { font-size: 1.25rem; }

  /* ── Buttons — full width on mobile where stacked ── */
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* ── Home — hero ── */
  .hero { min-height: 100svh; } /* keep full screen on mobile */
  .hero__content  { padding-block: 64px; }
  .hero__eyebrow  { font-size: .72rem; margin-bottom: 16px; }
  .hero__sub      { font-size: .95rem; margin-bottom: 32px; }
  .hero__actions  { flex-direction: column; gap: 12px; }

  /* ── Home — trust bar ── */
  .trust-bar         { padding-block: 18px; }
  .trust-bar__inner  { gap: 16px; justify-content: flex-start; padding-inline: 16px; }
  .trust-item        { font-size: .78rem; }

  /* ── Home — services ── */
  .services-section__header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card  { padding: 28px 20px; }

  /* ── Home — gallery preview ── */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 120px; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-item:nth-child(n+5) { display: none; }
  .gallery-preview__header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 28px; }

  /* ── Home — reviews ── */
  .reviews-grid  { grid-template-columns: 1fr; }
  .review-card   { padding: 22px 18px; }

  /* ── Home — FAQ ── */
  .faq-section__inner { gap: 32px; }
  .faq-item__trigger  { font-size: .92rem; padding: 18px 0; }

  /* ── Home — CTA band ── */
  .cta-band          { padding-block: 52px; }
  .cta-band::before  { display: none; } /* remove watermark entirely on phone */
  .cta-band .btn--dark { width: 100%; justify-content: center; }

  /* ── Service detail ── */
  .service-hero   { min-height: 40vh; }
  .service-body   { padding-block: 44px; }
  .service-faqs   { padding-block: 40px; }
  .service-gallery { padding-block: 40px; }
  .service-gallery__grid { grid-template-columns: 1fr 1fr; }
  .service-sidebar { padding: 22px 18px; }

  /* ── Landing page ── */
  .lp-hero        { min-height: 36vh; }
  .lp-body        { padding-block: 44px; }
  .lp-sidebar__card { padding: 22px 18px; }

  /* ── Gallery page ── */
  .gallery-hero  { padding-block: 44px 32px; }
  .gallery-section { padding-block: 40px; }
  .masonry       { columns: 2 140px; column-gap: 4px; }
  .masonry__item { margin-bottom: 4px; }
  .gallery-filters { gap: 8px; margin-top: 24px; }
  .filter-pill   { padding: 7px 14px; font-size: .75rem; }

  /* ── Reviews page ── */
  .reviews-hero  { padding-block: 44px 32px; }
  .reviews-body  { padding-block: 44px; }
  .reviews-masonry { columns: 1; } /* single column on phone */
  .rating-big__num { font-size: 4rem; }

  /* ── Contact page ── */
  .contact-page  { padding-block: 44px; }
  .contact-form__header { margin-bottom: 28px; }
  .form-row--3   { grid-template-columns: 1fr; }
  .form-section-label { margin-top: 28px; }
  .contact-sidebar__card { padding: 22px 18px; }
  .addon-grid { grid-template-columns: 1fr; }

  /* ── Contact success ── */
  .success-icon  { width: 72px; height: 72px; font-size: 2rem; margin-bottom: 24px; }
  .success-step  { padding: 14px 16px; }

  /* ── Blog list ── */
  .blog-hero  { padding-block: 44px 32px; }
  .blog-body  { padding-block: 44px; }
  .blog-grid  { grid-template-columns: 1fr; gap: 16px; }
  .blog-card__body { padding: 20px 18px; }

  /* ── Blog post ── */
  .post-hero  { min-height: 36vh; }
  .post-body  { padding-block: 44px; }
  .post-sidebar__card { padding: 20px 16px; }
  .post-prose h2 { font-size: 1.6rem; }
  .post-prose h3 { font-size: 1.3rem; }

  /* ── Legal page ── */
  .legal-hero   { padding-block: 40px 28px; }
  .legal-body   { padding-block: 40px; }
  .legal-footer__links { flex-direction: column; align-items: flex-start; gap: 12px; }
}


/* ── 480px — small phones ──────────────────────── */
@media (max-width: 480px) {

  /* ── Global ── */
  .container { padding-inline: 14px; }
  .section   { padding-block: 44px; }

  /* ── Typography ── */
  h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }

  /* ── Navbar ── */
  .navbar__inner { height: 60px; }
  .navbar__logo-text { font-size: 1.1rem; }

  /* ── Home — hero ── */
  .hero__title { line-height: 1; } /* tighten up at smallest sizes */

  /* ── Home — services ── */
  .service-card { padding: 24px 16px; }
  .service-card__num { font-size: 2.5rem; }

  /* ── Gallery masonry — single column on very small screens ── */
  .masonry { columns: 1; }

  /* ── Contact form ── */
  .form-row--3 { grid-template-columns: 1fr; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-row .btn { width: 100%; justify-content: center; }
  .addon-item { padding: 12px 14px; }

  /* ── Reviews rating bar ── */
  .rating-bar__track { width: 100px; }

  /* ── CTA band ── */
  .cta-band { padding-block: 44px; }

  /* ── Blog card ── */
  .blog-card__body { padding: 16px 14px; }

  /* ── Success steps ── */
  .success-steps { gap: 12px; }
}


/* ── 380px — very small phones ─────────────────── */
@media (max-width: 380px) {

  .container { padding-inline: 12px; }

  /* ── Navbar ── */
  .navbar__logo-text { font-size: 1rem; }

  /* ── Buttons ── */
  .btn { padding: 12px 20px; font-size: 1rem; }

  /* ── Filter pills ── */
  .filter-pill { padding: 6px 12px; font-size: .72rem; }

  /* ── Trust bar — hide dots on very small screens ── */
  .trust-item .dot { display: none; }
  .trust-bar__inner { gap: 12px; }
}
