/*
Theme Name:   Kadence Premier Nova
Theme URI:    https://premiernovapools.com
Description:  Custom child theme for Premier Nova Pools. Built on Kadence by Humble Brand Marketing.
Author:       Humble Brand Marketing
Author URI:   https://humblebrandmarketing.com
Template:     kadence
Version:      1.0.6
Text Domain:  kadence-premier-nova
*/

/* ==========================================================================
   PREMIER NOVA POOLS — Stylesheet v2
   Pool & Spa Services · Loudoun County, VA
   Brand colors: Navy #0D1F3C · Deep Navy #091526 · Teal #3EC9E0
   Typography:  Cormorant Garamond (display) · Montserrat (UI) · Open Sans (body)
   ========================================================================== */

/* ───────── TOKENS ───────── */
:root {
  --navy:         #0D1F3C;
  --navy-deep:    #091526;
  --navy-soft:    #16294a;
  --navy-line:    rgba(13,31,60,0.08);
  --teal:         #3EC9E0;
  --teal-light:   #7DDCE8;
  --teal-deep:    #1ab8d8;
  --white:        #ffffff;
  --off-white:    #F4F8FB;
  --cream:        #fbfcfe;
  --gray:         #8A9AB0;
  --gray-soft:    #c8d1de;
  --body-text:    #4a5870;

  --serif:        'Cormorant Garamond', 'Times New Roman', serif;
  --sans:         'Montserrat', system-ui, -apple-system, sans-serif;
  --body-font:    'Open Sans', system-ui, sans-serif;

  --shadow-sm:    0 2px 12px rgba(13,31,60,0.08);
  --shadow-md:    0 12px 36px rgba(13,31,60,0.12);
  --shadow-lg:    0 28px 70px rgba(13,31,60,0.22);

  --ease:         cubic-bezier(0.2, 0.7, 0.2, 1);

  --container:    1320px;
  --container-narrow: 1080px;
}

/* ───────── RESET ───────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body-font);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; }

/* ───────── LAYOUT ───────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 48px;
}
.section { padding: 130px 0; }
.section-sm { padding: 90px 0; }
.section-xs { padding: 64px 0; }
.bg-off { background: var(--off-white); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy-deep); color: rgba(255,255,255,0.78); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }

/* ───────── TYPOGRAPHY ───────── */
.display {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0.005em;
}
.display em { font-style: italic; font-weight: 400; color: var(--teal-deep); }

.h1 { font-size: clamp(46px, 6.4vw, 92px); }
.h2 { font-size: clamp(36px, 4.4vw, 64px); }
.h3 { font-size: clamp(26px, 2.4vw, 34px); }
.h4 { font-size: clamp(20px, 1.6vw, 24px); }

.lede {
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  line-height: 1.78;
  font-weight: 300;
  color: var(--body-text);
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow.on-dark { color: var(--teal); opacity: 0.9; }

.rule { width: 56px; height: 2px; background: var(--teal); display: block; }
.rule-sm { width: 32px; height: 1.5px; background: var(--teal); display: block; }

/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 32px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  white-space: nowrap;
}
.btn .arrow {
  width: 16px; height: 1.5px;
  background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease);
}
.btn .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 9px; height: 9px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 22px; }

