/* ================================================================
   NORTH SHORE PROJECTS — Design System v2 (editorial redesign)
   Navy #1A1A2E + Orange #E07B39 + Cream #FAFAF8
   DM Serif Display (headings) + DM Sans (body)
   ================================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors */
  --color-navy: #1A1A2E;
  --color-navy-light: #242444;
  --color-navy-dark: #12121F;
  --color-gold: #E07B39;
  --color-gold-dark: #C46A2E;
  --color-gold-light: #E89560;
  --color-cream: #FAFAF8;
  --color-warm-white: #FDFCFA;
  --color-muted: #71706E;
  --color-error: #dc3545;
  --color-success: #28a745;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-pad: 5rem 0;
  --section-pad-lg: 7rem 0;
  --container-max: 1280px;
  --container-px: 1.5rem;
  --container-px-lg: 2.5rem;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration: 0.3s;
  --duration-slow: 0.5s;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-navy);
  background: var(--color-warm-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--duration) var(--ease); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}

/* ---------- CONTAINER ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--container-px-lg); }
}

/* ---------- SKIP LINK ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
}

/* ================================================================
   NAVIGATION — Fixed, transparent → opaque on scroll
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all var(--duration-slow) var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(193, 154, 107, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

@media (min-width: 1024px) {
  .nav-inner { padding: 0 var(--container-px-lg); }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  white-space: nowrap;
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(193, 154, 107, 0.4);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  transition: all var(--duration-slow) var(--ease);
}

.nav-logo-text { color: var(--color-cream); }
.nav-logo-text span { color: var(--color-gold); }

/* Desktop Links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 250, 248, 0.7);
  transition: color var(--duration) var(--ease);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-gold); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

/* CTA Button */
.nav-cta { display: none; }
@media (min-width: 1024px) {
  .nav-cta { display: block; }
}

.nav-cta a {
  display: inline-block;
  border: 1px solid rgba(193, 154, 107, 0.6);
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  transition: all var(--duration) var(--ease);
}

.nav-cta a:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all var(--duration) var(--ease);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

/* Mobile Menu — Full screen overlay */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(26, 26, 46, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 5rem 2rem 3rem;
  visibility: hidden;
  opacity: 0;
  transition: all var(--duration) var(--ease);
  pointer-events: none;
  overflow-y: auto;
}

.nav-mobile.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-mobile a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-cream);
  padding: 0.75rem 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color var(--duration) ease;
}

.nav-mobile.active a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animations */
.nav-mobile.active a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.active a:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile.active a:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.active a:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile.active a:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile.active a:nth-child(6) { transition-delay: 0.3s; }
.nav-mobile.active a:nth-child(7) { transition-delay: 0.35s; }
.nav-mobile.active a:nth-child(8) { transition-delay: 0.4s; }
.nav-mobile.active a:nth-child(9) { transition-delay: 0.45s; }

.nav-mobile a:hover { color: var(--color-gold); }
.nav-mobile a.active { color: var(--color-gold); }

.nav-mobile .mobile-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: background var(--duration) var(--ease);
}

.nav-mobile .mobile-cta:hover { background: var(--color-gold-light); }

.nav-mobile .mobile-phone {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(250, 250, 248, 0.5);
  letter-spacing: 0.05em;
}

.nav-mobile .mobile-phone:hover { color: var(--color-gold); }

@media (min-width: 1024px) {
  .nav-mobile { display: none; }
}

/* ================================================================
   HERO — Full-screen with overlay
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 5rem;
  overflow: hidden;
  background: var(--color-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85), transparent 40%, rgba(26,26,46,0.25));
}

.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 var(--container-px-lg);
    max-width: 65%;
  }
  .hero { padding-bottom: 6rem; }
}

.hero-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250, 250, 248, 0.7);
  max-width: 540px;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero p { font-size: 1.0625rem; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}

.hero-scroll span {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(250, 250, 248, 0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(250,250,248,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

/* Hero slideshow (homepage) */
.hero-slideshow {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 0 6rem;
  transition: opacity 0.8s var(--ease);
}

