/* ============================================
   BONJOUR BAGEL CAFE — STYLESHEET
   Palette: Plum (#6B273B / #C8504A) + Amber (#F5C77E / #E8A03C)
   Fonts: Syne (headings) + Space Grotesk (body)
   ============================================ */

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

:root {
  --plum-deep: #6B273B;
  --plum-mid: #8C3A52;
  --plum-light: #C8504A;
  --plum-pale: #FDF0EE;
  --amber: #F5C77E;
  --amber-dark: #E8A03C;
  --amber-pale: #FFF8EE;
  --cream: #FFFAF5;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --white: #FFFFFF;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(107,39,59,0.08);
  --shadow-md: 0 8px 30px rgba(107,39,59,0.12);
  --shadow-lg: 0 20px 60px rgba(107,39,59,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

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

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

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

/* ============================================
   GEOMETRIC DECORATIONS
   ============================================ */
.geo {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

.geo--circle {
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--plum-deep);
  top: -200px;
  left: -200px;
}

.geo--rect {
  width: 400px;
  height: 400px;
  background: var(--amber);
  bottom: 10%;
  right: -100px;
  transform: rotate(15deg);
}

.geo--triangle {
  width: 0;
  height: 0;
  border-left: 200px solid transparent;
  border-right: 200px solid transparent;
  border-bottom: 346px solid var(--plum-light);
  top: 50%;
  right: 5%;
  opacity: 0.04;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 245, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107,39,59,0.08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 250, 245, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--plum-deep);
}

.logo--light {
  color: var(--white);
}

.logo__icon {
  color: var(--plum-deep);
  display: flex;
  align-items: center;
}

.logo--light .logo__icon {
  color: var(--amber);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav__link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--dark-soft);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--plum-deep);
  background: var(--plum-pale);
}

.nav__link--cta {
  background: var(--plum-deep);
  color: var(--white) !important;
}

.nav__link--cta:hover {
  background: var(--plum-mid);
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px 0;
}

.nav__toggle-line {
  display: block;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 26, 46, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--cream);
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-overlay.active .nav-overlay__inner {
  transform: translateX(0);
}

.nav-overlay__link {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}

.nav-overlay__link:hover {
  color: var(--plum-deep);
  padding-left: 8px;
}

.nav-overlay__link--cta {
  margin-top: 16px;
  border-bottom: none;
  background: var(--plum-deep);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-md);
  padding: 18px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.938rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--plum-deep);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(107,39,59,0.3);
}

.btn--primary:hover {
  background: var(--plum-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,39,59,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.btn--ghost:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  margin-bottom: 56px;
}

.section-header__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--plum-light);
  margin-bottom: 16px;
}

.section-header__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}

.section-header__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 1.125rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,80,74,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,199,126,0.12) 0%, transparent 50%),
    var(--cream);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--plum-light);
  margin-bottom: 24px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__headline {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__headline-accent {
  color: var(--plum-deep);
  position: relative;
}

.hero__headline-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: var(--amber);
  opacity: 0.4;
  z-index: -1;
  transform: skewX(-6deg);
}

.hero__subhead {
  font-size: 1.188rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--plum-deep);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.813rem;
  color: var(--gray);
  margin-top: 4px;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-light);
}

/* Hero visual */
.hero__visual {
  position: relative;
}

.hero__visual-stack {
  position: relative;
  padding-right: 60px;
}

.hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__img--main {
  width: 100%;
  aspect-ratio: 600/750;
}

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

.hero__img--accent {
  position: absolute;
  bottom: -40px;
  left: -50px;
  width: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--cream);
}

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

.hero__badge {
  position: absolute;
  top: 24px;
  right: -10px;
  background: var(--amber);
  color: var(--dark);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.hero__stripe {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--plum-deep) 0px,
    var(--plum-deep) 40px,
    var(--amber) 40px,
    var(--amber) 80px
  );
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--plum-deep);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 32px;
  align-items: center;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee__track span {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
}

.marquee__sep {
  color: var(--plum-light) !important;
  font-size: 0.625rem !important;
}

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

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(107,39,59,0.06);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu-card__img {
  position: relative;
  overflow: hidden;
}