.btn-primary {
  background: var(--teal);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(62,201,224,0.25);
}
.btn-primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(62,201,224,0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ───────── NAVIGATION ───────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(9,21,38,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  color: var(--white);
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav-logo-rule {
  width: 26px; height: 1.5px;
  background: var(--teal);
  margin: 7px 0 5px;
}
.nav-logo-sub {
  font-family: var(--sans);
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(62,201,224,0.9);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color 0.25s var(--ease);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--teal);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s var(--ease);
}
.nav-phone svg { width: 14px; height: 14px; color: var(--teal); }
.nav-phone:hover { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--teal);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.nav-logo-name { white-space: nowrap; }
.nav-cta:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(62,201,224,0.35);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .mobile-phone {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ───────── HERO (home) ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 140px 0 100px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  z-index: 1;
  animation: kenburns 22s var(--ease) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0,0); }
  to   { transform: scale(1.12) translate(-1%, -1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Overlay removed — text relies on text-shadow for legibility */
  background: transparent;
  z-index: 2;
}
.hero-title,
.hero-sub,
.hero-eyebrow-row span {
  text-shadow: 0 2px 24px rgba(9, 21, 38, 0.95), 0 1px 3px rgba(9, 21, 38, 0.98);
}
.hero-badge { box-shadow: 0 8px 32px rgba(9, 21, 38, 0.45); }
.hero-scroll span { text-shadow: 0 1px 6px rgba(9, 21, 38, 0.9); }
/* Nav sits over the hero at the top of the page — give its links a shadow
   while the .scrolled background isn't active. */
.nav:not(.scrolled) .nav-links a,
.nav:not(.scrolled) .nav-logo-name,
.nav:not(.scrolled) .nav-logo-sub,
.nav:not(.scrolled) .nav-phone { text-shadow: 0 1px 6px rgba(9, 21, 38, 0.85); }
.hero-inner { position: relative; z-index: 3; width: 100%; }
.hero-content { max-width: 760px; }
.hero-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow-row .dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(62,201,224,0.18);
}
.hero-eyebrow-row span {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 102px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin-bottom: 28px;
  color: var(--white);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal-light);
}
.hero-rule {
  width: 60px; height: 2px;
  background: var(--teal);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: clamp(15px, 1.25vw, 17.5px);
  font-weight: 300;
  line-height: 1.78;
  color: rgba(255,255,255,0.86);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.6);
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(180deg, transparent, var(--teal), transparent);
  animation: scrollPulse 2.4s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%      { opacity: 1; transform: scaleY(1.1); }
}
.hero-badge {
  position: absolute;
  bottom: 100px;
  right: 60px;
  z-index: 3;
  background: rgba(13,31,60,0.55);
  border: 1px solid rgba(62,201,224,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 22px 26px;
  border-radius: 8px;
  color: var(--white);
}
.hero-badge-stars {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.hero-badge-num {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}
.hero-badge-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(62,201,224,0.85);
  margin-top: 4px;
}

/* ───────── INNER PAGE HERO ───────── */
.page-hero {
  position: relative;
  padding: 220px 0 100px;
  color: var(--white);
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  /* Overlay removed — text uses shadow for legibility instead */
  background: transparent;
  z-index: 2;
}
.page-hero-title,
.page-hero-sub,
.page-hero-eyebrow {
  text-shadow: 0 2px 18px rgba(9, 21, 38, 0.85), 0 1px 3px rgba(9, 21, 38, 0.95);
}
.breadcrumb { text-shadow: 0 1px 6px rgba(9, 21, 38, 0.9); }
.page-hero-inner { position: relative; z-index: 3; width: 100%; }
.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
  display: inline-block;
}
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 500;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 900px;
}
.page-hero-title em { font-style: italic; color: var(--teal-light); font-weight: 400; }
.page-hero-sub {
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.78;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 640px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 38px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ───────── TRUST STRIP ───────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--navy-line);
  padding: 36px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(62,201,224,0.1);
  border: 1px solid rgba(62,201,224,0.25);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-icon svg { width: 18px; height: 18px; }
.trust-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}
.trust-value {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}

/* ───────── SECTION HEAD ───────── */
.section-head { margin-bottom: 72px; max-width: 820px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 24px; }
.section-head .rule { margin-bottom: 26px; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }
.section-head .lede { max-width: 720px; }
.section-head.center .lede { margin: 0 auto; }

/* ───────── ABOUT (two-col text+image) ───────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
  align-items: center;
}
.about-text .eyebrow { margin-bottom: 22px; }
.about-text h2 { margin-bottom: 24px; }
.about-text .rule { margin-bottom: 32px; }
.about-text p { margin-bottom: 22px; font-size: 16px; line-height: 1.85; }
.about-points {
  margin: 32px 0 36px;
  display: grid;
  gap: 14px;
}
.about-points li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.about-points li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 1.5px;
  background: var(--teal);
}
.about-image-wrap {
  position: relative;
  padding: 22px;
}
.about-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.about-image-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 130px; height: 130px;
  border: 1.5px solid var(--teal);
  border-radius: 4px;
  z-index: 1;
  opacity: 0.55;
}
.about-image-stat {
  position: absolute;
  left: -32px;
  bottom: 40px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 4px;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  border-left: 3px solid var(--teal);
}
.about-image-stat-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.about-image-stat-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ───────── SERVICES GRID ───────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-top: 3px solid var(--teal);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card-img {
  position: relative;
  aspect-ratio: 16/10;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}
.service-card-num {
  text-shadow: 0 2px 10px rgba(9,21,38,0.7);
}
.service-card-num {
  position: absolute;
  top: 18px; right: 22px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.service-card-body { padding: 30px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.service-card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.service-card-rule { width: 28px; height: 2px; background: var(--teal); margin-bottom: 18px; }
.service-card-text {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--body-text);
  margin-bottom: 22px;
  flex: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  transition: color 0.25s var(--ease), gap 0.3s var(--ease);
}
.service-card-link:hover { color: var(--navy); gap: 14px; }
.service-card-link::after {
  content: '→';
  font-size: 13px;
}

/* ───────── FEATURE STRIP (image with overlay copy) ───────── */
.feature-strip {
  position: relative;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.feature-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.feature-strip-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
}
/* Strong text shadows so white headline + body remain readable
   over the unobstructed photo. */
