/* =============================================
   MAISON ROYALE — Luxury Restaurant CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────── */
:root {
  --primary-color: #c9a96e;
  --primary-light: #e8d5ad;
  --bg-dark: #080806;
  --bg-mid: #111109;
  --text-light: #f5f4ed;
  --text-muted: #b8b49a;
  --border-gold: rgba(201, 169, 110, 0.3);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
  cursor: default;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Typography ────────────────────────────── */
.title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-light);
}
.outline-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
  line-height: 1.1;
  letter-spacing: 0.04em;
}
.pre-title {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-color);
  display: block;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.paragraph {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.9;
  color: #f5f4ed;
  max-width: 600px;
}
/* Brighter paragraph on dark overlay / parallax backgrounds */
.parallax-content .paragraph,
.newsletter-content .paragraph,
.text-center .paragraph,
.page-hero .paragraph {
  color: #f5f4ed;
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,0.65);
}

/* ── Layout ────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.spacing {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color var(--transition), background var(--transition);
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn:hover { color: #000000; }
.btn span, .btn > * { position: relative; z-index: 1; }

/* ── GSAP Fade-in ──────────────────────────── */
.g-fadein {
  opacity: 0;
  transform: translateY(30px);
}
.g-fadein.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ── Entrance Animation ────────────────────── */
#entrance-anim {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#entrance-logo {
  width: 220px;
  opacity: 0;
  filter: brightness(0) invert(1);
}
#entrance-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 2s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* ── Header / Nav ──────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition);
}
#header.scrolled {
  background: rgba(8, 8, 6, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-gold);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  width: 140px;
  filter: brightness(0) invert(1);
  transition: width var(--transition);
}
#header.scrolled .nav-logo img { width: 110px; }

/* Hamburger */
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  z-index: 200;
}
.menu-label {
  display: none;
}
.menu-toggle:hover .menu-label { color: var(--primary-color); }
.hamburger-icon {
  width: 28px;
  display: flex; flex-direction: column; gap: 5px;
}
.line {
  display: block;
  height: 1px;
  background: var(--text-light);
  transition: all 0.4s ease;
}
.line-1 { width: 100%; }
.line-2 { width: 75%; margin-left: auto; }
.line-3 { width: 50%; margin-left: auto; }
.menu-toggle.open .line-1 { transform: translateY(6px) rotate(45deg); width: 100%; }
.menu-toggle.open .line-2 { opacity: 0; transform: scaleX(0); }
.menu-toggle.open .line-3 { transform: translateY(-6px) rotate(-45deg); width: 100%; margin-left: 0; }

/* Full-screen Nav Overlay */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.overlay.open { opacity: 1; pointer-events: all; }
.overlay-content {
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('parallax_dining_1773305668421.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.overlay.open .overlay-content { transform: translateX(0); }
.overlay-info {
  background: var(--bg-dark);
  border-left: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.05s;
}
.overlay.open .overlay-info { transform: translateX(0); }

/* Nav menu links */
#menu-main-menu { display: flex; flex-direction: column; gap: 0.5rem; }
#menu-main-menu li a {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text-light);
  display: inline-block;
  transition: color var(--transition), transform var(--transition);
  position: relative;
}
#menu-main-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--primary-color);
  transition: width var(--transition);
}
#menu-main-menu li a:hover { color: var(--primary-color); }
#menu-main-menu li a:hover::after { width: 100%; }
.overlay-info .logo { width: 140px; margin-bottom: 2.5rem; filter: brightness(0) invert(1); }
.overlay-info address { line-height: 2; font-size: 0.82rem; color: var(--text-muted); }
.overlay-info address a { color: var(--primary-color); transition: opacity var(--transition); }
.overlay-info address a:hover { opacity: 0.7; }
.social-media-icons { display: flex; gap: 1.2rem; margin-top: 2rem; }
.social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-size: 0.85rem;
  border-radius: 50%;
  transition: all var(--transition);
}
.social-icon:hover { border-color: var(--primary-color); color: var(--primary-color); transform: scale(1.1); }

