:root {
  --color-cream: #faf3e8;
  --color-cream-deep: #f1e2c8;
  --color-card: #fffaf1;
  --color-charcoal: #2b2118;
  --color-charcoal-soft: #6b5a48;
  --color-terracotta: #c9622f;
  --color-terracotta-deep: #a84f24;
  --color-gold: #d9a441;
  --color-line: rgba(43, 33, 24, 0.1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--color-terracotta) var(--color-cream);
  scrollbar-width: thin;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Skip link ─── */

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 8px 16px;
  background: var(--color-terracotta);
  color: var(--color-cream);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ─── Header ─── */

#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(250, 243, 232, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

#site-header .brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
}

#site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

#site-header nav a {
  color: var(--color-charcoal-soft);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

#site-header nav a:hover,
#site-header nav a:focus-visible {
  color: var(--color-terracotta);
}

/* ─── Content ─── */

.content-wrapper {
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Sections ─── */

section {
  padding: 88px 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-bottom: 1px solid var(--color-line);
}

section:last-of-type {
  border-bottom: none;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-charcoal);
}

.section-intro {
  margin-bottom: 28px;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-terracotta-deep);
  background: rgba(201, 98, 47, 0.1);
  border-radius: 6px;
  padding: 2px 8px;
  vertical-align: middle;
}

/* ─── Hero ─── */

#hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 1 !important;
  transform: none !important;
  border-bottom: none;
  padding: 100px 0 60px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217, 164, 65, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(201, 98, 47, 0.12) 0%, transparent 60%);
}

#hero .hero-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}

#tagline-wrapper {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-charcoal-soft);
  font-weight: 400;
  min-height: 1.8em;
  letter-spacing: 0.02em;
}

#tagline-wrapper .cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--color-terracotta);
  margin-left: 3px;
  vertical-align: text-bottom;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--color-terracotta);
  color: var(--color-cream);
  box-shadow: 0 8px 24px rgba(201, 98, 47, 0.3);
}

.btn-primary:hover {
  background: var(--color-terracotta-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-charcoal);
  border: 1.5px solid var(--color-line);
}

.btn-secondary:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta-deep);
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 2px;
}

/* ─── About ─── */

#about .about-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-charcoal-soft);
}

#about .about-content p + p {
  margin-top: 20px;
}

#about .about-content .highlight {
  color: var(--color-terracotta-deep);
  font-weight: 600;
}

.grill-note {
  margin-top: 14px;
  font-size: 0.9375rem;
  color: var(--color-charcoal-soft);
}

/* ─── Menu ─── */

.menu-category {
  margin-bottom: 32px;
}

.menu-category h3 {
  color: var(--color-terracotta-deep);
  margin-bottom: 14px;
}

.menu-list {
  list-style: none;
}

.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--color-line);
}

.menu-item-name {
  font-weight: 500;
}

.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--color-line);
  margin-bottom: 4px;
}

.menu-item-price {
  color: var(--color-terracotta-deep);
  font-weight: 600;
}

/* ─── Catering ─── */

.catering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.catering-card {
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: 14px;
  padding: 24px;
}

.catering-card h3 {
  margin-bottom: 6px;
}

.catering-size {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.catering-card p:last-child {
  color: var(--color-charcoal-soft);
  font-size: 0.9375rem;
}

/* ─── Gallery ─── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.gallery-tile {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-cream-deep), var(--color-card));
  border: 1px dashed rgba(43, 33, 24, 0.2);
  border-radius: 14px;
  color: var(--color-charcoal-soft);
}

.gallery-tile span {
  font-size: 2rem;
}

.gallery-tile p {
  font-size: 0.75rem;
  font-weight: 500;
}

/* ─── Visit ─── */

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}

.visit-block h3 {
  margin-bottom: 10px;
}

.hours-list {
  list-style: none;
  margin-top: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9375rem;
  border-bottom: 1px dashed var(--color-line);
}

.hours-list li span:first-child {
  color: var(--color-charcoal-soft);
}

.open-status {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
}

.open-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-charcoal-soft);
}

.open-status.is-open {
  color: #3f7d43;
}

.open-status.is-open::before {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.open-status.is-closed {
  color: var(--color-charcoal-soft);
}

address {
  font-style: normal;
  color: var(--color-charcoal-soft);
  margin-bottom: 10px;
}

.visit-block a {
  color: var(--color-terracotta-deep);
  text-decoration: none;
  font-weight: 500;
}

.visit-block a:hover,
.visit-block a:focus-visible {
  text-decoration: underline;
}

/* ─── Connect ─── */

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--color-card);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-charcoal);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.social-link:hover {
  background: rgba(201, 98, 47, 0.08);
  border-color: rgba(201, 98, 47, 0.35);
  color: var(--color-terracotta-deep);
  transform: translateY(-2px);
}

.social-link:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 2px;
}

/* ─── Footer ─── */

footer {
  text-align: center;
  padding: 56px 24px 72px;
  color: var(--color-charcoal-soft);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* ─── Reduced motion ─── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ─── Scrollbar ─── */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-cream);
}

::-webkit-scrollbar-thumb {
  background: rgba(201, 98, 47, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 98, 47, 0.5);
}

/* ─── Responsive ─── */

@media (max-width: 600px) {
  #site-header {
    justify-content: center;
    text-align: center;
  }

  #site-header nav {
    justify-content: center;
    gap: 16px;
  }

  section {
    padding: 56px 0;
  }

  #hero {
    min-height: 80vh;
    padding: 72px 0 48px;
  }

  .social-grid {
    flex-direction: column;
  }

  .social-link {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  section {
    padding: 72px 0;
  }
}
