/* =====================================================
   MariaPura Brunch & Café — Style v2 · Botanical Green
   ===================================================== */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; }

/* ── VARIABLES ── */
:root {
  --green:        #3A6652;
  --green-dark:   #1E3B2A;
  --green-mid:    #5E8B73;
  --green-soft:   #C4D9CC;
  --green-pale:   #EEF5F1;
  --cream:        #FFFAF4;
  --sand:         #F5EDD8;
  --stone:        #EAD9BC;
  --gold:         #C8903A;
  --gold-light:   #E5B86A;
  --text:         #1A2820;
  --muted:        #5A7060;
  --white:        #FFFFFF;

  --nav-h:    96px;
  --radius:   14px;
  --radius-lg:22px;
  --shadow:   0 4px 24px rgba(30,59,42,.10);
  --shadow-md:0 6px 36px rgba(30,59,42,.14);
  --shadow-lg:0 12px 60px rgba(30,59,42,.20);

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1180px;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p  { line-height: 1.82; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--green);
  color: var(--white);
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  letter-spacing: .02em;
  transition: background .25s, transform .2s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent;
  color: var(--green);
  padding: .78rem 1.75rem;
  border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  border: 2px solid var(--green);
  transition: background .25s, color .25s, transform .2s;
}
.btn-outline:hover { background: var(--green); color: white; transform: translateY(-2px); }

.btn-gold {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--gold);
  color: var(--white);
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  transition: opacity .2s, transform .2s;
}
.btn-gold:hover { opacity: .88; transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--green-dark);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.25); }
.nav-container {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 1.5rem;
}

/* Logo PNG — filtro a blanco sobre navbar verde oscuro */
.nav-logo-img {
  height: 82px;
  width: auto;
  filter: brightness(0) invert(1);
  display: block;
}
/* Text fallback if img not found */
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
  color: var(--cream);
}
.logo-main { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 700; letter-spacing: -.01em; color: var(--cream); }
.logo-sub  { font-size: .58rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--green-soft); margin-top: .1rem; }

.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  color: rgba(255,250,244,.78);
  font-size: .88rem; font-weight: 450; letter-spacing: .01em;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: .52rem 1.2rem !important; border-radius: 50px;
  font-weight: 600 !important; font-size: .83rem !important; letter-spacing: .02em;
  transition: opacity .2s, transform .2s !important;
  display: inline-flex !important; align-items: center; gap: .35rem;
}
.nav-cta:hover { opacity: .88 !important; transform: translateY(-1px) !important; }

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; padding: .5rem;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .3s; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  /* Photo background — user saves photo as img/hero.jpg */
  background:
    linear-gradient(to right, rgba(30,59,42,0.82) 40%, rgba(30,59,42,0.45) 100%),
    url('img/hero.jpg') center/cover no-repeat;
  background-color: var(--green-dark); /* fallback if no photo */
  padding-top: var(--nav-h);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
}
.hero-content { max-width: 560px; }
.hero-eyebrow { color: var(--gold-light); margin-bottom: 1.2rem; }
.hero h1 { color: var(--white); margin-bottom: 1.4rem; font-weight: 700; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; color: var(--green-soft); }
.hero-desc { color: rgba(255,250,244,.82); font-size: 1.08rem; line-height: 1.8; margin-bottom: 2.2rem; max-width: 440px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btns .btn-outline { color: var(--cream); border-color: rgba(255,250,244,.45); }
.hero-btns .btn-outline:hover { background: rgba(255,250,244,.12); }
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  margin-top: 2.8rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,250,244,.18);
}
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.stat-label  { font-size: .72rem; font-weight: 500; color: rgba(255,250,244,.6); letter-spacing: .08em; text-transform: uppercase; margin-top: .25rem; }

/* Hero logo — ocupa todo el ancho del bloque de texto, igual que el h1 */
.hero-logo-wrap { margin-bottom: 1.8rem; }
.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 2px 16px rgba(0,0,0,0.35));
}

