:root {
  --ink: #12211b;
  --ink-soft: #354840;
  --forest: #173f31;
  --forest-deep: #0c2e23;
  --mint: #c8f267;
  --mint-bright: #dcff7a;
  --cream: #f4f2e9;
  --paper: #fbfaf5;
  --line: #d9ddd4;
  --muted: #6e7b74;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 45, 35, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img {
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid rgba(18, 33, 27, 0.08);
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 80px);
  position: sticky;
  right: 0;
  top: 0;
  backdrop-filter: blur(16px);
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 150px;
}

.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50% 50% 50% 12%;
  color: var(--mint);
  display: inline-flex;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  position: relative;
  transform: rotate(-5deg);
  width: 36px;
}

.brand-mark span {
  transform: rotate(5deg);
}

.brand-mark i {
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 50%;
  height: 9px;
  position: absolute;
  right: -2px;
  top: -1px;
  width: 9px;
}

.brand-name {
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.4px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.6vw, 40px);
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
}

.lang-button,
.menu-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 10px;
}

.menu-button {
  display: none;
  height: 42px;
  padding: 10px 8px;
  width: 42px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 6px auto;
  transition: transform 180ms ease;
  width: 23px;
}

.mobile-nav {
  display: none;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 18px;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  font-size: 12px;
  gap: 12px;
  min-height: 42px;
  padding: 0 18px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--forest);
}

.button-primary {
  background: var(--mint);
  color: var(--ink);
}

.button-primary:hover {
  background: var(--mint-bright);
}

.button-ghost {
  background: transparent;
  border: 1px solid var(--line);
}

.button-ghost:hover,
.button-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.button-outline {
  background: transparent;
  border: 1px solid rgba(18, 33, 27, 0.22);
}

.play-icon {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 7px;
  height: 24px;
  justify-content: center;
  padding-left: 1px;
  width: 24px;
}

.hero {
  display: grid;
  gap: clamp(35px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  min-height: calc(100vh - 82px);
  overflow: hidden;
  padding: clamp(65px, 8vw, 120px) clamp(20px, 5vw, 80px) 80px;
}

.hero-copy {
  align-self: center;
  max-width: 640px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  color: var(--forest);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 1.5px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--mint);
  border-radius: 50%;
  content: "";
  height: 7px;
  width: 7px;
}

.eyebrow-light {
  color: var(--mint);
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: clamp(54px, 6.4vw, 102px);
  font-weight: 800;
  letter-spacing: -6px;
  line-height: 0.96;
  margin-bottom: 28px;
  max-width: 720px;
}

h1 span,
h1 em {
  display: block;
}

h1 em {
  color: var(--forest);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -5px;
}

.hero-description {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.trust-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 15px;
  margin-top: 52px;
  max-width: 500px;
  padding-top: 24px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  align-items: center;
  background: var(--forest);
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 9px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  margin-left: -8px;
  width: 34px;
}

.avatar-stack span:nth-child(2) {
  background: #aa8f6d;
}

.avatar-stack span:nth-child(3) {
  background: var(--mint);
  color: var(--ink);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 13px;
}

.trust-row span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.hero-visual {
  align-self: stretch;
  min-height: 610px;
  position: relative;
}

.hero-visual::before {
  background: var(--mint);
  border-radius: 50%;
  content: "";
  height: 340px;
  opacity: 0.28;
  position: absolute;
  right: -110px;
  top: -140px;
  width: 340px;
}

.hero-image {
  background:
    linear-gradient(180deg, rgba(9, 29, 22, 0.02), rgba(9, 29, 22, 0.24)),
    url("https://images.unsplash.com/photo-1519178614-68673b201f36?auto=format&fit=crop&w=1600&q=90") center/cover;
  border-radius: 180px 20px 20px 20px;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 610px;
  overflow: hidden;
  position: relative;
}

.image-label,
.demo-tag,
.video-time,
.live-badge {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  left: 30px;
  letter-spacing: 0.8px;
  padding: 9px 13px;
  position: absolute;
  text-transform: uppercase;
  top: 30px;
}

.live-dot {
  background: #ef6247;
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin-right: 6px;
  width: 6px;
}

.round-play {
  align-items: center;
  background: var(--mint);
  border: 8px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-size: 19px;
  height: 84px;
  justify-content: center;
  left: 50%;
  padding-left: 5px;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
  width: 84px;
}

.round-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.location-card {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  bottom: 24px;
  display: flex;
  gap: 12px;
  left: 24px;
  padding: 14px 16px;
  position: absolute;
  right: 24px;
}

.location-card div {
  flex: 1;
}

.location-card small,
.location-card strong {
  display: block;
}

.location-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.location-card strong {
  font-size: 13px;
}

