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

:root {
  --green:      #274b3a;
  --green-dark: #1e3a2c;
  --green-mid:  #2f5844;
  --gold:       #c9a84c;
  --gold-light: #d4b96a;
  --white:      #ffffff;
  --off-white:  #f5f3ee;
  --text-dark:  #1a1a1a;
  --text-mid:   #3a3a3a;
  --text-light: #6b6b6b;
  --font-serif: 'Recoleta', Georgia, serif;
  --font-sans:  'Larsseit', system-ui, sans-serif;
  --font-logo:  'Josefin Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

p, li, span, cite, label, input, button, a {
  font-family: var(--font-sans);
  font-weight: 400;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
}

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

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 140px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.nav-link:hover { opacity: 0.55; }
.nav-link.active { border-bottom: 1.5px solid var(--text-dark); padding-bottom: 2px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-links.open {
  display: flex !important;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  margin-top: 140px;
  background: var(--green);
  padding: 80px 56px 72px;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  max-width: 700px;
}

/* ── OUR STORY ── */
.story-section {
  background: var(--off-white);
  padding: 80px 56px;
}
.story-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-text h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.story-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.story-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-values {
  background: var(--white);
  padding: 80px 56px;
}
.story-values-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.story-values h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 48px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value-card {
  padding: 36px 32px;
  background: var(--off-white);
  border-radius: 14px;
}
.value-card-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 16px;
  opacity: 0.35;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ── OUR MENUS PAGE ── */
.menus-page-section {
  background: var(--off-white);
  padding: 80px 56px;
}
.menus-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.menus-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.menu-page-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.menu-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.menu-page-card-body {
  padding: 40px 40px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-page-card-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.menu-page-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.menu-page-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 28px;
}
.menu-page-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s;
}
.menu-page-card:hover .menu-page-card-footer { background: var(--green-mid); }
.menu-page-card-footer svg { transition: transform 0.2s; }
.menu-page-card:hover .menu-page-card-footer svg { transform: translateX(4px); }

/* ── GALLERY PAGE ── */
.gallery-page-section {
  background: var(--off-white);
  padding: 80px 56px;
}
.gallery-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-page-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
}
.gallery-page-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.3s;
}
.gallery-page-thumb:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

/* ── CONTACT PAGE ── */
.contact-section {
  background: var(--off-white);
  padding: 80px 56px;
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.contact-detail {
  margin-bottom: 28px;
}
.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}
.contact-detail p, .contact-detail a {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}
.contact-detail a { transition: color 0.2s; }
.contact-detail a:hover { color: var(--green); }
.contact-hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 20px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 44px;
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-form-wrap h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--green-mid); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-success svg { margin: 0 auto 16px; display: block; }
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-success p { font-size: 14px; color: var(--text-mid); }

.contact-map { margin-top: 60px; }
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 16px;
}

/* ── RESPONSIVE (inner pages) ── */
@media (max-width: 900px) {
  .page-hero { padding: 64px 32px 56px; }
  .story-section, .story-values, .menus-page-section,
  .gallery-page-section, .contact-section { padding: 64px 32px; }
  .story-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-image { aspect-ratio: 16/9; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .menus-page-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .page-hero { margin-top: 80px; padding: 48px 20px 40px; }
  .story-section, .story-values, .menus-page-section,
  .gallery-page-section, .contact-section { padding: 48px 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-page-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hours-grid { grid-template-columns: 1fr; }
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  padding: 4px;
  transition: opacity 0.2s;
}
.icon-btn:hover { opacity: 0.6; }

/* ── HERO ── */
.hero {
  position: relative;
  margin-top: 140px;
  height: calc(100vh - 64px);
  min-height: 520px;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  background: #2a2a20;
}

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

/* Fallback gradient when image is missing */
.hero-image-wrap:not(:has(img[src])) {
  background: linear-gradient(160deg, #3a3520 0%, #1e2918 60%, #162010 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.08) 0%,
    rgba(0,0,0,0.25) 60%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 40px 64px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 700px;
}

.btn-order-now {
  display: inline-block;
  padding: 12px 26px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  width: fit-content;
  transition: background 0.2s;
}
.btn-order-now:hover { background: var(--green-mid); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--green);
  overflow: hidden;
  padding: 14px 0;
  display: flex;
  width: 100%;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  animation: ticker 22s linear infinite;
  will-change: transform;
  flex-shrink: 0;
}

.ticker-track span {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.ticker-track .dot {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ── FAVORITES ── */
.favorites {
  background: var(--green);
  padding: 72px 40px 80px;
  text-align: center;
}

.favorites-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.favorites-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 48px;
}

/* Menu grid */
.menus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  color: var(--white);
  text-decoration: none;
}
.menu-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-3px);
}

