/* ============================================================
   LUXURY BATHROOMS MELBOURNE - Design System
   ============================================================ */

/* --- Variables --- */
:root {
  /* Dark theme (default) - improved contrast */
  --bg:          #0f0e0c;
  --bg-2:        #181612;
  --bg-3:        #221f1a;
  --bg-card:     #1c1a16;
  --text:        #f5f2ed;
  --text-muted:  #b5aea4;
  --text-dim:    #7a756c;
  --accent:      #07E7C0;
  --accent-light: #7fe8b5;
  --gold:        #07E7C0;
  --gold-light:  #7fe8b5;
  --gold-glow:   rgba(7, 231, 192, 0.18);
  --border:      rgba(7, 231, 192, 0.28);
  --border-dim:  rgba(240, 236, 226, 0.12);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w:        1360px;
  --pad:          clamp(24px, 5vw, 80px);
  --section-pad:  clamp(80px, 10vw, 140px);
  --nav-h:        84px;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Light theme */
[data-theme="light"] {
  --bg:          #faf9f6;
  --bg-2:        #f2f0eb;
  --bg-3:        #eae7e0;
  --bg-card:     #ffffff;
  --text:        #1c1a16;
  --heading-soft: #2a2722;
  --text-muted:  #5c5852;
  --text-dim:    #7a766e;
  --accent:      #0a9d8a;
  --accent-light: #0db8a3;
  --gold:        #0a9d8a;
  --gold-light:  #0db8a3;
  --gold-glow:   rgba(10, 157, 138, 0.12);
  --border:      rgba(0, 0, 0, 0.1);
  --border-dim:  rgba(0, 0, 0, 0.06);
}

/* Light theme overrides for overlays, gradients */
/* Hero: no override — uses default dark overlay (0.95 at bottom) so white text stands out */

/* Page hero: same as home hero — dark overlay, white & green text */
[data-theme="light"] .page-hero-overlay {
  background: linear-gradient(
    to top,
    rgba(11, 10, 8, 0.95) 0%,
    rgba(11, 10, 8, 0.55) 45%,
    rgba(11, 10, 8, 0.2) 100%
  );
}
[data-theme="light"] .page-hero-content,
[data-theme="light"] .page-hero-content .label,
[data-theme="light"] .page-hero-content h1,
[data-theme="light"] .page-hero-content .display-lg,
[data-theme="light"] .page-hero-content .display-xl {
  color: #f5f2ed;
}
[data-theme="light"] .page-hero-content p {
  color: rgba(245, 242, 237, 0.85);
}
[data-theme="light"] .page-hero-content em {
  color: #07E7C0;
}
[data-theme="light"] .page-hero-content .btn-outline {
  color: #f5f2ed;
  border-color: rgba(245, 242, 237, 0.6);
}
[data-theme="light"] .page-hero-content .btn-outline:hover {
  background: rgba(245, 242, 237, 0.1);
  border-color: #f5f2ed;
  color: #f5f2ed;
}
[data-theme="light"] .feature-full-overlay {
  background: linear-gradient(
    135deg,
    rgba(11, 10, 8, 0.82) 0%,
    rgba(11, 10, 8, 0.55) 50%,
    rgba(11, 10, 8, 0.3) 100%
  );
}
[data-theme="light"] .service-card-overlay {
  background: linear-gradient(to top, rgba(11, 10, 8, 0.92) 0%, rgba(11, 10, 8, 0.35) 60%);
}
[data-theme="light"] .service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(11, 10, 8, 0.96) 0%, rgba(11, 10, 8, 0.55) 70%);
}
[data-theme="light"] .portfolio-item-overlay {
  background: linear-gradient(to top, rgba(11, 10, 8, 0.9) 0%, rgba(11, 10, 8, 0.2) 60%);
}
[data-theme="light"] .nav:not(.scrolled) .nav-links a {
  color: #f5f2ed;
}
[data-theme="light"] .nav:not(.scrolled) .nav-links a:hover,
[data-theme="light"] .nav:not(.scrolled) .nav-links a.active {
  color: #07E7C0;
}
[data-theme="light"] .nav:not(.scrolled) .nav-cta {
  color: #0f0e0c;
}
[data-theme="light"] .nav:not(.scrolled) .nav-toggle span {
  background: #f5f2ed;
}
[data-theme="light"] .nav.scrolled {
  background: rgba(250, 249, 246, 0.96);
  border-color: var(--border);
}
[data-theme="light"] .display-md {
  color: var(--heading-soft);
}
[data-theme="light"] .nav-logo img {
  filter: none;
}
[data-theme="light"] .nav.scrolled .nav-logo img {
  filter: brightness(0) saturate(100%);
}
[data-theme="light"] .feature-full-content .label {
  color: var(--accent-light);
}
[data-theme="light"] .feature-full-content .display-lg {
  color: #f5f2ed;
}
[data-theme="light"] .feature-full-content p {
  color: rgba(245, 242, 237, 0.85);
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: rgba(28, 26, 22, 0.5);
}


/* ── Light theme: Hero text stays white over dark video overlay ── */
[data-theme="light"] .hero-content,
[data-theme="light"] .hero-trust-item,
[data-theme="light"] .hero-title,
[data-theme="light"] .hero-subhead,
[data-theme="light"] .hero-desc,
[data-theme="light"] .hero-guarantee {
  color: #f5f2ed;
}
[data-theme="light"] .hero-trust-stars {
  color: #d4af37;
}
[data-theme="light"] .hero-title em {
  color: #07E7C0;
}
[data-theme="light"] .hero-phone {
  color: #07E7C0;
  border-color: #07E7C0;
}
[data-theme="light"] .hero-scroll span {
  color: rgba(245, 242, 237, 0.5);
}

/* ── Light theme: Buttons keep dark text on teal gradient ── */
[data-theme="light"] .btn-gold,
[data-theme="light"] .btn-gold:hover,
[data-theme="light"] .nav-cta,
[data-theme="light"] .nav-cta:hover,
[data-theme="light"] .form-submit,
[data-theme="light"] .floating-call,
[data-theme="light"] .marquee-item {
  color: #0f0e0c;
}

/* ── Light theme: Service cards (text on dark overlay) ── */
[data-theme="light"] .service-card-content {
  color: #f5f2ed;
}
[data-theme="light"] .service-card-desc {
  color: rgba(245, 242, 237, 0.75);
}
[data-theme="light"] .service-card-link {
  color: #07E7C0;
}
[data-theme="light"] .service-card-link .arrow-line {
  background: #07E7C0;
}
[data-theme="light"] .service-card-link .arrow-line::after {
  border-color: #07E7C0;
}

/* ── Light theme: Portfolio items (text on dark overlay) ── */
[data-theme="light"] .portfolio-item-info h3 {
  color: #f5f2ed;
}

/* ── Light theme: Stats bar ── */
[data-theme="light"] .stats-bar {
  background: #ffffff;
}

/* ── Light theme: Why Choose Us video section ── */
[data-theme="light"] .why-choose-us-section {
  background: #faf9f6;
}
[data-theme="light"] .why-choose-us-video-wrap {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .youtube-facade {
  background: #f2f0eb;
}

/* ── Light theme: FAQ ── */
[data-theme="light"] .faq-section {
  background: #faf9f6;
}
[data-theme="light"] .faq-list {
  background: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .faq-item {
  background: #ffffff;
}
[data-theme="light"] .faq-item:hover,
[data-theme="light"] .faq-item[open] {
  background: #faf9f6;
}

/* ── Light theme: Footer ── */
[data-theme="light"] .footer {
  background: #e9e5dc;
}
[data-theme="light"] .footer-brand img {
  filter: none;
}
[data-theme="light"] .footer-social a {
  border-color: rgba(0, 0, 0, 0.16);
}

/* ── Light theme: Estimate popup ── */
[data-theme="light"] .estimate-popup-overlay {
  background: rgba(0, 0, 0, 0.5);
}
[data-theme="light"] .estimate-popup-content {
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}
[data-theme="light"] .estimate-popup-content .form-group input,
[data-theme="light"] .estimate-popup-content .form-group select,
[data-theme="light"] .estimate-popup-content .form-group textarea {
  background: #faf9f6;
  border-color: rgba(0, 0, 0, 0.1);
  color: #1c1a16;
}
[data-theme="light"] .estimate-popup-content .form-group input::placeholder,
[data-theme="light"] .estimate-popup-content .form-group textarea::placeholder {
  color: rgba(28, 26, 22, 0.45);
}
[data-theme="light"] .estimate-popup-content .form-group input:focus,
[data-theme="light"] .estimate-popup-content .form-group select:focus,
[data-theme="light"] .estimate-popup-content .form-group textarea:focus {
  border-color: var(--accent);
}
[data-theme="light"] .estimate-popup-content .form-group label {
  color: #1c1a16;
}

/* ── Light theme: Scrollbar ── */
html[data-theme="light"]::-webkit-scrollbar-track {
  background: #faf9f6;
}

.nav-toggle { margin-right: 0; }

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* --- Typography --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 140px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 90px);
  font-weight: 500;
  line-height: 1.0;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.1;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.2;
}
.label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.body-lg { font-size: clamp(17px, 1.4vw, 20px); font-weight: 500; line-height: 1.75; }
.body-sm { font-size: 15px; font-weight: 400; line-height: 1.7; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: var(--section-pad) 0; }

