/* ============================================
   Linda Azoguenita Bakery & Restaurant
   Classic & Elegant — Terracotta + Sand
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #B85C38;
  color: #FDF6EE;
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 0 0 6px 6px;
  font-size: 0.875rem;
}
.skip-link:focus {
  top: 0;
}

/* ---- Section Utilities ---- */
.section-pad {
  padding: 6rem 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

.max-w-2xl {
  max-width: 672px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-12 { margin-top: 3rem; }

/* ---- Eyebrow ---- */
.section-eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 1rem;
}

/* ---- Section Title ---- */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #2C1F18;
  margin-bottom: 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #B85C38;
  color: #FDF6EE;
  border: 1.5px solid #B85C38;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: #A04E30;
  border-color: #A04E30;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184, 92, 56, 0.3);
}

.btn-outline {
  background: transparent;
  color: #2C1F18;
  border: 1.5px solid #2C1F18;
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: #2C1F18;
  color: #FDF6EE;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 246, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 92, 56, 0.1);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(44, 31, 24, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2C1F18;
  letter-spacing: 0.02em;
}
.nav-logo:hover {
  color: #B85C38;
}
.nav-logo-icon {
  color: #B85C38;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: 'Karla', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B5E54;
  transition: color 0.25s ease;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #B85C38;
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: #B85C38;
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-cta-btn {
  font-family: 'Karla', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FDF6EE;
  background: #B85C38;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  transition: all 0.25s ease;
}
.nav-cta-btn:hover,
.nav-cta-btn:focus-visible {
  background: #A04E30;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 101;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #2C1F18;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
}
.hamburger::before { transform: translateY(-6px); }
.hamburger::after  { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 72px 1.5rem 4rem;
  background: #FDF6EE;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 20% 50%, #B85C38 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, #B85C38 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, #B85C38 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 50px 50px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

/* Image Column */
.hero-image-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-img-main {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(44, 31, 24, 0.15);
}
.hero-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-accent {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(44, 31, 24, 0.12);
  width: 75%;
  margin-left: auto;
}
.hero-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B85C38;
  background: rgba(184, 92, 56, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  width: fit-content;
  margin-top: 0.5rem;
}

/* Text Column */
.hero-text-col {
  padding: 2rem 0 2rem 1rem;
}

.hero-eyebrow {
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  color: #2C1F18;
  margin-bottom: 1.5rem;
}

.hero-headline-accent {
  font-style: italic;
  color: #B85C38;
}

.hero-description {
  font-family: 'Karla', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #6B5E54;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 92, 56, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C1F18;
  line-height: 1;
}

.hero-stat-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B5E54;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(184, 92, 56, 0.25);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #B85C38;
  opacity: 0.6;
}
.hero-scroll-hint span {
  font-family: 'Karla', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #B85C38, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   About
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(44, 31, 24, 0.12);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 40%;
  background: #B85C38;
  border-radius: 8px;
  z-index: -1;
  opacity: 0.15;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-content p {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #6B5E54;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(184, 92, 56, 0.15);
}

.about-signature-img {
  opacity: 0.7;
}

.about-signature-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  font-style: italic;
  color: #2C1F18;
}

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

.menu-category {
  background: #FDF6EE;
  border: 1px solid rgba(184, 92, 56, 0.1);
  border-radius: 8px;
  padding: 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.menu-category:hover {
  box-shadow: 0 12px 40px rgba(44, 31, 24, 0.08);
  transform: translateY(-2px);
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(184, 92, 56, 0.1);
}

.menu-category-icon {
  color: #B85C38;
  flex-shrink: 0;
}

.menu-category-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2C1F18;
}

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

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

.menu-item-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #2C1F18;
}

.menu-item-desc {
  font-family: 'Karla', sans-serif;
  font-size: 0.875rem;
  color: #6B5E54;
  line-height: 1.5;
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(44, 31, 24, 0.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-item--tall {
  grid-column: span 4;
  aspect-ratio: 5/7;
}
.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
  grid-column: span 4;
  aspect-ratio: 3/2;
}
.gallery-item--wide {
  grid-column: span 12;
  aspect-ratio: 9/4;
}

/* ============================================
   Visit
   ============================================ */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.visit-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit-content .section-title {
  color: #FDF6EE;
}

.visit-content > p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(253, 246, 238, 0.75);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 0.5rem;
}