.feature-strip-content h2,
.feature-strip-content p,
.feature-strip-content .eyebrow {
  text-shadow: 0 2px 22px rgba(9, 21, 38, 0.92), 0 1px 3px rgba(9, 21, 38, 0.95);
}
.feature-strip-inner { padding: 130px 0; }
.feature-strip-content { max-width: 660px; }
.feature-strip-content h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  color: var(--white);
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 28px;
}
.feature-strip-content h2 em { font-style: italic; color: var(--teal-light); font-weight: 400; }
.feature-strip-content p {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  margin-bottom: 38px;
}

/* ───────── PROCESS ───────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal) 20%, var(--teal) 80%, transparent);
  opacity: 0.4;
  z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; }
.process-num {
  width: 54px; height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--teal);
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(62,201,224,0.08);
}
.bg-off .process-num,
.bg-cream .process-num { background: var(--off-white); }
.process-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
}
.process-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--body-text);
  max-width: 240px;
  margin: 0 auto;
}

/* ───────── GALLERY ───────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
}
.gallery-item-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}
.gallery-item::after {
  /* Overlay removed — captions use a translucent pill instead */
  content: none;
}
.gallery-item:hover .gallery-item-bg { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 2;
  color: var(--white);
  padding: 12px 16px 10px;
  background: rgba(9, 21, 38, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.gallery-caption-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.gallery-caption-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.gallery-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: rgba(62,201,224,0.95);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
}
/* Spans for a varied editorial layout */
.g-1 { grid-column: span 8; grid-row: span 2; }
.g-2 { grid-column: span 4; grid-row: span 1; }
.g-3 { grid-column: span 4; grid-row: span 1; }
.g-4 { grid-column: span 4; grid-row: span 2; }
.g-5 { grid-column: span 4; grid-row: span 1; }
.g-6 { grid-column: span 4; grid-row: span 1; }
.g-7 { grid-column: span 6; grid-row: span 2; }
.g-8 { grid-column: span 6; grid-row: span 1; }
.g-9 { grid-column: span 6; grid-row: span 1; }
.g-10 { grid-column: span 4; grid-row: span 1; }
.g-11 { grid-column: span 4; grid-row: span 1; }
.g-12 { grid-column: span 4; grid-row: span 1; }
.g-13 { grid-column: span 12; grid-row: span 2; }

/* ───────── SERVICE AREA ───────── */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  margin: 32px 0 40px;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body-font);
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
}
.area-list li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
.area-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--navy-line);
  min-height: 520px;
}
.area-map iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}
.area-map svg {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 820px) {
  .area-map { min-height: 420px; }
  .area-map iframe { height: 420px; }
}

/* ───────── CONTACT (form + info) ───────── */
.contact {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before, .contact::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(62,201,224,0.1);
  pointer-events: none;
}
.contact::before {
  bottom: -180px; left: -180px;
  width: 500px; height: 500px;
}
.contact::after {
  bottom: -90px; left: -90px;
  width: 320px; height: 320px;
  border-color: rgba(62,201,224,0.18);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.contact-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 26px;
}
.contact-title em { font-style: italic; color: var(--teal); font-weight: 400; }
.contact-text {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin: 30px 0 40px;
}
.contact-methods { display: flex; flex-direction: column; gap: 24px; }
.contact-method { display: flex; align-items: center; gap: 20px; }
.contact-method-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(62,201,224,0.1);
  border: 1px solid rgba(62,201,224,0.3);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-method-icon svg { width: 20px; height: 20px; }
