:root {
  --bg: #f7f6f1;
  --paper: #ffffff;
  --paper-soft: #efeee8;
  --ink: #202326;
  --muted: #6d7378;
  --line: #dedbd2;
  --yellow: #ffc72c;
  --yellow-dark: #f0a218;
  --green: #35b457;
  --green-dark: #1f7c3d;
  --steel: #25384b;
  --shadow: 0 22px 70px rgba(30, 34, 38, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 199, 44, 0.18), transparent 24rem),
    linear-gradient(180deg, #fbfaf6 0%, var(--bg) 45%, #f0efe8 100%);
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(32, 35, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 35, 38, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 40;
  padding: 10px 14px;
  color: #fff;
  background: var(--steel);
  border-radius: var(--radius);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 246, 241, 0.92);
  border-bottom: 1px solid rgba(222, 219, 210, 0.9);
  backdrop-filter: blur(16px);
}

.topbar {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.25fr) auto auto;
  gap: 24px;
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  font-weight: 900;
  color: #1d1f21;
  background: linear-gradient(135deg, var(--yellow), #ff9f1c);
  border: 2px solid #111;
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 #111;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand small,
.header-contact span,
.topbar-copy {
  color: var(--muted);
}

.brand small {
  display: block;
  margin-top: 3px;
  font-size: 13px;
}

.topbar-copy {
  max-width: 420px;
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.header-contact {
  display: grid;
  gap: 4px;
  justify-items: end;
  white-space: nowrap;
}

.header-contact span {
  font-size: 13px;
}

.phone-link {
  font-size: 21px;
  font-weight: 900;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 5vw, 72px);
  padding: 18px 20px 21px;
  font-size: 15px;
}

.site-nav a {
  color: #1f2428;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 246, 241, 0.96) 0%, rgba(247, 246, 241, 0.9) 42%, rgba(247, 246, 241, 0.45) 68%, rgba(247, 246, 241, 0.85) 100%),
    url("./assets/photo-demolition.jpg") center right / cover no-repeat;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.78fr);
  gap: 56px;
  align-items: center;
  min-height: 720px;
  padding: 70px 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 900;
  color: var(--green-dark);
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
}

.hero-copy,
.call-panel {
  min-width: 0;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  font-size: clamp(23px, 3vw, 39px);
  font-weight: 300;
  line-height: 1.12;
}

.hero-points {
  display: grid;
  gap: 15px;
  max-width: 720px;
  padding: 0;
  margin: 0 0 32px;
  list-style: none;
}

.hero-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 44px;
  font-size: 18px;
  line-height: 1.35;
}

.hero-points .check {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  font-weight: 900;
  color: #111;
  background: var(--yellow);
  border-radius: 50%;
}

.point-text {
  min-width: 0;
}

.hero-actions,
.final-cta-grid,
.footer-grid {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  font-weight: 900;
  text-decoration: none;
  border-radius: var(--radius);
  border: 0;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn:hover,
.btn:focus-visible,
.card-cta:hover,
.card-cta:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #151515;
  background: linear-gradient(180deg, var(--yellow), #ffad1d);
  box-shadow: 0 10px 0 var(--yellow-dark);
}

.btn-primary:hover {
  box-shadow: 0 7px 0 var(--yellow-dark);
}

.btn-secondary {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.btn-dark {
  color: #fff;
  background: #191d21;
}

.call-panel {
  padding: 38px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(222, 219, 210, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-kicker {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
  color: var(--green-dark);
  background: rgba(53, 180, 87, 0.1);
  border-radius: 999px;
}

.call-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.call-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.panel-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 68px;
  min-width: 0;
  margin: 26px 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: #151515;
  text-decoration: none;
  background: var(--yellow);
  border-radius: var(--radius);
}

.panel-note {
  display: grid;
  gap: 5px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.panel-note strong {
  font-size: 18px;
}

.panel-note span {
  color: var(--muted);
  line-height: 1.45;
}

.quick-cards {
  position: relative;
  z-index: 2;
  margin-top: -72px;
}

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

.quick-grid article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 160px;
  padding: 18px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(32, 35, 38, 0.1);
}

.quick-grid img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: var(--radius);
}

.quick-grid h2 {
  margin-bottom: 7px;
  font-size: 20px;
}

.quick-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.4;
}

.section {
  padding: 96px 0;
}

.muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 238, 232, 0.9)),
    var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 34px;
}

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