/* --- Grain Texture --- */
.grain::after {
  content: '';
  position: absolute;
  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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 120px;
  padding-top: env(safe-area-inset-top, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  display: flex;
  align-items: center;
  overflow: visible;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), height 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  height: var(--nav-h);
  background: rgba(11, 10, 8, 0.96);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-color: var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0 var(--pad);
  gap: 16px;
}
.nav-logo {
  flex-shrink: 0;
}
.nav-logo img {
  height: 140px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.nav.scrolled .nav-logo img {
  height: 90px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
}
.nav-dropdown > a::after {
  content: '';
  position: static;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  border-bottom: 0;
  background: none;
  transition: border-color 0.3s var(--ease);
}
.nav-dropdown > a:hover,
.nav-dropdown > a.active {
  color: var(--text);
}
.nav-dropdown > a:hover::after,
.nav-dropdown > a.active::after {
  width: 0;
  background: none;
  border-top-color: currentColor;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  padding: 12px 0;
  background: rgba(11, 10, 8, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 6px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 1100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown-menu li { margin: 0; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #0a9d8a;
}
.nav .nav-dropdown-menu a,
[data-theme="light"] .nav:not(.scrolled) .nav-dropdown-menu a,
[data-theme="light"] .nav.scrolled .nav-dropdown-menu a {
  color: #0a9d8a;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #0a9d8a;
}
[data-theme="light"] .nav-dropdown-menu {
  background: rgba(250, 249, 246, 0.98);
  border-color: var(--border-dim);
}
[data-theme="light"] .nav.scrolled .nav-dropdown > a,
[data-theme="light"] .nav-dropdown-menu a {
  color: #0a9d8a;
}
[data-theme="light"] .nav-dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #0a9d8a;
}
[data-theme="light"] .nav.scrolled .nav-dropdown > a:hover,
[data-theme="light"] .nav.scrolled .nav-dropdown > a.active,
[data-theme="light"] .nav-dropdown-menu a.active {
  color: #0a9d8a;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 17px;
  text-transform: uppercase;
  color: var(--bg);
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  border: 0 solid white !important;
  border-radius: 5px;
  padding: 14px 28px;
  margin-top: 6px;
  transition: opacity 0.3s, transform 0.3s;
}
.nav-cta:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  color: var(--bg);
}
.nav-phone {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + env(safe-area-inset-top, 0));
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--nav-h) - env(safe-area-inset-top, 0));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(11, 10, 8, 0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 32px var(--pad);
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0));
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--accent); }
/* Phone: match hero / UI sans (Jost), not display serif */
.nav-mobile a[href^="tel:"] {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.nav-mobile-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid var(--border-dim);
}
.nav-mobile-group-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-group-trigger:hover { color: var(--accent); }
.nav-mobile-group-trigger::after {
  content: '';
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.nav-mobile-group.open .nav-mobile-group-trigger::after {
  transform: rotate(-135deg);
}
.nav-mobile-sublinks {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0 0 0 20px;
  display: none;
}
.nav-mobile-group.open .nav-mobile-sublinks { display: block; }
.nav-mobile-sublinks a {
  font-size: 16px;
  padding: 6px 0;
  border-bottom: none;
}
[data-theme="light"] .nav-mobile {
  background: rgba(250, 249, 246, 0.98);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 17px;
  text-transform: uppercase;
  padding: 14px 28px;
  margin-top: 6px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  color: var(--bg);
  border: 0 solid transparent !important;
}
.btn-gold:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: rgba(7, 231, 192, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  padding: 0;
  letter-spacing: 0.16em;
  border-bottom: 1px solid rgba(196, 168, 112, 0.3);
  border-radius: 0;
}
.btn-ghost:hover { border-color: var(--gold); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
}
.btn-arrow:hover { gap: 16px; }
.btn-arrow .arrow {
  width: 32px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s;
}
.btn-arrow:hover .arrow { width: 44px; }
.btn-arrow .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  border-right: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  width: 7px; height: 7px;
  transform: rotate(45deg);
}

/* ============================================================
   HERO - HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-bg-video {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* Hero mobile-only static background */
.hero-bg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Hero photo slider with Ken Burns */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slider-track {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  z-index: 0;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide-img {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  width: 110%;
  height: 110%;
  left: -5%;
  top: -5%;
}
.hero-slide.active .hero-slide-img.kenburns {
  animation: kenburns 12s var(--ease) forwards;
}
@keyframes kenburns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  100% {
    transform: scale(1.12) translate(-2%, -1%);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 10, 8, 0.95) 0%,
    rgba(11, 10, 8, 0.65) 45%,
    rgba(11, 10, 8, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}
/* CRO Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-trust-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-trust-stars {
  color: #d4af37;
}
.hero-stars {
  letter-spacing: 0.15em;
  margin-right: 0.25em;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.hero-eyebrow .line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 96px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 20ch;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-title .hero-num {
  font-family: var(--font-body);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}
.hero-subhead {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-desc {
  max-width: 100%;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-cta-primary {
  font-size: 15px !important;
  letter-spacing: 0.18em !important;
  padding: 16px 32px !important;
}
.hero-phone {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  padding: 12px 20px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  transition: color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.hero-phone:hover {
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
  transform: translateY(-1px);
}
.hero-guarantee {
  font-size: 13px;
  color: var(--text);
  letter-spacing: 0.06em;
  max-width: 520px;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   HERO VARIANT A — Editorial Minimal
   ============================================================ */
.hero-v-a .hero-content {
  padding-bottom: clamp(80px, 10vw, 140px);
}
.hero-v-a .hero-trust-item {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(245, 242, 237, 0.6);
}
.hero-v-a .hero-trust-stars {
  color: rgba(212, 175, 55, 0.85);
}
.hero-v-a .hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 110px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 16ch;
}
.hero-v-a .hero-title em {
  font-weight: 300;
}
.hero-v-a .hero-title .hero-line-sm {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 8px;
  color: rgba(245, 242, 237, 0.7);
  font-style: normal;
}
.hero-v-a .hero-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  max-width: 48ch;
  color: rgba(245, 242, 237, 0.7);
  letter-spacing: 0.02em;
}
.hero-v-a .hero-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, #d4af37, transparent);
  margin: 28px 0;
}
.hero-v-a .hero-actions {
  margin-top: 36px;
}
.hero-v-a .hero-cta-primary {
  font-size: 12px !important;
  letter-spacing: 0.24em !important;
  padding: 18px 40px !important;
  border-radius: 0 !important;
}
.hero-v-a .hero-phone {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  border-radius: 0;
}

/* ============================================================
   HERO VARIANT B — Centered Atelier
   ============================================================ */
.hero-v-b {
  align-items: center;
}
.hero-v-b .hero-overlay {
  background: radial-gradient(
    ellipse at center 60%,
    rgba(11, 10, 8, 0.4) 0%,
    rgba(11, 10, 8, 0.75) 50%,
    rgba(11, 10, 8, 0.92) 100%
  );
}
.hero-v-b .hero-content {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-v-b .hero-trust {
  justify-content: center;
}
.hero-v-b .hero-trust-item {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(245, 242, 237, 0.55);
}
.hero-v-b .hero-trust-stars {
  color: #d4af37;
}
.hero-v-b .hero-kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 20px;
}
.hero-v-b .hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  max-width: 18ch;
}
.hero-v-b .hero-title em {
  font-weight: 300;
}
.hero-v-b .hero-gold-rule {
  width: 60px;
  height: 1px;
  background: #d4af37;
  margin: 28px auto;
}
.hero-v-b .hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(245, 242, 237, 0.72);
  letter-spacing: 0.015em;
}
.hero-v-b .hero-actions {
  justify-content: center;
  margin-top: 36px;
}
.hero-v-b .hero-cta-primary {
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
  padding: 18px 44px !important;
  border-radius: 0 !important;
}
.hero-v-b .hero-phone {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  border-radius: 0;
}

/* ============================================================
   HERO VARIANT C — Grand Statement
   ============================================================ */
