:root {
  --ink: #15202b;
  --muted: #53616c;
  --cream: #fffaf0;
  --sand: #f4e2b9;
  --gold: #e7a723;
  --orange: #d9671e;
  --deep: #123b4a;
  --white: #fff;
  --line: rgba(21, 32, 43, .15);
}

* { 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.55;
}
a { color: inherit; }

.site-header, main, .site-footer { max-width: 1160px; margin: 0 auto; }
.site-header {
  min-height: 84px;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; font-weight: 800; font-size: 1.1rem; letter-spacing: -.025em; }
.brand small { display: block; color: var(--orange); text-transform: uppercase; font-size: .65rem; letter-spacing: .14em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: var(--deep); font-size: .78rem; letter-spacing: -.04em; }
.header-call { color: var(--deep); font-weight: 750; text-underline-offset: 4px; }

.hero { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr); gap: 2rem; padding: 5.5rem 2rem; }
.eyebrow { margin: 0 0 .85rem; color: var(--orange); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.05; letter-spacing: -.045em; }
h1 { max-width: 700px; margin-bottom: 1.25rem; font-size: clamp(3rem, 7vw, 6.2rem); }
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.5rem; }
.intro { max-width: 580px; color: var(--muted); font-size: 1.13rem; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.button { display: inline-block; border-radius: 999px; padding: .75rem 1.1rem; text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--white); }
.button-secondary { border: 1px solid var(--ink); }
.button-dark { background: var(--deep); color: var(--white); }
.hero-panel { align-self: end; padding: 1.7rem; border-radius: 20px; background: var(--deep); color: var(--white); box-shadow: 12px 12px 0 var(--sand); }
.panel-label { margin-bottom: .45rem; color: var(--sand); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.phone { display: inline-block; margin-bottom: 1rem; color: var(--white); font-size: 1.65rem; font-weight: 800; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.hero-panel p:last-child { margin-bottom: 0; color: #dbe8e9; }

.offer { display: grid; grid-template-columns: 1.25fr .75fr; gap: 2rem; align-items: end; padding: 4.5rem 2rem; background: var(--sand); }
.offer h2 { max-width: 650px; margin-bottom: 0; }
.offer > p { margin-bottom: .35rem; color: var(--muted); }
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 5rem 2rem; }
.visit-copy > p { color: var(--muted); font-size: 1.12rem; }
.text-link { color: var(--orange); font-weight: 800; text-underline-offset: 5px; }
.callout { padding: 2rem; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.callout p { color: var(--muted); }

.site-footer { padding: 2rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.site-footer p { max-width: 880px; margin-bottom: .6rem; }
.site-footer p:last-child { margin-bottom: 0; }
.site-footer strong { color: var(--ink); }

@media (max-width: 720px) {
  .site-header { min-height: auto; padding: 1rem 1.25rem; }
  .header-call { font-size: .9rem; }
  .hero, .offer, .visit { grid-template-columns: 1fr; padding: 3.75rem 1.25rem; }
  .hero { gap: 2.5rem; }
  .offer { gap: .5rem; }
  .hero-panel { box-shadow: 8px 8px 0 var(--sand); }
  .site-footer { padding: 1.5rem 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