.location-pin {
  align-items: center;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.floating-note {
  align-items: center;
  background: var(--forest);
  border-radius: 14px;
  bottom: 90px;
  box-shadow: var(--shadow);
  color: white;
  display: flex;
  gap: 12px;
  left: -70px;
  padding: 14px 17px;
  position: absolute;
}

.floating-note .note-icon {
  align-items: center;
  background: var(--mint);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 12px;
  height: 30px;
  justify-content: center;
  width: 30px;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note div span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
  margin-top: 2px;
}

.quick-search {
  align-items: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr minmax(280px, 0.8fr) auto;
  padding: 26px clamp(20px, 5vw, 80px);
}

.search-intro {
  align-items: center;
  display: flex;
  gap: 16px;
}

.section-number {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.search-intro strong,
.search-intro span {
  display: block;
}

.search-intro strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.search-intro div span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 3px;
}

.select-field {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  min-height: 54px;
  padding: 0 18px;
}

.select-field select {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  outline: 0;
  padding: 0 12px;
}

.section {
  padding: clamp(85px, 10vw, 150px) clamp(20px, 5vw, 80px);
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-heading h2,
.service-copy h2,
.about-section h2,
.cta-section h2 {
  font-size: clamp(38px, 4.2vw, 66px);
  letter-spacing: -3.8px;
  line-height: 1.05;
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 3px;
  max-width: 430px;
}

.filter-row {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-pill {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 17px;
  white-space: nowrap;
}

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

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

.neighborhood-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.neighborhood-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.neighborhood-card[hidden] {
  display: none;
}

.featured-card {
  grid-column: span 2;
}

.card-image {
  background-color: var(--cream);
  background-position: center;
  background-size: cover;
  height: 280px;
  position: relative;
}

.featured-card .card-image {
  height: 350px;
}

.demo-tag {
  left: 16px;
  top: 16px;
}

.video-time {
  bottom: 16px;
  left: auto;
  right: 16px;
  top: auto;
}

.card-copy {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px 20px;
}

.card-city {
  color: var(--muted);
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.9px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.card-copy h3 {
  font-size: 18px;
  letter-spacing: -0.7px;
  margin: 0;
}

.arrow-button {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 38px;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
  width: 38px;
}

.arrow-button:hover {
  background: var(--mint);
  border-color: var(--mint);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  padding: 60px 20px;
  text-align: center;
}

.service-section {
  background: var(--forest-deep);
  color: white;
  display: grid;
  gap: clamp(50px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  overflow: hidden;
  padding: clamp(85px, 10vw, 150px) clamp(20px, 8vw, 130px);
}

.service-copy {
  align-self: center;
}

.service-copy h2 {
  margin-bottom: 28px;
}

.service-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 620px;
}

.service-points {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin: 40px 0;
  padding: 12px 0;
}

.service-points div {
  align-items: center;
  display: flex;
  gap: 18px;
  padding: 13px 0;
}

.service-points span {
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
}

.service-points strong {
  font-size: 13px;
}

.service-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 650px;
  position: relative;
}

.service-visual::before {
  border: 1px solid rgba(200, 242, 103, 0.2);
  border-radius: 50%;
  content: "";
  height: 630px;
  position: absolute;
  width: 630px;
}

.service-visual::after {
  background: var(--mint);
  border-radius: 50%;
  content: "";
  filter: blur(80px);
  height: 260px;
  opacity: 0.14;
  position: absolute;
  width: 260px;
}

.phone-frame {
  background: #0b1612;
  border: 8px solid #e4e8e1;
  border-radius: 42px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  padding: 10px;
  position: relative;
  transform: rotate(4deg);
  width: min(330px, 85%);
  z-index: 2;
}

.phone-bar,
.phone-actions {
  align-items: center;
  color: white;
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 1px;
  padding: 10px 8px 16px;
}

.phone-video {
  background:
    linear-gradient(180deg, rgba(8, 25, 18, 0), rgba(8, 25, 18, 0.5)),
    url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=900&q=85") center/cover;
  border-radius: 25px;
  height: 490px;
  position: relative;
}

.live-badge {
  background: #e85643;
  color: white;
  left: 16px;
  top: 16px;
}

.call-caption {
  bottom: 20px;
  left: 20px;
  position: absolute;
}

.call-caption small,
.call-caption strong {
  display: block;
}

.call-caption small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  margin-bottom: 3px;
}

.call-caption strong {
  font-size: 12px;
}

.phone-actions {
  font-size: 14px;
  justify-content: space-around;
  padding: 16px 30px 10px;
}

.visual-quote {
  background: var(--mint);
  border-radius: 14px;
  bottom: 75px;
  color: var(--ink);
  padding: 18px;
  position: absolute;
  right: 0;
  transform: rotate(-3deg);
  width: 210px;
  z-index: 3;
}

.visual-quote span {
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 0.6;
}

.visual-quote p {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  margin: 8px 0 0;
}

.process-section {
  background: var(--cream);
}

.text-link {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  padding: 0 0 5px;
}

.process-grid {
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-height: 285px;
  padding: 25px;
  position: relative;
}

.step-number {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.step-icon {
  align-items: center;
  background: white;
  border-radius: 50%;
  display: flex;
  font-size: 19px;
  height: 52px;
  justify-content: center;
  margin: 54px 0 27px;
  width: 52px;
}

.process-grid h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.process-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.plans-section {
  background: white;
}

.price-note {
  font-size: 11px;
}

.plans-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  min-height: 385px;
  padding: 28px;
  position: relative;
}

.plan-card.plan-featured {
  background: var(--ink);
  color: white;
  transform: translateY(-15px);
}

.plan-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.plan-featured .plan-label {
  color: var(--mint);
}

.popular {
  background: var(--mint);
  border-radius: 999px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  padding: 8px 11px;
  position: absolute;
  right: 20px;
  text-transform: uppercase;
  top: 20px;
}

.plan-card h3 {
  font-size: 23px;
  letter-spacing: -1px;
  margin: 33px 0 14px;
}

.plan-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.plan-featured p {
  color: rgba(255, 255, 255, 0.62);
}

.price {
  font-family: "Manrope", sans-serif;
  font-size: 38px;
  letter-spacing: -2px;
  margin: auto 0 23px;
}

.price small {
  color: var(--muted);
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.about-section {
  align-items: center;
  background: var(--forest);
  color: white;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 0.8fr;
  padding: clamp(85px, 10vw, 145px) clamp(20px, 8vw, 130px);
}

.about-section > p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0;
}

.about-values {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 20px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 35px;
}

.about-values span {
  display: block;
}

.about-values strong,
.about-values small {
  display: block;
}

.about-values strong {
  color: var(--mint);
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  margin-bottom: 6px;
}

.about-values small {
  color: rgba(255, 255, 255, 0.55);
}

.cta-section {
  align-items: center;
  background: var(--mint);
  display: grid;
  gap: 40px;
  grid-template-columns: auto 1fr auto;
  padding: 65px clamp(20px, 8vw, 130px);
}

.cta-section h2 {
  font-size: clamp(32px, 3.6vw, 54px);
}

.cta-mark {
  align-items: center;
  border: 1px solid rgba(18, 33, 27, 0.25);
  border-radius: 50%;
  display: flex;
  font-family: "Manrope", sans-serif;
  font-size: 35px;
  font-weight: 800;
  height: 90px;
  justify-content: center;
  width: 90px;
}

.site-footer {
  background: #0b1e17;
  color: white;
  padding: 70px clamp(20px, 5vw, 80px) 25px;
}

.footer-main {
  display: grid;
  gap: 40px;
  grid-template-columns: 2fr repeat(3, 1fr);
  padding-bottom: 65px;
}

.brand-footer .brand-mark {
  background: var(--mint);
  color: var(--ink);
}

.brand-footer > .brand-mark i {
  background: white;
  border-color: var(--mint);
}

.footer-main > div:first-child p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.7;
  margin-top: 18px;
  max-width: 290px;
}

.footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-main strong {
  color: var(--mint);
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.footer-main a,
.footer-main span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.footer-main a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  font-size: 9px;
  gap: 20px;
  justify-content: space-between;
  padding-top: 22px;
}

.order-dialog {
  background: var(--paper);
  border: 0;
  border-radius: 26px;
  box-shadow: 0 35px 100px rgba(7, 28, 20, 0.3);
  color: var(--ink);
  max-height: min(90vh, 850px);
  max-width: 760px;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 54px);
  width: calc(100% - 32px);
}