.hero-v-c .hero-content {
  padding-bottom: clamp(80px, 10vw, 130px);
}
.hero-v-c .hero-trust {
  margin-bottom: 32px;
}
.hero-v-c .hero-trust-item {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: rgba(245, 242, 237, 0.5);
  text-transform: uppercase;
}
.hero-v-c .hero-trust-stars {
  color: #d4af37;
}
.hero-v-c .hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(64px, 9vw, 150px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #f5f2ed;
  margin-bottom: 8px;
}
.hero-v-c .hero-title-sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.6);
  margin-bottom: 0;
}
.hero-v-c .hero-title-accent {
  color: #d4af37;
  font-style: italic;
}
.hero-v-c .hero-meta-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 36px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
.hero-v-c .hero-meta-item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.55);
}
.hero-v-c .hero-meta-item strong {
  color: #d4af37;
  font-weight: 500;
  font-size: 13px;
  margin-right: 4px;
}
.hero-v-c .hero-meta-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.4);
  flex-shrink: 0;
}
.hero-v-c .hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  max-width: 50ch;
  color: rgba(245, 242, 237, 0.7);
}
.hero-v-c .hero-actions {
  margin-top: 32px;
}
.hero-v-c .hero-cta-primary {
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
  padding: 18px 40px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  transition: background 0.3s, color 0.3s;
}
.hero-v-c .hero-cta-primary:hover {
  background: #d4af37 !important;
  color: #0f0e0c !important;
}
.hero-v-c .hero-phone {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.3);
  border-radius: 0;
}
.hero-v-c .hero-phone:hover {
  color: #d4af37;
  border-color: #d4af37;
}
@media (max-width: 768px) {
  .hero-v-b .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .hero-v-c .hero-title-main { font-size: clamp(48px, 12vw, 80px); }
  .hero-v-c .hero-meta-strip { flex-wrap: wrap; gap: 12px; }
  .hero-v-c .hero-meta-sep { display: none; }
}

/* ── Hero version labels (comparison only) ── */
.hero-version-label {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 10;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 237, 0.8);
  background: rgba(11, 10, 8, 0.5);
  padding: 8px 16px;
  border: 1px solid rgba(245, 242, 237, 0.2);
  pointer-events: none;
}

/* ── Hero Variant D — Refined Single Line ── */
.hero-v-d .hero-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(245, 242, 237, 0.7);
  max-width: 44ch;
  margin-bottom: 32px;
}

/* ── Hero Variant E — Serif Whisper ── */
.hero-v-e .hero-accent-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, #d4af37, transparent);
  margin: 24px 0;
}
.hero-v-e .hero-whisper {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(245, 242, 237, 0.6);
  max-width: 38ch;
  margin-bottom: 32px;
}

/* ── Hero Variant E (Serif Whisper): gold button style ── */
.hero-v-e .hero-actions {
  margin-top: 32px;
}
.hero-v-e .hero-cta-primary {
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
  padding: 18px 40px !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  transition: background 0.3s, color 0.3s;
}
.hero-v-e .hero-cta-primary:hover {
  background: #d4af37 !important;
  color: #0f0e0c !important;
}
.hero-v-e .hero-phone {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #d4af37;
  border-color: rgba(212, 175, 55, 0.3);
  border-radius: 0;
}
.hero-v-e .hero-phone:hover {
  color: #d4af37;
  border-color: #d4af37;
}

/* ── Hero Variant F — Minimal Breathe ── */
.hero-v-f .hero-credentials {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 237, 0.45);
}
.hero-v-f .hero-cred-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.5);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-v-f .hero-credentials { flex-wrap: wrap; gap: 10px; }
  .hero-v-f .hero-cred-dot { display: none; }
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 100svh;
  height: 100dvh;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,10,8,0.85) 0%, rgba(11,10,8,0.4) 60%, rgba(11,10,8,0.1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 40px) var(--pad) 60px;
}
.page-hero-content .label { margin-bottom: 16px; }
.page-hero-content .display-lg { max-width: 12ch; }
/* Blog article hero: roomy band, large title */
.page-hero--blog {
  height: auto;
  min-height: clamp(360px, 56vh, 640px);
  max-height: none;
  align-items: center;
}
.page-hero--blog .page-hero-content {
  text-align: center;
  padding-top: calc(var(--nav-h) + 36px);
  padding-bottom: clamp(48px, 7vw, 88px);
}
.page-hero--blog .page-hero-content .display-lg {
  max-width: min(22em, 100%);
  font-size: clamp(38px, 6.5vw, 78px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-left: auto;
  margin-right: auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Service area pages: home-style trust row + hero-title inside page hero */
.page-hero.page-hero--local .page-hero-content .hero-trust {
  margin-bottom: 16px;
}
.page-hero.page-hero--local .page-hero-content .hero-title {
  max-width: min(22ch, 100%);
}
.page-hero.page-hero--local .page-hero-content .hero-subhead {
  font-size: clamp(17px, 1.8vw, 22px);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
  opacity: 0.95;
}
[data-theme="light"] .page-hero-content .hero-trust-item {
  color: #f5f2ed;
}
[data-theme="light"] .page-hero-content .hero-guarantee {
  color: rgba(245, 242, 237, 0.88);
}
[data-theme="light"] .page-hero-content .hero-desc {
  color: rgba(245, 242, 237, 0.9);
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(11,10,8,0.4);
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 40px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-body);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-label-google {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.stat-label-google .google-logo {
  flex-shrink: 0;
}

/* ============================================================
   STATS V2: INLINE STRIP
   ============================================================ */
.stats-inline-strip {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}
.stats-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.stats-inline-item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5c5852;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.stats-inline-item strong {
  font-weight: 500;
  font-size: 15px;
  color: #0a9d8a;
  letter-spacing: 0;
}
.stats-inline-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

/* ============================================================
   STATS V3: COMPACT CARDS
   ============================================================ */
.stats-compact {
  background: #faf9f6;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 0;
}
.stats-compact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stats-compact-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 0 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.stats-compact-item:last-child { border-right: none; }
.stats-compact-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: #0a9d8a;
  line-height: 1;
}
.stats-compact-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5c5852;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ============================================================
   STATS V4: MINIMAL CENTERED
   ============================================================ */
.stats-minimal {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px 0;
}
.stats-minimal-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.stats-minimal-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stats-minimal-num {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 400;
  color: #1c1a16;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-minimal-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0a9d8a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.stats-minimal-divider {
  width: 1px;
  height: 32px;
  background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .stats-inline { gap: 16px; }
  .stats-inline-sep { display: none; }
  .stats-compact-row { flex-wrap: wrap; justify-content: center; }
  .stats-compact-item { padding: 10px 24px; border-right: none; }
  .stats-minimal-row { gap: 24px; flex-wrap: wrap; }
  .stats-minimal-divider { display: none; }
}
@media (max-width: 480px) {
  .stats-compact-row { gap: 0; }
  .stats-compact-item { flex: 1 1 45%; justify-content: center; }
  .stats-minimal-row { gap: 20px; }
  .stats-minimal-item { flex: 1 1 40%; }
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,10,8,0.95) 0%, rgba(11,10,8,0.2) 60%);
  transition: background 0.4s;
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(11,10,8,0.98) 0%, rgba(11,10,8,0.5) 70%);
}
.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  z-index: 2;
}
.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 30ch;
  transform: translateY(0);
  opacity: 1;
}
.service-card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transform: translateY(0);
  opacity: 1;
}
.service-card-link .arrow-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
  position: relative;
  transition: width 0.3s;
}
.service-card:hover .service-card-link .arrow-line { width: 40px; }
.service-card-link .arrow-line::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transform: rotate(45deg);
}
.services-section-white {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: 40px;
}
.services-section-white .section-header p {
  color: #3d3a35;
}
.services-intro-line {
  white-space: nowrap;
}

/* ============================================================
   ABOUT / INTRO SECTION
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 680px;
}
.about-image {
  position: relative;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.about-image:hover img { transform: scale(1.04); }
.about-image-accent {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60%;
  height: 3px;
  background: var(--gold);
}
.about-text {
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.about-text .label { margin-bottom: 20px; }
.about-text .display-md { margin-bottom: 28px; }
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.about-text .btn { margin-top: 36px; align-self: flex-start; }
.about-section-white {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.about-section-white .about-text {
  background: #ffffff;
}
.about-section-white .label {
  color: #0a9d8a;
}
.about-section-white .about-text p {
  color: #3d3a35;
}

/* ============================================================
   WHY CHOOSE US (Videos + Copy)
   ============================================================ */
.why-choose-us-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.why-choose-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: stretch;
}
.why-choose-us-videos {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.why-choose-us-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-dim);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.why-choose-us-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-facade {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: #000;
}
.youtube-facade img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.youtube-facade .youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s;
}
.youtube-facade .youtube-play:hover { transform: translate(-50%, -50%) scale(1.1); }
.youtube-facade .youtube-play svg { display: block; }
.why-choose-us-content .label {
  margin-bottom: 14px;
}
.why-choose-us-content .display-md {
  margin-bottom: 28px;
}
.why-choose-us-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.why-choose-us-content p:last-of-type {
  margin-bottom: 32px;
}
.why-choose-us-content .btn {
  margin-top: 0;
}
.why-choose-us-section-alt {
  border-top: none;
  padding-top: 0;
}
.why-choose-us-grid-reversed {
  grid-template-columns: 0.9fr 1.1fr;
}
.why-choose-us-grid-reversed .why-choose-us-content {
  order: -1;
}

