/* ============================================
   Wash & Seal — Coast 2 Coast Co.
   Luxury Coastal Pressure Washing
   Shared stylesheet
   ============================================ */

:root {
  /* ---------- Brand / Coastal palette ---------- */
  --navy:          #0E2A47;
  --navy-deep:     #081B30;
  --coastal:       #1F5EA8;
  --coastal-light: #6FA8DC;
  --aqua:          #BBD8EA;
  --sand:          #F5F1EA;

  /* ---------- Neutrals ---------- */
  --gray-50:  #F7F9FB;
  --gray-100: #ECEFF3;
  --gray-300: #C7CED6;
  --gray-500: #6B7686;
  --gray-700: #3A4554;
  --white:    #FFFFFF;

  /* ---------- Semantic surfaces ---------- */
  --bg:            var(--white);
  --bg-subtle:     var(--gray-50);
  --bg-dark:       var(--navy);
  --bg-darker:     var(--navy-deep);
  --surface-card:  var(--white);
  --surface-quote: var(--gray-50);

  /* ---------- Semantic text ---------- */
  --fg1: var(--navy);
  --fg2: var(--gray-700);
  --fg3: var(--gray-500);
  --fg-inverse: var(--white);
  --fg-link:    var(--coastal);
  --fg-eyebrow: var(--coastal);
  --fg-gold:    #E2B441;

  /* ---------- Borders ---------- */
  --border-hair:    rgba(14,42,71,0.06);
  --border-soft:    var(--gray-100);
  --border-med:     var(--gray-300);
  --border-strong:  var(--navy);
  --border-on-dark: rgba(255,255,255,0.12);

  /* ---------- Type families ---------- */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;
  --mono:  ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* ---------- Layout / spacing ---------- */
  --container: 1240px;
  --gutter:    32px;
  --section-y: 110px;

  /* ---------- Radii ---------- */
  --radius-xs:   2px;
  --radius:      4px;
  --radius-pill: 999px;

  /* ---------- Shadows ---------- */
  --shadow-soft:  0 20px 60px rgba(14, 42, 71, 0.08);
  --shadow-card:  0 12px 36px rgba(14, 42, 71, 0.10);
  --shadow-focus: 0 0 0 3px rgba(31,94,168,0.12);

  /* ---------- Motion ---------- */
  --ease:   cubic-bezier(0.2, 0.6, 0.2, 1);
  --t-fast: 0.2s;
  --t-base: 0.25s;
  --t-slow: 0.3s;
  --t-fade: 0.8s;
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg2);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--fg-link); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.h1, h1, .h2, h2, .h3, h3, .h4, h4 {
  color: var(--fg1);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
.h1, h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 400; }
.h2, h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); }
.h3, h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0;
}
.h4, h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0;
}

/* Italic-emphasis accent inside a serif headline. */
.h-em, h1 em, h2 em {
  font-style: italic;
  color: var(--coastal);
  font-weight: 400;
}
.hero h1 em { color: var(--aqua); }

p { margin: 0 0 1em; }
.p-lead  { font-size: 1.05rem; color: var(--fg3); }
.p-small { font-size: 0.92rem; color: var(--fg3); }

.quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--fg1);
  line-height: 1.5;
}

code, .code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--gray-100);
  padding: 0.15em 0.35em;
  border-radius: var(--radius-xs);
  color: var(--navy);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-eyebrow);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--coastal-light);
  margin: 14px auto 0;
}
.eyebrow.left::after { margin-left: 0; }

/* Tracked-out label — nav, buttons, footer headings, form labels. */
.label-track {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg1);
}
.label-track-sm { font-size: 0.72rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--coastal); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s var(--ease);
}
.site-header.on-light { background: rgba(255,255,255,0.96); box-shadow: 0 1px 0 rgba(14,42,71,0.06); }
.site-header.scrolled { background: rgba(255,255,255,0.96); box-shadow: 0 1px 0 rgba(14,42,71,0.06); padding: 12px 0; }
.site-header.scrolled .nav-links a,
.site-header.on-light .nav-links a,
.site-header.scrolled .brand-text,
.site-header.on-light .brand-text { color: var(--navy); }
.site-header.scrolled .btn-quote,
.site-header.on-light .btn-quote {
  border-color: var(--navy); color: var(--navy);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 56px;
  height: 56px;
  display: block;
}

/* Logo-only lockup (no adjacent brand-text). The full PNG lockup
   rides bigger in the header and scales down once the user scrolls. */
