:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --surface-2: #f7f4f0;
  --text: #161616;
  --muted: #3d4d55;
  --accent: #01022a;
  --accent-soft: #f2eeea;
  --line: #d3c8b9;
  --cta: #b58863;
  --cta-strong: #9f7452;
  --on-dark: #f6f1eb;
  --success: #2f6248;
  --error: #7a2e35;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 24px 60px rgba(1, 2, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.56;
  letter-spacing: -0.01em;
  padding-bottom: 90px;
}

a {
  color: var(--accent);
}

a:hover {
  opacity: 0.9;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.8rem;
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.15rem, 5vw, 4.05rem);
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.35rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

p,
ul {
  margin: 0 0 1rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
}

.section {
  padding: 4.7rem 0;
}

.section-highlight {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 240, 0.78));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.page-hero {
  padding: 3.9rem 0 1.6rem;
}

.page-hero-inner {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 240, 0.76));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3.3vw, 2.6rem);
}

.page-hero-copy p {
  color: var(--muted);
  max-width: 62ch;
}

.hero-phone-tile {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #01022a;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  transition: background 180ms ease;
  box-shadow: 0 2px 8px rgba(1, 2, 42, 0.18);
}

.hero-phone-tile:hover {
  background: #1a1b4b;
}

.hero-phone-tile::before {
  content: "\260E";
  font-size: 1.05rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(211, 200, 185, 0.62);
  backdrop-filter: blur(14px);
}

.nav-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.brand {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
}

.brand-name {
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #01022a;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(44px, 5vw, 64px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 50;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  padding: 0.48rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.site-nav a.active {
  background: var(--accent-soft);
  color: var(--accent);
}

