:root {
  color-scheme: light;
  --cream: #f7efe3;
  --sand: #e7d6be;
  --cocoa: #4b2f23;
  --toast: #a15c3b;
  --olive: #56715a;
  --paper: #f3eadb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--cocoa);
  background: linear-gradient(180deg, var(--paper), var(--cream));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* Content links (phone, email, etc.) */
.site-footer a,
.contact-card a:not(.btn-primary) {
  color: var(--toast);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}

.site-footer a:hover,
.contact-card a:not(.btn-primary):hover {
  text-decoration-color: var(--toast);
}

/* Brand link styling */
a.brand-name {
  display: block;
}

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

.site-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(75, 47, 35, 0.1);
  background: rgba(247, 239, 227, 0.95);
}

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

.brand-name {
  font-weight: 700;
  font-size: 1.5rem;
}

.brand-tagline {
  margin: 0.15rem 0 0;
  color: var(--olive);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-weight: 600;
}

.main-nav a {
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus {
  border-color: var(--toast);
}

.main-nav a.active {
  border-color: var(--toast);
}

/* Hamburger menu button - hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cocoa);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile navigation styles */
@media (max-width: 719px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(247, 239, 227, 0.98);
    flex-direction: column;
    padding: 1rem 4vw;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(75, 47, 35, 0.1);
    box-shadow: 0 10px 20px rgba(75, 47, 35, 0.1);
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    position: relative;
  }
}

.page-hero {
  padding: 4rem 0 3rem;
}

.lede {
  font-size: 1.1rem;
  max-width: 40rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.hero-home {
  background: radial-gradient(circle at top right,
      rgba(255, 255, 255, 0.7),
      transparent 55%),
    linear-gradient(135deg, rgba(231, 214, 190, 0.6), transparent 60%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
}

.btn-primary {
  background: var(--toast);
  color: #fff;
  box-shadow: 0 10px 20px rgba(161, 92, 59, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(161, 92, 59, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  border: 1px solid rgba(75, 47, 35, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(75, 47, 35, 0.05);
  transform: translateY(-2px);
}

.btn-ghost:active {
  transform: translateY(0);
}

.hero-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(75, 47, 35, 0.15);
  border: 1px solid rgba(75, 47, 35, 0.1);
}

.hero-card-frame {
  border: 2px dashed rgba(75, 47, 35, 0.25);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(247, 239, 227, 0.9), #fff);
}

.photo-card {
  margin: 0 0 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow:
    0 14px 28px rgba(75, 47, 35, 0.15),
    0 4px 8px rgba(75, 47, 35, 0.08);
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.photo-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 24px 48px rgba(75, 47, 35, 0.18),
    0 8px 16px rgba(75, 47, 35, 0.1);
}

.photo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.photo-card:hover img {
  transform: scale(1.03);
}

.hero-card-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
  color: var(--toast);
}

.hero-card-subtitle {
  margin: 0;
  color: var(--olive);
}

.section {
  padding: 3rem 0;
}

.panel {
  background: rgba(231, 214, 190, 0.5);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.menu-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(75, 47, 35, 0.1);
  box-shadow: 0 12px 24px rgba(75, 47, 35, 0.08);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(75, 47, 35, 0.15);
}

.steps {
  margin: 1.5rem 0 0;
  padding-left: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.hero-menu {
  background: linear-gradient(120deg,
      rgba(231, 214, 190, 0.8),
      transparent 70%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.7), transparent);
}

.menu-grid {
  display: grid;
  gap: 1.5rem;
}

.menu-block {
  padding: 1.75rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(75, 47, 35, 0.1);
  box-shadow: 0 16px 30px rgba(75, 47, 35, 0.08);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(75, 47, 35, 0.12);
}

.menu-photo {
  max-width: 320px;
  margin: 0 auto;
}

.menu-note {
  margin-top: 0.25rem;
  color: var(--olive);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  border-bottom: 1px dashed rgba(75, 47, 35, 0.2);
  padding-bottom: 0.5rem;
}

.menu-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--toast);
}

.about-grid {
  display: grid;
  gap: 2rem;
}

.highlight-card {
  background: var(--cream);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(75, 47, 35, 0.1);
  box-shadow: 0 16px 24px rgba(75, 47, 35, 0.08);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(75, 47, 35, 0.12);
}

.highlight-card ul {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 0.5rem;
}

.about-photo {
  margin-top: 1.5rem;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(75, 47, 35, 0.12);
  box-shadow: 0 16px 28px rgba(75, 47, 35, 0.1);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(75, 47, 35, 0.14);
}

.contact-card p {
  margin: 0.5rem 0;
}

.contact-card.accent {
  background: linear-gradient(180deg, #fff, rgba(231, 214, 190, 0.6));
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  background: var(--sand);
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .menu-photo {
    justify-self: end;
    margin: 0;
  }

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

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid {
    grid-template-columns: 1.4fr 0.8fr;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}