:root {
  color-scheme: light;
  --ink: #152026;
  --muted: #5f6f77;
  --line: #d9e2df;
  --paper: #f7f9f6;
  --white: #ffffff;
  --teal: #d96825;
  --teal-dark: #9f3f16;
  --gold: #c48a28;
  --clay: #d96825;
  --charcoal: #101820;
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(247, 249, 246, 0.92);
  border-bottom: 1px solid rgba(217, 226, 223, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

nav a {
  white-space: nowrap;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.header-action,
.button.primary {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button.outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid #b9c6c2;
}

.button.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 18, 0.88) 0%, rgba(8, 13, 18, 0.7) 36%, rgba(8, 13, 18, 0.18) 78%),
    linear-gradient(0deg, rgba(8, 13, 18, 0.55), rgba(8, 13, 18, 0.04) 40%);
}

.hero-overlay {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 6vw, 88px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero p:not(.eyebrow),
.section-copy p,
.quote-intro p,
.schedule p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-strip div {
  min-height: 132px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--white);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.split,
.quote-zone,
.schedule {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.section-copy p,
.quote-intro p,
.schedule p {
  color: var(--muted);
}

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

.service-card {
  min-height: 264px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 24, 32, 0.05);
}

.service-card .icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 8px;
  color: var(--white);
  background: var(--clay);
  font-weight: 900;
  font-size: 0.86rem;
}

.service-card p,
.service-card strong,
.steps p,
.form-note,
.schedule-panel p,
.quote-checklist,
.gallery-heading p {
  color: var(--muted);
  line-height: 1.55;
}

.gallery-section {
  background: #eef3f2;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 30px;
}

.gallery-heading h2 {
  max-width: 860px;
}

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

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.08);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #d7dfdc;
}

.gallery-card div {
  padding: 22px;
}

.gallery-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin-bottom: 0;
  line-height: 1.35;
}

.instagram-section {
  background: var(--charcoal);
  color: var(--white);
}

.instagram-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  max-width: 980px;
}

.instagram-card img {
  width: 160px;
  height: 160px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  object-fit: cover;
  background: #222;
}

.instagram-card h2 {
  max-width: 760px;
}

.instagram-card p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.process {
  background: var(--charcoal);
  color: var(--white);
}

.process h2 {
  max-width: 780px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.steps div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--gold);
  font-weight: 900;
}

.quote-zone {
  background: var(--white);
}

.quote-checklist {
  padding-left: 20px;
}

.quote-checklist li + li {
  margin-top: 8px;
}

.quote-form {
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0 0 28px;
  border: 0;
}

fieldset + fieldset {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  font-weight: 900;
  font-size: 1.1rem;
}

label {
  display: grid;
  gap: 8px;
  color: #34454c;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c9d7d4;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

label:has(textarea),
.file-drop,
.range-row,
#dirtLevel,
.checkbox-grid {
  grid-column: 1 / -1;
}

.range-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

output {
  color: var(--teal-dark);
  font-weight: 900;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--teal);
}

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

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--teal);
}

.file-drop {
  padding: 18px;
  border: 1px dashed #9fb3ae;
  border-radius: 8px;
  background: rgba(12, 138, 138, 0.06);
}

.file-drop span {
  color: var(--teal-dark);
}

.form-result {
  display: none;
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #e8f5f1;
  color: #104f48;
  line-height: 1.55;
}

.form-result p {
  margin: 8px 0 0;
}

.schedule {
  background: #edf1ee;
}

.schedule-panel {
  padding: 28px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.mini-calendar span,
.mini-calendar button {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 8px;
}

.mini-calendar span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-calendar button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: default;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--white);
}

.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.business-card {
  margin: 0;
  justify-self: center;
  max-width: 620px;
}

.business-card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.business-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #0b1117;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    position: relative;
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  nav::after {
    content: "";
    position: sticky;
    right: 0;
    flex: 0 0 28px;
    width: 28px;
    margin-left: -28px;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(247, 249, 246, 0), rgba(247, 249, 246, 0.96));
  }

  .hero {
    min-height: 680px;
  }

  .proof-strip,
  .split,
  .quote-zone,
  .schedule,
  .contact-section,
  .gallery-heading,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .proof-strip {
    gap: 0;
  }
}

@media (max-width: 680px) {
  .header-action {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 640px;
  }

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

  .hero-overlay {
    align-self: end;
    padding-top: 160px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(8, 13, 18, 0.94) 0%, rgba(8, 13, 18, 0.72) 48%, rgba(8, 13, 18, 0.14) 100%);
  }

  .hero-actions,
  fieldset,
  .service-grid,
  .gallery-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  fieldset,
  .checkbox-grid {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .quote-form {
    padding: 20px;
  }

  .instagram-card {
    grid-template-columns: 1fr;
  }

  .instagram-card img {
    width: 120px;
    height: 120px;
  }

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

@media (max-width: 680px) {
  .contact-section {
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .business-card {
    width: min(68vw, 250px);
    margin-inline: auto;
  }

  .business-card img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 28px rgba(16, 24, 32, 0.14);
  }

  .business-card figcaption {
    font-size: 0.78rem;
    text-align: center;
  }
}