/* ============================================================
   SEAMLESS SECTION (Centered intro + horizontal videos + CTA)
   ============================================================ */
.seamless-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.seamless-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.seamless-intro .label {
  margin-bottom: 14px;
}
.seamless-intro .display-md {
  margin-bottom: 24px;
}
.seamless-title-line {
  white-space: nowrap;
}
.seamless-intro p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}
.seamless-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.seamless-video-wrap {
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border-dim);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.seamless-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.seamless-cta {
  text-align: center;
}
[data-theme="light"] .seamless-section {
  background: #faf9f6;
}
[data-theme="light"] .seamless-video-wrap {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .seamless-videos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .seamless-video-wrap {
    width: 100%;
    min-height: 210px;
  }
}

@media (max-width: 900px) {
  .why-choose-us-grid,
  .why-choose-us-grid-reversed {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .why-choose-us-grid-reversed .why-choose-us-content {
    order: 0;
  }
  .why-choose-us-videos {
    order: 2;
    min-height: 0;
  }
  .why-choose-us-video-wrap {
    flex: none;
  }
  .why-choose-us-content {
    order: 1;
  }
}

/* ============================================================
   FULL-BLEED FEATURE (Our Approach)
   ============================================================ */
.feature-full {
  position: relative;
  min-height: clamp(450px, 60vw, 720px);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: var(--section-pad) 0;
}
.feature-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.feature-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,10,8,0.2) 0%,
    rgba(11,10,8,0.08) 50%,
    rgba(11,10,8,0.04) 100%
  );
}
.feature-full-overlay-light {
  background: linear-gradient(
    135deg,
    rgba(11,10,8,0.12) 0%,
    rgba(11,10,8,0.05) 50%,
    rgba(11,10,8,0.02) 100%
  );
}
.feature-full-overlay-medium-dark {
  background: linear-gradient(
    135deg,
    rgba(11,10,8,0.45) 0%,
    rgba(11,10,8,0.25) 50%,
    rgba(11,10,8,0.12) 100%
  );
}
.feature-full-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.feature-full-content {
  max-width: 700px;
  position: relative;
  z-index: 2;
}
.feature-full-centered {
  justify-content: center;
  padding-left: var(--pad);
  padding-right: var(--pad);
}
.feature-full-centered .feature-full-content {
  text-align: center;
}
.feature-full-content .display-lg { margin: 16px 0 28px; }
.feature-full-content p { color: rgba(240,236,226,0.85); font-size: 16px; margin-bottom: 36px; }
.feature-full-video .why-choose-us-video-wrap {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   FEATURE SPLIT (Image Left, Text Right)
   ============================================================ */
.feature-split {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.feature-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
  min-height: 0;
}
.feature-split-image {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.feature-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}
.feature-split-content .label { margin-bottom: 14px; }
.feature-split-content .display-lg { margin: 16px 0 24px; }
.feature-split-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 45ch;
}

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio-filter {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
}
.portfolio-item.wide {
  grid-column: span 2;
  aspect-ratio: 8/5;
}
.portfolio-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.portfolio-item:hover .portfolio-item-img { transform: scale(1.07); }
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,10,8,0.9) 0%, transparent 60%);
  opacity: 1;
}
.portfolio-item-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px;
  transform: translateY(0);
  opacity: 1;
}
/* old-index.html: keep hover-only behavior for portfolio items */
body.old-index .portfolio-item-overlay { opacity: 0; }
body.old-index .portfolio-item:hover .portfolio-item-overlay { opacity: 1; }
body.old-index .portfolio-item-info { transform: translateY(10px); opacity: 0; }
body.old-index .portfolio-item:hover .portfolio-item-info { transform: translateY(0); opacity: 1; }

.portfolio-item-info .label { margin-bottom: 6px; }
.portfolio-item-info h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-2); }
.testimonials-header {
  margin-bottom: 48px;
  text-align: center;
}
.testimonials-header p {
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-footer {
  margin-top: 48px;
  text-align: center;
}
.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
}
.testimonial-stars span {
  color: #d4af37;
  font-size: 18px;
  line-height: 1;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  margin: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.testimonial-author-name {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Testimonial feature (single spotlight, about page) */
.testimonial-feature {
  max-width: 820px;
  margin: 0 auto;
}
.testimonial-feature .label { display: block; margin-bottom: 20px; }
.testimonial-feature-card {
  background: #faf9f6;
  padding: 48px 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-feature-stars {
  display: flex;
  gap: 6px;
}
.testimonial-feature-stars span {
  color: #d4af37;
  font-size: 26px;
  line-height: 1;
}
.testimonial-feature-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: #1c1a16;
  margin: 0;
}
@media (max-width: 600px) {
  .testimonial-feature-card { padding: 32px 24px; gap: 20px; }
  .testimonial-feature-stars span { font-size: 22px; }
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-dim);
}
.why-item {
  background: var(--bg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.why-item:hover { background: var(--bg-card); }
.why-item:hover::before { height: 100%; }
.why-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.why-item:hover .why-num { color: rgba(196,168,112,0.12); }
.why-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  padding: 14px;
  background: rgba(7, 231, 192, 0.08);
  border-radius: 12px;
  color: var(--gold);
  transition: color 0.4s, transform 0.3s, background 0.3s;
}
.why-icon svg {
  width: 100%;
  height: 100%;
}
.why-item:hover .why-icon {
  color: var(--accent);
  background: rgba(7, 231, 192, 0.14);
  transform: translateY(-2px);
}
.why-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}
.why-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* Why Choose Us - White color scheme (index.html only) */
.why-section-white {
  background: #ffffff !important;
  border-top-color: rgba(0, 0, 0, 0.12) !important;
}
.why-section-white .label {
  color: #0a9d8a;
  font-weight: 600;
}
.why-section-white .section-header .display-md {
  color: var(--heading-soft);
  font-weight: 600;
}
.why-section-white .section-header p {
  color: #2d2b26;
}
.why-section-white .why-grid {
  background: rgba(0, 0, 0, 0.1);
}
.why-section-white .why-item {
  background: #ffffff;
}
.why-section-white .why-item:hover {
  background: #f8f7f4;
}
.why-section-white .why-item::before {
  background: #0a9d8a;
}
.why-section-white .why-num {
  color: #1c1a16;
}
.why-section-white .why-item:hover .why-num {
  color: rgba(28, 26, 22, 0.5);
}
.why-section-white .why-icon {
  color: #0a9d8a;
  background: rgba(10, 157, 138, 0.12);
}
.why-section-white .why-item:hover .why-icon {
  color: #088f7e;
  background: rgba(10, 157, 138, 0.18);
}
.why-section-white .why-title {
  color: #0f0e0c;
  font-weight: 600;
}
.why-section-white .why-desc {
  color: #1c1a16;
  line-height: 1.75;
}

/* Selected Projects - White color scheme */
.portfolio-section-white {
  background: #ffffff !important;
  border-top-color: rgba(0, 0, 0, 0.08) !important;
}
.portfolio-section-white .label {
  color: var(--accent);
}
.portfolio-section-white .section-header .display-md {
  color: var(--heading-soft);
}
.portfolio-section-white .btn-arrow {
  color: #1c1a16;
}
.portfolio-section-white .btn-arrow .arrow {
  background: #1c1a16;
}
.portfolio-section-white .btn-arrow .arrow::after {
  border-color: #1c1a16;
}
.portfolio-section-white .portfolio-filter .filter-btn {
  border-color: rgba(0, 0, 0, 0.2);
  color: #5c5852;
}
.portfolio-section-white .portfolio-filter .filter-btn:hover,
.portfolio-section-white .portfolio-filter .filter-btn.active {
  border-color: #1c1a16;
  color: #1c1a16;
  background: rgba(28, 26, 22, 0.04);
}

/* Split row: title block + CTA (portfolio preview, home blog, etc.) */
.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: clamp(32px, 5vw, 48px);
}
.section-header-split__copy {
  flex: 1 1 min(100%, 36rem);
  min-width: 0;
}
.section-header-split .btn-arrow {
  flex-shrink: 0;
}
.section-header-split__intro {
  margin-top: 12px;
  max-width: min(42ch, 100%);
  color: var(--text-muted);
  font-size: clamp(14px, 1.5vw, 15px);
  line-height: 1.7;
}
.portfolio-section-white .section-header-split__intro {
  color: #5c5852;
}