.brand.brand-logoonly { flex-shrink: 0; }
.site-header .brand.brand-logoonly .brand-logo {
  width: 96px;
  height: 96px;
  max-width: none;
  transition: width var(--t-slow) var(--ease), height var(--t-slow) var(--ease);
}
.site-header.scrolled .brand.brand-logoonly .brand-logo,
.site-header.on-light .brand.brand-logoonly .brand-logo {
  width: 72px;
  height: 72px;
}
.site-footer .brand.brand-logoonly .brand-logo {
  width: 96px;
  height: 96px;
  max-width: none;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--white);
  transition: color 0.3s var(--ease);
}
.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.brand-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
}

.btn-quote {
  padding: 12px 22px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
  background: transparent;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}
.btn-quote:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  padding: 8px;
  color: inherit;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s var(--ease);
}
.site-header.scrolled .nav-toggle span,
.site-header.on-light .nav-toggle span { background: var(--navy); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,27,48,0.55) 0%, rgba(8,27,48,0.25) 50%, rgba(8,27,48,0) 80%),
    url('https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  z-index: -1;
}
.hero-content {
  max-width: 640px;
  padding: 140px 0 100px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  display: block;
}
.hero h1 {
  color: var(--white);
  font-family: var(--serif);
  font-weight: 400;
  margin-bottom: 40px;
}
.hero h1 em { font-style: italic; color: var(--aqua); }
.hero-divider {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  margin: 32px 0;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Frosted-glass card around the homepage hero copy.
   Light frost (6% white + 14px blur) just enough to separate text from the photo. */
.hero .hero-content.hero-glass {
  max-width: 660px;
  padding: 52px 56px;
  margin: 130px auto 90px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 12px 40px rgba(8, 27, 48, 0.18);
}
.hero .hero-content.hero-glass .hero-sub {
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-content.hero-glass .hero-divider {
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-content.hero-glass .hero-cta { justify-content: center; }

/* ---------- Sections ---------- */
section { padding: var(--section-y) 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px;
}
.section-head p { color: var(--fg3); font-size: 1.05rem; }

/* ---------- Service Highlights (homepage) ---------- */
.highlights {
  background: var(--white);
  padding: 100px 0 60px;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.highlight {
  text-align: center;
  padding: 20px;
}
.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  color: var(--coastal);
}
.highlight-icon svg { width: 100%; height: 100%; }
.highlight h4 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-image {
  aspect-ratio: 4/3;
  background: var(--gray-100) center/cover no-repeat;
}
.service-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 { color: var(--navy); margin-bottom: 12px; }
.service-body p { color: var(--gray-500); font-size: 0.95rem; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.service-link .arrow { transition: transform 0.25s var(--ease); }
.service-link:hover .arrow { transform: translateX(4px); }

/* ---------- Why Us ---------- */
.why {
  background: var(--gray-50);
}
.why-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image {
  aspect-ratio: 4/5;
  background: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  border-radius: var(--radius);
}
.why-content h2 { margin-bottom: 28px; }
.why-list { list-style: none; padding: 0; margin: 32px 0 0; }
.why-list li {
  padding: 22px 0;
  border-top: 1px solid var(--gray-100);
}
.why-list li:last-child { border-bottom: 1px solid var(--gray-100); }
.why-list h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  margin: 0 0 6px;
}
.why-list p { margin: 0; color: var(--gray-500); font-size: 0.95rem; }

/* ---------- About preview / Story ---------- */
.story {
  background: var(--white);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-image {
  aspect-ratio: 5/4;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  border-radius: var(--radius);
}
.owner-image {
  aspect-ratio: 4/5;
  background: var(--gray-100) url('assets/team/gabriel.jpeg') center/cover no-repeat;
  border-radius: var(--radius);
}
.story-content p { color: var(--gray-500); font-size: 1.02rem; }

/* ---------- Service Area ---------- */
.area { background: var(--navy); color: rgba(255,255,255,0.85); }
.area h2 { color: var(--white); }
.area .eyebrow { color: var(--coastal-light); }
.area .eyebrow::after { background: var(--coastal-light); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
  list-style: none;
  padding: 0; margin: 24px 0 0;
}
.cities li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
}
.area .area-grid p { color: #fff; }

/* ---------- Before / After ---------- */
.transforms {
  background: var(--gray-50);
}
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.transform-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.transform-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.transform-images div {
  aspect-ratio: 1/1;
  background: var(--gray-100) center/cover no-repeat;
  position: relative;
}
.transform-images div::after {
  content: attr(data-label);
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(14,42,71,0.85);
  color: var(--white);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
}
.transform-body { padding: 22px 24px 26px; }
.transform-body h4 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
}
.transform-body p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* ---------- Reviews ---------- */
.reviews-bg { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  background: var(--gray-50);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
}
.stars {
  color: var(--fg-gold);
  font-size: 1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.review-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 24px;
}
.review-author {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.review-loc {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: 130px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(8,27,48,0.7), rgba(8,27,48,0.7)),
    url('https://images.unsplash.com/photo-1564540583246-934409427776?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  z-index: -1;
}
.cta-banner h2 { color: var(--white); max-width: 720px; margin: 0 auto 24px; }
.cta-banner p { max-width: 560px; margin: 0 auto 36px; color: rgba(255,255,255,0.9); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 24px 0;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--coastal);
  font-weight: 300;
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
  color: var(--gray-500);
}
.faq-a-inner { padding: 0 0 24px; max-width: 720px; }

/* ---------- Forms (contact page) ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
.contact-info h3 { color: var(--navy); margin-bottom: 8px; }
.contact-info .info-block { margin-bottom: 32px; }
.contact-info .label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coastal);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-info p { color: var(--gray-700); margin: 0; }
.contact-info a { color: var(--navy); }

.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-row.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-success {
  background: var(--bg-subtle);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.form-success h3 { color: var(--fg1); margin: 0 0 10px; }
.form-success p { color: var(--fg2); margin: 0; }
.form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.98rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--coastal);
  box-shadow: var(--shadow-focus);
}
.form textarea { resize: vertical; min-height: 140px; }
.radio-row { display: flex; gap: 24px; padding-top: 4px; }
.radio-row label {
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ---------- Gallery ---------- */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 48px;
}
.filter-btn {
  padding: 10px 22px;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg3);
  background: var(--white);
  border: 1px solid var(--border-med);
  border-radius: var(--radius-pill);
  transition: all var(--t-base) var(--ease);
}
.filter-btn:hover { color: var(--navy); border-color: var(--navy); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gallery-item {
  background: var(--gray-100, #f0f0f0);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item .transform-images div { aspect-ratio: 4/3; }
.gallery-item .gallery-image {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.gallery-item .label-row {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-item .label-row strong { color: var(--navy); font-weight: 600; font-size: 0.95rem; }
.gallery-item .cat {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coastal);
  font-weight: 600;
}

.gallery-grid:has(.gallery-item) + .gallery-empty { display: none; }
.gallery-empty {
  text-align: center;
  padding: 60px 24px;
  background: var(--gray-50, #f8f8f8);
  border: 1px dashed var(--gray-200, #e5e5e5);
  border-radius: var(--radius);
  max-width: 640px;
  margin: 0 auto;
}
.gallery-empty h3 { margin: 0 0 12px; color: var(--navy); font-size: 1.4rem; }
.gallery-empty p { margin: 0; color: var(--gray-500); line-height: 1.6; }
.gallery-empty a { color: var(--coastal); font-weight: 600; }

/* ---------- Page Hero (subpages) ---------- */
.page-hero {
  position: relative;
  padding: 200px 0 100px;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(8,27,48,0.7), rgba(8,27,48,0.65)),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  z-index: -1;
}
.page-hero h1 {
  color: var(--white);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  margin-bottom: 16px;
}
.page-hero p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,0.9); font-size: 1.05rem; }
.crumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.crumbs a { color: rgba(255,255,255,0.9); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 90px 0 30px;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-text { color: var(--white); }
.footer-brand p { margin: 18px 0 0; max-width: 320px; color: rgba(255,255,255,0.7); }
.footer-col h5 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--t-fade) var(--ease), transform var(--t-fade) var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root { --section-y: 80px; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner, .story-inner, .area-grid, .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .transform-grid, .reviews-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  :root { --section-y: 64px; }
  .container { padding: 0 22px; }
  .nav-wrap { padding: 0 22px; }
  .nav-links, .btn-quote.desktop { display: none; }
  .nav-toggle { display: block; }

  .site-header { padding: 22px 0 6px; }
  .site-header.scrolled { padding: 14px 0 4px; }
  .site-header .brand.brand-logoonly .brand-logo { width: 84px; height: 84px; }
  .site-header.scrolled .brand.brand-logoonly .brand-logo,
  .site-header.on-light .brand.brand-logoonly .brand-logo { width: 64px; height: 64px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    padding: 18px 22px 22px;
    gap: 4px;
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open a {
    color: var(--navy);
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    padding: 14px 4px;
    width: 100%;
    text-align: center;
  }
  .nav-links.open a.active { color: var(--coastal); }
  .nav-links.open a.active::after,
  .nav-links.open a:hover::after { display: none; }
  .nav-toggle { padding: 10px; }
  .nav-toggle span { width: 26px; height: 2px; }

  /* Compact, centered header on mobile */
  .site-header { padding: 20px 0; }
  .site-header .brand.brand-logoonly .brand-logo,
  .site-header.scrolled .brand.brand-logoonly .brand-logo {
    width: 92px;
    height: 92px;
  }
  .nav-wrap { position: relative; justify-content: flex-end; }
  .nav-wrap .brand.brand-logoonly {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero { min-height: auto; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(8,27,48,0.55) 0%, rgba(8,27,48,0.35) 50%, rgba(8,27,48,0.2) 100%),
      url('https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=2400&q=80') center/cover no-repeat;
  }
  .hero-content { padding: 150px 0 50px; }
  .hero .hero-content.hero-glass {
    padding: 22px 18px 24px;
    margin: 70px auto 60px;
    max-width: 76%;
  }
  .hero .hero-content.hero-glass .hero-eyebrow {
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    font-size: 0.65rem;
  }
  .hero h1 { margin-bottom: 10px; font-size: clamp(1.9rem, 7.5vw, 2.4rem); }
  .hero-sub {
    margin: 0 auto 18px;
    max-width: 240px;
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .hero-divider { margin: 10px auto 16px; width: 38px; }
  .hero-cta .btn { padding: 13px 18px; font-size: 0.72rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }

  .page-hero { padding: 110px 0 60px; }

  .services-grid, .transform-grid, .reviews-grid, .gallery-grid,
  .highlight-grid { grid-template-columns: 1fr; gap: 22px; }
  .cities { grid-template-columns: 1fr 1fr; }
  .form-row,
  .form-row.form-row-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .service-card .service-image { aspect-ratio: 16/10; }

  .gallery-filters { flex-wrap: wrap; gap: 8px; }
  .ba-feature { padding: 56px 0; }
  .ba-caption { padding: 0 12px; }
}

/* ---------- Before & After Comparison Slider ---------- */
.ba-feature {
  background: linear-gradient(180deg, var(--navy) 0%, #0c1a2c 100%);
  color: var(--white);
  padding: 100px 0;
}
.ba-feature .section-head .eyebrow { color: var(--coastal); }
.ba-feature .section-head h2 { color: var(--white); }
.ba-feature .section-head h2 em { color: var(--coastal); }
.ba-feature .section-head p { color: rgba(255, 255, 255, 0.75); }

.ba-carousel {
  position: relative;
  max-width: 1100px;
  margin: 48px auto 0;
}
.ba-track { position: relative; }
.ba-slide { display: none; }
.ba-slide.active { display: block; animation: ba-fade 0.4s ease; }
@keyframes ba-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.ba-slider {
  --pos: 50%;
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  background: #000;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-img-before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-tag {
  position: absolute;
  top: 18px;
  padding: 6px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  border-radius: 4px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.ba-tag-before { left: 18px; }
.ba-tag-after { right: 18px; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.ba-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 12px;
  background:
    linear-gradient(90deg, var(--navy) 0 2px, transparent 2px 4px, var(--navy) 4px 6px) left center / 6px 100% no-repeat,
    linear-gradient(-90deg, var(--navy) 0 2px, transparent 2px 4px, var(--navy) 4px 6px) right center / 6px 100% no-repeat;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ba-caption {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 24px;
  letter-spacing: 0.01em;
}

.ba-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
  backdrop-filter: blur(8px);
}
.ba-nav:hover {
  background: var(--coastal);
  border-color: var(--coastal);
  color: var(--navy);
}
.ba-prev { left: -26px; }
.ba-next { right: -26px; }

.ba-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.ba-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s var(--ease);
}
.ba-dot:hover { background: rgba(255, 255, 255, 0.45); }
.ba-dot.active {
  background: var(--coastal);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .ba-feature { padding: 60px 0; }
  .ba-slider { aspect-ratio: 4 / 5; }
  .ba-nav { width: 44px; height: 44px; font-size: 1.4rem; }
  .ba-prev { left: 6px; }
  .ba-next { right: 6px; }
  .ba-handle::after { width: 44px; height: 44px; }
  .ba-tag { font-size: 0.65rem; padding: 5px 10px; top: 12px; }
  .ba-tag-before { left: 12px; }
  .ba-tag-after { right: 12px; }
  .ba-caption { font-size: 1.1rem; }
}

/* ---------- Homepage Before/After (3-up, light bg) ---------- */
.ba-home {
  background: var(--white);
}
.ba-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.ba-home-card .ba-slider {
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 40px rgba(14, 42, 71, 0.12);
}
.ba-home-card .ba-handle::after {
  width: 42px;
  height: 42px;
}
.ba-home-card .ba-tag {
  font-size: 0.65rem;
  padding: 5px 10px;
  top: 12px;
}
.ba-home-card .ba-tag-before { left: 12px; }
.ba-home-card .ba-tag-after  { right: 12px; }
.ba-home-card .ba-caption {
  color: var(--navy);
  font-size: 1.05rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-top: 18px;
  text-align: center;
}

@media (max-width: 980px) {
  .ba-home-grid { grid-template-columns: 1fr; gap: 36px; }
  .ba-home-card .ba-slider { aspect-ratio: 16 / 10; }
  .gallery-item .gallery-image { height: 160px; }
}