.hero {
  padding: 5.4rem 0 3.7rem;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-copy p {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-copy h1 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-logo-feature {
  display: none;
}

.hero-logo-img {
  max-width: 200px;
  width: 100%;
  height: auto;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.hero-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.05rem 0 1.35rem;
}

.hero-chips span {
  background: none;
  border: none;
  padding: 0.2rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
}

.hero-card ul {
  padding-left: 1.1rem;
  margin-bottom: 1.2rem;
}

.hero-card-dark {
  background: linear-gradient(155deg, #01022a 0%, #3d4d55 100%);
  color: var(--on-dark);
  border: none;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-card-dark::before {
  content: "";
  position: absolute;
  top: 56%;
  left: 50%;
  width: clamp(320px, 96%, 560px);
  height: 96%;
  transform: translate(-50%, -50%);
  background-image: url("/images/logo-eagle-mark-transparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.24;
  filter: saturate(1.08) brightness(1.12);
  pointer-events: none;
  z-index: 0;
}

.hero-card-dark > * {
  position: relative;
  z-index: 1;
}

.hero-card-dark h2 {
  color: var(--on-dark);
}

.hero-card-dark li {
  color: #d3c8b9;
}

.hero-metrics {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-metrics article {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0.7rem 0.75rem;
  box-shadow: none;
  text-align: center;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.18rem;
}

.hero-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.cta-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.1rem;
  min-height: 46px;
  background: var(--cta);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  color: var(--text);
  background: var(--cta-strong);
  transform: translateY(-1px);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
  color: var(--accent);
}

.btn-light {
  background: #ffffff;
  color: var(--accent);
}

.btn-small {
  padding: 0.5rem 0.82rem;
  min-height: 38px;
}

.cards,
.stack {
  display: grid;
  gap: 1rem;
}

.stack {
  margin: 1.35rem 0;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 10px 26px rgba(11, 20, 35, 0.05);
}

.card p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(25, 34, 43, 0.05);
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card a {
  color: var(--text);
  text-decoration: none;
}

.service-card a:hover {
  color: var(--cta);
}

.area-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}

.area-services li {
  font-size: 0.78rem;
  background: var(--accent-soft);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  color: var(--muted);
}

.trust-strip {
  display: grid;
  gap: 0.9rem;
}

.section-trust {
  padding: 1.4rem 0 2.6rem;
}

.trust-item {
  background: none;
  border: none;
  border-left: 3px solid var(--accent, #c8956c);
  border-radius: 0;
  padding: 0.2rem 0 0.2rem 1rem;
}

.trust-item strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Sora", "Manrope", sans-serif;
}

.trust-item p {
  color: var(--muted);
  margin-bottom: 0;
}

.about-values {
  display: grid;
  gap: 1rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(25, 34, 43, 0.05);
}

.value-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 0.9rem;
}

.timeline-step {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.timeline-step span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Sora", "Manrope", sans-serif;
  margin-bottom: 0.6rem;
}

.timeline-step p {
  color: var(--muted);
  margin-bottom: 0;
}

.visual-story {
  padding-top: 3rem;
}

.section-compare {
  padding-top: 2.8rem;
}

.compare-layout {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.compare-copy p {
  color: var(--muted);
  max-width: 58ch;
}

.ba-slider {
  --split: 56%;
  position: relative;
  min-height: clamp(280px, 45vw, 420px);
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #d3c8b9;
}

.ba-pane {
  position: absolute;
  inset: 0;
}

.ba-after {
  background-image: url("/images/slider-after.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ba-before {
  background-image: url("/images/slider-before.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.ba-label {
  position: absolute;
  top: 0.9rem;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.36rem 0.62rem;
  z-index: 2;
}

.ba-label-left {
  left: 0.9rem;
  background: rgba(1, 2, 42, 0.82);
  color: var(--on-dark);
}

.ba-label-right {
  right: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(246, 241, 235, 0.94);
  transform: translateX(-1px);
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(1, 2, 42, 0.15);
}

.ba-handle::after {
  content: "< >";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 44px;
  min-height: 44px;
  border-radius: 999px;
  background: rgba(1, 2, 42, 0.92);
  color: var(--on-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.74rem;
  border: 1px solid rgba(211, 200, 185, 0.5);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
}

.story-grid {
  display: grid;
  gap: 2rem;
}

.feature-row {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.feature-copy p {
  color: var(--muted);
  max-width: 56ch;
}

.feature-media {
  min-height: clamp(240px, 40vw, 380px);
  border-radius: 22px;
  border: 1px solid rgba(211, 200, 185, 0.88);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 20% 18%, rgba(252, 255, 255, 0.45), rgba(252, 255, 255, 0));
}

.media-one {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    url("/images/interior-repaint.jpg"),
    linear-gradient(155deg, #ebe4dc 0%, #f6f1eb 42%, #d3c8b9 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.media-two {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    url("/images/exterior-transformation.jpg"),
    linear-gradient(155deg, #c8bfbe 0%, #e7e0d9 48%, #a79e9c 100%);
  background-size: cover;
  background-position: center 52%;
}

.media-two::before {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.media-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  background: rgba(1, 2, 42, 0.84);
  color: var(--on-dark);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.process-band {
  background: linear-gradient(165deg, #01022a 0%, #3d4d55 100%);
  color: var(--on-dark);
}

.process-band .eyebrow {
  color: #d3c8b9;
}

.process-band h2 {
  color: var(--on-dark);
  max-width: 16ch;
}

.process-steps {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.9rem;
}

.process-step {
  border: 1px solid rgba(211, 200, 185, 0.35);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 1rem;
}

.process-step span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-family: "Sora", "Manrope", sans-serif;
  margin-bottom: 0.65rem;
}

.process-step h3 {
  color: var(--on-dark);
}

.process-step p {
  margin-bottom: 0;
  color: #d3c8b9;
}

.final-cta {
  background: linear-gradient(145deg, #01022a 0%, #0f1a3d 50%, #1a2744 100%);
  color: var(--on-dark);
  border-radius: 22px;
  padding: clamp(1.2rem, 4vw, 2.6rem);
  border: 1px solid rgba(211, 200, 185, 0.3);
  box-shadow: var(--shadow-soft);
}

.final-cta .eyebrow {
  color: #d3c8b9;
}

.final-cta h2 {
  color: var(--on-dark);
  max-width: 18ch;
}

.final-cta p {
  color: #d3c8b9;
  max-width: 56ch;
}

.final-cta .btn-outline {
  background: transparent;
  border-color: rgba(211, 200, 185, 0.72);
  color: var(--on-dark);
}

.final-cta .btn-outline:hover {
  color: var(--on-dark);
}

.reveal-up {
  animation: revealUp 700ms ease both;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.split {
  display: grid;
  gap: 1.25rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.before,
.after {
  min-height: 120px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 1px solid var(--line);
}

.before {
  background: #efe8e0;
  color: var(--muted);
}

.after {
  background: #d9cec0;
  color: var(--accent);
}

.gallery-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.gallery-item {
  min-height: 165px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, #ffffff, #f2ede8);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.8rem;
  box-shadow: 0 14px 26px rgba(15, 23, 36, 0.05);
}

.gallery-item strong {
  font-size: 1.82rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.gallery-item span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery-item-photo {
  min-height: 350px;
  position: relative;
  justify-content: flex-end;
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.55);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 16px 34px rgba(1, 2, 42, 0.22);
}

.gallery-item-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 2, 42, 0.02) 34%, rgba(1, 2, 42, 0.56) 100%);
}

.gallery-item-photo span,
.gallery-item-photo strong {
  position: relative;
  z-index: 1;
  color: var(--on-dark);
  text-shadow: 0 8px 18px rgba(1, 2, 42, 0.45);
}

.gallery-photo-exterior {
  background-image: url("/images/gallery-exterior-refresh.jpg");
  background-position: center;
}

.gallery-photo-interior {
  background-image: url("/images/gallery-interior-repaint.jpg");
  background-position: center 38%;
}

.gallery-photo-decking {
  background-image: url("/images/gallery-decking.jpg");
  background-position: center 58%;
}

.gallery-showcase {
  display: grid;
  gap: 0.95rem;
}

.gallery-case {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.75rem;
  display: grid;
  gap: 0.75rem;
}

.blog-category-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.blog-chip {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.blog-chip--active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.blog-chip--active:hover {
  color: #fff;
}

.blog-card-category {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  line-height: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.blog-grid {
  display: grid;
  gap: 1rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(25, 34, 43, 0.05);
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.blog-card h2 {
  margin-bottom: 0;
}

.blog-card h2 a {
  text-decoration: none;
  color: var(--accent);
}

.blog-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.blog-card .btn {
  justify-self: start;
}

.section-testimonials {
  padding-top: 2.9rem;
}

.testimonial-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.testimonial-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.testimonial-stars {
  margin: 0;
  color: var(--cta);
  letter-spacing: 0.2em;
  font-size: 0.88rem;
}

.testimonial-card p {
  margin: 0;
}

.testimonial-card strong {
  font-size: 0.95rem;
  color: var(--accent);
}

.testimonial-card small {
  color: var(--muted);
}

.article-shell {
  max-width: 860px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.1rem, 3vw, 2.2rem);
}

.article-back {
  display: inline-flex;
  text-decoration: none;
  margin-bottom: 1rem;
  font-weight: 600;
}

.article-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
}

.article-header p {
  color: var(--muted);
  max-width: 62ch;
}

.faq-layout {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(19, 42, 69, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.95rem 1rem;
  font-weight: 700;
  color: var(--accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item p {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
}

.faq-category {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 0.22rem 0.52rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-capture-layout {
  display: grid;
  gap: 1rem;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 12px 28px rgba(25, 34, 43, 0.05);
}

.contact-panel p,
.contact-panel li {
  color: var(--muted);
}

.contact-quick-links {
  display: grid;
  gap: 0.6rem;
}

.lead-capture-shell {
  background: linear-gradient(160deg, rgba(1, 2, 42, 0.98) 0%, rgba(61, 77, 85, 0.97) 100%);
  border: 1px solid rgba(211, 200, 185, 0.35);
  border-radius: 22px;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  box-shadow: var(--shadow-soft);
  color: var(--on-dark);
}

.wizard-header h2 {
  color: var(--on-dark);
}

.wizard-header .eyebrow {
  color: #d3c8b9;
}

.wizard-progress {
  margin: 0.9rem 0 1rem;
}

.wizard-progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.wizard-progress-track span {
  display: block;
  height: 100%;
  width: 16.666%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c29571 0%, #b58863 100%);
  transition: width 260ms ease;
}

.wizard-progress p {
  margin: 0.55rem 0 0;
  color: #d3c8b9;
  font-size: 0.9rem;
}

.quote-wizard {
  margin-top: 0.4rem;
}

.quote-wizard.is-enhanced .wizard-step {
  display: none;
}

.quote-wizard.is-enhanced .wizard-step.is-active {
  display: grid;
  gap: 0.72rem;
  animation: wizardStepIn 260ms ease both;
}

.wizard-step {
  margin-top: 0.8rem;
}

.step-label {
  color: var(--on-dark);
  font-size: 1.02rem;
  font-weight: 700;
}

.field-error {
  color: #d44;
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.wizard-step input.is-invalid {
  border-color: #d44;
  box-shadow: 0 0 0 2px rgba(221, 68, 68, 0.15);
}

.step-gap {
  margin-top: 0.5rem;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.quote-wizard input[type="checkbox"] {
  width: 1.02rem;
  height: 1.02rem;
  margin-top: 0.15rem;
  flex: 0 0 auto;
  accent-color: var(--cta-strong);
}

.quote-wizard input,
.quote-wizard select,
.quote-wizard textarea {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(211, 200, 185, 0.72);
  color: var(--text);
}

.quote-wizard input::placeholder,
.quote-wizard textarea::placeholder {
  color: #7e7573;
}

.quote-wizard input:focus,
.quote-wizard select:focus,
.quote-wizard textarea:focus {
  outline: 2px solid rgba(181, 136, 99, 0.45);
  border-color: var(--cta-strong);
}

.wizard-nav {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.wizard-nav .btn {
  flex: 1;
}

.wizard-nav .btn-outline {
  background: transparent;
  border-color: rgba(211, 200, 185, 0.76);
  color: var(--on-dark);
}

.wizard-nav .btn-outline:hover {
  color: var(--on-dark);
}

.wizard-success {
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  animation: successFadeIn 0.5s ease-out both;
}

@keyframes successFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.success-check {
  display: block;
  margin: 0 auto 1.4rem;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
}

.success-check-svg {
  display: block;
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
}

.success-check-circle {
  fill: none;
  stroke: #5cc77e;
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: successCircle 0.6s 0.15s ease-out forwards;
}

@keyframes successCircle {
  to { stroke-dashoffset: 0; }
}

.success-check-tick {
  fill: none;
  stroke: #5cc77e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: successTick 0.35s 0.65s ease-out forwards;
}

@keyframes successTick {
  to { stroke-dashoffset: 0; }
}

.success-heading {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  color: var(--on-dark);
}

.success-subtext {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.success-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.6rem;
  line-height: 1.45;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.success-btn-outline {
  background: transparent;
  color: var(--on-dark);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.success-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-dark);
}

@media (min-width: 420px) {
  .success-actions {
    flex-direction: row;
    justify-content: center;
  }

  .success-actions .btn {
    min-width: 160px;
  }
}

@keyframes wizardStepIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

form {
  display: grid;
  gap: 0.68rem;
}

label {
  font-weight: 700;
  font-size: 0.92rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.75rem;
  background: #fff;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(181, 136, 99, 0.36);
  border-color: var(--cta-strong);
}

.notice {
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.84rem;
  margin-bottom: 1rem;
}

.notice.success {
  background: #edf5ef;
  color: var(--success);
  border: 1px solid #c9d9ce;
}

.notice.error {
  background: #f7ebed;
  color: var(--error);
  border: 1px solid #e2c5ca;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.error-page {
  text-align: center;
  padding: 5rem 0;
}

.error-icon {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.error-page h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.error-message {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.error-suggestions {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.error-suggestions h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  text-align: center;
}

.error-links {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.error-link-card {
  display: block;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.error-link-card:hover {
  border-color: var(--cta-strong);
  box-shadow: 0 4px 12px rgba(1, 2, 42, 0.08);
}

.error-link-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.error-link-card span {
  font-size: 0.85rem;
  color: var(--muted);
}

.error-contact {
  color: var(--muted);
  font-size: 0.95rem;
}

.error-contact a {
  color: var(--accent);
}

.testimonials-hero {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  gap: 1.8rem;
}

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

.testimonial-card-large {
  background: #ffffff;
  border: 1px solid rgba(211, 200, 185, 0.35);
  border-radius: 16px;
  padding: 2rem 2rem 1.8rem;
  box-shadow: 0 2px 8px rgba(1, 2, 42, 0.04), 0 8px 24px rgba(1, 2, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.testimonial-card-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(1, 2, 42, 0.06), 0 16px 40px rgba(1, 2, 42, 0.1);
}

.testimonial-card-large .testimonial-stars {
  color: var(--cta-strong);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.testimonial-card-large blockquote {
  margin: 0 0 1.4rem 0;
  padding-left: 1.1rem;
  border-left: 3px solid var(--cta-strong);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  flex: 1;
}

.testimonial-card-large .testimonial-author {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  border-top: 1px solid rgba(211, 200, 185, 0.4);
  margin-top: auto;
}

.testimonial-card-large .testimonial-author strong {
  font-size: 0.97rem;
  color: var(--text);
}

.testimonial-card-large .testimonial-author span {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.rating-summary {
  text-align: center;
  padding: 2.4rem 2rem;
  background: linear-gradient(120deg, #01022a, #3d4d55);
  color: var(--on-dark);
  border-radius: 16px;
  margin-bottom: 2.2rem;
  box-shadow: 0 8px 24px rgba(1, 2, 42, 0.18);
}

.rating-summary .rating-stars {
  font-size: 2.2rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.rating-summary .rating-value {
  font-size: 3.2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.25rem;
}

.rating-summary .rating-label {
  font-size: 1rem;
  opacity: 0.8;
}

.checklist {
  padding-left: 1.15rem;
}

.blog-post {
  max-width: 760px;
}

.blog-body h2,
.blog-body h3 {
  margin-top: 1.5rem;
}

.site-footer {
  margin-top: 1.2rem;
  background: linear-gradient(180deg, #162a50 0%, #0a1230 50%, #01022a 100%);
  color: var(--on-dark);
  padding: 2rem 0 1rem;
}

.site-footer a {
  color: #d3c8b9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.footer-grid h3 {
  margin-bottom: 0.25rem;
}

.footer-grid h4 {
  margin-bottom: 0.35rem;
}

.footer-grid p {
  margin: 0 0 0.25rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 1.5rem;
}

.footer-grid li {
  margin-bottom: 0.3rem;
}

.footer-bottom {
  padding-top: 0.75rem;
  border-top: 1px solid rgba(211, 200, 185, 0.15);
  margin-top: 1rem;
}

.mobile-quote-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(244, 240, 235, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.mobile-quote-call,
.mobile-quote-btn {
  min-height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: transparent;
}

.mobile-quote-call {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--accent);
}

.mobile-quote-btn {
  background: var(--cta);
  color: var(--text);
}

.quick-help {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.quick-help-launcher {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #01022a, #3d4d55);
  color: var(--on-dark);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(1, 2, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.quick-help-launcher:active {
  transform: scale(0.93);
}

.quick-help.is-open .quick-help-launcher {
  font-size: 1.6rem;
}

.quick-help-panel {
  width: min(260px, calc(100vw - 2rem));
  display: none;
  gap: 0.48rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(1, 2, 42, 0.2);
  padding: 0.72rem;
}

.quick-help.is-open .quick-help-panel {
  display: grid;
}

.quick-help-panel[hidden] {
  display: none !important;
}

.quick-help-panel p {
  margin: 0 0 0.1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.quick-help-panel a {
  text-decoration: none;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--accent);
  border-radius: 999px;
  padding: 0.45rem 0.68rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.funnel-main {
  padding: 1rem 0 2.2rem;
}

.funnel-wrapper {
  display: grid;
  gap: 1rem;
}

.funnel-mobile-actions {
  display: none;
}

.funnel-proof {
  display: none;
}

.funnel-proof-img {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    url("/images/exterior-transformation.jpg"),
    linear-gradient(155deg, #c8bfbe 0%, #e7e0d9 48%, #a79e9c 100%);
  background-size: cover;
  background-position: center 52%;
}

.funnel-view-site {
  display: none;
}

@media (max-width: 760px) {

  .funnel-proof {
    display: block;
    padding: 1rem 0 0;
  }

  .funnel-view-site {
    display: block;
    text-align: center;
    padding: 1.2rem 0 0.5rem;
  }

  .funnel-view-site a {
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

.home-main {
  position: relative;
  overflow: clip;
}

.home-main::before,
.home-main::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(24px);
  opacity: 0.16;
  transition: transform 180ms ease-out;
}

.home-main::before {
  width: 320px;
  height: 320px;
  top: 140px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 77, 85, 0.12), rgba(61, 77, 85, 0));
  transform: translate3d(calc(var(--home-mx, 0) * 0.015px), calc(var(--home-my, 0) * 0.015px), 0);
}

.home-main::after {
  width: 360px;
  height: 360px;
  top: 520px;
  right: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 136, 99, 0.12), rgba(181, 136, 99, 0));
  transform: translate3d(calc(var(--home-mx, 0) * -0.012px), calc(var(--home-my, 0) * -0.012px), 0);
}

.funnel-intro {
  text-align: center;
}

.funnel-intro h1 {
  margin-top: 0.6rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.7rem, 4.4vw, 2.8rem);
}

.funnel-intro p {
  color: var(--muted);
  margin: 0;
}

.funnel-badge {
  display: inline-flex;
  margin-bottom: 0.4rem;
  padding: 0.34rem 0.78rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.btn-live {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.btn-live::after {
  content: "";
  position: absolute;
  inset: -44%;
  z-index: -1;
  background: radial-gradient(circle at var(--btn-x, 50%) var(--btn-y, 50%), rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 200ms ease;
}

.btn-live.is-active::after,
.btn-live:hover::after {
  opacity: 1;
}

.interactive-tilt {
  transform:
    perspective(1100px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(var(--tilt-lift, 0px));
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.interactive-tilt.is-active {
  --tilt-lift: -4px;
}

.feature-media.interactive-tilt,
.hero-card.interactive-tilt,
.final-cta.interactive-tilt {
  box-shadow: 0 22px 40px rgba(1, 2, 42, 0.24);
}

.desktop-support h2 {
  margin-bottom: 0.6rem;
}

.mt-lg {
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: center;
  }

  .hero-copy {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .hero-logo-feature {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    align-items: center;
    justify-content: center;
    padding: 1rem 0 1rem 2rem;
    align-self: center;
  }

  .split {
    grid-template-columns: 1.18fr 0.82fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
  }

  .footer-grid ul {
    columns: 1;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip,
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .compare-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-showcase {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-case {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lead-capture-layout {
    grid-template-columns: 0.84fr 1.16fr;
    align-items: start;
  }

  .feature-row {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .feature-row.reverse {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .feature-row.reverse .feature-media {
    order: 2;
  }

  .feature-row.reverse .feature-copy {
    order: 1;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 980px) {
  body {
    padding-bottom: 0;
  }

  .mobile-quote-bar {
    display: none;
  }

  .site-nav {
    gap: 0.45rem;
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .page-contact-funnel {
    padding-bottom: 0;
  }

  .page-contact-funnel .site-footer,
  .page-contact-funnel .mobile-quote-bar,
  .page-contact-funnel .quick-help {
    display: none !important;
  }

  .page-contact-funnel .site-header {
    position: static;
    backdrop-filter: none;
    border-bottom-color: transparent;
    background: rgba(255, 255, 255, 0.94);
  }

  .page-contact-funnel .site-nav,
  .page-contact-funnel .nav-toggle {
    display: none;
  }

  .page-contact-funnel .nav-row {
    min-height: 64px;
  }

  .brand-logo {
    height: clamp(38px, 9vw, 52px);
  }

  .funnel-main {
    padding: 0.85rem 0 1.35rem;
  }

  .funnel-wrapper {
    min-height: auto;
    max-width: 430px;
    margin: 0 auto;
    align-content: initial;
  }

  .funnel-intro {
    text-align: left;
    padding: 0 0.15rem;
  }

  .funnel-intro h1 {
    font-size: clamp(1.4rem, 8.2vw, 2rem);
  }

  .funnel-intro p {
    font-size: 0.95rem;
  }

  .funnel-mobile-actions {
    display: grid;
    margin-top: 0.75rem;
  }

  .funnel-mobile-actions .btn {
    border-color: var(--line);
    color: var(--accent);
    background: rgba(255, 255, 255, 0.92);
  }

  .desktop-support {
    display: none;
  }

  .lead-capture-shell {
    border-radius: 18px;
    padding: 1rem 0.85rem;
    min-height: auto;
    display: block;
  }

  .wizard-header h2 {
    font-size: 1.55rem;
    margin-bottom: 0.35rem;
  }

  .wizard-progress {
    margin-bottom: 0.75rem;
  }

  .quote-wizard {
    flex: initial;
  }

  .quote-wizard.is-enhanced .wizard-step.is-active {
    min-height: auto;
  }

  .quote-wizard.is-enhanced .wizard-step.is-active .wizard-nav {
    margin-top: 0.5rem;
    padding-top: 0;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin-top: 0.3rem;
  }

  .hero-card-dark::before {
    top: 58%;
    left: 50%;
    width: 96%;
    height: 94%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-row {
    position: relative;
  }

  .site-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(1, 2, 42, 0.1);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    pointer-events: none;
    gap: 0;
    flex-wrap: nowrap;
  }

  .nav-open .site-nav {
    max-height: 600px;
    padding: 0.5rem 0;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    padding: 0.75rem 1.2rem;
    border-radius: 0;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .site-nav a.btn {
    display: block;
    margin: 0.5rem 1.2rem;
    border-radius: 999px;
    text-align: center;
    width: auto;
  }

  .section {
    padding: 3.4rem 0;
  }

  .gallery-item-photo {
    min-height: 285px;
  }

  .gallery-item strong {
    font-size: 1.46rem;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .wizard-nav {
    flex-direction: column;
  }

  .quick-help {
    right: 0.75rem;
    bottom: calc(74px + env(safe-area-inset-bottom) + 3.5rem);
  }

  .quick-help-panel {
    width: min(260px, calc(100vw - 1.5rem));
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn-live:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 10px 24px rgba(1, 2, 42, 0.26);
  }
}

@media (hover: none) {
  .btn-live.is-pressed {
    transform: scale(0.985);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .home-main::before,
  .home-main::after,
  .interactive-tilt,
  .btn-live {
    transition: none;
    animation: none;
  }
}

.nearby-intro {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1.4rem;
}

.nearby-suburbs-grid {
  display: grid;
  gap: 0.85rem;
}

.nearby-suburb-card {
  display: block;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 8px 20px rgba(11, 20, 35, 0.04);
}

.nearby-suburb-card:hover {
  border-color: var(--cta);
  box-shadow: 0 12px 28px rgba(11, 20, 35, 0.09);
  transform: translateY(-2px);
}

.nearby-suburb-card strong {
  display: block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.nearby-suburb-card span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

.final-cta-sub {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: #d3c8b9;
}

.final-cta-sub a {
  color: var(--on-dark);
  text-decoration: underline;
}

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

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