.contact-method-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(62,201,224,0.75);
  margin-bottom: 4px;
}
.contact-method-value {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
}
.contact-method-value.sm { font-size: 16px; }

/* "What To Expect" block on contact page */
.expect-block {
  margin-top: 44px;
  padding: 32px 32px 28px;
  background: rgba(62,201,224,0.04);
  border: 1px solid rgba(62,201,224,0.18);
  border-radius: 8px;
}
.expect-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 22px;
}
.expect-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.expect-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 4px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}
.expect-list li strong { color: var(--white); font-weight: 600; }
.expect-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--teal);
  font-weight: 500;
}

/* Form */
.quote-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 48px 44px 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.form-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}
.form-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.2;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; }
.form-field-full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 400;
  transition: border 0.2s var(--ease), background 0.2s var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(62,201,224,0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.32); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237DDCE8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.form-select option { background: var(--navy); color: var(--white); }
.form-submit {
  width: 100%;
  margin-top: 10px;
  padding: 18px 28px;
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-submit:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(62,201,224,0.3);
}
.form-fine {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  line-height: 1.6;
}

/* ── Fluent Forms — restyle to match the navy glass quote-form container ── */
.quote-form .frm-fluent-form { margin-top: 4px; }
.quote-form .fluentform .ff-el-group { margin-bottom: 16px; }
.quote-form .fluentform .ff-el-input--label label {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.quote-form .fluentform .ff-el-input--label .asterisk-right { color: var(--teal); }
.quote-form .fluentform .ff-el-form-control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--body-font);
  font-size: 14px;
  padding: 13px 15px;
  box-shadow: none;
}
.quote-form .fluentform .ff-el-form-control:focus {
  border-color: var(--teal);
  background: rgba(62,201,224,0.06);
  box-shadow: none;
  outline: none;
}
.quote-form .fluentform .ff-el-form-control::placeholder { color: rgba(255,255,255,0.35); }
.quote-form .fluentform select.ff-el-form-control option { background: var(--navy); color: var(--white); }
.quote-form .fluentform .ff-btn-submit {
  background: var(--teal);
  color: var(--navy);
  border: none;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 30px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote-form .fluentform .ff-btn-submit:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(62,201,224,0.3);
}
.quote-form .fluentform .ff-message-success,
.quote-form .fluentform .ff-el-is-error .text-danger { color: var(--teal-light); }

/* Fluent Forms multi-select / dropdown (Choices.js) — fix white-on-white options */
.quote-form .fluentform .choices__inner {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  color: var(--white);
  min-height: 48px;
  padding: 7px 8px 4px;
}
.quote-form .fluentform .choices__input {
  background: transparent;
  color: var(--white);
}
.quote-form .fluentform .choices__placeholder { color: rgba(255,255,255,0.4); opacity: 1; }
/* selected chips */
.quote-form .fluentform .choices__list--multiple .choices__item {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--navy);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}
.quote-form .fluentform .choices__list--multiple .choices__item .choices__button {
  border-left-color: rgba(13,31,60,0.3);
}
/* the dropdown panel that opens — was white-on-white */
.quote-form .fluentform .choices__list--dropdown,
.quote-form .fluentform .choices__list[aria-expanded] {
  background: var(--navy);
  border: 1px solid rgba(62,201,224,0.35);
  border-radius: 4px;
}
.quote-form .fluentform .choices__list--dropdown .choices__item,
.quote-form .fluentform .choices__list[aria-expanded] .choices__item {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}
.quote-form .fluentform .choices__list--dropdown .choices__item--selectable.is-highlighted,
.quote-form .fluentform .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background: rgba(62,201,224,0.18);
  color: var(--white);
}
/* single-select variant (in case the field is switched to a normal dropdown) */
.quote-form .fluentform select.ff-el-form-control option { background: var(--navy); color: var(--white); }

/* ───────── CTA STRIP ───────── */
.cta-strip {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border: 1px solid rgba(62,201,224,0.18);
  border-radius: 50%;
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-strip h3 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--white);
  line-height: 1.1;
  font-weight: 500;
  max-width: 720px;
}
.cta-strip h3 em { color: var(--teal); font-style: italic; font-weight: 400; }

