/* ==========================================================================
   FREEDOM WASH SOLUTIONS — Premium Exterior Restoration
   Design system: navy ink / sky blue / red accent, Fraunces + Inter
   ========================================================================== */

:root {
  --navy: #0A1F33;
  --navy-deep: #061320;
  --sky: #3E92CC;
  --sky-light: #6FB1DE;
  --sky-pale: #EAF4FB;
  --white: #FFFFFF;
  --canvas: #F7F9FB;
  --red: #C8102E;
  --red-deep: #9C0C22;
  --ink: #14202B;
  --ink-soft: #4A5A68;
  --ink-faint: #8696A3;
  --line: rgba(10, 31, 51, 0.10);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}
.eyebrow.sky { color: var(--sky); }
.eyebrow.sky::before { background: var(--sky); }
.eyebrow.on-dark { color: var(--sky-light); }
.eyebrow.on-dark::before { background: var(--sky-light); }

.h-display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-style: normal;
}
.h-section {
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.h-card { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 640px;
  line-height: 1.65;
}

.italic-serif { font-style: italic; color: var(--sky); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--red-deep); }

.btn-outline-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.16); border-color: #fff; }

.btn-outline-dark {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-ghost-sky {
  color: var(--sky);
  padding: 10px 0;
  border-bottom: 1px solid var(--sky);
  border-radius: 0;
}
.btn-ghost-sky:hover { color: var(--red); border-color: var(--red); }

/* ---------- The Pass: signature diagonal seam ---------- */
.pass {
  position: relative;
  height: 1px;
  width: 100%;
  background: transparent;
  overflow: visible;
}
.pass::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: 0;
  height: 1px;
  background: var(--line);
  transform: rotate(-0.6deg);
}
.pass.accent-sky::after { background: var(--sky); opacity: 0.45; }
.pass.accent-red::after { background: var(--red); opacity: 0.4; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.is-scrolled {
  background: rgba(10, 31, 51, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 6px 30px rgba(0,0,0,0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky-light);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--sky-light);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }

.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .phone-link {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 600;
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px; height: 22px;
  position: relative;
  z-index: 200;
}
.nav-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy-deep);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.4s;
    pointer-events: none;
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1.4rem; font-family: var(--font-display); }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,19,32,0.55) 0%, rgba(6,19,32,0.35) 40%, rgba(6,19,32,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(60px, 9vw, 110px);
  padding-top: 180px;
}
.hero-eyebrow {
  color: var(--sky-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero-eyebrow .star { color: var(--red); font-size: 1rem; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.8rem, 7.4vw, 6.4rem);
  max-width: 920px;
  overflow: hidden;
}
.hero h1 .line {
  display: block;
  overflow: hidden;
}
.hero h1 .line span {
  display: block;
  transform: translateY(110%);
  animation: reveal-up 0.9s var(--ease) forwards;
}
.hero h1 .line:nth-child(1) span { animation-delay: 0.15s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.3s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.45s; }

@keyframes reveal-up {
  to { transform: translateY(0); }
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 560px;
  margin: 28px 0 38px;
  font-weight: 400;
  opacity: 0;
  animation: fade-in 1s var(--ease) forwards;
  animation-delay: 0.9s;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in 1s var(--ease) forwards;
  animation-delay: 1.05s;
}
@keyframes fade-in { to { opacity: 1; } }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stats div {
  padding: 22px var(--gutter) 0 0;
  color: var(--white);
}
.hero-stats div:first-child { padding-left: 0; }
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 600;
}
.hero-stats span {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  right: var(--gutter);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-cue .stick {
  width: 1px; height: 34px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.scroll-cue .stick::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--sky-light);
  animation: cue-drop 2.2s ease-in-out infinite;
}
@keyframes cue-drop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .scroll-cue { display: none; }
}

/* ---------- Sections (generic) ---------- */
section { position: relative; }
.section-pad { padding: clamp(70px, 11vw, 140px) 0; }
.section-head {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 16px; }

