:root {
  --paper: #fbfaf7;
  --ink: #10201d;
  --muted: #61716d;
  --line: #dfe5df;
  --teal: #0f766e;
  --teal-dark: #0b4f49;
  --coral: #d85f45;
  --gold: #d79b2b;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.94);
}

.brand,
.nav,
.actions,
.trust,
.grid,
.split {
  display: flex;
}

.brand {
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 15px;
}

.nav {
  gap: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 660px;
  border-bottom: 1px solid var(--line);
}

.hero-copy,
.section {
  padding: clamp(42px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  background: linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.08) 38%), url("/hero-dryer-vent.png") center / cover no-repeat;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.06;
}

h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 22px;
}

.actions,
.trust {
  flex-wrap: wrap;
  gap: 12px;
}

.actions {
  margin: 28px 0;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.primary {
  background: var(--teal);
  color: var(--white);
  padding: 14px 22px;
}

.secondary {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 13px 20px;
}

.trust span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.proof,
.local {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.card,
.form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(16, 32, 29, .06);
  padding: 20px;
}

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

.booking {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px);
  gap: clamp(28px, 5vw, 64px);
}

.prices {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.price {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px;
}

.price strong {
  color: var(--teal);
  font-size: 28px;
}

.form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 16px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid #cfd8d2;
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 108px;
}

.split {
  gap: 12px;
}

.split > * {
  flex: 1;
}

.status {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.operator-band {
  background: #eef7f3;
}

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

.footer {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--ink);
  color: #d6e4df;
}

@media (max-width: 920px) {
  .hero,
  .booking,
  .grid,
  .towns {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .topbar,
  .price,
  .split {
    align-items: stretch;
    flex-direction: column;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 8px;
  }

  h1 {
    font-size: 40px;
  }
}
