:root {
  --black: #000000;
  --dark: #111111;
  --white: #ffffff;
  --soft-white: #f3f3f5;
  --yellow: #fff200;
  --yellow-dark: #ffd500;
  --red: #ff1717;
  --text: #141414;
  --muted: #6f6f6f;
  --border: rgba(0, 0, 0, 0.09);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 270px;
}

.brand-logo {
  width: 270px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  font-weight: 700;
  font-size: 18px;
}

.nav-links a,
.dropdown-toggle {
  position: relative;
  color: var(--black);
}

.nav-links a.active::after,
.dropdown-toggle.active::after,
.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.dropdown-toggle:hover::after,
.dropdown-toggle:focus-visible::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--black);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.dropdown-arrow {
  display: inline-block;
  margin-left: 7px;
  font-size: 12px;
  transform: translateY(-1px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  width: 260px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 15px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible,
.dropdown-menu a.active-sub {
  background: var(--yellow);
}

.call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 64px;
  padding: 0 30px;
  background: var(--black);
  color: var(--white);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 800;
  transition: 0.25s ease;
}

.call-btn:hover {
  background: #242424;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 5px;
  background: var(--black);
  cursor: pointer;
}

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

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

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

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

.hero {
  min-height: calc(100vh - 112px);
  background: var(--black);
  display: grid;
  align-items: center;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.46)),
    rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 72px;
  align-items: center;
}

.hero-copy {
  color: var(--white);
  max-width: 830px;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 5.65rem);
  line-height: 1.14;
  font-weight: 300;
  letter-spacing: 0.01em;
  margin-bottom: 34px;
}

.hero-copy p {
  max-width: 790px;
  font-size: 18px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 34px;
  letter-spacing: 0.01em;
}

.white-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 65px;
  background: var(--white);
  color: var(--black);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
  transition: 0.25s ease;
}

.white-btn:hover {
  background: var(--yellow);
  transform: translateY(-1px);
}

.form-card {
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(255, 242, 0, 0.18);
  padding: 32px 32px 38px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 0 30px rgba(255, 242, 0, 0.1), 0 0 120px rgba(255, 242, 0, 0.04);
}

.form-inner {
  border: 1px solid rgba(255, 242, 0, 0.26);
  border-radius: 14px;
  padding: 28px 18px 26px;
}

.form-card h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}

.form-card h2 span {
  font-weight: 800;
  color: var(--yellow);
  text-decoration: underline;
}

.form-card h3 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 800;
}

.estimate-form select,
.estimate-form input {
  width: 100%;
  height: 58px;
  margin-bottom: 13px;
  border: none;
  border-radius: 9px;
  padding: 0 18px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  background: #f1f1f6;
  color: #111;
}

.estimate-form select:focus,
.estimate-form input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 242, 0, 0.25);
  border: 2px solid var(--yellow);
}

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

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  text-align: left;
  margin: 3px 0 18px;
  color: #bfc0c9;
  font-size: 12px;
  line-height: 1.35;
}

.checkbox-row input {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--yellow);
}

.estimate-form button {
  width: 100%;
  height: 66px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  color: var(--black);
  font-size: 21px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
}

.estimate-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 242, 0, 0.35);
}

section.content-section {
  padding: 90px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.compact-header {
  align-items: start;
}

.section-header h2,
.contact-layout h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  max-width: 720px;
}

.section-header p,
.contact-layout p {
  max-width: 480px;
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  min-height: 245px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 242, 0, 0.75);
}

.service-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 26px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  transition: 0.25s ease;
}

.learn-more:hover,
.learn-more:focus-visible {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-1px);
}

.services-page-hero {
  padding: 86px 0 58px;
  background: var(--black);
  color: var(--white);
}

.page-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.services-page-hero p:not(.page-kicker) {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.services-photo-section {
  background: var(--soft-white);
}

.services-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-photo-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
}

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

.service-photo-content {
  display: flex;
  min-height: 315px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.service-photo-content h2 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.service-photo-content p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
}

.service-landing-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(74px, 8vw, 118px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.62)),
    url("assets/hero-concrete.svg");
  background-position: center;
  background-size: cover;
}

.service-landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 22%, rgba(255, 242, 0, 0.22), transparent 30%);
  pointer-events: none;
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.service-hero-copy h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.5vw, 6.35rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.service-hero-copy > p:not(.page-kicker) {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.service-hero-actions .white-btn {
  width: auto;
  min-width: 260px;
  padding: 0 28px;
  background: var(--yellow);
  font-weight: 800;
}

.service-hero-actions .white-btn:hover,
.service-hero-actions .white-btn:focus-visible {
  background: var(--white);
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 65px;
  padding: 0 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  transition: 0.25s ease;
}

.outline-btn:hover,
.outline-btn:focus-visible {
  color: var(--black);
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-1px);
}