.hero-slide.active {
  opacity: 1;
  z-index: 5;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-slide-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.8), transparent 50%, rgba(26,26,46,0.2));
  z-index: 1;
}

.hero-slide-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-slide-content {
    padding: 0 var(--container-px-lg);
    max-width: 65%;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  border-radius: 50%;
}

.hero-badge span {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(250, 250, 248, 0.6);
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.hero-title span { display: block; }
.hero-title .highlight { color: var(--color-gold); }

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(250, 250, 248, 0.65);
  max-width: 520px;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.0625rem; }
}

/* Hero navigation arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(250, 250, 248, 0.2);
  background: transparent;
  color: rgba(250, 250, 248, 0.6);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.hero-arrow:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }

/* Hero indicators */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 15;
}

.hero-indicator {
  background: none;
  border: none;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(250, 250, 248, 0.35);
  cursor: pointer;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--duration) var(--ease);
}

.hero-indicator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: all var(--duration-slow) var(--ease);
}

.hero-indicator.active {
  color: var(--color-cream);
}

.hero-indicator.active::after {
  background: var(--color-gold);
}

.hero-indicator:hover { color: rgba(250, 250, 248, 0.7); }

@media (max-width: 767px) {
  .hero-arrow { display: none; }
  .hero-indicators { display: none; }
  .hero-slide { transition: none; padding-bottom: 4rem; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.875rem 2rem;
  cursor: pointer;
  border: none;
  transition: all var(--duration) var(--ease);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-gold {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn-gold:hover { background: var(--color-gold-light); }

.btn-outline {
  background: transparent;
  border: 1px solid rgba(250, 250, 248, 0.3);
  color: rgba(250, 250, 248, 0.8);
}
.btn-outline:hover {
  border-color: rgba(250, 250, 248, 0.6);
  color: var(--color-cream);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(26, 26, 46, 0.2);
  color: var(--color-navy);
}
.btn-outline-dark:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(250, 250, 248, 0.3);
  color: rgba(250, 250, 248, 0.8);
}
.btn-outline-white:hover {
  border-color: var(--color-cream);
  color: var(--color-cream);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn-primary:hover { background: var(--color-gold-light); }

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(26, 26, 46, 0.15);
  color: var(--color-navy);
}
.btn-secondary:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-lg { padding: 1rem 2.5rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.75rem; }

.btn:disabled,
.btn.is-loading { opacity: 0.5; pointer-events: none; }

.btn.is-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 0.5rem;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

.btn-shimmer { position: relative; overflow: hidden; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ================================================================
   TRUST BAR — Stats section
   ================================================================ */
.trust-bar {
  position: relative;
  border-top: 1px solid rgba(193, 154, 107, 0.2);
  border-bottom: 1px solid rgba(193, 154, 107, 0.2);
  background: var(--color-navy);
  padding: 3.5rem 0;
}

.trust-bar-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  text-align: center;
}

@media (min-width: 768px) {
  .trust-bar-content { grid-template-columns: repeat(4, 1fr); gap: 0; }
}

@media (min-width: 1024px) {
  .trust-bar-content { padding: 0 var(--container-px-lg); }
}

.trust-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .trust-bar-item { border-right: 1px solid rgba(193, 154, 107, 0.1); }
  .trust-bar-item:last-child { border-right: none; }
}

.trust-bar-item svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  color: var(--color-gold);
}

.trust-bar-stat {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-gold);
  line-height: 1;
}

@media (min-width: 1024px) {
  .trust-bar-stat { font-size: 3rem; }
}

.trust-bar-item span {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250, 250, 248, 0.5);
}

/* ================================================================
   SECTION UTILITIES
   ================================================================ */
.section {
  padding: var(--section-pad);
}

.section-dark {
  background: var(--color-navy);
  color: var(--color-cream);
}

.section-light {
  background: var(--color-warm-white);
}

.section-alt {
  background: #F5F4F0;
}

@media (min-width: 1024px) {
  .section { padding: var(--section-pad-lg); }
}

/* Section headers */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 600px;
}

.section-dark .section-subtitle { color: rgba(250, 250, 248, 0.5); }

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

@media (min-width: 1024px) {
  .section-header { margin-bottom: 5rem; }
}

