@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900;950&display=swap');

:root {
  --ink: #242424;
  --black: #111;
  --soft: #666;
  --paper: #f4f0e8;
  --stone: #e9e2d8;
  --white: #fffaf2;
  --orange: #ff681f;
  --line: rgba(36, 36, 36, .13);
  --radius: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .02em;
  transition: .25s;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 16px;
}
.btn.primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 18px 45px rgba(255, 104, 31, .28);
}
.btn.primary:hover, .btn.ghost:hover { transform: translateY(-2px); }
.btn.ghost {
  border-color: rgba(255, 255, 255, .22);
  color: white;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}
.btn.ghost-dark {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, .5);
}
.btn.ghost-dark:hover { transform: translateY(-2px); background: white; }

/* ── Navigation ── */
header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
}
.nav {
  width: min(1240px, calc(100% - 28px));
  margin: 14px auto;
  padding: 12px 15px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(17, 17, 17, .76);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
}
.nav img { width: 230px; height: auto; }
.navlinks {
  display: flex;
  gap: 24px;
  align-items: center;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 800;
}
.navlinks a:hover { color: white; }
.navlinks a.active { color: white; }
.nav-cta {
  background: white;
  color: var(--ink) !important;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: .3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(17,17,17,.88), rgba(17,17,17,.68) 48%, rgba(17,17,17,.46)),
    linear-gradient(180deg, rgba(255,104,31,.16), rgba(17,17,17,.34)),
    url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 150px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: rotate(-6deg);
  opacity: .35;
}
.hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(30px);
  opacity: .18;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 880px);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .19em;
  color: var(--orange);
  font-weight: 950;
  font-size: 12px;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(48px, 7.4vw, 100px);
  line-height: .86;
  letter-spacing: -.075em;
  margin: 0 0 24px;
  font-weight: 950;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .75);
  max-width: 660px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.badge-row { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 10px 13px;
  background: rgba(255, 255, 255, .08);
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.badge svg {
  width: 15px;
  height: 15px;
  stroke: var(--orange);
  stroke-width: 2.6;
  fill: none;
}

/* ── Sections ── */
.section { padding: 108px 0; }
.section.dark { background: #202020; color: white; }
.section-intro {
  display: grid;
  grid-template-columns: .95fr 1fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 44px;
}
h2 {
  font-size: clamp(35px, 5vw, 68px);
  line-height: .93;
  letter-spacing: -.06em;
  margin: 0 0 16px;
  font-weight: 950;
}
.muted {
  color: #686058;
  line-height: 1.75;
  font-size: 17px;
}
.dark .muted { color: rgba(255, 255, 255, .68); }

/* ── Service Cards ── */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(0, 0, 0, .06);
  overflow: hidden;
}
.service-card summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 58px 1fr 30px;
  gap: 18px;
  align-items: center;
  padding: 24px;
}
.service-card summary::-webkit-details-marker { display: none; }
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #242424;
  color: white;
  display: grid;
  place-items: center;
}
.service-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
summary strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.04em;
}
summary small {
  display: block;
  margin-top: 5px;
  color: #777;
  font-weight: 800;
}
summary b {
  font-size: 30px;
  color: var(--orange);
  transition: .25s;
}
details[open] summary b { transform: rotate(45deg); }
.service-card ul {
  margin: 0;
  padding: 0 24px 24px 100px;
  display: grid;
  gap: 9px;
  grid-template-columns: 1fr 1fr;
}
.service-card li {
  font-weight: 750;
  color: #4e4943;
}
.service-card li::marker { color: var(--orange); }

/* ── Split layout ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
.image-card {
  position: relative;
  min-height: 585px;
  border-radius: 38px;
  background: url('../assets/images/how-we-work.jpg') center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.check-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.check {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 23px;
  padding: 18px;
}
.check i {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: var(--orange);
  display: grid;
  place-items: center;
  font-style: normal;
  font-weight: 950;
}
.check h3 { margin: 0 0 6px; font-size: 20px; }
.check p { margin: 0; color: rgba(255, 255, 255, .67); line-height: 1.55; }

/* ── Work grid ── */
.work-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 18px;
  height: 650px;
}
.work-img {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .08);
}
.work-img.one { background-image: url('../assets/images/landscaping.jpg'); }
.work-stack { display: grid; gap: 18px; }
.work-img.two { background-image: url('../assets/images/decking.jpg'); }
.work-img.three { background-image: url('../assets/images/fencing.jpg'); }
.label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 1;
  background: rgba(0, 0, 0, .58);
  color: white;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