.order-dialog::backdrop {
  backdrop-filter: blur(8px);
  background: rgba(5, 20, 15, 0.65);
}

.dialog-close {
  align-items: center;
  background: var(--cream);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 25px;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
}

.dialog-intro {
  padding-right: 45px;
}

.dialog-intro h2 {
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -2.5px;
  margin-bottom: 14px;
}

.dialog-intro > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  max-width: 550px;
}

.order-dialog form {
  display: grid;
  gap: 17px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 30px;
}

.order-dialog label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.order-dialog label > span {
  font-size: 10px;
  font-weight: 800;
}

.order-dialog input,
.order-dialog select,
.order-dialog textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  outline: 0;
  padding: 13px;
  width: 100%;
}

.order-dialog input:focus,
.order-dialog select:focus,
.order-dialog textarea:focus {
  border-color: var(--forest);
}

.order-dialog .full-field {
  grid-column: 1 / -1;
}

.order-dialog .consent {
  align-items: start;
  flex-direction: row;
  gap: 10px;
}

.order-dialog .consent input {
  accent-color: var(--forest);
  margin: 1px 0 0;
  width: auto;
}

.order-dialog .consent span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.5;
}

.form-submit-message {
  background: #f7e5e1;
  border-radius: 10px;
  color: #a13d31;
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
  padding: 12px;
}

