:root {
  --ink: #050807;
  --muted: #66716c;
  --line: #e6eee9;
  --paper: #fbfdfb;
  --white: #ffffff;
  --green: #40b888;
  --green-dark: #2d9872;
  --mint: #e7f8f1;
  --orange: #ff7f1a;
  --orange-soft: #fff1e6;
  --shadow: 0 18px 50px rgba(5, 8, 7, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.service-modal-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(230, 238, 233, 0.95);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
}

.brand img {
  width: auto;
  height: clamp(98px, 10.4vw, 125px);
  max-width: min(452px, 48vw);
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
}

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

.nav-services-mobile {
  display: none;
}

.nav-cta {
  color: var(--white) !important;
  background: var(--green-dark);
  padding: 11px 17px !important;
  border-radius: var(--radius);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  width: min(760px, 100%);
  padding: clamp(44px, 8vw, 86px) clamp(18px, 5vw, 64px);
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green-dark);
}

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

h1,
h2 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  padding: 12px 14px;
  color: #3f4a44;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: inset 0 -3px 0 rgba(5, 8, 7, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.hero-actions,
.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(530px, 100%);
  margin: 38px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 34px rgba(5, 8, 7, 0.08);
}

.hero-stats div {
  padding: 15px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.quick-actions a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
}

.quick-actions span {
  color: var(--orange);
  font-weight: 900;
}

.quick-actions strong {
  font-size: clamp(1.25rem, 2.4vw, 2rem);
}

.quick-actions small {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(62px, 10vw, 118px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.pricing-copy p,
.split-section > div > p,
.form-section .section-heading p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-note {
  margin-bottom: 0;
  font-weight: 800;
}

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

.service-grid article {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 108px;
  min-height: 210px;
  padding: 0 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 4px solid transparent;
  cursor: pointer;
}

.service-grid article:nth-child(3n + 1) {
  border-top-color: var(--green);
}

.service-grid article:nth-child(3n + 2) {
  border-top-color: var(--orange);
}

.service-grid article:nth-child(3n + 3) {
  border-top-color: var(--ink);
}

.service-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -22px 0 18px;
  color: var(--ink);
  background: var(--orange-soft);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.service-grid article > img,
.service-card-duo {
  width: calc(100% + 48px);
  max-width: none;
  height: 178px;
  margin: 0 -24px;
}

.service-grid article > img {
  object-fit: cover;
  object-position: center;
}

.service-card-duo {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4px;
  background: var(--mint);
}

.service-card-duo img {
  width: 100%;
  height: 100%;
  min-width: 0;
  object-fit: cover;
}

.service-grid p,
.steps p,
.faq-list p,
.contact-grid p {
  color: var(--muted);
}

.service-card {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.service-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-card h3::after {
  content: "View";
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  min-width: 58px;
  height: 30px;
  padding: 0 10px;
  color: var(--green-dark);
  background: var(--mint);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
}

.service-card strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.service-card:hover h3::after,
.service-card:focus-visible h3::after {
  color: var(--white);
  background: var(--green-dark);
}

.service-card:focus-visible {
  outline: 3px solid rgba(64, 184, 136, 0.32);
  outline-offset: 6px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  padding: clamp(18px, 4vw, 42px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.service-modal[aria-hidden="false"] {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 7, 0.48);
  backdrop-filter: blur(8px);
}

.service-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  width: min(1120px, 100%);
  height: min(820px, calc(100svh - 56px));
  max-height: calc(100svh - 56px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(230, 238, 233, 0.95);
  border-radius: 14px;
  box-shadow: 0 28px 90px rgba(5, 8, 7, 0.24);
}

.service-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(5, 8, 7, 0.12);
}

.service-panel-media {
  position: sticky;
  top: 0;
  min-height: 100%;
  background: var(--mint);
}

.service-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.service-panel-media.has-gallery {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 180px;
  gap: 2px;
  padding: 2px;
}

.service-panel-media.two-photo-panel {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.service-panel-media.has-gallery > img,
.service-panel-gallery img {
  border-radius: 6px;
}

.service-panel-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  min-height: 0;
}

.service-panel-media.two-photo-panel .service-panel-gallery {
  grid-template-columns: 1fr;
}

.service-panel-media.wide-gallery-panel .service-panel-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  height: 100%;
}

.service-panel-media.wide-gallery-panel {
  grid-template-rows: minmax(0, 1fr);
}

.service-panel-media.wide-gallery-panel > img[hidden] {
  display: none;
}

.service-panel-gallery figure {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 6px;
}

.service-panel-gallery figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 6px;
}

.service-panel-gallery figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 8px 20px rgba(5, 8, 7, 0.12);
}