/* Testimonials - White color scheme */
.testimonials-section-white {
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.testimonials-section-white .label {
  color: var(--accent);
}
.testimonials-section-white .display-md {
  color: var(--heading-soft);
}
.testimonials-section-white p {
  color: #3d3a35;
}
.testimonials-section-white .testimonial-quote,
.testimonials-section-white blockquote {
  color: #1c1a16 !important;
}
.testimonials-section-white .testimonial-author-name {
  color: #5c5852;
}
.testimonials-section-white .testimonial-author-line {
  background: #1c1a16;
}
.testimonials-section-white .testimonial-stars span {
  color: #d4af37;
}
.testimonials-section-white .testimonial-card {
  background: #faf9f6;
  border-color: rgba(0, 0, 0, 0.08);
}
.testimonials-section-white .btn-outline {
  border-color: #1c1a16;
  color: #1c1a16;
}
.testimonials-section-white .btn-outline:hover {
  background: rgba(28, 26, 22, 0.08);
  border-color: #1c1a16;
  color: #1c1a16;
}

/* ============================================================
   BLOG / LATEST
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  width: 100%;
  min-width: 0;
}
.blog-card {
  background: var(--bg-card);
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover { background: var(--bg-3); }
.blog-card-img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-img-wrap {
  overflow: hidden;
  flex-shrink: 0;
  min-width: 0;
}
.blog-card-body {
  padding: clamp(16px, 3.2vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.blog-card-date {
  font-size: clamp(10px, 1.4vw, 11px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
  line-height: 1.45;
  word-wrap: break-word;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.28;
  margin-bottom: 12px;
  transition: color 0.3s;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.blog-card:hover .blog-card-title { color: var(--gold); }
.blog-card-excerpt {
  font-size: clamp(13px, 1.45vw, 14px);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Blog post article (generated + static) */
.blog-author {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 32px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  border: 1px solid transparent;
}
.blog-author img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-author-info h4 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}
.blog-author-info p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
[data-theme="light"] .blog-author {
  background: var(--bg-2);
  border-color: var(--border);
}
[data-theme="light"] .blog-author-info h4 {
  color: var(--heading-soft);
}

.blog-card > a {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-card .service-card-link {
  margin-top: auto;
  padding-top: 16px;
  pointer-events: none;
  flex-shrink: 0;
}
.blog-card:hover .service-card-link .arrow-line {
  width: 40px;
}

[data-theme="light"] .portfolio-section-white .blog-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
}
[data-theme="light"] .portfolio-section-white .blog-grid {
  gap: clamp(16px, 2vw, 24px);
  background: transparent;
}

@media (max-width: 1200px) {
  .blog-grid { gap: clamp(8px, 1.2vw, 16px); }
}

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .section-header-split {
    align-items: flex-start;
    flex-direction: column;
  }
  .section-header-split .btn-arrow {
    align-self: stretch;
    width: 100%;
    justify-content: center;
    padding: 14px 16px;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(14px, 3vw, 20px);
  }
  .blog-card .service-card-link {
    padding-top: 14px;
  }
}

@media (max-width: 480px) {
  .section-header-split {
    margin-bottom: 28px;
    gap: 14px;
  }
  .blog-card-body {
    padding: 16px 14px;
  }
  .blog-card-date {
    letter-spacing: 0.1em;
  }
  .blog-card-title {
    font-size: clamp(16px, 4.5vw, 19px);
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section .section-header { margin-bottom: 48px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-dim);
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg);
  transition: background 0.3s;
}
.faq-item:hover { background: var(--bg-card); }
.faq-item[open] { background: var(--bg-card); }
.faq-question {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 500;
  padding: 20px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.3s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-question:hover { color: var(--accent); }
.faq-answer {
  padding: 0 28px 20px;
}
.faq-answer p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  margin: 16px 0;
  padding-left: 24px;
}
.faq-answer li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
  list-style: disc;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.cta-section .label { margin-bottom: 16px; }
.cta-section .display-md {
  margin-bottom: 20px;
  max-width: 25ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p { color: var(--text); max-width: 45ch; margin: 0 auto 40px; font-size: 15px; line-height: 1.75; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
/* Get in touch: consistent styling on all pages (cta-section + section) */
#get-in-touch {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
#get-in-touch.cta-section-dark-bg {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#get-in-touch.cta-section-light {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(48px, 6vw, 72px) 0;
}
#get-in-touch .contact-grid {
  align-items: stretch;
  gap: 40px;
  min-width: 0;
}
.cta-section .contact-grid .contact-info .display-md { margin-left: 0; margin-right: 0; }
.cta-section .contact-grid .contact-info p {
  margin: auto;
}
#get-in-touch .contact-info p {
  color: var(--text);
}
/* Contact page: left-aligned testimonial */
#get-in-touch.section .get-in-touch-testimonial {
  align-items: flex-start;
  text-align: left;
}
#get-in-touch .contact-info,
#get-in-touch .reveal-right {
  display: flex;
  min-width: 0;
}
#get-in-touch .contact-info-box,
#get-in-touch .get-in-touch-form-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
#get-in-touch .contact-info-box { justify-content: center; }
.contact-info-box {
  background: var(--bg-card);
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contact-info-box .label { margin-bottom: 4px; }
.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}
.contact-info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info-link:hover { color: var(--gold); }
.contact-icon { flex-shrink: 0; opacity: 0.9; }
.contact-info-box p { margin: 0; }
.contact-info-box .get-in-touch-testimonial {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  width: 100%;
}
.homepage-contact-info-box {
  align-items: stretch;
  gap: 14px;
  padding: 22px;
  text-align: left;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(30, 28, 24, 0.98) 0%, rgba(20, 18, 15, 0.98) 100%);
}
.homepage-contact-panel {
  padding: 20px;
  border: 1px solid rgba(240, 236, 226, 0.08);
  background: rgba(255, 255, 255, 0.025);
}
.homepage-contact-panel .label {
  margin-bottom: 10px;
}
.homepage-contact-panel-copy p {
  max-width: 38ch;
}
.homepage-contact-panel-review .get-in-touch-testimonial {
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.homepage-contact-panel-review .get-in-touch-quote {
  max-width: none;
  font-size: 16px;
  line-height: 1.8;
}
.homepage-contact-panel-review .get-in-touch-author {
  align-self: stretch;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 1;
}
.homepage-contact-panel-details .contact-info-row {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}
.homepage-contact-panel-details .contact-info-link {
  font-size: 18px;
}
.homepage-contact-panel-details .contact-icon {
  color: var(--gold-light);
}
#get-in-touch.cta-section-light .homepage-contact-info-box {
  background:
    radial-gradient(circle at top left, rgba(10, 157, 138, 0.08), transparent 42%),
    linear-gradient(180deg, #faf9f6 0%, #f4f1eb 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 60px rgba(30, 26, 22, 0.08);
}
#get-in-touch.cta-section-light .homepage-contact-panel {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
#get-in-touch.cta-section-light .homepage-contact-panel .label {
  color: #0a9d8a;
}
#get-in-touch.cta-section-light .homepage-contact-panel-copy h2,
#get-in-touch.cta-section-light .homepage-contact-panel-copy p,
#get-in-touch.cta-section-light .homepage-contact-panel-review .get-in-touch-quote,
#get-in-touch.cta-section-light .homepage-contact-panel-details .contact-info-link,
#get-in-touch.cta-section-light .homepage-contact-panel-details .contact-icon {
  color: #1c1a16;
}
#get-in-touch.cta-section-light .homepage-contact-panel-review .get-in-touch-author {
  color: #0a9d8a;
}
#get-in-touch.cta-section-light .homepage-contact-panel-review .get-in-touch-reviews {
  color: #1c1a16;
}
#get-in-touch.cta-section-light .homepage-contact-panel-review .get-in-touch-reviews:hover,
#get-in-touch.cta-section-light .homepage-contact-panel-details .contact-info-link:hover {
  color: #0a9d8a;
}
#get-in-touch.cta-section-dark-bg .homepage-contact-info-box {
  background:
    radial-gradient(circle at top left, rgba(10, 157, 138, 0.08), transparent 42%),
    linear-gradient(180deg, #faf9f6 0%, #f4f1eb 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}
#get-in-touch.cta-section-dark-bg .homepage-contact-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
#get-in-touch.cta-section-dark-bg .homepage-contact-panel .label,
#get-in-touch.cta-section-dark-bg .get-in-touch-form-box .label {
  color: #0a9d8a;
}
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-copy h2,
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-copy p,
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-review .get-in-touch-quote,
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-details .contact-info-link,
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-details .contact-icon,
#get-in-touch.cta-section-dark-bg .get-in-touch-form-box,
#get-in-touch.cta-section-dark-bg .form-group label {
  color: #1c1a16;
}
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-review .get-in-touch-author {
  color: #0a9d8a;
}
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-review .get-in-touch-reviews {
  color: #1c1a16;
}
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-review .get-in-touch-reviews:hover,
#get-in-touch.cta-section-dark-bg .homepage-contact-panel-details .contact-info-link:hover {
  color: #0a9d8a;
}
#get-in-touch.cta-section-dark-bg .get-in-touch-form-box {
  background: #faf9f6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid #0a9d8a;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}
