:root {
  color-scheme: light dark;
  --coral: #f06449;
  --ink: #292322;
  --cream: #fff8f1;
  --sage: #5b8c6a;
  --surface: #ffffff;
  --muted: #675f5c;
  --line: rgba(41, 35, 34, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.nav, footer {
  display: flex;
  max-width: 1120px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: auto;
  padding: 24px;
}
.nav nav, footer nav { text-align: right; }
.brand {
  color: var(--coral);
  font-size: 1.45rem;
  font-weight: 900;
  text-decoration: none;
}
.hero {
  display: grid;
  max-width: 1120px;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  gap: 5rem;
  margin: 5rem auto;
  padding: 0 24px;
}
.eyebrow {
  color: var(--coral);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1 {
  max-width: 800px;
  margin: .25em 0;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.lead { max-width: 650px; font-size: 1.25rem; }
.status {
  display: inline-block;
  margin-top: 1rem;
  padding: .7rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 750;
}
.phone {
  padding: 28px;
  text-align: center;
  background: var(--surface);
  border: 10px solid var(--ink);
  border-radius: 42px;
  box-shadow: 0 28px 70px rgba(41, 35, 34, .17);
}
.restaurant {
  display: grid;
  min-height: 260px;
  place-items: center;
  background: linear-gradient(135deg, #5b8c6a, #a6c9b0);
  border-radius: 24px;
  font-size: 7rem;
}
.phone h2 { margin-bottom: 0; }
.phone p { margin-top: 0; opacity: .7; }
.actions { display: flex; justify-content: center; gap: 28px; font-size: 2rem; }
.actions span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  background: var(--cream);
  border-radius: 50%;
}
.actions span:last-child { color: white; background: var(--sage); }
.benefits {
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 6rem auto;
  padding: 0 24px;
}
.benefits article { padding: 28px; background: var(--surface); border-radius: 24px; }
.benefits article > span { color: var(--coral); font-weight: 900; }
.policy { max-width: 760px; margin: 4rem auto 7rem; padding: 0 24px; }
.policy h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.policy h2 { margin-top: 2rem; }
.delete-cta {
  display: inline-block;
  margin-top: .5rem;
  padding: .8rem 1.05rem;
  color: white;
  background: var(--coral);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
footer { border-top: 1px solid var(--line); }
.report-shell { max-width: 760px; margin: 3rem auto 7rem; padding: 0 24px; }
.report-shell h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
.report-form { display: grid; gap: 1.15rem; padding: clamp(20px, 5vw, 38px); background: var(--surface); border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 24px 60px rgba(41,35,34,.1); }
.report-form label, .fieldset-label { display: grid; gap: .4rem; font-weight: 760; }
.report-form input, .report-form select, .report-form textarea {
  width: 100%; padding: .82rem .9rem; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 12px; font: inherit;
}
.report-form textarea { min-height: 130px; resize: vertical; }
.report-form input:focus, .report-form select:focus, .report-form textarea:focus { outline: 3px solid color-mix(in srgb, var(--coral) 30%, transparent); border-color: var(--coral); }
.check-row { display: flex; align-items: flex-start; gap: .65rem; font-weight: 500 !important; }
.check-row input { width: auto; margin-top: .35rem; }
.form-note, .field-note { color: var(--muted); font-size: .9rem; }
.diagnostics { padding: 16px 18px; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; }
.diagnostics strong { display: block; margin-bottom: .35rem; }
.diagnostics p { margin: 0; color: var(--muted); font-size: .88rem; }
.submit-button { min-height: 52px; color: white; background: var(--coral); border: 0; border-radius: 999px; font: inherit; font-weight: 850; cursor: pointer; }
.submit-button:disabled { cursor: not-allowed; opacity: .55; }
.form-status { min-height: 1.7rem; margin: 0; font-weight: 700; }
.form-status.error { color: #b42318; }
.form-status.success { color: var(--sage); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; margin: 2rem auto; }
  .benefits { grid-template-columns: 1fr; }
  .phone { width: 100%; max-width: 380px; margin: auto; }
  .nav, footer { align-items: flex-start; flex-direction: column; }
  .nav nav, footer nav { text-align: left; }
}

@media (prefers-color-scheme: dark) {
  :root { --ink: #f7efeb; --cream: #181514; --surface: #252120; --muted: #c8beba; --line: rgba(247, 239, 235, .14); }
  .phone { border-color: #f7efeb; }
  .status { color: #181514; background: #f7efeb; }
  .actions span { background: #342d2a; }
}