/* Gold decorative line */
.gold-line {
  display: block;
  width: 4rem;
  height: 1px;
  background: rgba(193, 154, 107, 0.4);
  margin: 2rem 0;
}

.section-dark .gold-line { background: rgba(193, 154, 107, 0.3); }

.gold-underline {
  display: block;
  width: 3rem;
  height: 1px;
  background: var(--color-gold);
  margin: 0 auto 1.5rem;
}

/* ================================================================
   SERVICES — Editorial numbered list
   ================================================================ */
.services-section {
  padding: var(--section-pad);
}

@media (min-width: 1024px) {
  .services-section { padding: var(--section-pad-lg); }
}

.services-list {
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  padding: 2rem 0;
  transition: background var(--duration) var(--ease);
}

@media (min-width: 1024px) {
  .service-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    padding: 2.5rem 1rem;
  }
  .service-item:hover { background: rgba(250, 250, 248, 0.5); }
}

.service-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: rgba(193, 154, 107, 0.25);
  line-height: 1;
  transition: color var(--duration-slow) var(--ease);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .service-number { font-size: 3rem; width: 6rem; text-align: right; }
  .service-item:hover .service-number { color: rgba(193, 154, 107, 0.5); }
}

.service-body { flex: 1; }

.service-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .service-body h3 { font-size: 1.5rem; }
}

.service-body p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.service-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: rgba(193, 154, 107, 0.15);
  transition: all var(--duration-slow) var(--ease);
}

.service-item:hover .service-line {
  width: 6rem;
  background: rgba(193, 154, 107, 0.4);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold);
  margin-top: 0.5rem;
  transition: gap var(--duration) var(--ease);
}

.service-link:hover { gap: 0.75rem; }
.service-link svg { width: 16px; height: 16px; }

/* Bento grid (alternative service display) */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(4, 1fr); }
}

.bento-card {
  background: #fff;
  padding: 2rem;
  border: 1px solid rgba(26, 26, 46, 0.06);
  transition: all var(--duration-slow) var(--ease);
}

.bento-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: rgba(193, 154, 107, 0.2);
}

.bento-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.bento-card-icon svg { width: 28px; height: 28px; color: var(--color-gold); stroke-width: 1.5; }

.bento-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.bento-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.bento-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  transition: gap var(--duration) var(--ease);
}

.bento-card-link:hover { gap: 0.75rem; }
.bento-card-link svg { width: 16px; height: 16px; }

/* ================================================================
   WHY US — Cards
   ================================================================ */
.why-section {
  padding: var(--section-pad);
  background: #F5F4F0;
}

@media (min-width: 1024px) {
  .why-section { padding: var(--section-pad-lg); }
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
}

.why-card {
  padding: 2rem 0;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.why-card-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
  color: var(--color-gold);
}

.why-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* ================================================================
   PROCESS — Numbered steps
   ================================================================ */
.process-section {
  padding: var(--section-pad);
}

@media (min-width: 1024px) {
  .process-section { padding: var(--section-pad-lg); }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
}

.process-card { padding: 2rem 0; }

.process-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(193, 154, 107, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.section-dark .process-number { color: rgba(193, 154, 107, 0.4); }

.process-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
}

.section-dark .process-card p { color: rgba(250, 250, 248, 0.5); }

/* ================================================================
   FAQ — Accordion
   ================================================================ */
.faq-section {
  padding: var(--section-pad);
}

@media (min-width: 1024px) {
  .faq-section { padding: var(--section-pad-lg); }
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
  transition: color var(--duration) var(--ease);
}

.faq-question:hover { color: var(--color-gold); }

.faq-question svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
  color: var(--color-muted);
}

.faq-item.active .faq-question svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-muted);
}

/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  background: var(--color-navy);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.3);
}

/* CTA section variant (light background used on homepage) */
.cta-section {
  background: var(--color-navy);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1rem;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 2rem;
}

/* ================================================================
   CONTACT SECTION — Dark, side-by-side
   ================================================================ */
.contact-section {
  background: var(--color-navy);
  padding: var(--section-pad);
}

@media (min-width: 1024px) {
  .contact-section { padding: var(--section-pad-lg); }
}