.service-hero-card {
  padding: 30px;
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(255, 242, 0, 0.34);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.service-hero-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-hero-card ul {
  display: grid;
  gap: 13px;
  list-style: none;
}

.service-hero-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.service-hero-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 50%;
}

.rich-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
}

.service-copy-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: start;
}

.service-copy-layout h2,
.estimate-copy h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.service-detail-section,
.cities-section,
.related-links-section {
  background: var(--soft-white);
}

.photo-gallery-section {
  background: var(--white);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  background: var(--black);
  border: 8px solid var(--yellow);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  opacity: 0.9;
  transform: scale(1.01);
}

.work-gallery-section {
  background: var(--white);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 18px;
}

.work-gallery figure {
  overflow: hidden;
  aspect-ratio: 1 / 0.9;
  background: var(--black);
  border: 6px solid var(--yellow);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.work-gallery figure:nth-child(1),
.work-gallery figure:nth-child(4) {
  aspect-ratio: 1 / 1.18;
}

.work-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.work-gallery figure:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.city-grid a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.045);
  transition: 0.25s ease;
}

.city-grid a:hover,
.city-grid a:focus-visible {
  background: var(--yellow);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.estimate-section {
  background: var(--black);
  color: var(--white);
}

.estimate-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 470px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.estimate-copy > p:not(.page-kicker) {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.estimate-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.estimate-benefits span {
  padding: 10px 13px;
  color: var(--yellow);
  border: 1px solid rgba(255, 242, 0, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.surprise-hero {
  min-height: calc(100vh - 112px);
  padding: clamp(58px, 8vw, 110px) 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.62)),
    url("assets/hero-concrete.svg");
  background-position: center;
  background-size: cover;
}

.surprise-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 560px);
  gap: clamp(34px, 6vw, 78px);
  align-items: start;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-bottom: 24px;
  padding: 0 22px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(255, 242, 0, 0.22);
}

.surprise-copy h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.surprise-copy > p:not(.page-kicker) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.surprise-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.surprise-steps span {
  padding: 11px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 242, 0, 0.35);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.surprise-form-card {
  padding: 34px;
  background: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(255, 242, 0, 0.28);
  border-top: 8px solid var(--yellow);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.surprise-form-heading {
  margin-bottom: 24px;
}

.surprise-form-heading p {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.surprise-form-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.surprise-form-heading span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.surprise-form {
  display: grid;
  gap: 13px;
}

.surprise-form label:not(.checkbox-row) {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.surprise-form input,
.surprise-form select,
.surprise-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--black);
  background: #f1f1f6;
  border: 2px solid transparent;
  border-radius: 9px;
  outline: none;
}

.surprise-form .checkbox-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  width: 100%;
  margin: 4px 0 10px;
}

.surprise-form .checkbox-row input[type="checkbox"] {
  width: 22px;
  min-height: 22px;
  height: 22px;
  margin: 2px 0 0;
  padding: 0;
}

.surprise-form .checkbox-row span {
  display: block;
  min-width: 0;
  color: #c9cad1;
  font-size: 12px;
  line-height: 1.45;
}

.surprise-form textarea {
  min-height: 110px;
  padding: 14px 16px;
  resize: vertical;
}

.surprise-form input[type="file"] {
  padding: 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 2px dashed var(--yellow);
}

.form-note,
.form-error {
  margin: -5px 0 4px;
  text-align: left;
  font-size: 12px;
  line-height: 1.45;
}

.form-note {
  color: rgba(255, 255, 255, 0.66);
}

.file-summary {
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 242, 0, 0.22);
  border-radius: 9px;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.file-summary.is-empty {
  color: rgba(255, 255, 255, 0.66);
}

.form-error {
  display: none;
  color: #ff6b6b;
  font-weight: 800;
}

.form-error.is-visible {
  display: block;
}

.surprise-form input:focus,
.surprise-form select:focus,
.surprise-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 242, 0, 0.18);
}

.surprise-form button {
  width: 100%;
  min-height: 64px;
  color: var(--black);
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
  transition: 0.25s ease;
}

.surprise-form button:hover,
.surprise-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 242, 0, 0.34);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 18px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.58)),
    url("assets/hero-concrete.svg");
  background-position: center;
  background-size: cover;
}

.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(30px, 6vw, 58px);
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid rgba(255, 242, 0, 0.28);
  border-top: 8px solid var(--yellow);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.thank-you-card h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.thank-you-card p:not(.page-kicker) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.yellow-btn,