/* ───────── INFO CARDS (for contact/about pages) ───────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(62,201,224,0.1);
  border: 1px solid rgba(62,201,224,0.25);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
}
.info-card p {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--body-text);
}

/* ───────── FOOTER ───────── */
.footer {
  background: #060f1d;
  color: rgba(255,255,255,0.55);
  padding: 84px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.footer-brand-rule { width: 28px; height: 2px; background: var(--teal); margin: 10px 0 12px; }
.footer-brand-sub {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.footer-brand-text {
  font-size: 13.5px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-family: var(--body-font);
  font-size: 13.5px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s var(--ease), padding 0.2s var(--ease);
}
.footer-col a:hover { color: var(--teal); padding-left: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--teal); }
.footer-credit span { color: var(--teal); }
.footer-credit a { color: inherit; transition: opacity 0.2s var(--ease); }
.footer-credit a:hover span { color: var(--teal-light); }

/* ───────── REVEAL ANIMATIONS ───────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Screenshot mode — used only when ?shot is in URL during headless capture.
   Disables reveal animations and the hero's 100vh constraint so the whole
   page renders at natural height for a full-page screenshot. */
.shot-mode .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.shot-mode .hero-bg { animation: none !important; transform: scale(1.05) !important; }
.shot-mode .hero { min-height: 0 !important; padding: 180px 0 110px !important; }
.shot-mode .page-hero { min-height: 0 !important; padding: 200px 0 90px !important; }
.shot-mode .nav { background: rgba(9,21,38,0.96); padding: 14px 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; }

/* ───────── PROMISE / PILLARS (about page) ───────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  padding: 36px 32px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--teal);
}
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--teal-deep);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: block;
}
.pillar h4 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.pillar p {
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--body-text);
}

/* ───────── BEFORE/AFTER ───────── */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ba-card {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.ba-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  color: var(--white);
  padding: 14px 18px 12px;
  background: rgba(9, 21, 38, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.ba-label-tag {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.ba-label-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1100px) {
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 11px; letter-spacing: 0.16em; }
  .about-grid, .area-grid, .contact-grid { gap: 60px; }
  .services-grid, .info-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 32px; }
  .process-grid::before { display: none; }
  .gallery-grid { grid-auto-rows: 180px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10, .g-11, .g-12, .g-13 { grid-column: span 6; grid-row: span 1; }
  .g-1, .g-7, .g-13 { grid-column: span 12; grid-row: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-badge { display: none; }
}

@media (max-width: 820px) {
  .container, .container-narrow { padding: 0 24px; }
  .section { padding: 90px 0; }
  .section-sm { padding: 70px 0; }
  .section-head { margin-bottom: 52px; }

  .nav { padding: 14px 0; }
  .nav.scrolled { padding: 10px 0; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: block; }
  /* On mobile: just logo + hamburger. Free Quote CTA lives inside the
     opened mobile menu (and on the hero), not crammed into the nav bar. */
  .nav-cta { display: none; }
  .nav-inner { gap: 12px; }
  .nav-actions { gap: 12px; }
  .nav-logo-name { font-size: 18px; letter-spacing: 0.01em; }
  .nav-logo-sub { font-size: 7.5px; letter-spacing: 0.22em; }

  /* Add a prominent Free Quote CTA at the bottom of the mobile menu */
  .mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 18px 36px;
    background: var(--teal);
    color: var(--navy) !important;
    font-family: var(--sans) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase;
    border-radius: 100px;
    box-shadow: 0 12px 30px rgba(62,201,224,0.35);
  }
  .mobile-cta:hover { background: var(--teal-light); color: var(--navy) !important; }

  .hero { padding: 130px 0 110px; min-height: 92vh; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .hero-scroll { display: none; }

  .page-hero { padding: 160px 0 80px; min-height: 50vh; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 22px; }

  .about-grid, .area-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-stat { left: 16px; bottom: -24px; padding: 18px 22px; min-width: 170px; }
  .about-image-accent { width: 90px; height: 90px; top: -16px; right: -16px; }

  .services-grid, .info-grid, .pillars-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 160px; gap: 12px; }

  .feature-strip-inner { padding: 80px 0; }
  .feature-strip-content h2 { font-size: 32px; }

  .quote-form { padding: 32px 26px 30px; }
  .form-row { grid-template-columns: 1fr; }

  .area-list { grid-template-columns: 1fr; }

  .before-after { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }

  .cta-strip-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-1, .g-2, .g-3, .g-4, .g-5, .g-6, .g-7, .g-8, .g-9, .g-10, .g-11, .g-12, .g-13 {
    grid-column: span 2; grid-row: span 1;
  }
}