/* Hero image frame (right column) */
.hero-img-wrap {
  position: relative;
  display: flex; justify-content: flex-end;
}
.hero-photo-frame {
  position: relative;
  width: 360px; height: 480px;
  border-radius: 200px 200px 160px 160px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(255,250,244,.08);
  background-image: url('img/hero2.jpg');
  background-size: cover; background-position: center;
}
.hero-badge {
  position: absolute; bottom: -12px; right: -12px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.hero-badge strong { font-family: var(--font-serif); font-size: 1.5rem; line-height: 1; font-weight: 700; }
.hero-badge span { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; opacity: .88; margin-top: .15rem; }

/* ── FEATURES / WHY US ── */
.features { background: var(--cream); }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.feature-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--green-soft);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feature-card h3 { font-family: var(--font-serif); color: var(--green-dark); font-size: 1.15rem; margin-bottom: .6rem; }
.feature-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow { margin-bottom: .5rem; }
.section-header h2 { color: var(--green-dark); margin-bottom: .85rem; }
.section-sub { color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.75; font-size: 1rem; }

/* ── MENU PREVIEW (HOME) ── */
.menu-preview { background: var(--sand); }
.menu-tabs { display: flex; justify-content: center; gap: .5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.menu-tab {
  padding: .5rem 1.3rem; border-radius: 50px; font-size: .85rem; font-weight: 500;
  background: white; color: var(--muted); border: 1.5px solid var(--stone);
  cursor: pointer; transition: all .2s;
}
.menu-tab.active, .menu-tab:hover { background: var(--green); color: white; border-color: var(--green); }

.menu-panel { display: none; }
.menu-panel[data-panel="desayunos"] { display: grid; } /* default */
.menu-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.menu-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-card-photo {
  height: 180px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; overflow: hidden;
}
.menu-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-card-body { padding: 1.25rem 1.4rem; }
.menu-card-body h3 { font-family: var(--font-serif); color: var(--green-dark); font-size: 1.05rem; margin-bottom: .35rem; }
.menu-card-body p { color: var(--muted); font-size: .85rem; line-height: 1.6; margin-bottom: .75rem; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-price { font-weight: 700; color: var(--green); font-size: 1rem; font-family: var(--font-serif); }
.menu-tag { font-size: .68rem; font-weight: 600; background: var(--green-pale); color: var(--green); padding: .2rem .6rem; border-radius: 20px; letter-spacing: .04em; }

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--green-dark);
  color: var(--cream);
}
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo {
  border-radius: 160px 160px 120px 120px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: rgba(255,250,244,.08);
  background-image: url('img/pastries.jpg');
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.about-photo-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--gold); color: white;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-photo-badge strong { font-family: var(--font-serif); font-size: 2rem; display: block; line-height: 1; }
.about-photo-badge span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
.about-content { max-width: 520px; }
.about-content .eyebrow { color: var(--gold-light); margin-bottom: .75rem; }
.about-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.about-content p { color: rgba(255,250,244,.78); line-height: 1.85; margin-bottom: 1.1rem; font-size: .98rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.75rem 0; }
.about-feat { display: flex; align-items: flex-start; gap: .75rem; }
.about-feat-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
.about-feat-text strong { color: var(--cream); font-size: .9rem; display: block; margin-bottom: .15rem; }
.about-feat-text span { color: rgba(255,250,244,.6); font-size: .82rem; }

