/* =========================================================
   Style.css (FINAL FULL) — MILA MIRISSA
   ✅ Same design system / same sizes
   ✅ Kreme-style hero centering
   ✅ Mobile optimized (no horizontal scroll)
   ✅ Contact block: details + map + WhatsApp reservation
   ✅ Footer (fixed like photo) + marquee
========================================================= */

/* =========================
   VARIABLES
========================= */
:root {
  --bg: #FBF3D6;
  --card: #F6EBC6;
  --green: #0B3B2E;
  --greenDark: #072B22;
  --pill: rgba(11, 59, 46, 0.08);
  --white: #FFFFFF;
  --shadow: rgba(11, 59, 46, 0.04);
  --transition: all 0.3s ease;

  --background-color: var(--bg);
  --hero-spacing: 48px;

  --cream: #FBF3D6;
  --sage-green: #e8f1e1;
  --deep-green: #0B3B2E;
  --off-white: #ffffff;
  --overlay: rgba(0, 0, 0, 0.45);

  --radius-container: 32px;
  --radius-pill: 20px;

  --shadow-container: 0 10px 40px rgba(0, 0, 0, 0.05);
  --shadow-pill: 0 6px 20px rgba(0, 0, 0, 0.07);

  --transition-duration: 1s;
  --easing: cubic-bezier(0.33, 1, 0.68, 1);
}

/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--green);
  min-height: 100vh;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

address {
  font-style: normal;
}

/* =========================
   COMMON LINKS / BUTTONS
========================= */
.home-button {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.home-button:hover {
  opacity: 0.8;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
}

.logo-mark img {
  height: 24px;
  width: auto;
  display: block;
}

/* =========================
   HERO WRAPPER / CARD
========================= */
.hero-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  min-height: 80vh;
}

.card-container {
  background-color: var(--card);
  margin-top: 20px;
  border-radius: var(--radius-container);
  padding: 30px 40px;
  height: 90vh;
  min-height: 700px;

  display: flex;
  flex-direction: column;

  box-shadow: 0 8px 32px var(--shadow);
  position: relative;
  overflow: hidden;

  width: 100%;
  max-width: 1400px;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--green);
  text-decoration: none;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

/* center pills */
.nav-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav-pills {
  display: flex;
  background-color: var(--pill);
  border-radius: 100px;
  padding: 6px;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-link {
  text-decoration: none;
  color: var(--green);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  white-space: nowrap;
}

.nav-link:hover {
  background-color: rgba(11, 59, 46, 0.12);
}

.nav-link.active {
  background-color: var(--greenDark);
  color: var(--white);
}

/* right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}

.phone-link:hover {
  color: var(--greenDark);
}

.phone-link i {
  font-size: 0.9rem;
}

.cart-pill {
  background-color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cart-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.cart-count {
  background-color: var(--greenDark);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

/* =========================
   HERO TITLE CENTERING
========================= */
.hero-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

/* Contact hero title */
.contact-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 18vw, 16rem);
  color: var(--green);
  text-align: center;
  line-height: 0.85;
  letter-spacing: -3px;
  margin: 0;
  opacity: 0;
  transform: translateY(-60px);
  animation: slideDown 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  text-transform: uppercase;
  font-weight: 400;
  display: block;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* bottom content (hero) */
.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 20px;
}

.tagline p,
.address p {
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--green);
}

.address {
  text-align: right;
}

/* =====================
   CONTACT BLOCK (DETAILS + MAP + WA)
===================== */
.mm-contact-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 60px 20px 80px;
}

/* Shared card */
.mm-contact-card,
.mm-map-card,
.mm-reserve-card {
  width: 94vw;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 32px;
  box-shadow: 0 8px 32px var(--shadow);
  overflow: hidden;
}

/* Contact details */
.mm-contact-card {
  padding: 34px 34px 28px;
}

.mm-contact-head {
  text-align: center;
  margin-bottom: 22px;
}

.mm-contact-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -2px;
  color: var(--green);
  text-transform: uppercase;
  font-weight: 400;
}

.mm-contact-sub {
  margin-top: 8px;
  color: rgba(11, 59, 46, 0.8);
  font-size: 1.05rem;
}

.mm-contact-email {
  font-weight: 700;
  color: var(--greenDark);
}

.mm-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.mm-contact-item {
  background: rgba(11, 59, 46, 0.06);
  border-radius: 24px;
  padding: 18px;
}

.mm-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--greenDark);
  margin-bottom: 8px;
}

.mm-text {
  color: var(--green);
  font-size: 1rem;
  line-height: 1.45;
}

.mm-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green);
  font-weight: 600;
}

.mm-link:hover {
  opacity: 0.85;
}

.mm-social {
  display: flex;
  gap: 10px;
}

.mm-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-decoration: none;
}