/* ── Hero Section ──────────────────────────── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-image-container {
  position: absolute;
  inset: 0;
  background: url('hero_background_1773305590847.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-image-container.loaded { transform: scale(1); }
.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,8,6,0.55) 0%, rgba(8,8,6,0.68) 60%, rgba(8,8,6,0.88) 100%);
}
.hero-content-container {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content-container h1 { line-height: 1; }
.hero_title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--text-light);
  display: block;
}
.hero-outline {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  -webkit-text-stroke: 1px var(--primary-color);
  color: transparent;
  display: block;
  line-height: 1;
}
.hero-content-container .paragraph {
  margin-top: 1.5rem;
  max-width: 500px;
  color: rgba(240,235,224,0.9);
  font-weight: 500;
}
.michelin-icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.michelin-star { width: 60px; filter: drop-shadow(0 0 12px rgba(201,169,110,0.5)); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}
.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(var(--primary-color), transparent);
  animation: scrollDrop 1.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ── Horizontal Marquee ────────────────────── */
.horizontal-scroll {
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.horizontal-title {
  white-space: nowrap;
  display: flex;
  width: max-content;
  margin: 0.3rem 0;
}
.horizontal-title.no-reverse { animation: marqueeLeft 25s linear infinite; }
.horizontal-title.reverse { animation: marqueeRight 25s linear infinite; }
@keyframes marqueeLeft { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqueeRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.horizontal-title .marquee-text {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
.marquee-dot { color: var(--primary-color); font-size: 0.5em; }

/* ── About Section ─────────────────────────── */
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-text .title { margin-bottom: 1.5rem; }
.about-text .paragraph { margin-bottom: 2rem; }
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-1 { grid-column: 1; grid-row: 1 / span 2; height: 420px; }
.image-2 { grid-column: 2; grid-row: 1; height: 200px; }
.image-3 { grid-column: 2; grid-row: 2; height: 210px; }

/* ── Parallax Section ──────────────────────── */
.parallax-container {
  background: linear-gradient(rgba(0,0,0,0.70), rgba(0,0,0,0.70)),
    url('parallax_dining_1773305668421.png') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}
.parallax-content {
  text-align: center;
  max-width: 650px;
}
.parallax-content .title { margin-bottom: 1.2rem; }
.parallax-content .paragraph { margin: 0 auto 2rem; text-align: center; }
.text-center { text-align: center; }

/* ── Featured Menu ─────────────────────────── */
.featured-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 600px;
}
.featured-menu-list {
  padding-right: 4rem;
  display: flex;
  flex-direction: column;
}
.featured-menu-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.featured-menu-item:first-of-type { 
  border-top: 1px solid var(--border-gold); 
  margin-top: 1.5rem;
}
.featured-menu-item:hover { background: rgba(201,169,110,0.04); }
.featured-menu-image {
  width: 70px; height: 70px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}
.featured-menu-content { flex: 1; }
.featured-menu-pre-title {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 0.3rem;
}
.featured-menu-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.featured-menu-title span {
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--primary-color);
  font-weight: 300;
}
.featured-menu-title span::before { content: '€'; margin-right: 2px; font-size: 0.7em; }
.featured-image-container {
  background: url('menu_bg_1773305786486.png') center/cover no-repeat;
  min-height: 500px;
  position: sticky;
  top: 80px;
  align-self: start;
  overflow: hidden;
}
/* Hover dish name overlay */
.featured-image-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.featured-image-label.visible {
  opacity: 1;
  transform: translateY(0);
}
.featured-image-label .label-pre {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary-color);
  font-family: var(--font-sans);
  display: block;
  margin-bottom: 0.4rem;
}
.featured-image-label .label-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-light);
  font-weight: 300;
  display: block;
}
.featured-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(8,8,6,0.4), rgba(8,8,6,0.4));
}
.featured-menu-arrow {
  margin-left: auto;
  width: 30px; height: 30px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--primary-color);
  transform: rotate(-45deg);
  transition: transform var(--transition), border-color var(--transition);
}
.featured-menu-item:hover .featured-menu-arrow {
  transform: rotate(0deg);
  border-color: var(--primary-color);
}


