* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg: #fcfbf7;
  --surface: #ffffff;
  --surface-soft: #f3efe7;
  --surface-alt: #f7f4ee;
  --text: #181713;
  --muted: #5e5a52;
  --line: #ddd6ca;
  --dark: #171511;
  --dark-soft: #211e19;
  --accent: #8a5a2b;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(252, 251, 247, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  gap: 16px;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
}

.hero {
  padding: 72px 0 28px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 32px;
}

.hero-panel {
  padding: 18px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-panel-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

.eyebrow,
.section-kicker {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.section-kicker-light {
  color: #d8c2a4;
}

.hero h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--muted);
}

.panel-label,
.fact-label,
.card-tag {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.panel-value {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

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

.btn-primary {
  background: var(--dark);
  color: #fff;
}

.btn-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--text);
}

.btn-light {
  background: #fff;
  color: var(--dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.quick-facts {
  padding: 0 0 24px;
}

.quick-facts-grid,
.card-grid,
.highlights-grid {
  display: grid;
  gap: 18px;
}

.quick-facts-grid,
.highlights-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fact-card,
.card,
.highlight-card,
.hours-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.fact-card,
.card,
.highlight-card {
  padding: 22px;
}

.fact-text,
.section-heading p,
.card p,
.highlight-card p,
.contact-copy p,
.contact-card p {
  color: var(--muted);
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: var(--surface-alt);
  border-top: 1px solid #efe8db;
  border-bottom: 1px solid #efe8db;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

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

.card h3,
.highlight-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hours-card {
  padding: 10px 22px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.hours-row:last-child {
  border-bottom: 0;
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark .contact-copy p,
.section-dark .contact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  align-items: start;
}

.contact-card {
  padding: 24px;
  background: var(--dark-soft);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-inner,
  .quick-facts-grid,
  .card-grid,
  .highlights-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .main-nav {
    gap: 14px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 40px 0 18px;
  }

  .hero-copy,
  .hero-panel,
  .fact-card,
  .card,
  .highlight-card,
  .contact-card {
    padding: 20px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hours-row {
    font-size: 15px;
  }
}@media (max-width: 640px) {
  .hero {
    padding: 40px 0 18px;
  }

  .hero-copy,
  .hero-panel,
  .fact-card,
  .card,
  .highlight-card,
  .contact-card {
    padding: 20px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hours-row {
    font-size: 15px;
  }
}