.mm-social-btn:hover {
  transform: translateY(-2px);
}

/* Map */
.mm-map-card {
  padding: 8px;
}

.mm-map-iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 28px;
  filter: grayscale(20%) contrast(1.05);
  transition: var(--transition);
  display: block;
}

.mm-map-iframe:hover {
  filter: grayscale(0%) contrast(1);
}

/* Reserve card */
.mm-reserve-card {
  max-width: 1000px;
  padding: 44px;
  position: relative;
}

.mm-reserve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.mm-reserve-head {
  text-align: center;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.mm-reserve-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--deep-green);
}

.mm-reserve-sub {
  margin-top: 8px;
  color: rgba(11, 59, 46, 0.75);
  font-size: 1.05rem;
}

/* Form */
.mm-form {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.mm-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.mm-field {
  flex: 1;
}

.mm-req {
  color: #c0392b;
  margin-left: 2px;
}

.mm-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 59, 46, 0.15);
  background: var(--white);
  color: var(--green);
  outline: none;
  transition: var(--transition);
  font-size: 1rem;
}

.mm-input:hover {
  border-color: rgba(11, 59, 46, 0.3);
}

.mm-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 59, 46, 0.1);
}

.mm-input::placeholder {
  color: rgba(11, 59, 46, 0.4);
  font-weight: 300;
}

.mm-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230B3B2E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 50px;
}

.mm-actions {
  text-align: center;
  margin-top: 26px;
}

.mm-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.mm-wa-btn:hover {
  background: #20b859;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.mm-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(11, 59, 46, 0.6);
  font-style: italic;
}

/* ==================== FOOTER (FIXED LIKE PHOTO) ==================== */
.footer-hero {
  background-color: transparent;
  width: 100%;
  padding: var(--hero-spacing) 20px;
}

.footer-shell {
  width: 94vw;
  max-width: 1400px;
  margin: 0 auto;
  background-color: var(--card);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow);
}

.footer-top {
  padding: clamp(28px, 4vw, 44px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(30px, 4vw, 50px);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.column-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--deep-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: clamp(20px, 2.5vw, 30px);
  position: relative;
}

.column-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--deep-green);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  line-height: 1.5;
  font-weight: 400;
}

.big-statement {
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  color: var(--deep-green);
  line-height: 1.3;
  margin-bottom: clamp(25px, 3vw, 35px);
  max-width: 300px;
}

.action-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-buttons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 44px;
  height: 44px;
  background-color: var(--deep-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}

.social-btn:hover {
  background-color: #0f2c25;
  transform: translateY(-2px);
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: transparent;
  color: var(--deep-green);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(14px, 1.1vw, 16px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--deep-green);
  transition: var(--transition);
}

.menu-btn:hover {
  background-color: var(--deep-green);
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.footer-nav .nav-link {
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--deep-green);
  text-decoration: none;
  transition: var(--transition);
  padding: 0;
  display: inline-block;
}

.footer-nav .nav-link:hover {
  color: #0f2c25;
  transform: translateX(4px);
}

.footer-nav .nav-link.active {
  background-color: var(--deep-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

/* marquee */
.footer-bottom {
  margin-top: clamp(30px, 4vw, 50px);
  position: relative;
  width: 100%;
  overflow: hidden;
  height: clamp(220px, 28vw, 420px);
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(30px, 5vw, 70px);
}

.huge-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(150px, 22vw, 520px);
  color: var(--deep-green);
  line-height: 0.72;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
}

.huge-text .marquee-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: footerMarquee 50s linear infinite;
}

.huge-text .marquee-track + .marquee-track {
  margin-left: 2.2rem;
}

