@import url("https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,650;0,9..144,700;1,9..144,500&family=Great+Vibes&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --orange: #f25c1b;
  --orange-d: #d44a12;
  --orange-s: #ff7a3d;
  --black: #0e0e0e;
  --char: #1a1a1a;
  --ink: #161616;
  --muted: #5b5b5b;
  --line: #e8e6e3;
  --paper: #f7f5f2;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(14, 14, 14, 0.08);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font-family: inherit; }

.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.serif { font-family: Fraunces, Georgia, serif; }
h1, h2, .h-display {
  font-family: Fraunces, Georgia, serif;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--black);
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 650; }
.kicker {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.muted { color: var(--muted); }
.center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  box-shadow: 0 8px 22px rgba(242, 92, 27, 0.28);
}
.btn:hover { background: var(--orange-d); transform: translateY(-1px); }
.btn-dark {
  background: var(--black);
  box-shadow: none;
}
.btn-dark:hover { background: #2a2a2a; }
.btn-ghost {
  background: transparent;
  color: var(--black);
  box-shadow: none;
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--paper); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  position: relative;
}
.logo-link {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 10px;
  padding: 0;
  height: 58px;
}
.logo-link img { height: 54px; width: auto; }
.site-footer .logo-link { 
  padding: 6px 10px;
  border-radius: 10px;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  font-weight: 500;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--orange); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero home */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 40px;
}
.hero p.lead { margin: 18px 0 28px; color: var(--muted); font-size: 1.08rem; max-width: 52ch; }
.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  background: #fff;
}

/* Intro */
.intro {
  padding: 80px 0 40px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.icon-round {
  width: 54px; height: 54px; margin: 0 auto 16px;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; color: var(--orange);
}

/* Cards */
.cards-3, .cards-4, .why-grid, .review-grid {
  display: grid;
  gap: 22px;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: #fff;
  transition: 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card svg { color: var(--orange); margin-bottom: 14px; }
.card a.more { color: var(--orange); font-weight: 600; display: inline-flex; gap: 6px; margin-top: 14px; }

.section { padding: 72px 0; }
.section-alt { background: var(--paper); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery figure { margin: 0; }
.gallery img, .shot {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

.reviews .card { min-height: 220px; }
.stars { color: var(--orange); letter-spacing: 2px; margin-bottom: 10px; }
.who { margin-top: 16px; font-weight: 600; font-size: 0.92rem; }
.badge {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.72rem;
  background: #fff4ee;
  color: var(--orange-d);
  padding: 2px 8px;
  border-radius: 999px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img { border-radius: 24px; width: 100%; height: 420px; object-fit: cover; }
.split figure { margin: 0; }
.steps { display: grid; gap: 18px; list-style: none; padding: 0; margin: 0; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 14px; align-items: start; }
.num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--black); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}

.quote-band {
  background: var(--black);
  color: #fff;
  padding: 80px 0;
}
.quote-band h2, .quote-band p { color: #fff; }
.quote-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.quote-grid img {
  border-radius: 20px;
  border: 6px solid #fff;
  height: 340px;
  width: 100%;
  object-fit: cover;
}

.compare { overflow: auto; border: 1px solid var(--line); border-radius: 16px; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fff;
}
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); color: var(--ink); }
th { font-weight: 700; }
th:nth-child(2), td:nth-child(2) {
  background: #fff4ee;
  color: var(--black);
  text-align: center;
  width: 22%;
}
th:nth-child(2) {
  background: var(--orange);
  color: #fff;
}
td:nth-child(2) {
  font-weight: 700;
  color: var(--orange-d);
  font-size: 1.15rem;
}
th:nth-child(3), td:nth-child(3) {
  text-align: center;
  color: #9a9a9a;
  width: 22%;
}
tr:last-child td { border-bottom: 0; }

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.faq summary { cursor: pointer; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--muted); margin-top: 10px; padding: 12px 14px; background: var(--paper); border-radius: 12px; }

.cta-final { text-align: center; padding: 80px 0; }
.cta-banner {
  background: var(--black);
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
}
.cta-banner h2, .cta-banner p { color: #fff; }
.cta-banner img { border-radius: 16px; height: 220px; width: 100%; object-fit: cover; }

.why-grid { grid-template-columns: repeat(3, 1fr); }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.check-list li { list-style: none; padding-left: 28px; position: relative; }
.check-list li:before {
  content: "";
  position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px;
  background: var(--orange);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / contain no-repeat;
}

.areas { display: flex; flex-wrap: wrap; gap: 8px; }
.areas a, .chip {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
  background: #fff;
}
.areas a:hover { border-color: var(--orange); color: var(--orange); }

.sa-sec {
  background: #f3f1ee;
  padding: 88px 0;
}
.sa-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.sa-map {
  min-height: 480px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(14,14,14,0.08);
  background: #e8e6e3;
}
.sa-map iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}
.sa-copy h2 { margin-bottom: 12px; }
.sa-copy > p {
  color: #5a5a5a;
  margin-bottom: 22px;
  max-width: 46ch;
}
.sa-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sa-pills a {
  background: #fff;
  border: 1px solid #d9d5d0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  color: #2a2a2a;
  line-height: 1.2;
  font-weight: 500;
}
.sa-pills a:hover,
.sa-pills a.is-here {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff4ee;
}

/* Programmatic hero */
.p-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0 24px;
}
.p-hero img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
}
.p-hero figure { margin: 0; }
.usps { display: grid; gap: 8px; margin: 18px 0 24px; color: var(--muted); }
.usps li { list-style: none; padding-left: 22px; position: relative; }
.usps li:before { content: "•"; color: var(--orange); position: absolute; left: 0; font-weight: 700; }

