/* ============================================
   Baker Meister — Artisan Bakery & Café
   Clean minimalist · Emerald & cream
   ============================================ */

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

:root {
  --green-50: #ecfdf5;
  --green-100: #d1fae5;
  --green-200: #a7f3d0;
  --green-300: #6ee7b7;
  --green-400: #34d399;
  --green-500: #10b981;
  --green-600: #059669;
  --green-700: #047857;
  --green-800: #065f46;
  --green-900: #064e3b;
  --green-950: #022c22;

  --cream-50: #fefdf8;
  --cream-100: #fefce8;
  --cream-200: #fef9c3;
  --cream-300: #fde68a;
  --cream-400: #fcd34d;

  --sand-100: #faf5ef;
  --sand-200: #f5efe6;
  --sand-300: #e8dfd3;
  --sand-400: #d4a574;
  --sand-500: #c49a6c;

  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #6b6b6b;
  --text-inverse: #f5f5f0;

  --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-serif: 'Lora', 'Georgia', serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green-800);
  color: var(--cream-50);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-size: 0.875rem;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 1rem;
}

/* ============================================
   Typography
   ============================================ */

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--cream-50);
  box-shadow: 0 2px 8px rgba(6, 95, 70, 0.25);
}

.btn-primary:hover {
  background: var(--green-900);
  box-shadow: 0 4px 16px rgba(6, 95, 70, 0.35);
  transform: translateY(-1px);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--cream-50);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
}

/* ============================================
   Header
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(254, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6, 95, 70, 0.08);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--green-800);
  transition: opacity var(--transition-fast);
}

.logo:hover {
  opacity: 0.75;
}

.logo-mark {
  color: var(--green-700);
}

.logo--footer {
  color: var(--cream-100);
}

.logo--footer .logo-mark {
  color: var(--green-300);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.main-nav a:hover {
  color: var(--green-800);
  background: var(--green-50);
}

.nav-cta {
  font-weight: 500 !important;
  color: var(--green-800) !important;
  background: var(--green-50) !important;
  border: 1px solid var(--green-200);
  margin-left: 0.5rem;
}

.nav-cta:hover {
  background: var(--green-100) !important;
  border-color: var(--green-300);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--green-50);
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--green-800);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--green-950) 0%,
    var(--green-900) 25%,
    var(--green-800) 50%,
    var(--green-700) 75%,
    var(--green-600) 100%
  );
  padding-top: 72px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(2, 44, 34, 0.4) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream-50);
  margin-bottom: 1.5rem;
}

.hero-accent {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--sand-400);
  font-size: 0.85em;
  margin-top: 0.25rem;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(254, 253, 248, 0.75);
  margin-bottom: 2rem;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(254, 253, 248, 0.6);
}

.hero-detail svg {
  color: var(--green-400);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 520 / 640;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image-accent {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

/* ============================================
   About
   ============================================ */

.about {
  padding: 7rem 0;
  background: var(--cream-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 480 / 580;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 360 / 280;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream-50);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text {
  padding-top: 2rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand-300);
}

.stat {
  flex: 1;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1.2;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--sand-300);
  flex-shrink: 0;
}

/* ============================================
   Menu
   ============================================ */

.menu {
  padding: 7rem 0;
  background: var(--sand-100);
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.menu-header .section-title {
  margin-bottom: 1rem;
}

.menu-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.menu-category {
  background: var(--cream-50);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(6, 95, 70, 0.06);
  transition: box-shadow var(--transition-base);
}

.menu-category:hover {
  box-shadow: var(--shadow-md);
}

.menu-cat-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  color: var(--green-700);
  margin-bottom: 1rem;
}

.menu-cat-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid var(--sand-200);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.menu-item-name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

.menu-item-desc {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.menu-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-top: 2.5rem;
  font-style: italic;
}

/* ============================================
   Gallery
   ============================================ */

