:root {
  color-scheme: light;
  --ink: #18201d;
  --muted: #5a645f;
  --line: #d9e1dc;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --accent: #1f6f53;
  --accent-dark: #174f3d;
  --gold: #c5963c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid rgba(24, 32, 29, 0.08);
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  color: var(--accent);
  font-weight: 700;
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 88px clamp(20px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(10, 18, 15, 0.82), rgba(10, 18, 15, 0.55)),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=2200&q=85") center / cover;
  color: #fff;
}

.hero-content {
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
}

.section {
  padding: 80px clamp(20px, 7vw, 96px);
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  max-width: 720px;
  margin: 0 0 28px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.feature-grid article,
.hours {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 24px;
  box-shadow: 0 18px 46px rgba(24, 32, 29, 0.06);
}

.feature-grid h3,
.hours h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.feature-grid p,
.contact p,
.hours p {
  margin: 0;
  color: var(--muted);
}

.contact {
  background: #eef4f0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.contact .button {
  margin-top: 26px;
}

.hours dl {
  margin: 0;
}

.hours dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  color: var(--muted);
}

.hours dd {
  margin: 0;
  font-weight: 700;
}

.hours .domain {
  margin-top: 18px;
  color: var(--accent);
  font-weight: 700;
}

footer {
  padding: 34px 20px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 14px;
}

footer p {
  margin: 4px 0;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 72vh;
    padding-top: 70px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .feature-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
