/* holdfast — aircon conversion kit */

:root {
  --ink: #0b0a09;
  --ink-soft: #1a1816;
  --paper: #f6f3ee;
  --surface: #ffffff;
  --muted: #6e6860;
  --line: rgba(11, 10, 9, 0.1);
  --line-hard: rgba(11, 10, 9, 0.18);
  --accent: #ff5a1f;
  --accent-deep: #e03d00;
  --accent-soft: rgba(255, 90, 31, 0.12);
  --danger: #d7263d;
  --ok: #1f8a5b;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spring: cubic-bezier(0.34, 1.35, 0.64, 1);
  --font: "Outfit", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1120px;
  --radius: 14px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.accent { color: var(--accent); font-style: normal; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  font-size: 0.75rem;
}
.skip:focus { left: 0; }

.wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: rgba(11, 10, 9, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.brand__glyph {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
}
.brand__word {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav {
  display: none;
  gap: 1.5rem;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 550;
  color: rgba(255, 255, 255, 0.78);
}
.nav a:hover { color: #fff; }

.header-acts {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.phone {
  display: none;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.burger {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: #fff;
}

.drawer {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 1.1rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink-soft);
  color: #fff;
  position: relative;
  z-index: 40;
}
.drawer[hidden] { display: none; }
.drawer a {
  font-size: 1.05rem;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 0.25s var(--spring), background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--sm { min-height: 2.2rem; padding: 0.4rem 0.9rem; font-size: 0.82rem; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--accent); border-color: var(--accent); }
.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: #ff7340;
  box-shadow: 0 10px 28px rgba(255, 90, 31, 0.28);
}
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28); }
.btn--ghost {
  background: transparent;
  border-color: var(--line-hard);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn--ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: min(92svh, 820px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  will-change: transform;
}
.hero__glow {
  position: absolute;
  inset: -15%;
  pointer-events: none;
  background: radial-gradient(
    520px circle at var(--mx, 60%) var(--my, 40%),
    rgba(255, 90, 31, 0.28),
    transparent 55%
  );
}
.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3.5rem;
  max-width: 36rem;
}

.brand-mark {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.brand-lock {
  font-family: var(--display);
  font-size: clamp(2.3rem, 6.5vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
  max-width: 11em;
  margin-bottom: 0.9rem;
}

.lede {
  max-width: 38ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.sec-head { margin-bottom: 1.4rem; max-width: 34rem; }
.sec-head h2 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.sec-lede {
  margin-top: 0.65rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 46ch;
}

.triage {
  position: relative;
  z-index: 1;
  padding: 3.2rem 0;
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px 28px 0 0;
  margin-top: -1.25rem;
}

.triage__shell {
  border: 1px solid var(--line-hard);
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(11, 10, 9, 0.06);
}

.triage__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: #faf8f5;
}

.triage__step {
  font-size: 0.85rem;
  font-weight: 650;
  color: var(--muted);
}

.triage__progress {
  flex: 1;
  max-width: 220px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}
.triage__bar {
  display: block;
  height: 100%;
  width: 33%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  transition: width 0.35s var(--ease);
}

.triage__panel { padding: 1.15rem 1.1rem 1.35rem; }
.triage__panel[hidden] { display: none; }

.triage__q {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.triage__subq {
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--muted);
  margin: 1rem 0 0.55rem;
}

.triage__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  align-items: center;
}

.choice-grid { display: grid; gap: 0.55rem; }

.choice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  text-align: left;
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}
.choice:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  background: #fffaf7;
  transform: translateY(-1px);
}
.choice.is-selected {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}
.choice.is-selected::after { content: "✓"; color: var(--accent); }
.choice__icon {
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  color: var(--muted);
}
.choice__icon svg { width: 1rem; height: 1rem; }
.choice:hover .choice__icon,
.choice.is-selected .choice__icon { color: var(--accent); }
.choice__title {
  display: block;
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
}
.choice__hint {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}
.choice::after {
  content: "→";
  color: var(--muted);
  font-size: 0.95rem;
}
.choice:hover::after { color: var(--accent); }

.ticket {
  border: 1px solid var(--line-hard);
  border-radius: 14px;
  background: #fff;
  padding: 1.1rem;
}
.ticket__head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.85rem;
}
.result__stamp {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1.5px solid currentColor;
}
.result__stamp[data-level="emergency"] { color: var(--danger); }
.result__stamp[data-level="same-day"] { color: var(--accent); }
.result__stamp[data-level="scheduled"] { color: var(--ink); }

