:root {
  /* Pacific Northwest palette */
  --forest: #1a3a2f;
  --forest-light: #2d5a47;
  --cedar: #8b5e3c;
  --cedar-light: #a67c52;
  --birch: #f5f0e8;
  --cream: #faf8f4;
  --bark: #3d2b1f;
  --moss: #6b8f71;
  --stone: #8a9a8e;
  --text: #2c2c2c;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --border: #e2ddd5;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --transition: 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.75;
}

a:focus-visible {
  outline: 2px solid var(--moss);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ─── Header ─── */
.site-header {
  background: var(--forest);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--cedar);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  padding: 0 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--birch);
  letter-spacing: 0.3px;
}

.logo span {
  color: var(--cedar-light);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--stone);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--birch);
  opacity: 1;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cedar);
  color: var(--birch);
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}

.cta:hover {
  background: var(--cedar-light);
  transform: translateY(-1px);
  opacity: 1;
}

/* ─── Hero ─── */
.hero {
  background: var(--forest);
  padding: 100px 28px 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 143, 113, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 94, 60, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath d='M0,60 L0,30 Q360,0 720,30 T1440,30 L1440,60 Z' fill='%23faf8f4'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 94, 60, 0.25);
  border: 1px solid rgba(139, 94, 60, 0.4);
  color: var(--cedar-light);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--birch);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--moss);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--stone);
  margin-bottom: 36px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--cedar);
  color: var(--birch);
}

.btn-primary:hover {
  background: var(--cedar-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 94, 60, 0.35);
  opacity: 1;
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--birch);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  opacity: 1;
}

/* ─── Features ─── */
.features {
  padding: 80px 0 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 58, 47, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--forest);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── Divider ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 320px;
  color: var(--stone);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── Specials Preview ─── */
.specials-preview {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .eyebrow {
  display: inline-block;
  background: var(--forest);
  color: var(--birch);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--forest);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.special-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.special-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(26, 58, 47, 0.12);
}

.special-img {
  height: 160px;
  background: linear-gradient(135deg, var(--forest-light), var(--moss));
  position: relative;
  overflow: hidden;
}

.special-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5 L55 20 L55 40 L30 55 L5 40 L5 20 Z' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.special-body {
  padding: 20px 22px 24px;
}

.special-tag {
  display: inline-block;
  background: var(--birch);
  color: var(--cedar);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.special-card .title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 6px;
}

.special-card .price {
  color: var(--cedar);
  font-weight: 700;
  font-size: 1.05rem;
}

/* ─── Hours ─── */
.hours-section {
  padding: 80px 0;
  background: var(--forest);
  margin: 60px 0 0;
  position: relative;
}

.hours-section::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 40'%3E%3Cpath d='M0,0 Q720,40 1440,0 L1440,40 L0,40 Z' fill='%231a3a2f'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
}

.hours-inner {
  text-align: center;
  color: var(--birch);
}

.hours-inner h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.hours-inner .tagline {
  color: var(--stone);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.hours-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hours-block {
  text-align: center;
}

.hours-block .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 6px;
}

.hours-block .time {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--birch);
}

.hours-section .btn {
  background: var(--cedar);
  color: var(--birch);
  padding: 13px 28px;
  font-size: 0.9rem;
}

.hours-section .btn:hover {
  background: var(--cedar-light);
  opacity: 1;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--bark);
  padding: 40px 28px;
  text-align: center;
  color: var(--stone);
  font-size: 0.88rem;
}

.site-footer p {
  max-width: 1100px;
  margin: 0 auto;
}

.site-footer a {
  color: var(--moss);
}

/* ─── Responsive ─── */
@media (max-width: 860px) {
  .features-grid,
  .specials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hours-grid {
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 20px;
    gap: 12px;
  }

  .nav-links {
    gap: 20px;
  }

  .hero {
    padding: 70px 20px 90px;
  }

  .features-grid,
  .specials-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .hours-grid {
    flex-direction: column;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }
}