.contact-grid {
  display: grid;
  gap: 4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 6rem; padding: 0 var(--container-px-lg); }
}

.contact-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.contact-info > p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-details li svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-details strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 250, 248, 0.6);
  margin-bottom: 0.25rem;
}

.contact-details span {
  font-size: 0.9375rem;
  color: rgba(250, 250, 248, 0.8);
}

.contact-detail-label {
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(193, 154, 107, 0.6);
  margin-bottom: 0.5rem;
}

.contact-detail-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-cream);
  transition: color var(--duration) var(--ease);
}

@media (min-width: 1024px) {
  .contact-detail-value { font-size: 1.75rem; }
}

.contact-detail-value:hover { color: var(--color-gold); }

.contact-detail-sub {
  font-size: 0.875rem;
  color: rgba(250, 250, 248, 0.35);
  margin-top: 0.25rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Contact form box */
.contact-form-box {
  padding: 2.5rem;
  border: 1px solid rgba(250, 250, 248, 0.05);
}

.contact-form-box h3 {
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 2rem;
}

/* ================================================================
   FORMS
   ================================================================ */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: rgba(250, 250, 248, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(250, 250, 248, 0.1);
  background: transparent;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-cream);
  outline: none;
  transition: border-color var(--duration) var(--ease);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(250, 250, 248, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(193, 154, 107, 0.5);
}

.form-group textarea { resize: none; min-height: 120px; }

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  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='rgba(250,250,248,0.4)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--color-navy);
  color: var(--color-cream);
}

/* Light form variant */
.form-light .form-group label,
.section-light .form-group label,
.section .form-wrapper .form-group label {
  color: var(--color-navy);
}

.form-light .form-group input,
.form-light .form-group select,
.form-light .form-group textarea {
  border-color: rgba(26, 26, 46, 0.15);
  background: var(--color-warm-white);
  color: var(--color-navy);
}

.form-light .form-group input::placeholder,
.form-light .form-group textarea::placeholder {
  color: var(--color-muted);
}

.form-light .form-group input:focus,
.form-light .form-group select:focus,
.form-light .form-group textarea:focus {
  border-color: var(--color-gold);
}

.form-light .form-group 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='rgba(26,26,46,0.4)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.form-light .form-group select option {
  background: #fff;
  color: var(--color-navy);
}

/* Form rows */
.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}

.btn-submit:hover { background: var(--color-gold-light); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-submit.is-loading { pointer-events: none; }
.btn-submit.is-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 0.5rem;
  border: 2px solid transparent;
  border-top-color: var(--color-navy);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

/* Form validation states */
.form-group .form-error {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.375rem;
  font-weight: 500;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: #ef4444; }
.form-group.is-valid input,
.form-group.is-valid select,
.form-group.is-valid textarea { border-color: var(--color-success); }

.form-group .char-count {
  display: block;
  text-align: right;
  font-size: 0.75rem;
  color: rgba(250, 250, 248, 0.35);
  margin-top: 0.375rem;
}
.form-group .char-count.warn { color: #ef4444; }
.form-light .form-group .char-count { color: var(--color-muted); }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* Form notes */
.form-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(250, 250, 248, 0.3);
  margin-top: 1rem;
}
.form-note svg { width: 14px; height: 14px; flex-shrink: 0; }
.form-light .form-note { color: var(--color-muted); }

.form-required-note {
  font-size: 0.75rem;
  color: rgba(250, 250, 248, 0.35);
  margin-bottom: 1rem;
}
.form-light .form-required-note { color: var(--color-muted); }

.required-asterisk { color: var(--color-gold); }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid rgba(193, 154, 107, 0.25);
}

.form-success i {
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.875rem;
  color: rgba(250, 250, 248, 0.5);
  line-height: 1.7;
}

.form-light .form-success { border-color: rgba(26, 26, 46, 0.1); }
.form-light .form-success h3 { color: var(--color-navy); }
.form-light .form-success p { color: var(--color-muted); }

/* Form checkbox */
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: auto;
  accent-color: var(--color-gold);
}

.form-checkbox label {
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
}