.menu-card-icon {
  color: var(--gold-light);
}

.menu-card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.menu-card-arrow {
  color: rgba(255,255,255,0.5);
  margin-top: auto;
  transition: color 0.2s;
}
.menu-card:hover .menu-card-arrow { color: var(--gold-light); }

/* ── ABOUT ── */
.about {
  background: var(--off-white);
  padding: 80px 80px;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.about-inner p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.about-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.about-link:hover { opacity: 0.7; }

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--off-white);
  padding: 64px 80px 96px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.testimonial-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.testimonial-inner blockquote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  font-style: italic;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-inner cite {
  font-size: 13px;
  color: var(--text-light);
  font-style: normal;
}

/* ── GALLERY ── */
.gallery-section {
  width: 100%;
  overflow: hidden;
  background: var(--off-white);
}

.gallery-strip-wrap {
  width: 100%;
  overflow: hidden;
}

.gallery-strip {
  display: flex;
  gap: 6px;
  animation: galleryScroll 50s linear infinite;
  will-change: transform;
  width: max-content;
}

.gallery-strip:hover {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gallery-thumb {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s;
  display: block;
}

.gallery-thumb:hover img {
  transform: scale(1.06);
  opacity: 0.88;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 28px;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  z-index: 1001;
}
.lb-close:hover { opacity: 1; }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 48px;
  line-height: 1;
  width: 56px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s;
  z-index: 1001;
}
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ── MAP ── */
.map-section {
  width: 100%;
  height: 460px;
  display: block;
  line-height: 0;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── VISIT ── */
.visit {
  background: var(--green);
  padding: 64px 56px;
}

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

.visit-heading {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1;
}

.visit-col p {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.visit-link {
  font-size: 13px;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.visit-link:hover { opacity: 0.7; }

/* ── FOOTER ── */
.footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 22px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--white);
  transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.8; }

.social-icon--email {
  background: rgba(255,255,255,0.15);
}

.social-icon--instagram {
  background: #e1306c;
}

.social-icon--tiktok {
  background: rgba(255,255,255,0.15);
}

.footer-bottom-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 20px 40px;
}

.footer-newsletter-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.payment-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pay-icon {
  display: flex;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  height: 24px;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cookie-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.cookie-link:hover { color: var(--white); }

.copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .menus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .visit-col--title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-direction: column;
    gap: 0;
    z-index: 99;
  }
  .nav-links .nav-link {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 15px;
  }
  .nav-hamburger { display: flex; }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0 20px;
    height: 80px;
  }

  .logo {
    width: 80px;
    height: 80px;
    background-size: 80px 80px;
    background-position: 0px -26px;
  }

  .logo-img {
    width: 80px;
    height: 80px;
  }

  .hero {
    margin-top: 80px;
    height: calc(80vh - 80px);
    min-height: 340px;
  }

  .hero-content { padding: 0 20px 36px; }

  .hero-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .favorites { padding: 56px 20px 64px; }

  .menus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about { padding: 56px 24px; }
  .testimonial { padding: 48px 24px 72px; }
  .atmosphere { height: 300px; }

  .visit { padding: 56px 20px; }
  .visit-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .visit-heading { font-size: 36px; }

  .footer-top { padding: 18px 20px; }
  .footer-newsletter { padding: 24px 20px; flex-direction: column; }
  .footer-newsletter-right { align-items: flex-start; }
  .payment-icons { justify-content: flex-start; }
}

@media (max-width: 420px) {
  .menus-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.2); border-radius: 4px; }
  .newsletter-btn { border-radius: 4px; }
}