.gallery {
  padding: 7rem 0;
  background: var(--cream-50);
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item--tall {
  grid-column: span 5;
  aspect-ratio: 480 / 640;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
  grid-column: span 3;
  aspect-ratio: 500 / 380;
}

.gallery-item--wide {
  grid-column: span 12;
  aspect-ratio: 760 / 380;
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials {
  padding: 7rem 0;
  background: var(--green-900);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: background var(--transition-base);
}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-quote {
  color: var(--green-400);
  margin-bottom: 1rem;
  opacity: 0.6;
}

.testimonial p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(254, 253, 248, 0.8);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial footer {
  font-size: 0.8125rem;
  color: var(--green-300);
  font-style: normal;
  font-weight: 500;
}

/* ============================================
   Visit
   ============================================ */

.visit {
  padding: 7rem 0;
  background: var(--sand-100);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.visit-info {
  padding: 2rem 0;
}

.visit-address {
  font-style: normal;
  margin-bottom: 2rem;
}

.address-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-primary);
  padding: 1.25rem;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-300);
  transition: all var(--transition-base);
}

.address-link:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-sm);
}

.address-link svg {
  color: var(--green-700);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.visit-hours {
  margin-bottom: 2rem;
}

.visit-hours-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--sand-200);
  font-size: 0.9375rem;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  color: var(--text-secondary);
}

.hours-time {
  color: var(--text-primary);
  font-weight: 500;
}

.hours-row--closed .hours-time {
  color: var(--green-700);
  font-weight: 500;
}

.visit-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-row {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--green-800);
  padding: 0.625rem 1rem;
  background: var(--cream-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--sand-200);
  transition: all var(--transition-fast);
}

.contact-row:hover {
  border-color: var(--green-300);
  background: var(--green-50);
}

.contact-row svg {
  color: var(--green-600);
  flex-shrink: 0;
}

.visit-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 400px;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream-50);
}

/* ============================================
   Contact
   ============================================ */

.contact {
  padding: 7rem 0;
  background: var(--cream-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.contact-info-list svg {
  color: var(--green-700);
  flex-shrink: 0;
}

.contact-info-list a {
  color: var(--green-800);
  text-decoration: underline;
  text-decoration-color: rgba(6, 95, 70, 0.2);
  text-underline-offset: 3px;
  transition: all var(--transition-fast);
}

.contact-info-list a:hover {
  text-decoration-color: var(--green-700);
}

.contact-form {
  background: var(--sand-100);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--sand-200);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.375rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--cream-50);
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-tertiary);
  opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group--textarea textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  color: var(--green-800);
}

.form-success svg {
  color: var(--green-600);
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--green-950);
  padding: 3rem 0 2rem;
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(254, 253, 248, 0.5);
  max-width: 320px;
  text-align: right;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(254, 253, 248, 0.4);
}

.footer-address {
  font-size: 0.8125rem;
  color: rgba(254, 253, 248, 0.4);
}

.footer-address a {
  color: rgba(254, 253, 248, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(254, 253, 248, 0.2);
  text-underline-offset: 3px;
  transition: all var(--transition-fast);
}

.footer-address a:hover {
  color: var(--green-300);
  text-decoration-color: var(--green-400);
}

/* ============================================
   Scroll reveal (progressive enhancement)
   ============================================ */

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
  opacity: 0;
  transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal.revealed {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner {
    gap: 2.5rem;
  }

  .about-grid {
    gap: 3rem;
  }

  .menu-grid {
    gap: 1rem;
  }

  .testimonials-grid {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254, 253, 248, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6, 95, 70, 0.08);
    padding: 1rem 1.25rem 1.25rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }

  .nav-cta {
    margin-left: 0 !important;
    text-align: center;
    margin-top: 0.5rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 3rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2rem 0 3rem;
    gap: 2rem;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-details {
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  /* About */
  .about {
    padding: 4rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    order: -1;
  }

  .about-img-secondary {
    right: 0;
    bottom: -1.5rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }

  .stat-divider {
    width: 3rem;
    height: 1px;
  }

  /* Menu */
  .menu {
    padding: 4rem 0;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery */
  .gallery {
    padding: 4rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--tall {
    grid-column: span 2;
    aspect-ratio: 3 / 4;
  }

  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .gallery-item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  /* Testimonials */
  .testimonials {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Visit */
  .visit {
    padding: 4rem 0;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .visit-map {
    min-height: 300px;
  }

  /* Contact */
  .contact {
    padding: 4rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-tagline {
    text-align: left;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item--tall,
  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide),
  .gallery-item--wide {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }
}