#get-in-touch.cta-section-dark-bg .form-group input,
#get-in-touch.cta-section-dark-bg .form-group select,
#get-in-touch.cta-section-dark-bg .form-group textarea {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #1c1a16;
}
#get-in-touch.cta-section-dark-bg .form-group input::placeholder,
#get-in-touch.cta-section-dark-bg .form-group textarea::placeholder {
  color: rgba(28, 26, 22, 0.45);
}
#get-in-touch.cta-section-dark-bg .form-group input:focus,
#get-in-touch.cta-section-dark-bg .form-group textarea:focus,
#get-in-touch.cta-section-dark-bg .form-group select:focus {
  border-color: #0a9d8a;
}
.cta-showcase-section {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 48px;
}
.cta-showcase-section .section-header {
  margin-bottom: 0;
}
.cta-showcase-section .section-header .display-md,
.cta-showcase-section .section-header p {
  color: #1c1a16;
}
.cta-showcase-section .section-header p {
  max-width: 58ch;
}
.cta-variant-elegant {
  background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.cta-variant-shell {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fffdf9;
  box-shadow: 0 30px 80px rgba(27, 23, 18, 0.08);
}
.cta-variant-elegant-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
}
.cta-variant-story {
  padding: clamp(44px, 6vw, 72px);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 34%),
    linear-gradient(180deg, #fffaf2 0%, #f6f0e7 100%);
  color: #1c1a16;
}
.cta-variant-story .display-md {
  color: #1c1a16;
  margin: 12px 0 20px;
}
.cta-variant-lead {
  max-width: 42ch;
  color: #3d3a35;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-editorial-review {
  padding: 28px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 28px;
}
.cta-editorial-review .stars,
.cta-editorial-review .get-in-touch-reviews {
  margin-bottom: 14px;
}
.cta-editorial-review .get-in-touch-quote,
.cta-concierge-review .get-in-touch-quote {
  max-width: none;
  color: #1c1a16;
  font-size: 16px;
  line-height: 1.85;
}
.cta-editorial-review .get-in-touch-author,
.cta-concierge-review .get-in-touch-author {
  margin-top: 12px;
  margin-bottom: 14px;
  color: #7d705f;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.cta-editorial-review .get-in-touch-reviews,
.cta-concierge-review .get-in-touch-reviews {
  color: #1c1a16;
}
.cta-editorial-review .get-in-touch-reviews:hover,
.cta-concierge-review .get-in-touch-reviews:hover {
  color: #0a9d8a;
}
.cta-editorial-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cta-editorial-point {
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.cta-point-kicker {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0a9d8a;
}
.cta-editorial-point p {
  color: #3d3a35;
  font-size: 15px;
  line-height: 1.75;
}
.cta-variant-form-card {
  display: flex;
}
.cta-form-card-elegant,
.cta-form-card-concierge {
  flex: 1;
  background: #ffffff;
  border: none;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 0;
  padding: clamp(40px, 5vw, 56px);
}
.cta-form-card-elegant .label,
.cta-form-card-concierge .label {
  color: #0a9d8a;
}
.cta-variant-concierge {
  background: #ffffff;
}
.cta-concierge-shell {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:
    linear-gradient(180deg, rgba(10, 157, 138, 0.04) 0%, rgba(255, 255, 255, 1) 36%);
  box-shadow: 0 24px 70px rgba(27, 23, 18, 0.06);
}
.cta-concierge-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.cta-concierge-heading .display-md {
  color: #1c1a16;
  margin: 12px 0 18px;
}
.cta-concierge-heading p {
  max-width: 48ch;
  color: #3d3a35;
}
.cta-concierge-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 16px;
}
.cta-metric {
  padding: 20px 18px;
  background: #faf9f6;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}
.cta-metric strong {
  display: block;
  color: #1c1a16;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}
.cta-metric span {
  color: #5c5852;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta-concierge-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
}
.cta-concierge-info {
  padding: clamp(32px, 4vw, 48px);
  background: #faf9f6;
  display: grid;
  gap: 20px;
}
.cta-concierge-card {
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
}
.cta-concierge-card h3 {
  color: #1c1a16;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 14px;
}
.cta-concierge-card p {
  color: #3d3a35;
  line-height: 1.8;
}
.cta-concierge-list {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.cta-concierge-list li {
  position: relative;
  padding-left: 18px;
  color: #3d3a35;
}
.cta-concierge-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0a9d8a;
}
.cta-concierge-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
}
.cta-concierge-links .contact-info-link {
  font-size: 18px;
  color: #1c1a16;
}
.cta-concierge-links .contact-info-link:hover {
  color: #0a9d8a;
}
.cta-concierge-form {
  display: flex;
}
.cta-form-card-concierge {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}
.cta-section-light .contact-info-box {
  background: #faf9f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid #0a9d8a;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.get-in-touch-form-box {
  background: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  text-align: left;
  min-width: 0;
  max-width: 100%;
}
.get-in-touch-form-box form {
  text-align: left;
  min-width: 0;
  max-width: 100%;
}
.get-in-touch-form-box .form-group {
  margin-bottom: 16px;
  gap: 6px;
}
.get-in-touch-form-box .form-group textarea {
  min-height: auto;
}
.get-in-touch-form-box .label,
.get-in-touch-form-box .form-group label {
  text-align: left;
}
.get-in-touch-testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.get-in-touch-testimonial .stars {
  margin-bottom: 0;
}
.get-in-touch-testimonial .stars span { color: #d4af37; font-size: 16px; }
.get-in-touch-quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  max-width: 32ch;
  margin: 0;
  font-style: italic;
}
.quote-highlight {
  color: inherit;
  font-weight: inherit;
  padding: 0 0.12em;
  background:
    linear-gradient(
      transparent 38%,
      rgba(10, 157, 138, 0.18) 38%,
      rgba(10, 157, 138, 0.18) 88%,
      transparent 88%
    );
  border-radius: 0.08em;
}
.get-in-touch-author {
  font-size: 13px;
  color: var(--text);
  opacity: 0.85;
  margin: 0;
  text-align: left;
  width: 100%;
}
.get-in-touch-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.get-in-touch-reviews:hover { color: var(--gold); }
.get-in-touch-form-box .label { display: block; margin-bottom: 14px; }

/* ── Get in Touch Variant: Light ───────────────────────────── */
.cta-section-light {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.cta-section-light .label { color: #0a9d8a; margin-bottom: 16px; }
.cta-section-light .display-md { color: var(--heading-soft); margin-bottom: 20px; }
.cta-section-light p { color: #3d3a35; }
.cta-section-light .contact-info-item a,
.cta-section-light .contact-info-item span { color: #1c1a16; }
.cta-section-light .contact-info-item a:hover { color: #0a9d8a; }
.cta-section-light .contact-info-link { color: #1c1a16; }
.cta-section-light .contact-info-link:hover { color: #0a9d8a; }
.cta-section-light .get-in-touch-quote { color: #1c1a16; }
.cta-section-light .get-in-touch-author { color: #5c5852; }
.cta-section-light .get-in-touch-reviews { color: #1c1a16; }
.cta-section-light .get-in-touch-reviews:hover { color: #0a9d8a; }
.cta-section-light .get-in-touch-form-box {
  background: #faf9f6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid #0a9d8a;
}
.cta-section-light .form-group label { color: #1c1a16; }
.cta-section-light .form-group input,
.cta-section-light .form-group select,
.cta-section-light .form-group textarea {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: #1c1a16;
}
.cta-section-light .form-group input::placeholder,
.cta-section-light .form-group textarea::placeholder {
  color: rgba(28, 26, 22, 0.45);
}
.cta-section-light .form-group input:focus,
.cta-section-light .form-group textarea:focus,
.cta-section-light .form-group select:focus {
  border-color: #0a9d8a;
}
.cta-section-light .form-submit {
  background: linear-gradient(to right, #0a9d8a, #0db8a3);
  color: #ffffff;
}

/* ── Get in Touch Variant: Background Image ───────────────── */
.cta-section-bg {
  position: relative;
  background: transparent !important;
  border: none !important;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
  overflow: hidden;
}
.cta-section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--cta-bg-image, url('images/GOOGLE/lbm-bathroom-greviews-06.webp'));
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-section-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 14, 12, 0.92) 0%, rgba(24, 22, 18, 0.88) 100%);
  z-index: 1;
}
.cta-section-bg .container {
  position: relative;
  z-index: 2;
}
.cta-section-bg .label { margin-bottom: 16px; }
.cta-section-bg .display-md { margin-bottom: 20px; }
.cta-section-bg p { color: var(--text); }
.cta-section-bg .get-in-touch-form-box {
  background: rgba(28, 26, 22, 0.95);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  backdrop-filter: blur(12px);
}
.cta-section-bg .form-group input,
.cta-section-bg .form-group select,
.cta-section-bg .form-group textarea {
  background: rgba(15, 14, 12, 0.6);
  border-color: rgba(7, 231, 192, 0.25);
}
.cta-section-bg .form-group input:focus,
.cta-section-bg .form-group textarea:focus,
.cta-section-bg .form-group select:focus {
  border-color: var(--gold);
  background: rgba(15, 14, 12, 0.8);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info-item { display: flex; flex-direction: column; gap: 6px; }
.contact-info-item .label { margin-bottom: 4px; }
.contact-info-item a, .contact-info-item span {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  transition: color 0.3s;
}
.contact-info-item a:hover { color: var(--gold); }

/* Form */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 236, 226, 0.65);
}
.form-group select {
  color: var(--text);
}
.form-group select option {
  background: var(--bg-2);
  color: var(--text);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select { cursor: pointer; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  color: var(--bg);
  border: 0 solid white !important;
  border-radius: 5px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 17px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.95; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: steps;
}
.process-step {
  counter-increment: steps;
  position: relative;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}
.process-step::before {
  content: counter(steps);
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 2px solid var(--gold);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 44px;
  text-align: center;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.process-step-desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}
/* Process section intro text - higher contrast */
.section:has(.process-steps) .section-header p {
  color: var(--text);
}
/* Process steps - 4 columns inline (Moorabbin) */
.process-steps-inline {
  grid-template-columns: repeat(4, 1fr);
}

/* Process Steps Variant: Zero-Padded Refined */
.process-steps-v3 .process-step {
  border-top: none;
  padding-top: 0;
}
.process-steps-v3 .process-step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--accent);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(10, 157, 138, 0.25);
  width: auto;
  height: auto;
  border-radius: 0;
  line-height: 1;
  margin-bottom: 18px;
  padding-bottom: 12px;
  display: inline-block;
  letter-spacing: 0.04em;
}

/* ============================================================
   MID-PAGE CTA STRIP
   ============================================================ */
.mid-cta-strip {
  background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: clamp(48px, 6vw, 72px) 0;
}
.mid-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 60px);
  flex-wrap: wrap;
}
.mid-cta-text .display-sm {
  color: #0f0e0c;
  margin-bottom: 8px;
}
.mid-cta-text p {
  color: #3d3a35;
  font-size: 16px;
  max-width: 40ch;
  margin: 0;
}
.mid-cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.mid-cta-strip .btn-outline {
  border-color: #1c1a16;
  color: #1c1a16;
}
.mid-cta-strip .btn-outline:hover {
  background: rgba(28, 26, 22, 0.06);
  border-color: #1c1a16;
  color: #1c1a16;
}
@media (max-width: 768px) {
  .mid-cta-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .mid-cta-text p { max-width: none; }
  .mid-cta-actions { justify-content: center; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dim);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 28ch;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-social svg {
  flex-shrink: 0;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--text); }
.footer-areas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-dim);
}
.footer-areas .label { flex-shrink: 0; }
.footer-areas-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-areas-list a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-areas-list a:hover { color: var(--gold); }
.footer-areas-list .sep { color: var(--border); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header .label { margin-bottom: 14px; }
.section-header .display-md { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); max-width: 50ch; font-size: 17px; }
.section-header.centered p { margin: 0 auto; }

/* Gold divider */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.gold-divider .line { flex: 1; height: 1px; background: var(--border); }
.gold-divider .diamond {
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   FOUNDER SECTION (Meet the founder)
   ============================================================ */
.founder-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0;
}
.founder-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}
.founder-split-reversed .founder-image-accent {
  left: -1px;
  right: auto;
}
.founder-image {
  position: relative;
  overflow: hidden;
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}
.founder-image:hover img { transform: scale(1.04); }
.founder-image-accent {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60%;
  height: 3px;
  background: var(--gold);
}
.founder-content {
  padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-2);
}
.founder-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.founder-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 28px;
  line-height: 1.2;
}
.founder-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.founder-text:last-of-type { margin-bottom: 0; }
.founder-stats {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.founder-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.founder-stat-num {
  font-family: var(--font-body);
  font-size: 42px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.founder-stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .founder-split { grid-template-columns: 1fr; min-height: 0; }
  .founder-split-reversed .founder-image { order: -1; }
  .founder-image { aspect-ratio: 16/9; }
  .founder-image img { object-position: center center; }
}

/* Services overview (/services) */
.service-detail-quote {
  margin: 0 0 24px;
  padding: 0 0 0 20px;
  border-left: 3px solid var(--gold);
}
.service-detail-quote .display-md { margin: 0; }
.services-detail-prose {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.services-detail-prose:last-of-type { margin-bottom: 0; }
.services-detail-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.services-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  align-items: center;
}
.services-quick-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}
.services-quick-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.services-easy-steps {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  counter-reset: srvstep;
}
.services-easy-steps li {
  counter-increment: srvstep;
  position: relative;
  padding-left: 48px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}
.services-easy-steps li:last-child { margin-bottom: 0; }
.services-easy-steps li::before {
  content: counter(srvstep);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
}
.services-easy-steps .services-step-title {
  display: block;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.team-section .about-split { grid-template-columns: 5fr 6fr; }
/* Values section - light background for contrast */
.values-section-light {
  background: #faf9f6 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.values-section-light .label {
  color: #087a6e;
  font-weight: 600;
}
.values-section-light .section-header .display-md {
  color: #0f0e0c;
}
.values-section-light .section-header p {
  color: #3d3a35;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin-top: 60px;
}
.value-item {
  background: #ffffff;
  padding: 40px 32px;
}
.values-section-light .value-item {
  background: #ffffff;
}
.value-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}
.values-section-light .value-icon {
  border-color: #0a9d8a;
  background: rgba(10, 157, 138, 0.08);
  color: #087a6e;
}
.value-icon svg {
  flex-shrink: 0;
}
.value-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.values-section-light .value-title {
  color: #0f0e0c;
}
.value-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.values-section-light .value-desc {
  color: #2d2b26;
}

/* ============================================================
   PROJECT GALLERY MODAL
   ============================================================ */
.project-gallery img { cursor: pointer; }
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.image-modal.open {
  opacity: 1;
  visibility: visible;
}
.image-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 10, 8, 0.95);
  cursor: pointer;
}
.image-modal-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  z-index: 1;
  padding-top: 48px;
}
.image-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.image-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.image-modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border-dim);
}
.service-row {
  background: var(--bg);
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  padding: 32px 40px;
  gap: 40px;
  cursor: pointer;
  transition: background 0.3s;
  border-left: 2px solid transparent;
}
.service-row:hover {
  background: var(--bg-card);
  border-color: var(--gold);
}
.service-row-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--border);
}
.service-row-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 6px;
}
.service-row-info p {
  font-size: 13px;
  color: var(--text-muted);
}
.service-row-arrow {
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s;
}
.service-row:hover .service-row-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-card {
  background: var(--bg-card);
  padding: 48px 40px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.pricing-card.featured {
  background: var(--bg-3);
  border-color: var(--gold);
}
.pricing-card:hover { border-color: var(--gold); }
.pricing-tier {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-price span {
  font-size: 16px;
  color: var(--text-muted);
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-dim);
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-feature::before {
  content: '-';
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-display);
}

/* ============================================================
   TRUST STRIP (4-col stats)
   ============================================================ */
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dim);
}
.trust-stat-number {
  font-family: var(--font-body);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Responsive utility for 2-col grids */
.responsive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.responsive-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.pricing-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-dim);
}
.suburbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-dim);
}