.menu-card--featured .menu-card__img {
  aspect-ratio: 500/400;
}

.menu-card:not(.menu-card--featured) .menu-card__img {
  aspect-ratio: 400/300;
}

.menu-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.menu-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--amber);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-card__title {
  font-size: 1.375rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.menu-card__desc {
  font-size: 0.938rem;
  color: var(--gray);
  line-height: 1.7;
}

.menu__footer {
  text-align: center;
  margin-top: 48px;
  color: var(--gray);
  font-size: 0.938rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--plum-pale);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.06;
  top: -200px;
  right: -150px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__img-stack {
  position: relative;
  padding-left: 60px;
}

.about__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about__img--1 {
  width: 100%;
  aspect-ratio: 500/650;
}

.about__img--1 img,
.about__img--2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__img--2 {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 240px;
  border-radius: var(--radius-md);
  border: 4px solid var(--plum-pale);
  box-shadow: var(--shadow-md);
}

.about__accent-block {
  position: absolute;
  top: -20px;
  left: 0;
  width: 120px;
  height: 120px;
  background: var(--plum-deep);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about__content {
  position: relative;
  z-index: 1;
}

.about__text {
  font-size: 1.063rem;
  color: var(--dark-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__values {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--plum-deep);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__value strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.about__value span {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================
   VISIT
   ============================================ */
.visit {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.visit__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}

.visit__content {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background: var(--plum-deep);
  color: var(--white);
}

.visit__content .section-header__eyebrow {
  color: var(--amber);
}

.visit__content .section-header__title {
  color: var(--white);
}

.visit__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit__detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245,199,126,0.15);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit__detail strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 0.938rem;
  color: var(--white);
  margin-bottom: 4px;
}

.visit__detail span,
.visit__detail a {
  font-size: 0.938rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.visit__detail a:hover {
  color: var(--amber);
}

.visit__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.visit__actions .btn--primary {
  background: var(--amber);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(245,199,126,0.4);
}

.visit__actions .btn--primary:hover {
  background: var(--amber-dark);
}

.visit__actions .btn--ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.visit__actions .btn--ghost:hover {
  background: var(--white);
  color: var(--plum-deep);
  border-color: var(--white);
}

.visit__map {
  min-height: 480px;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--amber-pale);
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__text {
  font-size: 1.063rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.938rem;
  color: var(--dark-soft);
  transition: var(--transition);
}

.contact__channel:hover {
  color: var(--plum-deep);
}

.contact__channel svg {
  color: var(--plum-light);
  flex-shrink: 0;
}

/* Contact form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.938rem;
  color: var(--dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form__input:focus {
  border-color: var(--plum-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,80,74,0.1);
}

.form__input::placeholder {
  color: var(--gray);
}

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

.form__success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 16px;
  background: #ECFDF5;
  border-radius: var(--radius-sm);
  color: #065F46;
  font-size: 0.938rem;
  font-weight: 500;
}

.form__success svg {
  color: #10B981;
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__tagline {
  margin-top: 16px;
  font-size: 0.938rem;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  line-height: 1.6;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.938rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--amber);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.4);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer__bottom a:hover {
  color: var(--amber);
}

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

.reveal.visible {
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__grid {
    gap: 40px;
  }

  .hero__headline {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
  }

  .about__grid {
    gap: 48px;
  }

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

  .visit__map {
    min-height: 320px;
  }

  .visit__map iframe {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__headline {
    font-size: clamp(2.5rem, 10vw, 3.75rem);
  }

  .hero__visual {
    order: -1;
  }

  .hero__visual-stack {
    padding-right: 0;
  }

  .hero__img--accent {
    left: 10px;
    bottom: -20px;
    width: 200px;
  }

  .hero__badge {
    right: 10px;
    top: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    justify-content: center;
  }

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

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

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__img-stack {
    padding-left: 0;
    padding-bottom: 40px;
  }

  .about__img--2 {
    right: 0;
    bottom: -20px;
    width: 180px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact__form-wrap {
    padding: 24px;
  }

  .visit__content {
    padding: 40px 28px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .geo {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero__stat-divider {
    display: none;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .menu, .about, .visit, .contact {
    padding: 64px 0;
  }
}