.section h2,
.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.section-head p:not(.eyebrow),
.owner-grid p,
.faq-grid p,
.final-cta p {
  color: var(--muted);
  line-height: 1.55;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  min-height: 350px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 52%, rgba(255, 255, 255, 0.14) 100%),
    var(--bg) center / cover no-repeat;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 52%, rgba(255, 255, 255, 0.14) 100%),
    var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(32, 35, 38, 0.1);
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.76) 50%, rgba(255, 255, 255, 0.2) 100%),
    var(--bg) center / cover no-repeat;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.76) 50%, rgba(255, 255, 255, 0.2) 100%),
    var(--bg);
}

.service-card[style]::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.76) 50%, rgba(255, 255, 255, 0.2) 100%),
    var(--bg);
}

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

.service-card h3 {
  max-width: 460px;
  margin-bottom: 22px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05;
}

.price-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  width: min(100%, 520px);
  min-height: 62px;
  margin-bottom: 36px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(222, 219, 210, 0.88);
  border-radius: var(--radius);
}

.price-strip span {
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-right: 1px dashed #c8c5bc;
}

.price-strip strong {
  font-size: 25px;
}

.price-strip button {
  min-width: 130px;
  color: var(--green-dark);
  cursor: pointer;
  background: transparent;
  border: 0;
}

.price-strip button:hover {
  background: rgba(53, 180, 87, 0.08);
}

.service-card ul {
  padding: 0;
  margin: 0 0 28px;
  font-size: 20px;
  line-height: 1.3;
  list-style: none;
}

.service-card li::before {
  content: "- ";
}

.card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 54px;
  padding: 0 22px;
  font-weight: 900;
  color: #151515;
  text-decoration: none;
  background: linear-gradient(180deg, var(--yellow), #ffad1d);
  border-radius: var(--radius);
  box-shadow: 0 8px 0 var(--yellow-dark);
}

.price-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  align-items: start;
}

.price-summary {
  position: sticky;
  top: 154px;
  display: grid;
  gap: 14px;
}