/* ── HOURS & LOCATION ── */
.hours-section { background: var(--cream); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.hours-card {
  background: white; border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.hours-card h3 { font-family: var(--font-serif); color: var(--green-dark); font-size: 1.4rem; margin-bottom: 1.5rem; }
.hours-table { width: 100%; }
.hours-table tr { border-bottom: 1px solid var(--sand); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: .75rem 0; font-size: .92rem; }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--green-dark); }
.hours-table .open { color: var(--green); }
.hours-table .closed { color: #e05a5a; }
.contact-items { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.contact-item { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: var(--muted); }
.contact-item a { color: var(--green); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 100%; min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: none; display: block; }

/* ── REVIEWS ── */
.reviews-section { background: var(--sand); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: white; border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow); position: relative;
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: .05em; margin-bottom: .75rem; }
.review-text { color: var(--text); font-size: .92rem; line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--green); font-weight: 700;
  font-family: var(--font-serif);
}
.review-name { font-weight: 600; font-size: .88rem; color: var(--green-dark); }
.review-source { font-size: .75rem; color: var(--muted); }
.review-quote {
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--font-serif); font-size: 3.5rem; color: var(--green-soft);
  line-height: 1; user-select: none;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--green);
  background-image: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 5rem 0; text-align: center;
}
.cta-band .eyebrow { color: var(--gold-light); margin-bottom: .75rem; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255,250,244,.82); margin-bottom: 2.5rem; font-size: 1.05rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BLOG PREVIEW ── */
.blog-preview { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
  overflow: hidden;
}
.blog-card-img img { width:100%; height:100%; object-fit:cover; }
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block; background: var(--green); color: white;
  font-size: .7rem; font-weight: 600; padding: .2rem .65rem; border-radius: 20px;
  margin-bottom: .6rem; letter-spacing: .04em;
}
.blog-card-body time { font-size: .78rem; color: var(--muted); display: block; margin-bottom: .4rem; }
.blog-card-body h3 { font-family: var(--font-serif); font-size: 1.05rem; line-height: 1.4; color: var(--green-dark); margin-bottom: .6rem; }
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--green); }
.blog-card-body p { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── FOOTER ── */
.footer { background: var(--green-dark); color: rgba(255,250,244,.75); padding: 4.5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; }
.footer-logo-img { height: 90px; margin-bottom: 1.2rem; filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(0,0,0,0.3)); }
.footer-logo-text { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.78; max-width: 280px; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.footer-social a {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; color: rgba(255,250,244,.6);
  background: rgba(255,250,244,.08); border-radius: 50px;
  padding: .4rem 1rem;
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: rgba(255,250,244,.15); color: var(--cream); }
.footer-col h4 { font-family: var(--font-serif); color: var(--cream); font-size: 1.1rem; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li { font-size: .88rem; }
.footer-col ul li a { color: rgba(255,250,244,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255,250,244,.1);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(255,250,244,.4); flex-wrap: wrap; gap: .5rem;
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.55); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── MENU PAGE ── */
.menu-section { padding: 5rem 0; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px,1fr)); gap: 1.25rem; }
.menu-card-full {
  background: white; border-radius: var(--radius); padding: 1.4rem 1.6rem;
  box-shadow: 0 3px 16px rgba(30,59,42,.07);
  transition: box-shadow .25s, transform .25s;
  border-left: 3px solid var(--green-soft);
}
.menu-card-full:hover { box-shadow: 0 6px 28px rgba(30,59,42,.12); transform: translateY(-2px); }
.menu-item-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.menu-item-info { flex: 1; }
.menu-item-info h3 { font-family: var(--font-serif); color: var(--green-dark); font-size: 1.05rem; margin-bottom: .35rem; }
.menu-item-info p  { color: var(--muted); font-size: .88rem; line-height: 1.62; margin-bottom: .5rem; }
.menu-price { font-weight: 700; color: var(--green); font-size: 1.05rem; white-space: nowrap; flex-shrink: 0; padding-top: .1rem; font-family: var(--font-serif); }
.tag {
  display: inline-block; background: var(--green-pale); color: var(--green);
  font-size: .7rem; font-weight: 600; padding: .15rem .55rem; border-radius: 20px;
  margin-right: .3rem; margin-top: .1rem; letter-spacing: .03em;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--green-dark); padding: 100px 0 60px; text-align: center;
  background-image: url('img/hero.jpg');
  background-size: cover; background-position: center;
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(30,59,42,.78), rgba(30,59,42,.88));
}
.page-hero .container { position: relative; z-index: 1; }

/* ── INFO CARDS ── */
.info-card {
  background: white; border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); text-align: center;
}
.info-card .info-icon { font-size: 2rem; margin-bottom: 1rem; }
.info-card h3 { font-family: var(--font-serif); color: var(--green-dark); margin-bottom: .5rem; font-size: 1.1rem; }
.info-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── SECTION HELPERS ── */
.section-header .eyebrow { margin-bottom: .25rem; }
.section-sub { color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.75; font-size: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .menu-items-grid { grid-template-columns: repeat(2,1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 80px; }
  .nav-logo-img { height: 66px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--green-dark); padding: 2.5rem 1.5rem; gap: 1.75rem; z-index: 99;
  }
  .nav-links.open a { font-size: 1.1rem; color: rgba(255,250,244,.85); }
  .nav-cta { display: none !important; }
  .hero { min-height: 90vh; text-align: center; }
  .hero-logo-img { width: 85%; height: auto; }
  .hero-logo-wrap { display: flex; justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 3.5rem 0; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .stat-item { min-width: 80px; }
}