.service-panel-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel-content {
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(28px, 5vw, 58px);
}

.service-panel-content h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.service-panel-content > p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-panel-highlight {
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem) !important;
  font-weight: 900;
}

.service-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.9fr);
  gap: 20px;
  margin-top: 28px;
}

.service-panel-grid > div {
  padding: 22px;
  background: #f9fdfb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-panel-grid h3 {
  margin-bottom: 14px;
}

.service-panel-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-panel-grid li {
  position: relative;
  padding-left: 26px;
  color: #39443e;
}

.service-panel-grid li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.service-panel-note {
  display: grid;
  align-content: start;
  gap: 12px;
}

.service-panel-note p {
  margin: 0 0 8px;
  color: var(--muted);
}

.pricing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
  background: linear-gradient(180deg, #ffffff, #f9fdfb);
  border-block: 1px solid var(--line);
}

.rate-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.rate-row div {
  flex: 1 1 180px;
  min-width: 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.rate-row strong {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.rate-row span {
  margin-top: 8px;
  color: var(--muted);
}

.price-table {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

.pricing-notes {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.pricing-notes p {
  margin: 0;
  color: var(--muted);
}

.pricing-cta {
  display: grid;
  width: min(100%, 320px);
  margin: 18px auto;
  place-items: center;
  min-height: 58px;
  text-align: center;
}

table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

th {
  color: var(--green-dark);
  background: var(--mint);
  font-size: 0.82rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  font-weight: 900;
}

.steps p {
  margin-bottom: 0;
}

.form-section {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.booking-section {
  background: #f7fbf8;
  border-top: 0;
}

.embed-shell {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.embed-shell iframe {
  display: block;
  width: 100%;
  border: 0;
  background: var(--white);
}

.form-fallback {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.embed-shell .form-fallback {
  padding: 16px 18px 0;
}

.form-fallback a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.estimate-embed iframe {
  min-height: 720px;
}

.booking-embed iframe {
  min-height: 1660px;
}

#existing-customer-panel iframe {
  min-height: 2180px;
}

.form-tabs {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tab-button {
  min-height: 46px;
  padding: 12px 18px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.tab-button.is-active {
  color: var(--white);
  background: var(--green-dark);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-section {
  padding-top: clamp(44px, 7vw, 88px);
}

.contact-card {
  padding: clamp(28px, 6vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.contact-grid div {
  min-height: 130px;
  padding: 20px;
  background: var(--paper);
}

.contact-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid a {
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.message-field,
.contact-form-actions,
.form-status {
  grid-column: 1 / -1;
}

.contact-form-actions {
  justify-content: flex-end;
}

.contact-form .button.secondary {
  background: var(--paper);
  border-color: var(--line);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  margin: 0;
  padding: 14px 16px;
  color: var(--green-dark);
  background: var(--mint);
  border: 1px solid rgba(64, 184, 136, 0.35);
  border-radius: var(--radius);
  font-weight: 900;
}

.form-status.is-error {
  color: #8a3b12;
  background: #fff4e7;
  border-color: rgba(255, 126, 31, 0.35);
}

.content-page {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.content-page main {
  min-height: 68svh;
}

.page-hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 64px) 28px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.page-layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 64px) 90px;
}

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

.page-card,
.form-embed-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-card {
  padding: clamp(22px, 3vw, 32px);
}

.page-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.page-card p:last-child {
  margin-bottom: 0;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.image-card h2,
.image-card p {
  margin-right: clamp(20px, 3vw, 28px);
  margin-left: clamp(20px, 3vw, 28px);
}

.image-card h2 {
  margin-top: 24px;
}

.image-card p {
  margin-bottom: 28px;
}

.page-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 18px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-feature img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 6px;
}

.page-feature > div {
  padding: clamp(18px, 3vw, 28px);
}

.page-feature h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
}

.page-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 1.02rem;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.page-faq-list {
  max-width: none;
  margin: 0;
}

.form-embed-card {
  min-height: 560px;
  padding: clamp(14px, 3vw, 24px);
  overflow: hidden;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 64px) 86px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0 auto 0 0;
}

.site-footer a {
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: 84px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100svh - 110px);
    overflow-y: auto;
  }

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

  .site-nav a {
    padding: 15px !important;
    border-radius: 6px;
  }

  .nav-services-desktop {
    display: none;
  }

  .nav-services-mobile {
    display: block;
  }

  .nav-services-mobile summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    list-style: none;
  }

  .nav-services-mobile summary::-webkit-details-marker {
    display: none;
  }

  .nav-services-mobile summary::after {
    content: "+";
    font-size: 1.25rem;
    line-height: 1;
  }

  .nav-services-mobile[open] summary::after {
    content: "-";
  }

  .nav-services-list {
    display: grid;
    max-height: min(42svh, 340px);
    overflow-y: auto;
    padding: 0 6px 6px 18px;
    border-left: 2px solid var(--green);
    margin-left: 15px;
  }

  .nav-services-list button {
    width: 100%;
    padding: 10px 12px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 4px;
    text-align: left;
    font: inherit;
    cursor: pointer;
  }

  .nav-services-list button:hover,
  .nav-services-list button:focus-visible {
    background: var(--mint);
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 92px;
  }

  .quick-actions,
  .service-grid,
  .pricing-section,
  .split-section,
  .page-grid,
  .page-feature,
  .service-panel,
  .service-panel-grid,
  .contact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-modal {
    align-items: flex-end;
    padding: 0;
  }

  .service-panel {
    width: 100%;
    height: 94svh;
    max-height: 94svh;
    border-radius: 18px 18px 0 0;
    animation: servicePanelUp 180ms ease-out;
  }

  .service-panel-media {
    position: static;
    min-height: 0;
  }

  .service-panel-media img {
    min-height: 280px;
    height: 34svh;
  }

  .service-panel-media.has-gallery {
    grid-template-rows: minmax(180px, 1fr) minmax(120px, 0.48fr);
    gap: 2px;
    padding: 2px;
  }

  .service-panel-media.wide-gallery-panel {
    grid-template-rows: minmax(0, 1fr);
  }

  .service-panel-media.two-photo-panel {
    grid-template-rows: repeat(2, minmax(130px, 1fr));
  }

  .service-panel-media.has-gallery img {
    min-height: 0;
    height: 100%;
  }

  .pricing-section {
    gap: 28px;
  }

  .page-feature img {
    min-height: 260px;
  }
}

@keyframes servicePanelUp {
  from {
    transform: translateY(28px);
    opacity: 0.92;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 680px) {
  .service-grid article > img,
  .service-card-duo {
    height: clamp(260px, 78vw, 360px);
  }

  .service-grid article[data-service="airbnb-turnover"] > img {
    object-fit: contain;
    background: var(--white);
  }

  .site-header {
    min-height: 96px;
    padding: 12px 16px;
  }

  .brand img {
    width: auto;
    height: 96px;
    max-width: 62vw;
  }

  .brand {
    width: auto;
  }

  .site-nav {
    inset: 72px 10px auto;
  }

  .hero {
    min-height: 730px;
  }

  .hero-media img {
    object-position: 45% center;
  }

  .hero-content {
    padding: 112px 16px 120px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-actions,
  .contact-form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

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

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats dd {
    font-size: 1rem;
  }

  .quick-actions a {
    min-height: auto;
  }

  .section {
    padding: 58px 16px;
  }

  .service-grid article {
    min-height: auto;
  }

  .service-panel {
    height: 100svh;
    max-height: 100svh;
    border-radius: 0;
  }

  .service-panel-media img {
    min-height: 230px;
    height: 28svh;
  }

  .service-panel-media.has-gallery {
    grid-template-rows: minmax(150px, 1fr) minmax(100px, 0.5fr);
  }

  .service-panel-media.wide-gallery-panel {
    grid-template-rows: minmax(0, 1fr);
  }

  .service-panel-media.wide-gallery-panel .service-panel-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
  }

  .service-panel-gallery figcaption {
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 7px 6px;
    font-size: 0.72rem;
  }

  .service-panel-media.two-photo-panel {
    grid-template-rows: repeat(2, minmax(120px, 1fr));
  }

  .service-panel-media.has-gallery img {
    min-height: 0;
    height: 100%;
  }

  .service-panel-content {
    padding: 28px 16px 110px;
  }

  .service-panel-grid > div {
    padding: 18px;
  }

  .service-close {
    top: 10px;
    right: 10px;
  }

  .form-tabs {
    display: grid;
  }

  .estimate-embed iframe {
    min-height: 780px;
  }

  .booking-embed iframe {
    min-height: 1780px;
  }

  #existing-customer-panel iframe {
    min-height: 2320px;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .site-footer {
    align-items: center;
    text-align: center;
    padding-bottom: 88px;
  }

  .site-footer p {
    margin: 0;
  }

  .footer-links {
    justify-content: center;
  }

  .mobile-actions {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    background: var(--green-dark);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .mobile-actions a {
    min-height: 54px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 900;
  }

  .mobile-actions a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }
}