.price-summary article {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-summary span {
  color: var(--muted);
}

.price-summary strong {
  font-size: 31px;
  line-height: 1;
}

.price-summary small {
  color: var(--green-dark);
  font-weight: 800;
}

.accordion {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

details {
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 0 32px;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 34px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

.price-table {
  display: grid;
  gap: 0;
  padding: 0 32px 28px;
}

.price-table div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid #eeece5;
}

.price-table span {
  color: var(--muted);
}

.price-table strong {
  text-align: right;
}

.owner-section {
  background: #fff;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 370px);
  gap: 48px;
  align-items: center;
}

.owner-copy {
  max-width: 760px;
}

.owner-photo {
  margin: 0;
  overflow: hidden;
  background: #f0efe9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(32, 35, 38, 0.12);
}

.owner-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.brand-face {
  width: min(100%, 360px);
  justify-self: end;
}

.brand-face img {
  aspect-ratio: 4 / 5;
  object-position: center;
  filter: saturate(0.9) contrast(0.98);
}

.owner-grid h2 {
  margin-bottom: 18px;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}

.value-list span {
  padding: 10px 14px;
  font-weight: 900;
  background: #f0efe9;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.before-after figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: #ddd;
  border-radius: var(--radius);
  box-shadow: 0 18px 56px rgba(32, 35, 38, 0.12);
}

.before-after img,
.portfolio-grid button {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after figcaption {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 9px 13px;
  font-weight: 900;
  background: var(--yellow);
  border-radius: var(--radius);
}

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

.portfolio-grid button {
  min-height: 220px;
  cursor: zoom-in;
  background: var(--photo) center / cover no-repeat;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 44px rgba(32, 35, 38, 0.1);
}

.portfolio-grid button:hover,
.portfolio-grid button:focus-visible {
  outline: 3px solid rgba(255, 199, 44, 0.9);
  outline-offset: 3px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: inline-flex;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 900;
  color: var(--green-dark);
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.faq-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 44px;
}

.faq-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list details {
  background: #fff;
}

.faq-list p {
  padding: 0 32px 28px;
  margin-bottom: 0;
}

.final-cta {
  padding: 64px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(25, 29, 33, 0.96), rgba(25, 29, 33, 0.78)),
    url("./assets/photo-trash.jpg") center / cover no-repeat;
}

.final-cta-grid {
  justify-content: space-between;
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.final-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.final-cta .btn {
  min-height: 62px;
  padding-inline: 28px;
  color: #151515;
  background: var(--yellow);
}

.site-footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #111417;
}

.footer-grid {
  justify-content: space-between;
}

.footer-grid strong,
.footer-grid a {
  color: #fff;
}

.footer-grid p {
  margin: 6px 0 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(10, 12, 14, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: var(--radius);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.45);
}

.lightbox button {
  position: fixed;
  right: 24px;
  top: 18px;
  width: 48px;
  height: 48px;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  background: transparent;
  border: 0;
}

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
  }

  .topbar-copy {
    display: none;
  }

  .hero-grid,
  .price-layout,
  .owner-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .brand-face {
    width: min(100%, 320px);
    justify-self: center;
  }

  .hero-grid {
    gap: 28px;
    padding-top: 54px;
  }

  .price-summary {
    position: static;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .container,
  .topbar {
    width: calc(100vw - 28px);
    max-width: var(--max);
  }

  .topbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    min-height: 76px;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding: 0 14px 13px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    width: auto;
    padding: 7px 0;
    white-space: nowrap;
    border-top: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(247, 246, 241, 0.98) 0%, rgba(247, 246, 241, 0.88) 52%, rgba(247, 246, 241, 0.94) 100%),
      url("./assets/photo-demolition.jpg") center top / cover no-repeat;
  }

  .hero-grid {
    min-height: auto;
    padding: 44px 0 92px;
  }

  .hero-copy,
  .call-panel {
    width: 100%;
    max-width: 100%;
  }

  h1 {
    font-size: 38px;
    line-height: 1.05;
    max-width: 360px;
  }

  .hero-lead {
    font-size: 25px;
  }

  .hero-points li {
    grid-template-columns: 36px 1fr;
    font-size: 15px;
  }

  .point-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .point-text strong {
    display: block;
  }

  .call-panel p,
  .panel-note span {
    overflow-wrap: break-word;
  }

  .hero-points .check {
    width: 36px;
    height: 36px;
  }

  .call-panel {
    padding: 24px;
  }

  .quick-cards {
    margin-top: -50px;
  }

  .quick-grid,
  .service-grid,
  .before-after,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid article {
    grid-template-columns: 92px 1fr;
    min-height: 132px;
  }

  .quick-grid img {
    width: 92px;
    height: 92px;
  }

  .section {
    padding: 68px 0;
  }

  .service-card {
    min-height: 320px;
    padding: 24px;
  }

  .price-strip {
    grid-template-columns: 1fr;
  }

  .price-strip span {
    justify-content: center;
    border-right: 0;
    border-bottom: 1px dashed #c8c5bc;
  }

  .price-strip button {
    min-height: 48px;
  }

  .price-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  summary {
    min-height: 66px;
    padding: 0 18px;
    font-size: 18px;
  }

  .price-table {
    padding: 0 18px 20px;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .price-table strong {
    text-align: left;
  }

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

  .steps li {
    min-height: 0;
  }

  .final-cta-grid {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 12px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    box-shadow: 4px 4px 0 #111;
  }

  h1 {
    font-size: 29px;
    max-width: 320px;
  }

  .hero-lead {
    font-size: 22px;
  }

  .btn,
  .hero-actions .btn,
  .final-cta .btn {
    width: 100%;
  }

  .price-summary {
    grid-template-columns: 1fr;
  }

  .quick-grid article {
    grid-template-columns: 1fr;
  }

  .quick-grid img {
    width: 100%;
    height: 150px;
  }
}