/* ── Nic feature ── */
.nic-feature {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 52px;
  align-items: center;
}
.nic-photo {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(36, 36, 36, .1);
  background: #111;
}
.nic-photo img {
  width: 100%;
  height: min(720px, 72vw);
  object-fit: cover;
  object-position: center;
}
.nic-copy {
  background: rgba(255, 255, 255, .5);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 42px;
}
.nic-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.nic-points span {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 900;
}

/* ── Areas / Map ── */
.areas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.area {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  font-weight: 950;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.area:hover, .area.active {
  transform: translateY(-3px);
  border-color: rgba(255, 104, 31, .55);
  box-shadow: 0 16px 38px rgba(255, 104, 31, .12);
  background: #fff7f1;
}
/* ── Area Detail Cards ── */
.area-cards {
  display: grid;
  gap: 16px;
}
.area-detail-card {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  padding: 28px;
  color: white;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.area-detail-card.active,
.area-detail-card:hover {
  border-color: rgba(255, 104, 31, .5);
  box-shadow: 0 16px 44px rgba(255, 104, 31, .12);
  transform: translateY(-2px);
}
.area-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 104, 31, .15);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.area-detail-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.area-detail-card h3 {
  font-size: 20px;
  font-weight: 950;
  margin: 0 0 8px;
}
.area-detail-card p {
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* ── CTA ── */
.cta {
  padding: 105px 0;
  background: #151515;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -160px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .16;
  filter: blur(18px);
}
.cta-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 42px;
  align-items: center;
}
.contact-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  padding: 30px;
}
.contact-card img { width: 260px; margin-bottom: 26px; }
.contact-row {
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, .78);
  font-weight: 850;
}
.contact-row a { color: rgba(255, 255, 255, .78); transition: color .2s ease; }
.contact-row a:hover { color: white; }

/* ── Footer ── */
footer {
  padding: 34px 0;
  background: #0f0f0f;
  color: rgba(255, 255, 255, .56);
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ── Page Hero (interior pages) ── */
.page-hero {
  padding: 160px 0 80px;
  background: #151515;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  transform: rotate(-6deg);
  opacity: .35;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(30px);
  opacity: .14;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(40px, 6vw, 80px); }
.page-hero .lead { max-width: 620px; }

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, .06);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  background: white;
  color: var(--ink);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

/* ── Form Success State ── */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  min-height: 400px;
}
.form-success h3 {
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -.03em;
  margin: 24px 0 12px;
}
.form-success .muted {
  max-width: 400px;
}
.success-tick {
  width: 88px;
  height: 88px;
}
.success-tick svg {
  width: 100%;
  height: 100%;
}
.success-tick-circle {
  stroke: var(--orange);
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: tick-circle .6s cubic-bezier(.65,0,.45,1) forwards;
}
.success-tick-check {
  stroke: var(--orange);
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: tick-check .4s cubic-bezier(.65,0,.45,1) .4s forwards;
}
@keyframes tick-circle {
  to { stroke-dashoffset: 0; }
}
@keyframes tick-check {
  to { stroke-dashoffset: 0; }
}

.contact-info-card {
  background: #171717;
  border-radius: var(--radius);
  padding: 40px;
  color: white;
  border: 1px solid rgba(255, 255, 255, .08);
}
.contact-info-card h3 {
  font-size: 24px;
  margin: 0 0 24px;
  font-weight: 950;
}
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 104, 31, .15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--orange);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info-item span { font-weight: 700; color: rgba(255,255,255,.78); }
.contact-info-item a { color: rgba(255,255,255,.78); transition: color .2s; font-weight: 700; }
.contact-info-item a:hover { color: white; }