.bg-navy { background: var(--navy); color: rgba(255,255,255,0.86); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-sky-pale { background: var(--sky-pale); }
.bg-white { background: var(--white); }

/* ---------- Brand story ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-media {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
.story-media img { width: 100%; height: 560px; object-fit: cover; }
.story-media .badge {
  position: absolute;
  bottom: -1px; right: -1px;
  background: var(--red);
  color: var(--white);
  padding: 22px 26px;
  text-align: center;
  font-family: var(--font-display);
}
.story-media .badge strong { display: block; font-size: 1.8rem; }
.story-media .badge span { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; }

.story-body p { color: var(--ink-soft); margin-top: 20px; }
.story-marks {
  display: flex;
  gap: 30px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.story-mark { display: flex; align-items: flex-start; gap: 12px; max-width: 220px; }
.story-mark svg { width: 22px; height: 22px; color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.story-mark span { font-size: 0.86rem; color: var(--ink-soft); }

@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; }
  .story-media img { height: 380px; }
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-card {
  background: var(--white);
  padding: 40px 32px;
  transition: background 0.4s;
}
.why-card:hover { background: var(--sky-pale); }
.why-card .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sky);
  font-size: 1.1rem;
}
.why-card h3 { font-size: 1.2rem; margin: 18px 0 12px; }
.why-card p { color: var(--ink-soft); font-size: 0.92rem; }

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

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(10,31,51,0.25); }
.service-card .thumb { height: 220px; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .body { padding: 26px 28px 30px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; display: flex; align-items: baseline; gap: 10px; }
.service-card h3 .idx { font-size: 0.7rem; color: var(--red); font-family: var(--font-body); font-weight: 700; letter-spacing: 0.05em; }
.service-card p { color: var(--ink-soft); font-size: 0.93rem; margin-bottom: 16px; }
.service-card .more { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--sky); display: inline-flex; align-items: center; gap: 8px; }
.service-card .more svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-card:hover .more svg { transform: translateX(4px); }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.services-foot { margin-top: 48px; text-align: center; }

/* ---------- Problem / Result comparison (two distinct, honestly captioned photos) ---------- */
.pr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pr-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 20px 50px -25px rgba(10,31,51,0.3);
}
.pr-card img { width: 100%; height: 100%; object-fit: cover; }
.pr-card .pr-label {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 2px;
  color: var(--white);
}
.pr-card.is-problem .pr-label { background: rgba(20,32,43,0.7); }
.pr-card.is-result .pr-label { background: var(--sky); }
.pr-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,19,32,0) 55%, rgba(6,19,32,0.6) 100%);
}
.pr-card .pr-caption {
  position: absolute;
  bottom: 14px; left: 16px; right: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 500;
}
@media (max-width: 640px) {
  .pr-grid { grid-template-columns: 1fr; }
}

/* ---------- Before / After Slider ---------- */
.ba-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 3px;
  user-select: none;
  cursor: ew-resize;
  box-shadow: 0 30px 70px -30px rgba(10,31,51,0.35);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider .after-img { z-index: 1; }
.ba-slider .before-img { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-tag {
  position: absolute;
  top: 18px;
  z-index: 3;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 2px;
  color: var(--white);
}
.ba-tag.tag-before { left: 18px; background: rgba(20,32,43,0.65); }
.ba-tag.tag-after { right: 18px; background: var(--sky); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--white);
  z-index: 4;
  transform: translateX(-1px);
  pointer-events: none;
}
.ba-handle .grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.ba-handle .grip svg { width: 22px; height: 22px; color: var(--navy); }

.ba-copy .eyebrow { margin-bottom: 18px; }
.ba-copy p { color: var(--ink-soft); margin-top: 16px; }
.ba-copy .ba-list { margin-top: 28px; display: grid; gap: 14px; }
.ba-copy .ba-list li { display: flex; gap: 12px; font-size: 0.95rem; color: var(--ink); align-items: flex-start; }
.ba-copy .ba-list svg { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 860px) {
  .ba-wrap { grid-template-columns: 1fr; }
}

