:root {
  --terracotta: #8c381d;
  --cream: #fdfced;
  --navy: #0d1b26;
  --terracotta-dark: #712c16;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

/* Shopfront photo hero with overlaid nav */
.photo-hero {
  position: relative;
}

.photo-hero img {
  width: 100%;
  height: clamp(210px, 58vw, 700px);
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

.hero-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(13, 27, 38, 0.55), rgba(13, 27, 38, 0) 100%);
  pointer-events: none;
}

.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 26px 24px 22px;
  background: rgba(13, 27, 38, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.hero-nav a {
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  transition: opacity 0.2s ease;
}

.hero-nav a:hover { opacity: 0.75; }

/* Quick links below the hero photo */
.quick-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px 24px;
  background: var(--cream);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: transform 0.15s ease, background 0.15s ease;
}

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

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

.btn-primary:hover { background: var(--terracotta-dark); }

.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn-secondary:hover { background: var(--terracotta); color: var(--cream); }

/* Menu section */
.menu-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.menu-section > h2 {
  text-align: center;
  color: var(--terracotta);
  font-size: 2rem;
  margin-bottom: 40px;
}

.menu-footnote {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(13, 27, 38, 0.55);
  margin-top: 48px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
}

.menu-category.full-width {
  grid-column: 1 / -1;
}

.menu-category h3 {
  color: var(--navy);
  font-size: 1.15rem;
  border-bottom: 2px solid var(--terracotta);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.category-note {
  text-transform: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  float: right;
  color: var(--terracotta);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(13, 27, 38, 0.12);
  font-weight: 500;
}

.menu-item:last-child { border-bottom: none; }

.menu-item small {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(13, 27, 38, 0.65);
  margin-top: 2px;
}

.menu-item em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--terracotta);
}

.menu-item .addon {
  font-weight: 400;
  font-size: 0.9rem;
  padding-left: 12px;
  color: rgba(13, 27, 38, 0.8);
}

.price {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  color: var(--terracotta);
}

/* Book & Shop sections */
.book-section, .shop-section {
  text-align: center;
  padding: 64px 24px;
}

.book-section { background: var(--terracotta); color: var(--cream); }
.book-section h2 { color: var(--cream); }
.book-section p { margin-bottom: 28px; opacity: 0.9; }
.book-note { margin: 24px 0 0; font-size: 0.85rem; opacity: 0.75; max-width: 480px; margin-left: auto; margin-right: auto; }
.book-section .btn-primary { background: var(--cream); color: var(--terracotta); }
.book-section .btn-primary:hover { background: #fff; }

.shop-section { background: var(--navy); color: var(--cream); }
.shop-section h2 { color: var(--cream); }
.shop-section p { margin-bottom: 28px; opacity: 0.85; }
.shop-section .btn-primary { background: var(--terracotta); }
.shop-section .btn-primary:hover { background: var(--terracotta-dark); }

.book-section h2, .shop-section h2 { font-size: 1.8rem; margin-bottom: 12px; }

/* Find Us section */
.find-section {
  text-align: center;
  padding: 64px 24px;
  background: var(--cream);
}

.find-section h2 { color: var(--terracotta); font-size: 1.8rem; margin-bottom: 12px; }
.find-section > p { margin-bottom: 28px; color: rgba(13, 27, 38, 0.75); }

.map-embed {
  max-width: 640px;
  margin: 0 auto 28px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer */
.site-footer {
  background: var(--cream);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  height: 28px;
  width: auto;
  filter: invert(1) brightness(0.15);
  margin-bottom: 12px;
}

.footer-social {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--terracotta);
  margin-bottom: 12px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}

.footer-social:hover { border-color: var(--terracotta); }

.site-footer p {
  font-size: 0.8rem;
  color: rgba(13, 27, 38, 0.6);
}

/* Responsive */
@media (max-width: 640px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-nav { gap: 10px; font-size: 0.62rem; padding: 18px 12px 16px; flex-wrap: nowrap; }
  .photo-hero img { height: 300px; object-position: center 42%; }
}