.marquee-logo {
  height: 0.66em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.35em;
  transform: translateY(-0.03em);
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

@keyframes footerMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* =========================
   MOBILE MENU — REUSABLE
========================= */

/* HAMBURGER */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-line {
  width: 28px;
  height: 2.4px;
  background: var(--green, #0B3B2E);
  transition: 0.3s ease;
}

/* ACTIVE → X */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 998;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* BODY LOCK */
body.menu-open {
  overflow: hidden;
}

/* MENU PANEL */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 360px);
  height: 100vh;
  background: var(--card, #F6EBC6);
  transform: translateX(110%);
  transition: 0.3s ease;
  z-index: 1001;
  padding: 90px 26px 26px;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

/* LINKS */
.mobile-menu-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-menu-links .nav-link {
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--green, #0B3B2E);
  font-size: 1.05rem;
}

.mobile-menu-links .nav-link.active {
  background: var(--greenDark, #072B22);
  color: #fff;
}

/* FOOTER */
.mobile-menu-bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-divider {
  height: 1px;
  background: rgba(11, 59, 46, 0.15);
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--green, #0B3B2E);
  font-weight: 500;
}

.mobile-socials {
  display: flex;
  gap: 12px;
}

/* VISIBILITY */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .nav-center,
  .nav-right {
    display: none;
  }
}

/* =========================
   MOBILE HAMBURGER — FORCE LEFT
========================= */

/* hero card relative */
.card-container {
  position: relative;
}

/* hamburger button left-top */
.hamburger-btn {
  position: absolute;
  top: 48px;
  left: 36px;
  z-index: 2000;
  transform: scale(1.15);
}

/* menu page safety */
body.menu-page .hamburger-btn {
  top: 48px;
  left: 36px;
  right: auto;
}

/* small phones */
@media (max-width: 480px) {
  .hamburger-btn {
    top: 40px;
    left: 24px;
    transform: scale(1.1);
  }

  .hamburger-line {
    width: 26px;
  }
}

/* =========================
   MOBILE HERO – SHOW PHONE + CART
   (match screenshot)
========================= */
@media (max-width: 768px) {

  /* navbar layout */
  .navbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    row-gap: 14px;
  }

  /* logo center */
  .logo {
    grid-column: 1 / -1;
    justify-content: center;
  }

  /* hamburger left */
  .hamburger-btn {
    grid-column: 1;
    justify-self: start;
    margin-top: 6px;
  }

  /* phone + cart center under logo */
  .nav-right {
    display: flex !important;
    grid-column: 2 / -1;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    transform: translateY(6px);
  }

  /* hide desktop pills only */
  .nav-center {
    display: none;
  }
}

/* extra small phones */
@media (max-width: 480px) {
  .nav-right {
    margin-top: 18px;
    transform: translateY(8px);
  }
}

/* =========================
   MENU PAGE — NAVBAR ORDER FIX (match Home/About mobile UI)
   Logo -> Phone/Cart -> Nav Pills
========================= */

/* Tablet + Mobile */
@media (max-width: 1024px) {
  body.menu-page .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  /* 1) Logo on top */
  body.menu-page .logo {
    order: 1;
  }

  /* 2) Phone + cart comes next */
  body.menu-page .nav-right {
    order: 2;
    width: 100%;
    justify-content: center;
    gap: 16px;
    margin-top: 6px;
  }

  /* 3) Nav pills at bottom */
  body.menu-page .nav-center {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }

  body.menu-page .nav-pills {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   RESPONSIVE (GENERAL)
========================= */
@media (max-width: 1024px) {
  .card-container {
    padding: 26px;
    height: auto;
    min-height: 680px;
  }

  .contact-hero-title {
    font-size: clamp(5rem, 14vw, 10rem);
    letter-spacing: -2px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Contact page navbar order adjustment */
  body.contact-page .navbar {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 14px !important;
  }

  body.contact-page .logo {
    order: 1 !important;
  }

  body.contact-page .nav-right {
    order: 2 !important;
    width: 100% !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-top: 6px !important;
  }

  body.contact-page .nav-center {
    order: 3 !important;
    width: 100% !important;
    justify-content: center !important;
    margin-top: 4px !important;
  }

  body.contact-page .nav-pills {
    width: 100% !important;
    justify-content: center !important;
  }
}

@media (max-width: 900px) {
  .mm-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-wrapper {
    padding: 18px 14px;
  }

  .card-container {
    padding: 22px 18px;
    min-height: 620px;
  }

  .bottom-content {
    gap: 14px;
    padding-bottom: 10px;
  }

  .address {
    text-align: left;
  }

  .tagline p,
  .address p {
    font-size: 1rem;
  }

  .mm-map-iframe {
    height: 350px;
  }

  .mm-reserve-card {
    padding: 28px 22px;
  }

  .mm-reserve-title {
    font-size: 2.4rem;
  }

  .mm-row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
  }

  .mm-field {
    margin-bottom: 16px;
  }

  .mm-input {
    font-size: 16px;
    padding: 12px 16px;
  }

  .mm-wa-btn {
    width: 100%;
    padding: 14px 20px;
  }

  .footer-hero {
    padding: 40px 15px;
  }

  .footer-shell {
    width: 92vw;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .big-statement {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .card-container {
    padding: 18px 14px;
    min-height: 560px;
  }

  .mm-contact-block {
    padding: 40px 16px 60px;
  }

  .mm-map-iframe {
    height: 300px;
  }

  .nav-pills {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }

  .contact-hero-title {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .huge-text .marquee-track {
    animation: none;
  }
}

/* =========================
   REMOVE underline in menu link (safe)
========================= */
.menu-hero-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.menu-hero-link:focus,
.menu-hero-link:active,
.menu-hero-link:visited {
  outline: none;
  text-decoration: none;
}

.menu-hero-link * {
  text-decoration: none !important;
}