.outline-btn.light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 9px;
  font-weight: 900;
}

.yellow-btn {
  color: var(--black);
  background: var(--yellow);
}

.outline-btn.light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.dark-section .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature {
  border: 1px solid rgba(255, 242, 0, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border-radius: 18px;
  padding: 28px;
}

.feature strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.contact-section {
  background: var(--soft-white);
}

.contact-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact-layout h2 {
  margin-bottom: 18px;
}

.large-call-btn {
  flex-shrink: 0;
  min-width: 180px;
}

footer {
  background: #090909;
  color: rgba(255, 255, 255, 0.68);
  padding: 34px 0;
  font-size: 14px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--yellow);
}

.legal-hero {
  padding: 82px 0 34px;
  background: var(--black);
  color: var(--white);
}

.legal-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.legal-content {
  padding: 70px 0 90px;
}

.legal-copy {
  max-width: 900px;
  display: grid;
  gap: 28px;
}

.legal-copy section {
  display: grid;
  gap: 10px;
}

.legal-copy h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 16px;
}

.legal-copy ul {
  padding-left: 22px;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 24px;
    font-size: 16px;
  }

  .hero-layout {
    gap: 34px;
  }

  .form-card {
    max-width: 430px;
  }
}

@media (max-width: 920px) {
  .nav {
    height: auto;
    min-height: 86px;
    padding: 18px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 230px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    left: 0;
    right: 0;
    height: calc(100vh - 86px);
    display: block;
    padding: 24px min(5vw, 42px);
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a,
  .dropdown-toggle {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 17px 0;
    font-size: 20px;
  }

  .nav-links a.active::after,
  .dropdown-toggle.active::after,
  .nav-links a:hover::after,
  .nav-links a:focus-visible::after,
  .dropdown-toggle:hover::after,
  .dropdown-toggle:focus-visible::after {
    bottom: 8px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 0.2s ease;
  }

  .dropdown.is-open .dropdown-menu {
    max-height: 380px;
    transform: none;
  }

  .dropdown:hover .dropdown-menu {
    max-height: 0;
  }

  .dropdown.is-open:hover .dropdown-menu {
    max-height: 380px;
  }

  .dropdown-menu a {
    padding: 13px 16px;
    background: var(--soft-white);
    border-bottom: 1px solid var(--border);
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 70px 0;
  }

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

  .form-card {
    max-width: 100%;
    margin: 0;
  }

  .services-grid,
  .features,
  .services-photo-grid,
  .photo-gallery,
  .work-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .service-hero-grid,
  .service-copy-layout,
  .estimate-layout,
  .surprise-layout {
    grid-template-columns: 1fr;
  }

  .service-hero-card {
    max-width: 620px;
  }

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

  .section-header,
  .contact-layout {
    display: block;
  }

  .section-header h2 {
    margin-bottom: 16px;
  }

  .large-call-btn {
    margin-top: 28px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1280px);
  }

  .brand-logo {
    width: min(210px, 58vw);
  }

  .call-btn {
    min-width: auto;
    height: 50px;
    padding: 0 16px;
    font-size: 15px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-copy p {
    font-size: 16px;
    line-height: 1.7;
  }

  .white-btn {
    width: 100%;
  }

  .form-card {
    padding: 18px;
  }

  .form-inner {
    padding: 24px 14px;
  }

  .form-card h2 {
    font-size: 21px;
  }

  .form-card h3 {
    font-size: 24px;
  }

  .estimate-form select,
  .estimate-form input {
    height: 54px;
    font-size: 15px;
  }

  .estimate-form button {
    height: 58px;
    font-size: 18px;
  }

  .services-grid,
  .features,
  .services-photo-grid,
  .photo-gallery,
  .work-gallery,
  .city-grid {
    grid-template-columns: 1fr;
  }

  .work-gallery figure,
  .work-gallery figure:nth-child(1),
  .work-gallery figure:nth-child(4) {
    aspect-ratio: 1 / 0.72;
  }

  .service-landing-hero {
    padding: 58px 0;
  }

  .service-hero-copy h1 {
    font-size: 44px;
  }

  .surprise-copy h1 {
    font-size: 46px;
  }

  .surprise-form-card {
    padding: 22px;
  }

  .service-hero-actions,
  .outline-btn {
    width: 100%;
  }

  .service-hero-card {
    padding: 24px;
  }

  .photo-card,
  .photo-card img {
    min-height: 210px;
  }

  .services-page-hero {
    padding: 66px 0 48px;
  }

  .service-photo-card img {
    height: 225px;
  }

  .service-photo-content {
    min-height: 0;
    padding: 24px;
  }

  section.content-section {
    padding: 68px 0;
  }
}