/* ================================================================
   PAGE HEADER — Sub-pages
   ================================================================ */
.page-header {
  background: var(--color-navy);
  padding: 12rem 0 3rem;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-cream);
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1rem;
  color: rgba(250, 250, 248, 0.5);
  max-width: 600px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.breadcrumb a { color: rgba(250, 250, 248, 0.4); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: rgba(250, 250, 248, 0.6); }
.breadcrumb ol { display: flex; gap: 0.5rem; align-items: center; }
.breadcrumb li { display: inline; }
.breadcrumb li + li::before {
  content: '/';
  margin-right: 0.5rem;
  color: rgba(250, 250, 248, 0.25);
}

/* ================================================================
   HERO LOGO — Displayed in hero areas
   ================================================================ */
.hero-logo {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

@media (min-width: 768px) {
  .hero-logo { width: 88px; height: 88px; }
}

/* Homepage logo banner — fallback above main content */
.logo-banner {
  background: var(--color-navy);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
}

.logo-banner img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: contain;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 2px 12px rgba(193, 154, 107, 0.25));
}

.logo-banner h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--color-cream);
  margin-bottom: 0.5rem;
}

.logo-banner p {
  font-size: 0.9375rem;
  color: rgba(250, 250, 248, 0.55);
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .logo-banner img { width: 120px; height: 120px; }
  .logo-banner { padding: 4.5rem 0 3rem; }
}

/* ================================================================
   SERVICE HERO — Sub-pages
   ================================================================ */
.service-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 3rem;
  overflow: hidden;
  background: var(--color-navy);
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.service-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.service-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 60%);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 10;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  width: 100%;
}

@media (min-width: 1024px) {
  .service-hero-content { padding: 0 var(--container-px-lg); }
  .service-hero { min-height: 100vh; padding: 80px 0 4rem; }
}

.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1rem;
  color: rgba(250, 250, 248, 0.65);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* ================================================================
   SERVICE DESCRIPTION — Two-column
   ================================================================ */
.service-description {
  padding: var(--section-pad);
}

@media (min-width: 1024px) {
  .service-description { padding: var(--section-pad-lg); }
}

.service-description-grid {
  display: grid;
  gap: 3rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

@media (min-width: 1024px) {
  .service-description-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 5rem;
    padding: 0 var(--container-px-lg);
  }
}

.service-description-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.25rem;
}

.service-description-content p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