.ticket__codeblock {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: var(--ink);
  color: #f6f3ee;
}
.ticket__codeblock .result__code {
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: #fff;
}
.ticket__codeblock .result__urgency {
  font-size: 0.9rem;
  color: var(--accent);
}
.ticket__tear {
  margin-top: 0.35rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line-hard);
}

.wa-handover {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #faf8f5;
}
.wa-handover__preview {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  white-space: pre-wrap;
}

.result__urgency[data-level="emergency"] { color: var(--danger); }
.result__urgency[data-level="same-day"] { color: var(--accent); }
.result__urgency[data-level="scheduled"] { color: #bbb; }

.result__meter {
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  margin-bottom: 1.1rem;
  overflow: hidden;
}
.result__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--accent);
  transition: width 0.7s var(--ease);
}
.result__fill[data-level="emergency"] { background: var(--danger); }

.result__facts {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.result__facts dt {
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.result__facts dd {
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.result__now {
  font-size: 0.95rem;
  font-weight: 650;
  margin-bottom: 0.7rem;
}
.result__do {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}
.result__do li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 0.9rem;
  position: relative;
}
.result__do li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.result__acts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.photo-step {
  margin: 1rem 0;
  padding: 0.95rem 1rem;
  border: 1px dashed var(--line-hard);
  border-radius: 12px;
  background: #fff;
}

.photo-step__title {
  font-size: 0.95rem;
  font-weight: 650;
  margin-bottom: 0.25rem;
}

.photo-step__hint {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.photo-step__pick {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line-hard);
  background: var(--paper);
  font-size: 0.85rem;
  font-weight: 650;
  cursor: pointer;
}

.photo-step__pick input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.photo-step__preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.photo-step__preview img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.trust {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2.75rem;
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.trust__score {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.1rem;
  margin-bottom: 1.35rem;
}

.trust__rating {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.trust__meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.trust__grid {
  display: grid;
  gap: 0.75rem;
}

.trust__grid blockquote {
  margin: 0;
  padding: 1.05rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: #fff;
}

.trust__grid blockquote p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.trust__grid footer {
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--muted);
}

.pricing,
.plan,
.faq {
  position: relative;
  z-index: 1;
  padding: 2.75rem 0;
  background: var(--paper);
  color: var(--ink);
}

.pricing { border-top: 1px solid var(--line); }

.price-table {
  display: grid;
  border: 1px solid var(--line-hard);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.price-table__row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.4fr;
  gap: 0.75rem;
  padding: 0.95rem 1.05rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.price-table__row:first-child { border-top: none; }

.price-table__head {
  background: #faf8f5;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-table__row span:nth-child(2) {
  font-weight: 700;
  color: var(--accent-deep);
}

.plan {
  background: #fff7f2;
  border-top: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 18%, transparent);
}

.plan__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.plan__list {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
}

.plan__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
}

.plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan__card {
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 20px 50px rgba(11, 10, 9, 0.18);
}

.plan__card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.plan__card-title {
  font-size: 1.2rem;
  font-weight: 650;
  margin-bottom: 0.55rem;
}

.plan__card-price {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.45rem;
}

.plan__card-price span {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.2rem;
}

.plan__card-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.faq__list {
  display: grid;
  gap: 0.55rem;
  max-width: 720px;
}

.faq__list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 0.85rem 1rem;
}

.faq__list summary {
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq__list summary::-webkit-details-marker { display: none; }

.faq__list details[open] summary {
  margin-bottom: 0.45rem;
  color: var(--accent-deep);
}

.faq__list p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.wa-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s var(--spring), box-shadow 0.2s;
}

.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.42);
}

.wa-fab svg {
  width: 1.25rem;
  height: 1.25rem;
}

