:root {
  --color-bg: #f8f6f2;
  --color-text: #1f2421;
  --color-primary: #8a5f2d;
  --color-primary-dark: #6d4922;
  --color-surface: #ffffff;
  --color-muted-surface: #efe7dd;
  --shadow-soft: 0 10px 30px rgba(31, 36, 33, 0.08);
  --radius: 0.75rem;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5ddd2;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  font-weight: 500;
}

.button {
  display: inline-block;
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

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

.button-muted {
  background: transparent;
  border-color: #fff;
}

.button-small {
  padding: 0.55rem 0.95rem;
}

.hero {
  min-height: 74vh;
  background-image: linear-gradient(to right, rgba(20, 15, 10, 0.7), rgba(20, 15, 10, 0.25)),
    url("sun-inn-acomb.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero-overlay {
  min-height: inherit;
  display: grid;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  padding: 5rem 0;
}

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

h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin: 0.5rem 0 1rem;
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin: 0.2rem 0 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.75rem;
  color: #c79153;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.section {
  padding: 4.25rem 0;
}

.section-muted {
  background: var(--color-muted-surface);
}

.section-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.feature-list {
  padding-left: 1.2rem;
}

.highlight-card,
.card,
.menu-preview,
.cta-box {
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.highlight-card {
  padding: 1.25rem;
}

.highlight-card dl {
  margin: 0;
}

.highlight-card div {
  border-bottom: 1px solid #ede5dc;
  padding: 0.5rem 0;
}

.highlight-card div:last-child {
  border-bottom: 0;
}

.highlight-card dt {
  font-weight: 700;
}

.highlight-card dd {
  margin: 0.2rem 0 0;
}

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

.card,
.menu-preview {
  padding: 1.25rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-box {
  text-align: center;
  padding: 2rem 1rem;
}

.site-footer {
  padding: 1.2rem 0 2rem;
}

.footer-content {
  border-top: 1px solid #e3dacd;
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 840px) {
  .nav-list {
    display: none;
  }

  .section-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }
}