/* Service features list */
.service-features-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-features-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-features-list li i {
  color: var(--color-gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.service-features-list li strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.service-features-list li span {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* Sidebar */
.service-sidebar {
  background: var(--color-navy);
  padding: 2.5rem;
  align-self: start;
}

.service-sidebar h3 {
  font-size: 1.5rem;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

.service-sidebar ul { margin-bottom: 2rem; }

.service-sidebar li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(250, 250, 248, 0.05);
  font-size: 0.9375rem;
  color: rgba(250, 250, 248, 0.7);
}

.service-sidebar li i { color: var(--color-gold); }

.service-sidebar .btn { width: 100%; justify-content: center; }

/* Service CTA */
.service-cta {
  background: var(--color-navy);
  padding: 5rem 0;
  text-align: center;
}

.service-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.service-cta p {
  font-size: 1rem;
  color: rgba(250, 250, 248, 0.5);
  margin-bottom: 2rem;
}

.service-cta .btn {
  background: var(--color-gold);
  color: var(--color-navy);
}

.service-cta .btn:hover { background: var(--color-gold-light); }

/* ================================================================
   GALLERY — Horizontal scroll
   ================================================================ */
.gallery-section {
  padding: var(--section-pad);
  background: #F5F4F0;
}

@media (min-width: 1024px) {
  .gallery-section { padding: var(--section-pad-lg); }
}

.gallery-scroll-container {
  margin-top: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) rgba(0,0,0,0.1);
}

.gallery-scroll-container::-webkit-scrollbar { height: 8px; }
.gallery-scroll-container::-webkit-scrollbar-track { background: rgba(0,0,0,0.06); border-radius: 4px; }
.gallery-scroll-container::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 4px; }
.gallery-scroll-container::-webkit-scrollbar-thumb:hover { background: var(--color-gold-hover); }

.gallery-scroll {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
}

.gallery-scroll-item {
  flex: 0 0 280px;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

@media (min-width: 768px) {
  .gallery-scroll-item { flex: 0 0 350px; }
}

.gallery-scroll-item img,
.gallery-scroll-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.gallery-scroll-item:hover img,
.gallery-scroll-item:hover video { transform: scale(1.05); }

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background var(--duration) var(--ease);
}

.video-play-overlay svg { width: 40px; height: 40px; color: #fff; }
.gallery-scroll-item:hover .video-play-overlay { background: rgba(0,0,0,0.15); }

/* Gallery navigation arrows */
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.gallery-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}

.gallery-arrow:hover {
  background: var(--color-gold);
  color: var(--color-navy);
}

.gallery-arrow:disabled {
  opacity: 0.25;
  cursor: default;
  pointer-events: none;
}

.gallery-arrow svg {
  width: 18px;
  height: 18px;
}

.gallery-progress {
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  flex: 1;
  max-width: 200px;
  overflow: hidden;
}

.gallery-progress-bar {
  height: 100%;
  background: var(--color-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
  min-width: 10%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img,
.lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
}

/* ================================================================
   PHONE FRAME — Video showcase in iPhone-style mockup
   ================================================================ */
.phone-video-section {
  padding: var(--section-pad);
  background: var(--color-navy);
  text-align: center;
}

@media (min-width: 1024px) {
  .phone-video-section { padding: var(--section-pad-lg); }
}

.phone-video-section .section-title {
  color: var(--color-gold);
}

.phone-video-section .section-subtitle {
  color: rgba(250, 250, 248, 0.5);
}

.phone-frame {
  position: relative;
  width: 280px;
  max-width: 100%;
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  background: #000;
  border-radius: 40px;
  border: 4px solid #2a2a2a;
  box-shadow:
    0 0 0 2px #1a1a1a,
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(193, 154, 107, 0.08);
  overflow: hidden;
}

@media (min-width: 768px) {
  .phone-frame {
    width: 320px;
    border-radius: 44px;
    border-width: 5px;
  }
}

/* Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 24px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

@media (min-width: 768px) {
  .phone-frame::before {
    width: 110px;
    height: 28px;
    border-radius: 0 0 18px 18px;
  }
}

.phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.phone-video-caption {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(250, 250, 248, 0.4);
  letter-spacing: 0.05em;
}

/* ================================================================
   BLOG
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  overflow: hidden;
  transition: box-shadow var(--duration-slow) var(--ease);
  background: #fff;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-meta {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-body h3 a { color: var(--color-navy); }
.blog-card-body h3 a:hover { color: var(--color-gold); }

.blog-card-body > p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Blog content (single post) */
.blog-content {
  max-width: 780px;
  margin: 0 auto;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.blog-meta i { color: var(--color-gold); margin-right: 0.35rem; }

.blog-content h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.blog-content > img {
  width: 100%;
  margin-bottom: 2rem;
}

.blog-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-content h3 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.blog-content a { color: var(--color-gold); }
.blog-content a:hover { text-decoration: underline; }

.blog-content ul, .blog-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }

.blog-content li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

/* ================================================================
   CONTENT BLOCKS — Suburb pages
   ================================================================ */
.content-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.content-block h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.content-block p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.content-block a { color: var(--color-gold); }
.content-block a:hover { text-decoration: underline; }

/* Service areas grid (suburb links) */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.area-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border: 1px solid rgba(26, 26, 46, 0.12);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-navy);
  transition: all var(--duration) var(--ease);
}

.area-link i { color: var(--color-gold); font-size: 0.75rem; }

.area-link:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(193, 154, 107, 0.05);
}

/* Service detail list */
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-detail-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.service-detail-list li i { color: var(--color-gold); }

/* Google rating badge */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(193, 154, 107, 0.06);
  border: 1px solid rgba(193, 154, 107, 0.15);
}

.google-rating-score {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
}

.google-rating-stars { color: var(--color-gold); font-size: 0.875rem; letter-spacing: 2px; }

.google-rating-text {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 0.125rem;
}