.macro-beat {
  position: relative;
  z-index: 1;
  padding: 0 1rem 2.5rem;
  background: var(--paper);
}
.macro-beat__frame {
  position: relative;
  min-height: min(58svh, 480px);
  overflow: hidden;
  border-radius: 22px;
  background: #111;
  box-shadow: 0 24px 60px rgba(11, 10, 9, 0.18);
}
.macro-beat__frame img {
  width: 100%;
  height: 100%;
  min-height: min(58svh, 480px);
  object-fit: cover;
}
.macro-beat__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1.3rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  color: #fff;
  max-width: 36rem;
}
.macro-beat__copy h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.45rem;
}
.macro-beat__copy p:last-child {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  max-width: 38ch;
}

/* Services / Timing / Book — full-width media bands (no empty side column) */
.band-section {
  position: relative;
  z-index: 1;
  background: var(--paper);
  color: var(--ink);
  padding: 0 0 2.75rem;
}

.band-section--dark {
  background: var(--ink-soft);
  color: #f6f3ee;
}

.band-section--dark .sec-head h2 { color: #f6f3ee; }
.band-section--dark .sec-lede { color: rgba(246, 243, 238, 0.62); }

.band-media {
  position: relative;
  width: 100%;
  height: clamp(240px, 38vw, 420px);
  overflow: hidden;
  background: #111;
}

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

.band-media--portrait img {
  object-position: center 18%;
}

.band-body {
  padding-top: 1.75rem;
}

.band-body .sec-head {
  max-width: none;
  margin-bottom: 1.15rem;
}

.book-body {
  max-width: 720px;
  margin-inline: auto;
}

.trade-list {
  display: grid;
  gap: 0.55rem;
}

.trade-list--grid {
  grid-template-columns: 1fr;
}

.trade-list li {
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.trade-list h3 {
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  margin-bottom: 0.2rem;
}

.trade-list p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

.window-grid {
  display: grid;
  gap: 0.65rem;
}

.window-grid--row {
  grid-template-columns: 1fr;
}

.window-card {
  padding: 1.15rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.window-card h3 {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}

.window-card p {
  font-size: 0.92rem;
  color: rgba(246, 243, 238, 0.65);
  line-height: 1.55;
}

.book-form {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem;
  border: 1px solid var(--line-hard);
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(11, 10, 9, 0.05);
}

.book-form label { display: grid; gap: 0.28rem; }

.book-form label span {
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--muted);
}

.book-form input,
.book-form textarea {
  width: 100%;
  border: 1px solid var(--line-hard);
  background: #faf8f5;
  padding: 0.75rem 0.85rem;
  font-size: 0.95rem;
  resize: vertical;
  border-radius: 10px;
}

.book-form input:focus,
.book-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-msg {
  font-size: 0.88rem;
  color: var(--ok);
  font-weight: 650;
}

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 0 2.2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
}

.footer__inner {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
}

.footer__brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer__inner a { color: #fff; font-weight: 600; }

@media (min-width: 900px) {
  .nav { display: flex; }
  .phone { display: inline; }
  .burger { display: none; }
  .drawer { display: none !important; }

  .hero__copy { padding: 6rem 0 4.5rem; }
  .result__facts { grid-template-columns: repeat(3, 1fr); }

  .trade-list--grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .window-grid--row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

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

  .plan__grid {
    grid-template-columns: 1.4fr 0.85fr;
    gap: 2rem;
    align-items: center;
  }

  .book-form { grid-template-columns: 1fr 1fr; }
  .book-form__full { grid-column: 1 / -1; }

  .band-media {
    height: clamp(280px, 32vw, 440px);
  }

  .wa-fab { right: 1.35rem; bottom: 1.35rem; }
}

@media (max-width: 720px) {
  .price-table__row {
    grid-template-columns: 1fr 1fr;
  }
  .price-table__row span:nth-child(3) {
    grid-column: 1 / -1;
    color: var(--muted);
    font-size: 0.88rem;
  }
  .price-table__head span:nth-child(3) { display: none; }
  .wa-fab span { display: none; }
  .wa-fab {
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover,
  .choice:hover,
  .wa-fab:hover { transform: none; }
}
