:root {
  color-scheme: light;
  --ink: #20201d;
  --muted: #68635b;
  --paper: #fffaf1;
  --surface: #f4eadc;
  --line: #d9c8b4;
  --forest: #21483b;
  --forest-strong: #15362d;
  --tomato: #b64938;
  --gold: #d6a94d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 32, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid rgba(217, 200, 180, 0.7);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(20px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  backdrop-filter: blur(16px);
  z-index: 10;
}

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

.brand-mark {
  align-items: center;
  background: var(--forest);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 0.78rem;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 6px;
}

.site-nav a,
.button {
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
}

.site-nav a:hover {
  background: var(--surface);
  color: var(--ink);
}

.nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.nav-toggle span:not(.sr-only) {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.hero {
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  place-items: stretch;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(18, 24, 20, 0.72) 0%, rgba(18, 24, 20, 0.4) 42%, rgba(18, 24, 20, 0.08) 100%),
    linear-gradient(0deg, rgba(32, 32, 29, 0.28), rgba(32, 32, 29, 0.06));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  align-self: end;
  color: var(--white);
  max-width: 760px;
  padding: 140px clamp(22px, 7vw, 96px) 96px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.9;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  max-width: 590px;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 13px 20px;
}

.button:hover {
  transform: translateY(-1px);
}

.primary {
  background: var(--gold);
  color: #21170a;
}

.secondary {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.section,
.contact,
.site-footer {
  padding-left: clamp(22px, 6vw, 88px);
  padding-right: clamp(22px, 6vw, 88px);
}

.section {
  padding-bottom: clamp(64px, 10vw, 120px);
  padding-top: clamp(64px, 10vw, 120px);
}

.section-heading {
  max-width: 680px;
}

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

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.feature p,
.muted {
  color: var(--muted);
}

.split {
  align-items: start;
  background: var(--forest);
  color: var(--white);
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
}

.split .muted {
  color: rgba(255, 255, 255, 0.72);
}

.hours {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  margin: 0;
  padding: 8px 22px;
}

.hours div {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 0;
}

.hours div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hours dt {
  font-weight: 780;
}

.hours dd {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  text-align: right;
}

.contact {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  padding-bottom: clamp(64px, 10vw, 112px);
  padding-top: clamp(64px, 10vw, 112px);
}

address {
  background: var(--surface);
  border-left: 5px solid var(--tomato);
  border-radius: 8px;
  display: grid;
  font-style: normal;
  gap: 12px;
  padding: 24px;
}

address a {
  font-weight: 760;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 28px;
}

.site-footer a {
  font-weight: 700;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 12px 22px 18px;
    position: absolute;
    right: 0;
    top: 71px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero {
    min-height: 88svh;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(18, 24, 20, 0.72) 0%, rgba(18, 24, 20, 0.36) 75%);
  }

  .hero-content {
    padding-bottom: 58px;
  }

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

  .hours div {
    display: grid;
    gap: 6px;
  }

  .hours dd {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .button {
    justify-content: center;
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