.form-success {
  padding: 70px 20px;
  text-align: center;
}

.form-success > span {
  align-items: center;
  background: var(--mint);
  border-radius: 50%;
  display: flex;
  font-size: 25px;
  height: 70px;
  justify-content: center;
  margin: 0 auto 25px;
  width: 70px;
}

.form-success h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--muted);
  font-size: 12px;
}

.video-toast {
  align-items: center;
  background: var(--ink);
  border-radius: 14px;
  bottom: 20px;
  box-shadow: var(--shadow);
  color: white;
  display: flex;
  gap: 13px;
  left: 50%;
  max-width: calc(100% - 32px);
  opacity: 0;
  padding: 13px 15px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 25px);
  transition: opacity 180ms ease, transform 180ms ease;
  width: 440px;
  z-index: 80;
}

.video-toast.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.video-toast > span {
  align-items: center;
  background: var(--mint);
  border-radius: 50%;
  color: var(--ink);
  display: flex;
  font-size: 8px;
  height: 28px;
  justify-content: center;
  min-width: 28px;
}

.video-toast p {
  flex: 1;
  font-size: 10px;
  line-height: 1.5;
  margin: 0;
}

.video-toast button {
  background: transparent;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 20px;
    left: 0;
    opacity: 0;
    padding: 28px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 81px;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    font-weight: 700;
  }

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

  .hero-visual {
    min-height: 540px;
  }

  .hero-image {
    min-height: 540px;
  }

  .floating-note {
    left: -35px;
  }

  .service-section {
    gap: 50px;
    grid-template-columns: 1fr 0.8fr;
  }

  .visual-quote {
    right: -20px;
  }
}

@media (max-width: 900px) {
  h1 {
    letter-spacing: -4px;
  }

  .header-actions > .button {
    display: none;
  }

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

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

  .hero-visual {
    min-height: 570px;
  }

  .floating-note {
    left: 25px;
  }

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

  .quick-search .search-intro {
    grid-column: 1 / -1;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }

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

  .featured-card {
    grid-column: span 2;
  }

  .service-section {
    grid-template-columns: 1fr;
  }

  .service-visual {
    min-height: 600px;
  }

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

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

  .plan-card.plan-featured {
    transform: none;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr auto;
  }

  .cta-mark {
    display: none;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 70px;
    padding: 0 16px;
  }

  .brand {
    min-width: auto;
  }

  .brand-mark {
    height: 32px;
    width: 32px;
  }

  .brand-name {
    font-size: 21px;
  }

  .mobile-nav {
    top: 69px;
  }

  .hero {
    min-height: auto;
    padding: 54px 16px 50px;
  }

  h1 {
    font-size: 51px;
    letter-spacing: -4px;
  }

  h1 em {
    letter-spacing: -3px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    margin-top: 35px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-image {
    border-radius: 100px 18px 18px 18px;
    min-height: 470px;
  }

  .floating-note {
    bottom: 80px;
    left: 12px;
  }

  .image-label {
    left: 18px;
    top: 18px;
  }

  .quick-search {
    gap: 12px;
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .quick-search .button {
    width: 100%;
  }

  .section {
    padding: 75px 16px;
  }

  .section-heading h2,
  .service-copy h2,
  .about-section h2,
  .cta-section h2 {
    font-size: 38px;
    letter-spacing: -2.4px;
  }

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

  .featured-card {
    grid-column: span 1;
  }

  .card-image,
  .featured-card .card-image {
    height: 280px;
  }

  .service-section {
    padding: 75px 16px;
  }

  .service-visual {
    min-height: 590px;
  }

  .service-visual::before {
    height: 430px;
    width: 430px;
  }

  .phone-frame {
    width: 280px;
  }

  .phone-video {
    height: 420px;
  }

  .visual-quote {
    bottom: 35px;
    right: 0;
  }

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

  .process-grid article {
    min-height: 240px;
  }

  .step-icon {
    margin: 35px 0 24px;
  }

  .about-section {
    gap: 35px;
    padding: 75px 16px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
    padding: 55px 16px;
  }

  .cta-section .button {
    width: 100%;
  }

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

  .footer-main > div:first-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .order-dialog {
    border-radius: 20px;
    padding: 28px 18px;
  }

  .order-dialog form {
    grid-template-columns: 1fr;
  }

  .order-dialog label,
  .order-dialog .full-field {
    grid-column: 1;
  }
}