.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-row .card { text-align: center; padding: 22px 14px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.svc-tile {
  position: relative;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
}
.svc-tile img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
.svc-tile span {
  position: absolute; left: 14px; bottom: 14px;
  font-weight: 650; font-family: Fraunces, serif;
}

/* Form */
.lead-form {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 18px 50px rgba(14, 14, 14, 0.08);
  overflow: hidden;
  text-align: left;
}
.lead-form-top {
  background: #171717;
  color: #fff;
  padding: 22px 24px 20px;
}
.lead-form-top h3 {
  color: #fff;
  margin: 8px 0 6px;
  font-size: 1.45rem;
  line-height: 1.2;
}
.lead-form-top p { color: #cfc8c3; font-size: 0.92rem; max-width: 42ch; }
.lead-badge {
  display: inline-block;
  background: rgba(242, 92, 27, 0.2);
  color: #ffb38a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}
.lead-form-body { padding: 22px 24px 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 0.8rem; font-weight: 650; color: #2a2a2a; }
.field label em { color: var(--orange); font-style: normal; }
.field input,
.field textarea {
  width: 100%;
  border: 1px solid #e4e1dc;
  background: #fbfaf8;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
}
.field textarea { min-height: 104px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #b0aba6; }
.field input:hover,
.field textarea:hover { border-color: #d2cec8; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(242, 92, 27, 0.14);
}
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 2px 0 16px;
  align-items: start;
  line-height: 1.45;
}
.consent input { margin-top: 3px; accent-color: var(--orange); width: 16px; height: 16px; }
.lead-submit {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
}
.lead-submit .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.lead-form.is-loading .lead-submit .spinner { display: inline-block; }
.lead-submit:disabled { opacity: 1; cursor: wait; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-msg { margin-top: 10px; font-weight: 600; }
.form-msg.err {
  color: #9b1c1c;
  background: #fdecec;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
}
.lead-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  list-style: none;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}
.lead-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lead-trust li:before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
}
.lead-thanks {
  display: none;
  padding: 48px 28px;
  text-align: center;
}
.lead-form.is-success .lead-form-top,
.lead-form.is-success .lead-form-body { display: none; }
.lead-form.is-success .lead-thanks { display: block; }
.thanks-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff4ee;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
}
.lead-thanks h3 { font-size: 2rem; margin-bottom: 8px; color: var(--black); }
.lead-thanks p { color: var(--muted); max-width: 36ch; margin: 0 auto; }

.modal {
  position: fixed; inset: 0; background: rgba(14,14,14,.62);
  display: none; place-items: center; z-index: 80; padding: 20px;
}
.modal.open { display: grid; }
.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: 92vh;
  overflow: auto;
  border-radius: 24px;
}
.modal-card .lead-form { box-shadow: 0 30px 80px rgba(0,0,0,0.28); }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--orange-d); }