.slider-header { text-align: center; margin-bottom: 3rem; }
.slider-header .title { margin-bottom: 1.5rem; }
.slider-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.slide {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: block;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}
.slide:hover .slide-bg { transform: scale(1.05); }
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,6,0.85) 0%, rgba(8,8,6,0.2) 60%);
  z-index: 1;
}
.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.slide-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ── Newsletter ────────────────────────────── */
.newsletter-section {
  background: linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
    url('newsletter_bg_1773305769321.png') center/cover fixed;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.newsletter-content .title { margin-bottom: 1rem; }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.newsletter-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-gold);
  padding: 1rem 0;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: var(--text-muted); }
.newsletter-form input:focus { border-color: var(--primary-color); }
.newsletter-form .btn { margin-top: 0.5rem; align-self: flex-start; }

/* ── Footer ────────────────────────────────── */
footer {
  border-top: 1px solid var(--border-gold);
}
.footer-top {
  padding: 4rem 0 0;
}
.footer-instagram-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 4rem;
}
.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.instagram-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.instagram-item:hover img { transform: scale(1.05); }
.instagram-item .insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  font-size: 1.5rem;
  color: white;
}
.instagram-item:hover .insta-overlay { opacity: 1; }

.footer-middle {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  padding: 4rem 0;
  border-top: 1px solid var(--border-gold);
  align-items: start;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-nav ul li a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav ul li a:hover { color: var(--primary-color); }
.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}
.footer-logo-center { text-align: center; }
.footer-logo-center img {
  width: 130px;
  margin: 0 auto 1.5rem;
  filter: brightness(0) invert(1);
}
.footer-contact address { line-height: 2.2; font-size: 0.82rem; color: var(--text-muted); }
.footer-contact address a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact address a:hover { color: var(--primary-color); }
.awards-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
.award-badge {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-color);
  border: 1px solid var(--border-gold);
  padding: 0.5rem 1rem;
  text-align: center;
  line-height: 1.4;
}
.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.copyright { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; }
.copyright a { color: var(--primary-color); transition: opacity var(--transition); }
.copyright a:hover { opacity: 0.7; }
.privacy-links { display: flex; gap: 1.5rem; }
.privacy-links a { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.05em; transition: color var(--transition); }
.privacy-links a:hover { color: var(--primary-color); }

/* ── Awwwards Badge ────────────────────────── */
#awwwards {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  z-index: 90;
}
#awwwards svg { display: block; }

/* ── Scroll to top ─────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border: 1px solid var(--border-gold);
  background: rgba(8,8,6,0.8);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 88;
  color: var(--primary-color);
  font-size: 1rem;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-color); color: var(--bg-dark); }

/* ── Page opacity ──────────────────────────── */
#page { opacity: 0; transition: opacity 0.8s ease; }
#page.visible { opacity: 1; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 992px) {
  .about-section { grid-template-columns: 1fr; gap: 3rem; }
  .featured-menu { grid-template-columns: 1fr; }
  .featured-image-container { min-height: 300px; position: relative; top: 0; }
  .newsletter { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-middle { grid-template-columns: 1fr 1fr; }
  .overlay { grid-template-columns: 1fr; }
  .overlay-info { display: none; }
  .overlay-content { padding: 3rem 2.5rem; }
  #menu-main-menu li a { font-size: clamp(2rem, 8vw, 3.5rem); }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 100px; }
  .overlay { height: 100dvh; }
  .spacing {
    padding-top: 9rem;
    padding-bottom: 5rem;
  }
  .slider-content { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-middle { grid-template-columns: 1fr; text-align: center; }
  .footer-logo-center { order: -1; }
  .footer-nav ul, .awards-row, .social-media-icons { justify-content: center; }
  .about-images { grid-template-columns: 1fr; }
  .image-1, .image-2, .image-3 { grid-column: 1; grid-row: auto; height: 220px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  
  .hero-content-container, .page-hero-content { padding-bottom: 12rem; }
  .michelin-icons { padding-bottom: 2rem; }
}

@media (max-width: 480px) {
  .hero_title, .hero-outline { font-size: clamp(3rem, 14vw, 5rem); }
  .michelin-star { width: 45px; }
  .container { padding: 0 1.2rem; }
}