/* Where We Work — Refined Cards */
.where-we-work-v3-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.where-we-work-v3 .label { color: #0a9d8a; display: block; margin-bottom: 14px; }
.where-we-work-v3 .display-md { margin-bottom: 20px; color: var(--heading-soft); }
.where-we-work-v3 p { color: #3d3a35; font-size: 15px; line-height: 1.8; margin: 0; }
.where-we-work-v3-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.where-card {
  padding: 24px;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #1c1a16;
  background: #faf9f6;
  border-left: 3px solid #0a9d8a;
  transition: background 0.3s, transform 0.2s;
}
.where-card:hover {
  background: rgba(10, 157, 138, 0.04);
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .where-we-work-v3-inner { grid-template-columns: 1fr; gap: 40px; }
  .where-we-work-v3-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .where-we-work-v3-grid { grid-template-columns: 1fr; }
}

/* Large tablets / small laptops (1024px - 1280px) */
@media (max-width: 1280px) {
  .nav-logo img { height: 90px; }
  .nav-links { gap: 28px; }
  .responsive-grid { gap: 48px; }
  .services-list-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Hide header CTA in mid-range viewports (1025px - 1480px) */
@media (min-width: 1025px) and (max-width: 1480px) {
  .nav-cta { display: none !important; }
}

/* Nav-inner padding override for 1025px - 1125px */
@media (min-width: 1025px) and (max-width: 1125px) {
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0;
    gap: 16px;
  }
}

/* Tablets & small laptops - switch to hamburger menu (768px - 1024px) */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta,
  .nav-phone { display: none !important; }
  .nav-toggle { display: flex; }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-logo img { height: 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px; }
  .stat-item:nth-child(2) { border-right: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/9; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  #get-in-touch .contact-info { order: 2; }
  #get-in-touch .reveal-right { order: 1; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps-inline { grid-template-columns: repeat(4, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 16/9; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.wide { grid-column: span 2; }
  .feature-full-bg { background-attachment: scroll; }
  .feature-full-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-full-video { order: 2; }
  .feature-full-content { order: 1; max-width: 100%; }
  .feature-split-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-split-image { order: 1; }
  .feature-split-content { order: 2; }
  .feature-split-image img { aspect-ratio: 16/9; }
  .feature-split-content p { max-width: 100%; }
  .cta-variant-elegant-grid,
  .cta-concierge-top,
  .cta-concierge-grid {
    grid-template-columns: 1fr;
  }
  .cta-concierge-metrics {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cta-form-card-elegant,
  .cta-form-card-concierge {
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }
  .cta-editorial-points {
    grid-template-columns: 1fr;
  }
  .get-in-touch-form-box { padding: 32px 24px; }
  .contact-info-box { padding: 32px 24px; }
  .homepage-contact-info-box {
    padding: 24px;
  }
  .homepage-contact-panel {
    padding: 22px;
  }
  .testimonials-cards { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* Phones & small tablets (480px - 768px) */
@media (max-width: 768px) {
  .mobile-center { text-align: center; }
  :root { --nav-h: 68px; }
  .nav-logo img { height: 70px; }
  .nav-phone { display: none !important; }
  
  .hero { min-height: 420px; }
  .hero-bg-mobile { display: block; }
  .hero-bg-slider { display: none; }
  .hero-scroll { display: none; }
  .hero-desc { max-width: 100%; }
  .hero-trust { font-size: 11px; justify-content: center; }
  .hero-trust-item { letter-spacing: 0.08em; }
  /* Center hero content on mobile */
  .hero-content { text-align: center; }
  .hero-title { margin-left: auto; margin-right: auto; }
  .hero-subhead { margin-left: auto; margin-right: auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-guarantee { margin-left: auto; margin-right: auto; text-align: center; max-width: 100%; }
  .services-intro-line,
  .seamless-title-line {
    white-space: normal;
  }
  
  .page-hero { min-height: 320px; }
  .page-hero.page-hero--blog {
    min-height: clamp(300px, 50vh, 480px);
    height: auto;
  }
  .page-hero-content { padding: calc(var(--nav-h) + 24px) var(--pad) 40px; }
  
  .faq-question { padding: 20px 24px; font-size: 18px; }
  .faq-answer { padding: 0 24px 20px; }
  
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .form-row { grid-template-columns: 1fr; }
  .form-row .form-group { min-width: 0; }
  .form-submit, .btn, .nav-cta { min-height: 48px; padding: 14px 24px; }
  /* 16px avoids iOS Safari zoom-on-focus; split rules so textarea keeps usable height */
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 14px 16px;
    max-width: 100%;
  }
  .form-group input,
  .form-group select {
    min-height: 48px;
  }
  .form-group textarea {
    min-height: 120px;
    line-height: 1.5;
  }
  
  .process-steps { grid-template-columns: 1fr; }
  .process-steps-inline { grid-template-columns: repeat(2, 1fr); }
  .process-step,
  .process-step-title,
  .process-step-desc {
    text-align: left;
  }
  .process-step::before {
    margin-left: 0;
    margin-right: 0;
  }
  .values-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.wide { grid-column: span 1; aspect-ratio: 4/5; }
  
  .service-row { grid-template-columns: 1fr; padding: 24px; gap: 12px; }
  .service-row-num { display: none; }
  
  .section-header .display-md,
  .hero-title { word-break: break-word; }
  
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-strip-grid > div { padding: 24px 20px; }
  .trust-strip-grid > div > div:first-child { font-size: 32px; }
  
  .testimonials-cards { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-cards .testimonial-card:nth-child(n+4) {
    display: none;
  }
  
  .responsive-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-list-grid { grid-template-columns: 1fr; }
  .pricing-cards-grid { grid-template-columns: 1fr; }
  .pricing-cards-grid > div { padding: 32px 24px !important; }
  .suburbs-grid { grid-template-columns: 1fr 1fr; }
  
  .stats-bar { padding: 32px 0; }
  .stat-item { padding: 20px 16px; }
  .stat-number { font-size: clamp(36px, 8vw, 56px); }
  .homepage-contact-panel-details .contact-info-link {
    font-size: 16px;
    line-height: 1.5;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .homepage-contact-panel-details .email-display {
    display: none;
  }
  .homepage-contact-panel-details .email-display {
    align-items: flex-start;
  }
  .homepage-contact-panel-details .email-replace {
    display: inline-flex !important;
    align-items: flex-start;
  }
  #get-in-touch .get-in-touch-form-box,
  #get-in-touch .get-in-touch-form-box .label,
  #get-in-touch .get-in-touch-form-box form,
  #get-in-touch .get-in-touch-form-box .form-group label {
    text-align: left;
  }
  #get-in-touch .get-in-touch-form-box .form-group {
    width: 100%;
    max-width: 100%;
  }
  .footer-col ul a,
  .footer-brand p,
  .footer-bottom p,
  .footer-bottom a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .footer {
    overflow-x: clip;
  }
  .footer-areas {
    align-items: flex-start;
    gap: 16px;
  }
  .footer-areas-list {
    min-width: 0;
    gap: 8px 12px;
  }
}

/* Small phones (320px - 480px) */
@media (max-width: 480px) {
  .nav-logo img { height: 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .portfolio-filter { flex-wrap: wrap; gap: 8px; }
  .filter-btn { padding: 10px 16px; font-size: 10px; }
  .marquee-item { font-size: 10px; padding: 0 24px; }
  .service-card-content, .portfolio-item-overlay { padding: 24px; }
  .display-xl { font-size: clamp(40px, 12vw, 56px); }
  .display-lg { font-size: clamp(36px, 10vw, 48px); }
  .display-md { font-size: clamp(28px, 8vw, 40px); }
  :root { --pad: 20px; }
  .suburbs-grid { grid-template-columns: 1fr; }
  .process-steps-inline { grid-template-columns: 1fr; }
  .footer-areas {
    flex-direction: column;
  }
  .footer-areas-list .sep {
    display: none;
  }
}

/* Very small phones (e.g. iPhone SE 320px) */
@media (max-width: 360px) {
  .nav-logo img { height: 52px; }
  :root { --pad: 16px; }
  .get-in-touch-form-box { padding: 24px 16px; }
  .contact-info-box { padding: 24px 16px; }
  .homepage-contact-panel-details .contact-info-link { font-size: 16px; }
  .cta-concierge-metrics {
    grid-template-columns: 1fr;
  }
}

/* --- Floating Call Button --- */
.floating-call {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  right: max(20px, env(safe-area-inset-right));
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(to right, #7acfde, #7fe8b5);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 0 solid transparent !important;
  border-radius: 5px;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: transform var(--ease-out) 0.2s, box-shadow 0.2s, opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.floating-call.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.floating-call:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: 0 6px 32px rgba(7, 231, 192, 0.35);
}
.floating-call:active { transform: translateY(0); }
.floating-call-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.floating-call-icon svg { width: 100%; height: 100%; }
@media (max-width: 768px) {
  .floating-call {
    padding: 12px 20px;
    font-size: 12px;
    letter-spacing: 0.12em;
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }
  .floating-call-icon {
    width: 18px;
    height: 18px;
  }
  body.mobile-menu-open .floating-call {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* ============================================================
   ESTIMATE POPUP (Exit Intent + CTA Trigger)
   ============================================================ */
.estimate-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.estimate-popup.open {
  opacity: 1;
  visibility: visible;
}
.estimate-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 12, 0.85);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.estimate-popup-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease-out);
}
.estimate-popup.open .estimate-popup-content {
  transform: scale(1);
}
.estimate-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.estimate-popup-close:hover {
  opacity: 1;
}
.estimate-popup .label {
  display: block;
  margin-bottom: 20px;
}
.estimate-popup-form .form-group { margin-bottom: 16px; }
.estimate-popup-form .form-group textarea { min-height: auto; }
@media (max-width: 600px) {
  .estimate-popup {
    padding: 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
  .estimate-popup-content {
    padding: 24px 20px 20px;
    max-height: min(90vh, calc(100dvh - 24px));
    width: 100%;
    max-width: 100%;
  }
  .estimate-popup .label { margin-bottom: 14px; }
  .estimate-popup-form .form-group { margin-bottom: 12px; }
  .estimate-popup-form .form-row { grid-template-columns: 1fr; }
  .estimate-popup-form .form-group input,
  .estimate-popup-form .form-group select,
  .estimate-popup-form .form-group textarea {
    font-size: 16px;
    max-width: 100%;
  }
  .estimate-popup-form .form-group textarea {
    min-height: 100px;
  }
}