/* ---------- Residential & Commercial split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-panel {
  position: relative;
  min-height: 540px;
  padding: 60px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.split-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.8s var(--ease);
}
.split-panel:hover img { transform: scale(1.06); }
.split-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,19,32,0.15), rgba(6,19,32,0.92));
  z-index: 1;
}
.split-panel .content { position: relative; z-index: 2; max-width: 420px; }
.split-panel .eyebrow { color: var(--sky-light); }
.split-panel .eyebrow::before { background: var(--sky-light); }
.split-panel h3 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 14px 0 16px; }
.split-panel p { color: rgba(255,255,255,0.78); margin-bottom: 26px; }

@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  padding: 36px 26px 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step .step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--sky-pale);
  -webkit-text-stroke: 1px var(--sky);
  color: transparent;
  display: block;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 900px) {
  .process-list { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 30px; }
}
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testi-track-wrap { overflow: hidden; }
.testi-track {
  display: flex;
  gap: 24px;
}
.testi-card {
  flex: 0 0 clamp(280px, 32vw, 380px);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.testi-stars { color: var(--red); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 18px; }
.testi-card p.quote { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.5; color: var(--navy); flex: 1; }
.testi-foot { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  flex-shrink: 0;
}
.testi-foot strong { display: block; font-size: 0.88rem; color: var(--ink); }
.testi-foot span { font-size: 0.78rem; color: var(--ink-faint); }

.testi-controls { display: flex; gap: 14px; margin-top: 36px; justify-content: center; }
.testi-controls button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.testi-controls button:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.testi-controls svg { width: 18px; height: 18px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
}
.faq-q .plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--sky);
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.faq-q .plus::before { left: 0; right: 0; top: 50%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; bottom: 0; left: 50%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { opacity: 0; transform: translateX(-50%) rotate(90deg); }
.faq-item.is-open .faq-q { color: var(--red); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p { color: var(--ink-soft); padding-bottom: 26px; max-width: 680px; }

/* ---------- Service areas ---------- */
.areas-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 30px;
  margin-top: 30px;
}
.areas-list li {
  font-size: 0.98rem;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.areas-list li svg { width: 14px; height: 14px; color: var(--red); flex-shrink: 0; }
.map-frame { border-radius: 3px; overflow: hidden; border: 1px solid var(--line); height: 420px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 860px) {
  .areas-wrap { grid-template-columns: 1fr; }
  .map-frame { height: 320px; }
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  padding: clamp(90px, 13vw, 160px) 0;
  text-align: center;
  overflow: hidden;
}
.final-cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.final-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,19,32,0.88), rgba(6,19,32,0.94)); z-index: 1; }
.final-cta .content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.final-cta h2 { color: var(--white); margin: 18px 0 22px; }
.final-cta p { color: rgba(255,255,255,0.78); font-size: 1.1rem; margin-bottom: 38px; }
.final-cta .cta-row { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sticky quote button ---------- */
.sticky-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); opacity: 1; }
.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px -10px rgba(200,16,46,0.55);
  transition: background 0.3s, transform 0.3s;
}
.sticky-cta a:hover { background: var(--red-deep); transform: translateY(-2px); }
.sticky-cta svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .sticky-cta { bottom: 16px; right: 16px; left: 16px; }
  .sticky-cta a { justify-content: center; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.9rem; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-badges { display: flex; gap: 10px; margin-top: 22px; }
.footer-badges span {
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 12px;
  border-radius: 2px;
  color: rgba(255,255,255,0.7);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer-col a:hover { color: var(--sky-light); }
.footer-bottom {
  padding: 26px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--sky-light); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background: var(--navy-deep);
  overflow: hidden;
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-overlay { background: linear-gradient(180deg, rgba(6,19,32,0.45), rgba(6,19,32,0.92)); }
.page-hero .hero-content { padding-top: 200px; padding-bottom: 60px; }
.page-hero h1 { color: var(--white); font-size: clamp(2.6rem, 6vw, 4.6rem); }
.breadcrumb {
  position: relative; z-index: 2;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--sky-light); }

/* ---------- Reveal animation utility ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* ---------- About page specifics ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--white);
}
.value-card .num { font-family: var(--font-display); font-style: italic; color: var(--sky); font-size: 1rem; }
.value-card h3 { margin: 14px 0 10px; font-size: 1.15rem; }
.value-card p { color: var(--ink-soft); font-size: 0.92rem; }

.timeline { position: relative; padding-left: 30px; border-left: 1px solid var(--line); }
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--red);
}
.timeline-item .yr { font-family: var(--font-display); font-style: italic; color: var(--sky); font-size: 1.05rem; display: block; margin-bottom: 6px; }
.timeline-item p { color: var(--ink-soft); font-size: 0.93rem; max-width: 460px; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.stat-strip div { padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-strip div:last-child { border-right: none; }
.stat-strip strong { font-family: var(--font-display); font-size: clamp(2rem,3vw,2.8rem); color: var(--white); display: block; }
.stat-strip span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
@media (max-width: 700px) { .stat-strip { grid-template-columns: repeat(2,1fr); } .stat-strip div { border-bottom: 1px solid rgba(255,255,255,0.15); } }

/* ---------- Services page specifics ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:nth-child(even) .service-media { order: 2; }
.service-media img { width: 100%; height: 460px; object-fit: cover; border-radius: 3px; }
.service-detail .idx-tag { font-family: var(--font-display); font-style: italic; color: var(--sky); font-size: 1rem; margin-bottom: 14px; display:block; }
.service-detail h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 18px; }
.service-detail p { color: var(--ink-soft); margin-bottom: 24px; }
.service-detail ul { display: grid; gap: 12px; margin-bottom: 28px; }
.service-detail ul li { display: flex; gap: 12px; font-size: 0.94rem; color: var(--ink); }
.service-detail ul li svg { width: 17px; height: 17px; color: var(--red); flex-shrink: 0; margin-top: 3px; }

@media (max-width: 860px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-media { order: 0; }
  .service-media img { height: 320px; }
}

/* ---------- Gallery page specifics ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 30px;
  color: var(--ink-soft);
  transition: all 0.3s;
}
.filter-btn:hover { border-color: var(--sky); color: var(--sky); }
.filter-btn.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 4/3;
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item.is-hidden { display: none; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .tag {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.gallery-item .cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  color: var(--navy);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 30px;
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,19,32,0) 40%, rgba(6,19,32,0.75) 100%);
  z-index: 1;
}
.gallery-item.span-2 { grid-column: span 2; }

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-item.span-2 { grid-column: span 2; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item.span-2 { grid-column: span 1; } }

/* ---------- Contact page specifics ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px,6vw,80px);
}
.contact-info-card {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 44px 38px;
  border-radius: 3px;
  height: fit-content;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 22px; font-size: 1.4rem; }
.contact-row { display: flex; gap: 16px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-row:first-of-type { border-top: none; }
.contact-row svg { width: 20px; height: 20px; color: var(--sky-light); flex-shrink: 0; margin-top: 2px; }
.contact-row strong { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-row a, .contact-row span { font-size: 0.98rem; color: var(--white); }
.contact-social { display: flex; gap: 12px; margin-top: 28px; }
.contact-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}
.contact-social a:hover { background: var(--sky); border-color: var(--sky); }
.contact-social svg { width: 16px; height: 16px; }

.quote-form { background: var(--white); border: 1px solid var(--line); padding: 44px; border-radius: 3px; }
.quote-form h3 { font-size: 1.5rem; margin-bottom: 6px; }
.quote-form > p { color: var(--ink-soft); margin-bottom: 30px; font-size: 0.94rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line);
  background: var(--canvas);
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s, background 0.3s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-checkboxes { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 26px; }
.chk { display: flex; align-items: center; gap: 9px; font-size: 0.88rem; color: var(--ink-soft); }
.chk input { width: 16px; height: 16px; accent-color: var(--sky); }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 16px; }
.form-success {
  display: none;
  background: var(--sky-pale);
  border: 1px solid var(--sky);
  color: var(--navy);
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.form-success.is-visible { display: flex; }

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .quote-form { padding: 30px 24px; }
}

/* ---------- Misc helpers ---------- */
.text-center { text-align: center; }
.mt-lg { margin-top: 60px; }
.center-col { display: flex; justify-content: center; }