.visit-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-detail-icon {
  color: #E8C0B0;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.visit-detail-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8C0B0;
  margin-bottom: 0.375rem;
}

.visit-detail-value {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #FDF6EE;
}

.visit-phone {
  color: #FDF6EE;
  transition: color 0.2s ease;
}
.visit-phone:hover {
  color: #E8C0B0;
  text-decoration: underline;
}

.visit-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}
.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-content > p {
  font-size: 1rem;
  line-height: 1.75;
  color: #6B5E54;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  color: #2C1F18;
  transition: color 0.2s ease;
}
.contact-link:hover,
.contact-link:focus-visible {
  color: #B85C38;
}
.contact-link svg {
  color: #B85C38;
  flex-shrink: 0;
}
.contact-link--static {
  color: #6B5E54;
}
.contact-link--static svg {
  color: #B85C38;
}

/* Form */
.contact-form-wrap {
  background: #F5E6CC;
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: 'Karla', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2C1F18;
}

.form-input,
.form-textarea {
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  color: #2C1F18;
  background: #FDF6EE;
  border: 1.5px solid rgba(184, 92, 56, 0.2);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #a39080;
}
.form-input:focus,
.form-textarea:focus {
  border-color: #B85C38;
  box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

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

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(184, 92, 56, 0.08);
  border: 1px solid rgba(184, 92, 56, 0.2);
  border-radius: 6px;
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
  color: #6d3524;
}
.form-success svg {
  color: #B85C38;
  flex-shrink: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #2C1F18;
  color: #FDF6EE;
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(253, 246, 238, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #FDF6EE;
}
.footer-logo:hover {
  color: #E8C0B0;
}
.footer-logo-icon {
  color: #E8C0B0;
}

.footer-tagline {
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8C0B0;
}

.footer-desc {
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(253, 246, 238, 0.6);
  max-width: 280px;
}

.footer-heading {
  font-family: 'Karla', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #E8C0B0;
  margin-bottom: 1.25rem;
}

.footer-links,
.footer-hours-list,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
  color: rgba(253, 246, 238, 0.6);
  transition: color 0.2s ease;
}
.footer-link:hover,
.footer-link:focus-visible {
  color: #E8C0B0;
}

.footer-day {
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
  color: rgba(253, 246, 238, 0.6);
}
.footer-time {
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
  color: #FDF6EE;
  font-weight: 500;
}

.footer-contact-link,
.footer-contact-static {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
  color: rgba(253, 246, 238, 0.6);
  line-height: 1.6;
  transition: color 0.2s ease;
}
.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #E8C0B0;
}
.footer-contact-link svg,
.footer-contact-static svg {
  color: #E8C0B0;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
}

.footer-copy {
  font-family: 'Karla', sans-serif;
  font-size: 0.8125rem;
  color: rgba(253, 246, 238, 0.35);
}

/* ============================================
   Scroll Reveal (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fallback: always visible if JS disabled or reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 2rem;
  }
  .hero-text-col {
    padding-left: 0;
  }
  .about-grid,
  .visit-grid,
  .contact-grid {
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 4rem 1.25rem;
  }

  /* Mobile Nav */
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-link,
  .nav-cta-btn {
    font-size: 1rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 1.25rem 4rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-image-col {
    order: 2;
  }
  .hero-text-col {
    order: 1;
    padding: 0;
  }
  .hero-img-accent {
    width: 55%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .hero-scroll-hint {
    display: none;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-image-wrap {
    order: -1;
  }
  .about-image-accent {
    display: none;
  }

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

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--tall {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }
  .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;
  }

  /* Visit */
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .visit-image {
    order: -1;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-form-wrap {
    padding: 1.75rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2rem;
  }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }
  .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;
  }
}
