/* ===================================
   AM Donuts and Kolaches — Styles
   Teal + Slate Grey | Editorial
   =================================== */

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

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #080d18;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--slate-800);
  background: var(--slate-50);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-sm);
  background: var(--teal-600);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-sm);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* TYPOGRAPHY */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate-900);
  margin-bottom: var(--space-lg);
}

.text-accent {
  color: var(--teal-600);
}

.font-serif {
  font-family: var(--font-serif);
  font-style: italic;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-600);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
}

.btn-primary:hover {
  background: var(--teal-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--slate-800);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--slate-300);
}

.btn-outline:hover {
  border-color: var(--teal-600);
  color: var(--teal-600);
}

.btn-outline-light {
  background: transparent;
  color: white;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(15, 23, 42, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  color: var(--slate-900);
}

.logo-mark {
  color: var(--teal-600);
}

.logo-text {
  letter-spacing: -0.01em;
}

.logo-accent {
  color: var(--teal-600);
  font-weight: 400;
}

.logo--light {
  color: white;
}

.logo--light .logo-accent {
  color: var(--teal-200);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal-600);
  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--teal-600);
}

.main-nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--slate-800);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--slate-50);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(13, 148, 136, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding: var(--space-3xl) 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--teal-600);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--slate-900);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-title .text-accent {
  color: var(--teal-600);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-500);
  max-width: 480px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--slate-400);
}

.meta-dot {
  color: var(--slate-300);
}

.hero-visual {
  position: relative;
}

.hero-image-stack {
  position: relative;
  height: 680px;
}

.hero-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.15);
}

.hero-img--main {
  width: 380px;
  height: 500px;
  top: 0;
  right: 0;
}

.hero-img--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--accent {
  width: 260px;
  height: 320px;
  bottom: 40px;
  right: 140px;
  border: 6px solid var(--slate-50);
}

.hero-img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 200px;
  left: -20px;
  background: var(--teal-600);
  color: white;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.3);
  z-index: 2;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--slate-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--slate-400), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* MARQUEE */
.marquee {
  background: var(--slate-900);
  padding: var(--space-md) 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  gap: var(--space-lg);
  animation: marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate-300);
  flex-shrink: 0;
}

.marquee-dot {
  color: var(--teal-500);
  flex-shrink: 0;
  font-size: 0.5rem;
  align-self: center;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ABOUT */
.about {
  padding: var(--space-4xl) 0;
  background: var(--slate-50);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-images {
  position: relative;
  height: 680px;
}

.about-img-main {
  width: 100%;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

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

.about-img-small {
  position: absolute;
  bottom: 0;
  right: -40px;
  width: 240px;
  height: 300px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--slate-50);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.about-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stamp {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-content {
  padding: var(--space-xl) 0;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-500);
  margin-bottom: var(--space-md);
}

.about-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--slate-200);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-600);
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* MENU */
.menu {
  padding: var(--space-4xl) 0;
  background: white;
}

.menu-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.menu-card {
  background: var(--slate-50);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.menu-card-img {
  height: 240px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.05);
}

.menu-card-content {
  padding: var(--space-lg);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: var(--space-sm);
}

.menu-card-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate-500);
  margin-bottom: var(--space-md);
}

.menu-card-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.menu-card-list li {
  font-size: 0.8125rem;
  color: var(--slate-600);
  padding-left: 16px;
  position: relative;
}

.menu-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-400);
}

.menu-note {
  text-align: center;
  margin-top: var(--space-2xl);
  font-size: 0.9375rem;
  color: var(--slate-400);
  font-style: italic;
}

/* FEATURED */
.featured {
  padding: var(--space-4xl) 0;
  background: var(--slate-900);
  color: white;
  overflow: hidden;
}

.featured-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.featured-text .section-eyebrow {
  color: var(--teal-400);
}

.featured-text .section-title {
  color: white;
}

.featured-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-400);
  margin-bottom: var(--space-md);
}

.featured-text .btn-primary {
  margin-top: var(--space-lg);
}

.featured-visual {
  position: relative;
  height: 680px;
}