/* ── Calculator ── */
.calculator-section {
  padding: 108px 0;
  background: #1a1a1a;
  color: white;
  position: relative;
  overflow: hidden;
}
.calculator-section::before {
  content: "";
  position: absolute;
  left: -180px;
  top: -140px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--orange);
  opacity: .1;
  filter: blur(30px);
}
.calculator-wrap {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}
.calc-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  padding: 44px;
  margin-top: 36px;
}
.calc-step { display: none; }
.calc-step.active { display: block; }
.calc-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.calc-progress-dot {
  flex: 1;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,.15);
  transition: background .3s;
}
.calc-progress-dot.done { background: var(--orange); }
.calc-step h3 {
  font-size: 24px;
  margin: 0 0 8px;
  font-weight: 900;
}
.calc-step p {
  color: rgba(255,255,255,.6);
  margin: 0 0 24px;
  line-height: 1.6;
}
.calc-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.calc-option {
  background: rgba(255,255,255,.07);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 20px;
  cursor: pointer;
  transition: .25s;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  font-family: inherit;
  color: white;
}
.calc-option:hover {
  border-color: rgba(255,104,31,.5);
  background: rgba(255,104,31,.08);
}
.calc-option.selected {
  border-color: var(--orange);
  background: rgba(255,104,31,.12);
}
.calc-option small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.5);
  font-weight: 600;
  font-size: 13px;
}
.calc-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}
.calc-btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: .25s;
  font-family: inherit;
}
.calc-btn.next {
  background: var(--orange);
  color: white;
  margin-left: auto;
}
.calc-btn.next:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,104,31,.3); }
.calc-btn.back {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.15);
}
.calc-btn.back:hover { background: rgba(255,255,255,.15); }
.calc-result {
  text-align: center;
  padding: 24px 0;
}
.calc-result .estimate-range {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 950;
  letter-spacing: -.04em;
  color: var(--orange);
  margin: 16px 0 8px;
}
.calc-result .estimate-note {
  color: rgba(255,255,255,.55);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.calc-result .estimate-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}
.calc-result .breakdown-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 16px;
}
.calc-result .breakdown-item span {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.calc-result .breakdown-item strong {
  font-size: 18px;
  font-weight: 900;
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.19, 1, .22, 1);
}
.reveal.from-left { transform: translateX(-70px); }
.reveal.from-right { transform: translateX(70px); }
.reveal.zoom { transform: scale(.94); }
.reveal.show { opacity: 1; transform: none; }

/* ── Responsive: Tablet ── */
@media (max-width: 900px) {
  .navlinks a:not(.nav-cta) { display: none; }
  .mobile-toggle { display: block; }
  .nav img { width: 205px; height: auto; }

  .nav.open .navlinks {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 12px;
    padding: 20px;
    background: rgba(17,17,17,.95);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    backdrop-filter: blur(18px);
  }
  .nav.open .navlinks a:not(.nav-cta) { display: block; }

  .hero-grid,
  .section-intro,
  .split,
  .cta-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 132px; }
  .service-grid,
  .work-grid,
  .areas { grid-template-columns: 1fr; height: auto; }
  .work-img { min-height: 390px; }
  .work-stack { min-height: auto; }
  .service-card ul {
    grid-template-columns: 1fr;
    padding-left: 64px;
  }
  .nic-feature,
  .areas-split { grid-template-columns: 1fr; }
  .nic-photo img { height: 560px; }
  .map-card { padding: 22px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 60px; }
  .calc-options { grid-template-columns: 1fr 1fr; }
  .calc-result .estimate-breakdown { grid-template-columns: 1fr 1fr; }
}

/* ── Responsive: Mobile ── */
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav { border-radius: 28px; }
  .nav img { width: 180px; height: auto; }
  .section { padding: 78px 0; }
  .service-card summary {
    grid-template-columns: 50px 1fr 26px;
    padding: 20px;
    gap: 13px;
  }
  .service-icon { width: 50px; height: 50px; }
  .service-card ul { padding: 0 22px 22px 54px; }
  footer .container { display: block; }
  .nic-copy { padding: 28px; }
  .nic-photo img { height: 460px; }
  .map-card { border-radius: 28px; }
  .region text { font-size: 15px; }
  .areas .area { text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  h1 { font-size: clamp(38px, 10vw, 56px); }
  h2 { font-size: clamp(30px, 7vw, 50px); }
  .calc-card { padding: 28px 20px; }
  .calc-options { grid-template-columns: 1fr; }
  .calc-result .estimate-breakdown { grid-template-columns: 1fr; }
  .cta { padding: 78px 0; }
  .form-card { padding: 28px 20px; }
  .page-hero { padding: 120px 0 50px; }
  .page-hero h1 { font-size: clamp(34px, 8vw, 52px); }
  .calculator-section { padding: 78px 0; }
  .image-card { min-height: 380px; }
}