/* Footer */
.site-footer { background: var(--black); color: #cfcfcf; padding: 56px 0 20px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 28px; }
.foot-heading, .site-footer h4 { color: #fff; margin-bottom: 12px; font-weight: 700; }
.foot-list { list-style: none; padding: 0; margin: 0; }
.foot-list li { margin: 0 0 8px; }
.foot-address { font-style: normal; }
.site-footer a:hover { color: var(--orange); }
.site-footer .logo-link {
  width: fit-content;
  margin-bottom: 12px; 
  padding: 6px 10px;
  border-radius: 10px;
}
.copy { border-top: 1px solid #2a2a2a; margin-top: 28px; padding-top: 16px; font-size: 0.85rem; display: flex; justify-content: space-between; gap: 12px; }

.hub-stats { background: var(--black); color: #fff; }
.hub-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.hub-stats article {
  padding: 28px 8px;
  text-align: center;
}
.hub-stats strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  margin-bottom: 4px;
}
.hub-stats span { color: #cfcfcf; font-size: 0.92rem; }

.install-sec { padding: 72px 0 24px; }
.install-head { text-align: center; max-width: 720px; margin: 0 auto 28px; }
.svc-badge {
  display: inline-block;
  background: #f1efec;
  color: #6a6a6a;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.install-head p { color: var(--muted); margin: 12px auto 0; max-width: 58ch; }
.install-cat {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
  margin-top: 28px;
  font-weight: 650;
}
.install-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.install-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.install-item {
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  gap: 14px;
  align-items: center;
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  transition: background 0.18s ease;
}
.install-item:hover { background: #f4f2ef; }
.install-icon {
  width: 40px; height: 40px;
  color: var(--orange);
  display: grid; place-items: center;
}
.install-icon svg { width: 26px; height: 26px; }
.install-copy { display: grid; gap: 2px; min-width: 0; }
.install-copy strong { font-size: 0.98rem; }
.install-copy small { color: var(--muted); font-size: 0.84rem; line-height: 1.4; }
.install-arrow { color: #b9b6b2; font-size: 1.05rem; }
.install-item:hover .install-arrow { color: var(--orange); }
.install-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.script { font-family: "Great Vibes", cursive; font-weight: 400; letter-spacing: 0; }
.sec-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8a8a;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(1.5px) brightness(0.5);
}
.about-hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 80px 20px 72px;
}
.about-k {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  color: #f4f1ea;
}
.about-hero-copy h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  margin-top: 4px;
}

.about-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 24px 20px;
}
.house-ico {
  width: 46px;
  height: 46px;
  color: var(--orange);
  margin: 0 auto 16px;
  display: block;
}
.about-italic {
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  color: var(--black);
  margin-bottom: 16px;
}
.about-lead > p:last-child { color: var(--muted); }

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0 72px;
}
.about-split p { color: var(--muted); margin-top: 14px; }
.about-split img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 6px;
}

.heritage {
  background: var(--black);
  color: #fff;
  padding: 84px 0;
}
.heritage-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.heritage-art { color: rgba(255,255,255,0.9); max-width: 260px; }
.heritage h2 { color: #fff; margin: 14px 0 16px; }
.heritage p { color: #cfcfcf; margin-bottom: 18px; }
.heritage-badge {
  display: inline-block;
  background: #fff;
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
}
.heritage-list { list-style: none; display: grid; gap: 9px; }
.heritage-list li { padding-left: 18px; position: relative; color: #ddd; }
.heritage-list li:before {
  content: "–";
  color: var(--orange);
  position: absolute;
  left: 0;
}

.team-sec { padding: 88px 0 40px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.wiggle {
  padding: 9px;
  margin-bottom: 16px;
  border: 2px solid var(--char);
  border-radius: 28px 18px 32px 16px / 20px 30px 14px 26px;
}
.wiggle img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}
.team-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  color: var(--black);
}
.team-role { color: #7a7a7a; font-size: 0.92rem; margin: 2px 0 10px; }
.team-card > p:last-child { color: var(--muted); font-size: 0.94rem; }

.expect-sec {
  background: #fff;
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
}
.expect-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 80px;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.expect-flow:before {
  content: "";
  position: absolute;
  inset: 40px 28%;
  border: 1.5px dashed #d7d3ce;
  border-radius: 40px;
  pointer-events: none;
}
.wiggle-box {
  background: #fff;
  padding: 26px 24px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--char);
  border-radius: 22px 14px 26px 18px / 16px 24px 12px 22px;
}
.expect-card.step-2,
.expect-card.step-4 { margin-top: 48px; }
.step-pill {
  display: inline-block;
  background: var(--black);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.step-ico {
  display: block;
  width: 28px;
  height: 28px;
  color: var(--orange);
  margin: 8px 0;
}
.step-ico svg { width: 28px; height: 28px; }
.expect-card h3 { margin: 6px 0 8px; font-family: Outfit, sans-serif; font-size: 1.05rem; }
.expect-card p { color: var(--muted); font-size: 0.92rem; }
.expect-deco {
  position: absolute;
  right: 4%;
  bottom: 24px;
  width: 160px;
  color: var(--orange);
  opacity: 0.35;
  pointer-events: none;
}

.about-cta {
  background: #f3f1ee;
  text-align: center;
  padding: 80px 24px;
}
.about-cta p { color: var(--muted); margin: 12px 0 22px; }

@media (max-width: 980px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 78px; left: 0; right: 0;
    background: #fff; padding: 16px 20px 24px;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn { display: block; }
  .hero, .p-hero, .split, .quote-grid, .cta-banner, .cards-3, .why-grid, .review-grid, .foot-grid, .cards-4, .gallery, .process-row, .svc-grid, .check-list, .grid-2, .install-split, .sa-grid, .about-split, .heritage-grid, .team-grid, .expect-flow, .hub-stats-grid {
    grid-template-columns: 1fr;
  }
  .cards-4 { grid-template-columns: 1fr 1fr; }
  .hero-media, .p-hero img { min-height: 320px; height: 360px; }
  .sa-map iframe { height: 320px; }
  .sa-map { min-height: 320px; }
  .header-inner .btn { padding: 10px 14px; font-size: 0.88rem; }
  .expect-card.step-2,
  .expect-card.step-4 { margin-top: 0; }
  .expect-flow:before { display: none; }
  .dir-az { column-count: 1; }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}
.skip-link:focus { left: 16px; }
.nav a[aria-current="page"] { color: var(--orange); }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.breadcrumbs { padding: 14px 0 0; font-size: 0.84rem; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.breadcrumbs li { display: flex; gap: 6px; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: "/"; color: #c4c4c4; }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }
blockquote.card { margin: 0; }
blockquote.card p { font-style: italic; }
.dir-az { column-count: 3; column-gap: 32px; }
.dir-town { break-inside: avoid; margin: 0 0 16px; }
.dir-town strong { display: block; margin-bottom: 4px; }
.dir-town a { display: block; font-size: 0.9rem; color: var(--muted); }
.dir-town a:hover { color: var(--orange); }
.compare tbody th { font-weight: 500; }
.quote-grid figure { margin: 0; }
.install-photo { margin: 0; }