.featured-img-main {
  width: 100%;
  height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.featured-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-img-float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 5px solid var(--slate-900);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.featured-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GALLERY */
.gallery {
  padding: var(--space-4xl) 0;
  background: var(--slate-50);
}

.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.2), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

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

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

.gallery-item--tall {
  grid-column: span 4;
  height: 420px;
}

.gallery-item--wide {
  grid-column: span 8;
  height: 280px;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
  grid-column: span 4;
  height: 280px;
}

/* VISIT */
.visit {
  padding: var(--space-4xl) 0;
  background: white;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: stretch;
}

.visit-info {
  padding: var(--space-xl) 0;
}

.visit-info .section-title {
  margin-bottom: var(--space-2xl);
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.visit-detail {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.visit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 4px;
}

.visit-value {
  display: block;
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.6;
}

.visit-link {
  color: var(--teal-600);
  font-weight: 600;
  transition: color var(--transition);
}

.visit-link:hover {
  color: var(--teal-700);
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

/* FOOTER CTA */
.footer-cta {
  padding: var(--space-4xl) 0;
  background: var(--teal-600);
  text-align: center;
}

.footer-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.footer-cta-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-200);
  margin-bottom: var(--space-sm);
}

.footer-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: var(--space-xl);
}

.footer-cta-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal-100);
}

.footer-cta-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.footer-cta-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* FOOTER */
.site-footer {
  background: var(--slate-950);
  color: var(--slate-400);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--slate-800);
}

.footer-brand p {
  margin-top: var(--space-md);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-300);
  margin-bottom: var(--space-md);
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a,
.footer-contact a {
  font-size: 0.9375rem;
  color: var(--slate-400);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  font-size: 0.8125rem;
  color: var(--slate-500);
}

/* SCROLL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-layout {
    gap: var(--space-2xl);
  }

  .hero-img--main {
    width: 300px;
    height: 400px;
  }

  .hero-img--accent {
    width: 200px;
    height: 250px;
    right: 100px;
  }

  .hero-image-stack {
    height: 520px;
  }

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

  .menu-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(248, 250, 252, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--slate-200);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: var(--space-md);
  }

  .main-nav a {
    font-size: 1.0625rem;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: var(--space-3xl);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding: var(--space-xl) 0;
  }

  .hero-visual {
    order: -1;
  }

  .hero-image-stack {
    height: 380px;
  }

  .hero-img--main {
    width: 220px;
    height: 280px;
    right: 0;
  }

  .hero-img--accent {
    width: 160px;
    height: 200px;
    right: 60px;
    bottom: 20px;
  }

  .hero-badge {
    left: 0;
    bottom: 140px;
    font-size: 0.8125rem;
    padding: var(--space-sm) var(--space-md);
  }

  .hero-title {
    font-size: clamp(2.25rem, 8vw, 3rem);
  }

  .hero-scroll-indicator {
    display: none;
  }

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

  .about-images {
    height: 420px;
  }

  .about-img-small {
    right: -10px;
    width: 180px;
    height: 220px;
  }

  .about-stamp {
    width: 60px;
    height: 60px;
  }

  .about-content {
    padding: var(--space-lg) 0;
  }

  .about-stats {
    gap: var(--space-lg);
  }

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

  .menu-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .featured-layout {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    height: 420px;
    order: -1;
  }

  .featured-img-main {
    height: 360px;
  }

  .featured-img-float {
    width: 160px;
    height: 160px;
    left: -10px;
    bottom: -10px;
  }

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

  .gallery-item--tall {
    grid-column: span 2;
    height: 280px;
  }

  .gallery-item--wide {
    grid-column: span 2;
    height: 220px;
  }

  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    grid-column: span 1;
    height: 200px;
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-image-stack {
    height: 300px;
  }

  .hero-img--main {
    width: 170px;
    height: 220px;
  }

  .hero-img--accent {
    width: 130px;
    height: 160px;
    right: 40px;
  }

  .hero-badge {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .about-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

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

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

  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
    height: 240px;
  }

  .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    height: 220px;
  }

  .footer-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}