/* ================================================================
   FORM WRAPPER — Centered form
   ================================================================ */
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--color-navy);
}

.form-wrapper h2 {
  font-size: 1.5rem;
  color: var(--color-cream);
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Two-column layout */
.two-col {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* Form section (suburb pages) */
.form-section {
  background: var(--color-navy);
  padding: var(--section-pad);
}

@media (min-width: 1024px) {
  .form-section { padding: var(--section-pad-lg); }
}

.form-section .section-title {
  color: var(--color-cream);
  text-align: center;
}

.form-section .section-subtitle {
  color: rgba(250, 250, 248, 0.5);
  text-align: center;
  margin: 0 auto 2.5rem;
}

.form-section .gold-underline { margin: 0 auto 0.75rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--color-navy-dark);
  padding: 5rem 0 0;
  color: var(--color-cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 0 var(--container-px-lg); }
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}

.footer-col p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(250, 250, 248, 0.35);
}

.footer-col a {
  display: block;
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.35);
  padding: 0.25rem 0;
  transition: color var(--duration) var(--ease);
}

.footer-col a:hover { color: var(--color-gold); }

.footer-col .contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.35);
}

.footer-col .contact-item i { color: var(--color-gold); width: 16px; }
.footer-col .contact-item a { display: inline; padding: 0; }
.footer-col .contact-item p { margin: 0; }

/* Footer brand area */
.footer-brand {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .footer-brand { grid-column: auto; margin-bottom: 0; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-cream);
}

.footer-logo-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(193, 154, 107, 0.3);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

img.footer-logo-icon {
  border: none;
  border-radius: 4px;
  object-fit: contain;
}

.footer-brand > p {
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.35);
  line-height: 1.7;
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(250, 250, 248, 0.5);
}

.footer-status-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  border-top: 1px solid rgba(250, 250, 248, 0.05);
  margin-top: 3.5rem;
  padding: 2rem var(--container-px);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p {
  font-size: 0.6875rem;
  color: rgba(250, 250, 248, 0.2);
}

.footer-bottom a {
  color: rgba(250, 250, 248, 0.2);
  transition: color var(--duration) var(--ease);
}

.footer-bottom a:hover { color: rgba(193, 154, 107, 0.5); }

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: rgba(250, 250, 248, 0.35);
  transition: color var(--duration) var(--ease);
}

.footer-social a:hover { color: var(--color-gold); }

/* Footer links list */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.25rem; }
.footer-links a {
  display: block;
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.35);
  padding: 0.25rem 0;
  transition: color var(--duration) var(--ease);
}
.footer-links a:hover { color: var(--color-gold); }

/* ================================================================
   SCROLL TO TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 30;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  border: 1px solid rgba(193, 154, 107, 0.2);
  color: var(--color-gold);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--color-gold); color: var(--color-navy); border-color: var(--color-gold); }

/* ================================================================
   MOBILE CALL BUTTON
   ================================================================ */
.mobile-call-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: var(--color-gold);
  color: var(--color-navy);
  padding: 0.75rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

@media (min-width: 1024px) {
  .mobile-call-btn { display: none; }
}

/* ================================================================
   ANIMATIONS — Fade-in on scroll
   ================================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   LEGACY CLASS SUPPORT
   (Ensures existing pages work with the new design system)
   ================================================================ */

/* Navbar classes from homepage / service pages */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.25rem 0;
  transition: all var(--duration-slow) var(--ease);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 rgba(193, 154, 107, 0.15);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

@media (min-width: 1024px) {
  .navbar-inner { padding: 0 var(--container-px-lg); }
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  white-space: nowrap;
}

.navbar-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(193, 154, 107, 0.4);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

img.navbar-logo-icon {
  border: none;
  border-radius: 4px;
  object-fit: contain;
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .navbar-nav { display: flex; }
}

