:root {
  --burgundy: #a01c1c;
  --green: #09552f;
  --green-deep: #073f23;
  --green-soft: #dfe9e2;
  --cream: #f5efe3;
  --warm-white: #fcfaf6;
  --paper: #f8f3e9;
  --charcoal: #1f1f1f;
  --grey: #615b52;
  --border: #d8cebc;
  --gold-warm: #d8b97d;

  --max-width: 1120px;
  --radius: 18px;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

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

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

h1,
h2,
h3 {
  line-height: 1.15;
}

p {
  color: var(--grey);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.top-band {
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--burgundy), var(--green));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 250, 246, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

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

.logo {
  color: var(--green);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav {
  display: flex;
  gap: 1.25rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav a:hover {
  color: var(--burgundy);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 185, 125, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(7, 63, 35, 0.95), rgba(9, 85, 47, 0.92));
  color: white;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 80% 25%, rgba(255, 255, 255, 0.04), transparent 20%),
    radial-gradient(circle at 60% 75%, rgba(160, 28, 28, 0.1), transparent 18%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 7rem 0 6rem;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
}

.hero .eyebrow,
.green-panel .eyebrow,
.section-deep .eyebrow {
  color: #f3e2bf;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.8rem;
  color: var(--green);
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.hero-text {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--cream);
  color: var(--green);
}

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

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 5.25rem 0;
}

.section-light {
  background: var(--warm-white);
}

.section-deep {
  background:
    linear-gradient(rgba(9, 85, 47, 0.96), rgba(9, 85, 47, 0.96)),
    linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06));
}

.section-deep h2,
.section-deep h3,
.section-deep p {
  color: white;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.light h2 {
  color: white;
}

.divider {
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold-warm), var(--burgundy));
  border-radius: 999px;
  margin-top: 1rem;
}

.section-heading.centered .divider {
  margin-left: auto;
  margin-right: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.copy-block {
  padding-right: 1rem;
}

.ornate-card,
.panel {
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.ornate-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-top: 6px solid var(--burgundy);
  position: relative;
}

.ornate-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(9, 85, 47, 0.14);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.feature-list,
.hours-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.feature-list li,
.hours-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-list li:last-child,
.hours-list li:last-child {
  border-bottom: none;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.menu-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  color: var(--charcoal);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-card h3 {
  color: var(--green);
}

.menu-card p {
  color: var(--grey);
}

.accent-line {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--green), var(--burgundy));
}

.two-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.green-panel {
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: white;
}

.green-panel h2,
.green-panel p,
.green-panel li {
  color: white;
}

.green-panel .hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.cream-panel {
  background: var(--cream);
  border: 1px solid var(--border);
}

.cream-panel h2 {
  color: var(--burgundy);
}

.text-link {
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.92);
  padding: 2rem 0;
}

.footer-inner {
  text-align: center;
}

.site-footer p {
  color: inherit;
  margin: 0;
}

.footer-sub {
  margin-top: 0.35rem !important;
  font-size: 0.95rem;
  opacity: 0.85;
}

@media (max-width: 820px) {
  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .split-layout,
  .menu-grid,
  .two-panel {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 5rem 0 4.5rem;
  }

  .section {
    padding: 4rem 0;
  }
}