
:root {
  --ink: #0a1f56;
  --ink-soft: #102a72;
  --accent: #d71821;
  --accent-dark: #b90f17;
  --canvas: #f5f7fb;
  --canvas-2: #eef2f8;
  --white: #ffffff;
  --text: #14213a;
  --muted: #5d6a83;
  --line: rgba(12, 32, 82, 0.12);
  --shadow-xl: 0 32px 80px rgba(10, 31, 86, 0.18);
  --shadow-lg: 0 22px 52px rgba(10, 31, 86, 0.13);
  --shadow-md: 0 16px 34px rgba(10, 31, 86, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.hidden {
  display: none;
}

.eyebrow {
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section {
  padding: 6.5rem 0;
}

.section-muted {
  background: var(--canvas);
}

.section-ink {
  background: linear-gradient(180deg, #081737 0%, #102861 100%);
  color: var(--white);
}

.section-ink .eyebrow,
.section-dark-callout .eyebrow {
  color: #ff737a;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.6rem;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h1,
.section-heading h2,
.page-hero h1,
.hero-copy h1,
.success-card h1,
.service-detail-copy h2,
.feature-copy h2,
.estimate-copy h2,
.centered-cta-block h2,
.dark-callout-grid h2,
.contact-panel h2 {
  margin: 0 0 1rem;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-heading h2,
.feature-copy h2,
.estimate-copy h2,
.dark-callout-grid h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.section-heading p,
.page-intro,
.hero-lead,
.feature-copy p,
.estimate-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.04rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 54px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  cursor: pointer;
  border: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, #f13d46 100%);
  box-shadow: 0 18px 36px rgba(215, 24, 33, 0.24);
}

.button-primary:hover {
  box-shadow: 0 24px 48px rgba(215, 24, 33, 0.28);
}

.button-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(10, 31, 86, 0.16);
}

.button-secondary:hover {
  border-color: rgba(10, 31, 86, 0.3);
  box-shadow: var(--shadow-md);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 800;
}

.topbar {
  background: #06132f;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 1rem;
}

.topbar-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.topbar-phone {
  font-weight: 800;
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(12, 32, 82, 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand img {
  width: min(270px, 48vw);
  height: auto;
}

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

.site-nav > a {
  font-weight: 700;
  color: var(--ink);
}

.site-nav > a:hover {
  color: var(--accent);
}

.nav-cta {
  margin-left: 0.4rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(12, 32, 82, 0.1);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

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

.hero-home {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(8, 23, 55, 0.88) 0%, rgba(16, 40, 97, 0.68) 45%, rgba(16, 40, 97, 0.3) 100%),
    url("assets/images/hero-staircase.jpg") center/cover no-repeat;
  color: var(--white);
}

.hero-home-backdrop {
  position: absolute;
  inset: auto auto -160px -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-home-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 430px);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 128px);
  padding: 7rem 0 6rem;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy .eyebrow {
  color: #ff737a;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  margin: 0 0 1.25rem;
}

.hero-lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-actions .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-actions .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

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

.hero-stat {
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.4rem;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 2rem;
  border-radius: 28px;
}

.panel-heading h2 {
  margin: 0.2rem 0 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.panel-points {
  padding: 0;
  margin: 0 0 1.75rem;
  list-style: none;
}

.panel-points li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
}

.panel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff737a;
}

.mini-contact {
  display: grid;
  gap: 1rem;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 1.4rem;
}

.mini-contact span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.mini-contact a,
.mini-contact p {
  margin: 0;
  color: var(--white);
  font-weight: 700;
}

.trust-strip {
  margin-top: -2.7rem;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.trust-card {
  padding: 1.35rem;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.trust-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.38rem 0.6rem;
  border-radius: 999px;
  background: rgba(215, 24, 33, 0.08);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

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

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 3rem;
  align-items: center;
}

.feature-media {
  position: relative;
}

.feature-stack {
  display: grid;
  grid-template-columns: 1.1fr 0.82fr;
  gap: 1rem;
  align-items: end;
}

.feature-image {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tall-card {
  height: 540px;
}

.small-card {
  height: 320px;
  margin-bottom: 2.4rem;
}

.feature-badge {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.15rem;
  border-radius: 20px;
  background: rgba(8, 23, 55, 0.92);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.feature-badge strong {
  font-size: 1rem;
}

.feature-copy {
  max-width: 620px;
}

.feature-list {
  display: grid;
  gap: 1.3rem;
  margin: 2rem 0 2.2rem;
}

.feature-list h3,
.service-card-body h3,
.process-step h3,
.review-pillar strong,
.service-standards h3,
.info-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
}

.feature-list p,
.service-card-body p,
.process-step p,
.service-standards p,
.info-card p,
.gallery-copy span {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body p,
.service-card-body a {
  color: rgba(255, 255, 255, 0.8);
}

.section-ink .service-card-body h3 {
  color: var(--white);
}

.service-card-body a {
  display: inline-flex;
  margin-top: 0.8rem;
  font-weight: 800;
}

.service-index {
  margin-bottom: 0.5rem;
  color: #ff737a !important;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  padding: 1.45rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: var(--shadow-md);
}

.process-step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(215, 24, 33, 0.08);
  color: var(--accent);
  font-weight: 800;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.project-card.large {
  min-height: 480px;
}

.project-card img,
.gallery-card img,
.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card::after,
.gallery-card::after,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 55, 0.05) 20%, rgba(8, 23, 55, 0.78) 100%);
}

.project-card-copy,
.gallery-copy {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 2;
  color: var(--white);
}

.project-card-copy span,
.gallery-copy span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card-copy h3,
.gallery-copy h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.centered-cta {
  margin-top: 2.2rem;
  text-align: center;
}

.section-dark-callout {
  background: linear-gradient(140deg, #071632 0%, #0d2458 100%);
  color: var(--white);
  padding: 5rem 0;
}

.dark-callout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.dark-callout-grid p {
  color: rgba(255, 255, 255, 0.8);
}

.review-pillars {
  display: grid;
  gap: 1rem;
}

.review-pillar {
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-pillar span {
  color: rgba(255, 255, 255, 0.72);
}

.estimate-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.contact-details-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-details-stack div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-details-stack span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-details-stack a {
  font-weight: 800;
  color: var(--ink);
}

.estimate-form-wrap {
  padding: 1.6rem;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xl);
}

.estimate-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(12, 32, 82, 0.14);
  border-radius: 16px;
  background: var(--white);
  min-height: 54px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(215, 24, 33, 0.46);
  box-shadow: 0 0 0 4px rgba(215, 24, 33, 0.08);
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 23, 55, 0.82) 0%, rgba(16, 40, 97, 0.52) 55%, rgba(16, 40, 97, 0.32) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 5rem 0;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
}

.page-intro {
  color: rgba(255, 255, 255, 0.84);
}

.hero-services {
  background: url("assets/images/exterior-mansion.jpg") center/cover no-repeat;
}

.hero-gallery {
  background: url("assets/images/interior-living-room-01.jpg") center/cover no-repeat;
}

.hero-contact {
  background: url("assets/images/interior-living-room-02.jpg") center/cover no-repeat;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.service-detail-grid.reverse .service-detail-copy {
  order: 2;
}

.service-detail-grid.reverse .service-detail-media {
  order: 1;
}

.service-detail-media {
  overflow: hidden;
  border-radius: 28px;
  min-height: 440px;
  box-shadow: var(--shadow-lg);
}

.service-detail-media img {
  height: 100%;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.service-standards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-standards article {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.centered-cta-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-chip {
  min-height: 46px;
  padding: 0 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(12, 32, 82, 0.1);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter-chip.is-active,
.filter-chip:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.gallery-card.is-hidden {
  display: none;
}

.gallery-copy h3 {
  font-size: 1.15rem;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.info-card,
.map-card,
.faq-item {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  box-shadow: var(--shadow-md);
}

.map-card {
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
}

.faq-icon {
  flex: none;
  font-size: 1.25rem;
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.26s ease;
}

.faq-answer p {
  padding: 0 1.45rem 1.35rem;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding-top: 4rem;
  color: rgba(255, 255, 255, 0.82);
  background: #06132f;
}

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

.footer-brand img {
  width: min(270px, 50vw);
  margin-bottom: 1rem;
}

.site-footer h3 {
  margin: 0 0 1rem;
  color: var(--white);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.footer-links a:hover,
.footer-bottom a:hover,
.site-footer a:hover {
  color: #ff737a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.success-body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #17367b 0%, #081737 42%, #041027 100%);
  color: var(--white);
}

.success-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.success-card {
  width: min(100%, 620px);
  padding: 2.2rem;
  text-align: center;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}

.success-card img {
  width: min(320px, 82%);
  margin: 0 auto 1.5rem;
}

.success-card p {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1080px) {
  .hero-home-grid,
  .estimate-grid,
  .contact-page-grid,
  .dark-callout-grid,
  .split-feature,
  .service-detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-home-grid {
    min-height: auto;
  }

  .trust-grid,
  .service-grid,
  .process-grid,
  .service-standards,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card.large,
  .project-card {
    min-height: 340px;
  }

  .feature-copy,
  .estimate-copy,
  .contact-panel {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(12, 32, 82, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    padding: 0.95rem 0.9rem;
    border-radius: 14px;
  }

  .nav-cta {
    margin: 0.6rem 0 0;
  }

  .hero-home-grid {
    padding-top: 5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.7rem, 9vw, 4.4rem);
  }

  .hero-stat-row,
  .trust-grid,
  .service-grid,
  .process-grid,
  .gallery-grid,
  .service-standards,
  .contact-card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-stack {
    grid-template-columns: 1fr;
  }

  .tall-card,
  .small-card,
  .service-detail-media {
    height: auto;
    min-height: 280px;
  }

  .small-card {
    margin-bottom: 0;
  }

  .page-hero {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 4.4rem 0;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: min(220px, 60vw);
  }

  .hero-panel,
  .estimate-form-wrap,
  .success-card {
    padding: 1.35rem;
  }

  .feature-badge {
    position: static;
    margin-top: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