.navbar-nav > li > a {
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(250, 250, 248, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.navbar-nav > li > a:hover { color: var(--color-gold); }
.navbar-nav > li > a svg { width: 12px; height: 12px; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: -1rem;
  min-width: 200px;
  background: var(--color-navy);
  border: 1px solid rgba(193, 154, 107, 0.1);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease);
  z-index: 50;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: rgba(250, 250, 248, 0.7);
  transition: all var(--duration) var(--ease);
}

.dropdown-menu li a:hover {
  color: var(--color-gold);
  background: rgba(193, 154, 107, 0.05);
}

.dropdown-menu li a svg { width: 18px; height: 18px; stroke-width: 1.5; color: var(--color-gold); }

/* Navbar actions */
.navbar-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .navbar-actions { display: flex; }
}

.navbar-instagram,
.navbar-instagram-link,
.navbar-instagram-btn {
  color: rgba(250, 250, 248, 0.6);
  font-size: 1.125rem;
  transition: color var(--duration) var(--ease);
}

.navbar-instagram-link:hover,
.navbar-instagram-btn:hover { color: var(--color-gold); }

.navbar-instagram { position: relative; }

.instagram-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 180px;
  background: var(--color-navy);
  border: 1px solid rgba(193, 154, 107, 0.1);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration) var(--ease);
  z-index: 50;
}

.navbar-instagram:hover .instagram-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.instagram-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  color: rgba(250, 250, 248, 0.6);
  transition: color var(--duration) var(--ease);
}

.instagram-dropdown a:hover { color: var(--color-gold); }
.instagram-dropdown a svg { width: 16px; height: 16px; stroke-width: 1.5; }

/* Navbar toggle */
.navbar-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-cream);
  transition: all var(--duration) var(--ease);
}

.navbar-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (min-width: 1024px) {
  .navbar-toggle { display: none; }
}

/* Mobile menu (homepage/service page variant) */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(26, 26, 46, 0.98);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 3rem;
  visibility: hidden;
  opacity: 0;
  transition: all var(--duration) var(--ease);
  pointer-events: none;
  overflow-y: auto;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0;
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover { background: rgba(255,255,255,0.15); }

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu-group {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.5rem 0;
}

.mobile-menu-group:last-of-type { border-bottom: none; }

.mobile-menu-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  padding: 0.375rem 1rem 0.25rem;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  min-height: 44px;
  transition: background 0.15s ease;
}

.mobile-menu-link:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.mobile-menu-phone { font-weight: 600; }

.mobile-menu-cta-btn {
  display: block;
  width: 100%;
  padding: 0.875rem 1rem;
  margin-top: 0.75rem;
  background: var(--color-gold);
  color: var(--color-navy);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  min-height: 48px;
  line-height: 1.4;
}

.mobile-menu-cta-btn:hover { background: var(--color-gold-light); color: var(--color-navy); }

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

/* Hide header CTA when menu is open */
.navbar:has(.navbar-toggle.active) .navbar-actions .btn {
  opacity: 0;
  pointer-events: none;
}

/* ================================================================
   SECTION HEADER (centered, for legacy pages)
   ================================================================ */
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 600px;
}

.section-header.text-center,
.text-center { text-align: center; }

.text-center .section-header p,
.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ================================================================
   RESPONSIVE ADJUSTMENTS
   ================================================================ */
@media (max-width: 767px) {
  .hero-slideshow { min-height: 85vh; min-height: 85svh; }
  .hero-slide { padding-bottom: 2.5rem; }
  .hero-slide-content { padding-bottom: 1rem; }

  .hero-label { margin-bottom: 0.75rem; font-size: 0.625rem; }
  .hero-title { font-size: clamp(1.5rem, 5.5vw, 2rem); margin-bottom: 0.75rem; }
  .hero-subtitle { font-size: 0.875rem; margin-bottom: 1.25rem; max-width: 100%; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn-lg { padding: 0.75rem 1.5rem; font-size: 0.75rem; }

  .trust-bar { padding: 2.5rem 0; }

  .section { padding: 3.5rem 0; }

  .contact-grid { gap: 2.5rem; }

  .footer-grid { gap: 2rem; }

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

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

/* Print styles */
@media print {
  .nav, .navbar, .mobile-menu, .nav-mobile, .scroll-top, .mobile-call-btn { display: none !important; }
  .hero, .hero-slideshow { min-height: auto; padding: 2rem 0; }
  body { color: #000; background: #fff; }
}
