/* Playfair Display (display) + Plus Jakarta Sans (body) — both first use */

/* ─── 1. TOKENS ─────────────────────────────────────────────────────── */
:root {
  --dark:       #100808;
  --bg-alt:     #1A0E0E;
  --accent:     #C23332;  /* deep crimson — from logo */
  --highlight:  #D4962A;  /* warm amber gold — dim sum trays, Chinese restaurant */
  --cream:      #F8F3EE;
  --cream-dim:  rgba(248,243,238,0.65);
  --accent-dim: rgba(194,51,50,0.14);
  --border:     rgba(194,51,50,0.22);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── 2. RESET ───────────────────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{background:var(--dark);color:var(--cream);font-family:var(--ff-body);font-size:1rem;line-height:1.6;overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font-family:inherit}
input,textarea,select{font-family:inherit}

/* ─── 3. TYPOGRAPHY ──────────────────────────────────────────────────── */
h1,h2,h3,h4{font-family:var(--ff-display);line-height:1.15;letter-spacing:-0.01em}
h1{font-size:clamp(2.8rem,6vw,5.5rem);font-weight:700}
h2{font-size:clamp(2rem,4vw,3.2rem);font-weight:600}
h3{font-size:clamp(1.3rem,2.5vw,1.9rem);font-weight:500}
h4{font-size:1.15rem;font-weight:600;font-family:var(--ff-body)}
p{color:var(--cream-dim);line-height:1.75}
.label{display:inline-block;font-size:0.75rem;font-weight:600;letter-spacing:0.14em;text-transform:uppercase;color:var(--accent);margin-bottom:0.6rem}

/* ─── 4. BUTTONS ─────────────────────────────────────────────────────── */
.btn{display:inline-flex;align-items:center;gap:0.5rem;padding:0.75rem 1.75rem;border-radius:4px;font-size:0.9rem;font-weight:600;font-family:var(--ff-body);transition:all .25s ease;letter-spacing:0.03em;white-space:nowrap}
.btn-primary{background:var(--highlight);color:#100808}
.btn-primary:hover{background:#e8a730;transform:translateY(-2px);box-shadow:0 8px 24px rgba(212,150,42,0.35)}
.btn-ghost{border:1.5px solid var(--border);color:var(--cream)}
.btn-ghost:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-2px)}
.btn-full{width:100%;justify-content:center}

/* ─── 5. NAVBAR ──────────────────────────────────────────────────────── */
.navbar{position:fixed;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:0 2rem;height:68px;background:transparent;transition:background .35s ease,box-shadow .35s ease}
.navbar.scrolled{background:rgba(16,8,8,0.96);backdrop-filter:blur(10px);box-shadow:0 2px 20px rgba(0,0,0,0.5)}
.navbar-brand{display:flex;align-items:center;gap:0.75rem;font-family:var(--ff-display);font-size:1.25rem;font-weight:600;color:var(--cream)}
.navbar-brand img{width:38px;height:38px;border-radius:50%;object-fit:cover}
.nav-links{display:flex;align-items:center;gap:0.25rem}
.nav-links a{padding:0.5rem 0.75rem;font-size:0.88rem;font-weight:500;color:var(--cream-dim);border-radius:4px;transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--cream)}
.nav-cta{margin-left:0.75rem}
.hamburger{display:none;flex-direction:column;gap:5px;width:28px;padding:4px 0}
.hamburger span{display:block;height:2px;background:var(--cream);border-radius:2px;transition:all .3s}

/* ─── 6. HERO ────────────────────────────────────────────────────────── */
.hero{position:relative;min-height:100vh;display:flex;align-items:flex-end;padding:6rem 2rem 5rem;overflow:hidden}
.hero::before{content:'';position:absolute;inset:0;background:url('images/banner.jpg') center/cover no-repeat;transform:scale(1.04);transition:transform 8s ease}
.hero::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(16,8,8,0.92) 0%,rgba(16,8,8,0.4) 60%,rgba(16,8,8,0.1) 100%)}
.hero-content{position:relative;z-index:1;max-width:780px}
.hero-content .label{color:var(--highlight)}
.hero-content h1{margin-bottom:1.25rem}
.hero-content h1 em{font-style:italic;color:var(--accent)}
.hero-content p{font-size:1.1rem;max-width:540px;margin-bottom:2rem}
.hero-cta{display:flex;gap:1rem;flex-wrap:wrap}
.hero-badge{position:absolute;bottom:2.5rem;right:2rem;z-index:1;display:flex;align-items:center;gap:0.75rem;background:rgba(16,8,8,0.7);backdrop-filter:blur(8px);border:1px solid var(--border);border-radius:50px;padding:0.6rem 1.2rem;font-size:0.82rem;font-weight:600;color:var(--cream-dim)}
.hero-badge span{color:var(--highlight)}

/* ─── 7. FEATURES STRIP ──────────────────────────────────────────────── */
.features-strip{background:var(--accent);padding:1.25rem 2rem;display:flex;justify-content:center;align-items:center;flex-wrap:wrap;gap:2rem}
.features-strip .feature{display:flex;align-items:center;gap:0.6rem;font-size:0.85rem;font-weight:600;color:#100808;letter-spacing:0.06em;text-transform:uppercase}
.features-strip .feature-dot{width:5px;height:5px;border-radius:50%;background:#100808;opacity:0.5}

/* ─── 8. SECTION LAYOUT ──────────────────────────────────────────────── */
.section{padding:5rem 2rem}
.section-inner{max-width:1200px;margin:0 auto}
.section-header{text-align:center;max-width:640px;margin:0 auto 3.5rem;display:flex;flex-direction:column;align-items:center}
.section-header p{margin-top:0.75rem}

/* ─── 9. OFFERINGS GRID ──────────────────────────────────────────────── */
.offerings{padding:5rem 2rem;background:var(--bg-alt)}
.offerings-inner{max-width:1200px;margin:0 auto}
.offerings-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5px;margin-top:3rem;border:1.5px solid var(--border);border-radius:8px;overflow:hidden}
.offering-tile{position:relative;aspect-ratio:3/4;overflow:hidden;cursor:pointer}
.offering-tile img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.offering-tile:hover img{transform:scale(1.06)}
.offering-tile-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(16,8,8,0.85) 0%,rgba(16,8,8,0) 55%);display:flex;flex-direction:column;justify-content:flex-end;padding:1.5rem}
.offering-tile-overlay h3{font-size:1.1rem;font-weight:600;color:var(--cream)}
.offering-tile-overlay span{font-size:0.8rem;color:var(--cream-dim);margin-top:0.25rem}

/* ─── 10. TEASER ─────────────────────────────────────────────────────── */
.teaser{padding:5rem 2rem;max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.teaser-text .label{margin-bottom:0.5rem}
.teaser-text h2{margin-bottom:1.25rem}
.teaser-text p{margin-bottom:1rem}
.teaser-text p:last-of-type{margin-bottom:2rem}
.teaser-image{border-radius:8px;overflow:hidden;aspect-ratio:4/5}
.teaser-image img{width:100%;height:100%;object-fit:cover}

/* ─── 11. STATS ──────────────────────────────────────────────────────── */
.stats{padding:4rem 2rem;background:var(--bg-alt);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.stats-inner{max-width:900px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);text-align:center;gap:2rem}
.stat-number{font-family:var(--ff-display);font-size:clamp(2.2rem,4vw,3.5rem);font-weight:700;color:var(--accent);line-height:1}
.stat-label{font-size:0.8rem;font-weight:500;color:var(--cream-dim);text-transform:uppercase;letter-spacing:0.1em;margin-top:0.5rem}

/* ─── 12. REVIEWS ────────────────────────────────────────────────────── */
.reviews{padding:5rem 2rem}
.reviews-inner{max-width:1200px;margin:0 auto}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-top:3rem}
.review-card{background:var(--bg-alt);border:1px solid var(--border);border-radius:8px;padding:2rem}
.review-stars{color:var(--highlight);font-size:1rem;letter-spacing:0.1em;margin-bottom:1rem}
.review-text{font-size:0.95rem;color:var(--cream-dim);line-height:1.75;margin-bottom:1.5rem;font-style:italic}
.review-author{font-size:0.85rem;font-weight:600;color:var(--cream)}
.review-source{font-size:0.78rem;color:var(--accent);margin-top:0.2rem}

/* ─── 13. SOCIAL CTA ─────────────────────────────────────────────────── */
.social-cta{padding:5rem 2rem;background:var(--accent);text-align:center}
.social-cta h2{color:#100808;margin-bottom:0.75rem}
.social-cta p{color:rgba(16,8,8,0.7);max-width:500px;margin:0 auto 2rem}
.social-cta .btn-primary{background:#100808;color:var(--cream)}
.social-cta .btn-primary:hover{background:#1a0e0e}
.social-cta .btn-ghost{border-color:rgba(16,8,8,0.3);color:#100808}
.social-cta .btn-ghost:hover{border-color:#100808}
.social-cta-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ─── 14. FEED GRID ──────────────────────────────────────────────────── */
.feed{padding:5rem 2rem;background:var(--bg-alt)}
.feed-inner{max-width:1200px;margin:0 auto}
.feed-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:4px;margin-top:3rem}
.feed-item{aspect-ratio:1;overflow:hidden}
.feed-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.feed-item:hover img{transform:scale(1.08)}

/* ─── 15. FOOTER ─────────────────────────────────────────────────────── */
.footer{padding:4rem 2rem 2rem;background:#0A0606}
.footer-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid var(--border)}
.footer-brand img{width:50px;height:50px;border-radius:50%;object-fit:cover;margin-bottom:1rem}
.footer-brand p{font-size:0.88rem;color:var(--cream-dim);line-height:1.6;max-width:280px}
.footer-social{display:flex;gap:0.75rem;margin-top:1.25rem}
.footer-social a{width:36px;height:36px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--cream-dim);transition:all .2s}
.footer-social a:hover{border-color:var(--accent);color:var(--accent)}
.footer-social svg{width:16px;height:16px}
.footer-col h5{font-size:0.78rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:var(--cream);margin-bottom:1rem;font-family:var(--ff-body)}
.footer-col a,.footer-col p{display:block;font-size:0.88rem;color:var(--cream-dim);padding:0.25rem 0;transition:color .2s;line-height:1.5}
.footer-col a:hover{color:var(--cream)}
.footer-bottom{max-width:1200px;margin:1.5rem auto 0;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;font-size:0.8rem;color:var(--cream-dim)}
.footer-badges{display:flex;gap:0.5rem}
.badge{padding:0.25rem 0.75rem;border:1px solid var(--border);border-radius:50px;font-size:0.72rem;font-weight:600;color:var(--cream-dim);letter-spacing:0.05em}

/* ─── 16. PAGE HERO ──────────────────────────────────────────────────── */
.page-hero{position:relative;padding:10rem 2rem 5rem;overflow:hidden}
.page-hero::before{content:'';position:absolute;inset:0;background:var(--page-hero-bg) center/cover no-repeat}
.page-hero::after{content:'';position:absolute;inset:0;background:linear-gradient(to top,rgba(16,8,8,0.95) 0%,rgba(16,8,8,0.5) 60%,rgba(16,8,8,0.15) 100%)}
.page-hero-content{position:relative;z-index:1;max-width:700px}
.page-hero-content h1{margin-bottom:1rem}
.page-hero-content p{font-size:1.05rem;max-width:500px}

/* ─── 17. ABOUT PAGE ─────────────────────────────────────────────────── */
.about-split{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.about-text h2{margin-bottom:1.25rem}
.about-text p{margin-bottom:1rem}
.about-image{border-radius:8px;overflow:hidden;aspect-ratio:4/5}
.about-image img{width:100%;height:100%;object-fit:cover}
.features-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.feature-card{background:var(--dark);border:1px solid var(--border);border-radius:8px;padding:2rem}
.feature-icon{font-size:1.75rem;margin-bottom:1rem}
.feature-card h3{font-size:1.1rem;margin-bottom:0.75rem;font-family:var(--ff-body);font-weight:600}
.values-list{max-width:800px;margin:0 auto;display:flex;flex-direction:column;gap:0}
.value-item{display:grid;grid-template-columns:4rem 1fr;gap:1.5rem;padding:2rem 0;border-bottom:1px solid var(--border)}
.value-item:last-child{border-bottom:none}
.value-number{font-family:var(--ff-display);font-size:1.5rem;font-weight:700;color:var(--accent);line-height:1;padding-top:0.2rem}
.value-content h4{margin-bottom:0.5rem}
.timeline-section .section-header{margin-bottom:3.5rem}
.timeline{max-width:700px;margin:0 auto;position:relative;padding-left:2rem}
.timeline::before{content:'';position:absolute;left:0;top:0;bottom:0;width:1px;background:var(--border)}
.timeline-item{position:relative;padding-bottom:3rem}
.timeline-item:last-child{padding-bottom:0}
.timeline-dot{position:absolute;left:-2rem;top:0.4rem;width:10px;height:10px;border-radius:50%;background:var(--accent);transform:translateX(-50%);margin-left:1px}
.timeline-content h4{margin-bottom:0.25rem}
.timeline-date{font-size:0.78rem;font-weight:600;text-transform:uppercase;letter-spacing:0.1em;color:var(--highlight)}
.timeline-content p{margin-top:0.5rem;font-size:0.92rem}
.about-cta-split{background:var(--bg-alt);border-top:1px solid var(--border)}
.cta-split-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;align-items:center}
.cta-split-text{padding:5rem 4rem 5rem 2rem}
.cta-split-text h2{margin-bottom:1rem}
.cta-split-image{aspect-ratio:4/3;overflow:hidden}
.cta-split-image img{width:100%;height:100%;object-fit:cover}

/* ─── 18. MENU PAGE ──────────────────────────────────────────────────── */
.menu-filters{display:flex;flex-wrap:wrap;gap:0.75rem;margin-bottom:3rem;max-width:1200px;margin-left:auto;margin-right:auto}
.filter-btn{padding:0.5rem 1.25rem;border-radius:50px;font-size:0.85rem;font-weight:600;border:1.5px solid var(--border);color:var(--cream-dim);transition:all .2s;background:transparent;font-family:var(--ff-body)}
.filter-btn:hover{border-color:var(--accent);color:var(--cream)}
.filter-btn.active{background:var(--accent);border-color:var(--accent);color:#fff}
.menu-section{max-width:1200px;margin:0 auto 4rem}
.menu-section.hidden{display:none}
.menu-section-header{margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}
.menu-section-header h3{margin-bottom:0.25rem}
.menu-section-header span{font-size:0.88rem;color:var(--cream-dim)}
.menu-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.menu-item{background:var(--bg-alt);border:1px solid var(--border);border-radius:8px;padding:1.25rem 1.5rem;display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;transition:border-color .2s}
.menu-item:hover{border-color:var(--accent)}
.menu-item.hidden{display:none}
.menu-item-info h4{font-size:1rem;margin-bottom:0.3rem}
.menu-item-info p{font-size:0.85rem;color:var(--cream-dim);line-height:1.5}
.menu-item-info .menu-item-tag{display:inline-block;font-size:0.7rem;font-weight:600;padding:0.15rem 0.6rem;border-radius:50px;background:var(--accent-dim);color:var(--accent);margin-top:0.5rem;letter-spacing:0.05em;text-transform:uppercase}
.menu-item-price{font-family:var(--ff-display);font-size:1.05rem;font-weight:600;color:var(--highlight);white-space:nowrap;flex-shrink:0}
.michelin-banner{background:var(--highlight);color:#100808;padding:1.25rem 2rem;text-align:center;margin-bottom:0}
.michelin-banner p{color:rgba(16,8,8,0.8);font-size:0.88rem;font-weight:600;margin:0}
.michelin-banner strong{color:#100808}

/* ─── 19. GALLERY PAGE ───────────────────────────────────────────────── */
.gallery-filters{display:flex;flex-wrap:wrap;gap:0.75rem;margin-bottom:3rem;max-width:1200px;margin-left:auto;margin-right:auto}
.gallery-group{max-width:1200px;margin:0 auto 4rem}
.gallery-group.hidden{display:none}
.gallery-group-header{margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}
.gallery-group-header h3{margin-bottom:0.25rem}
.gallery-group-header span{font-size:0.88rem;color:var(--cream-dim)}
.masonry{columns:3;column-gap:12px}
.masonry-item{break-inside:avoid;margin-bottom:12px;border-radius:6px;overflow:hidden}
.masonry-item img{width:100%;height:auto;display:block;transition:transform .4s ease;cursor:pointer}
.masonry-item:hover img{transform:scale(1.03)}
.masonry-item.hidden{display:none}
.gallery-cta{padding:5rem 2rem;text-align:center;background:var(--bg-alt);border-top:1px solid var(--border)}
.gallery-cta .label{margin-bottom:0.5rem}
.gallery-cta h2{margin-bottom:1rem}
.gallery-cta p{max-width:480px;margin:0 auto 2rem}

/* ─── 20. CONTACT PAGE ───────────────────────────────────────────────── */
.contact-section{max-width:1200px;margin:0 auto}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.contact-card{background:var(--bg-alt);border:1px solid var(--border);border-radius:8px;padding:2rem}
.contact-card-icon{font-size:1.75rem;margin-bottom:1rem}
.contact-card h3{font-size:1.1rem;font-family:var(--ff-body);font-weight:600;margin-bottom:0.75rem}
.contact-card p{font-size:0.88rem;color:var(--cream-dim);line-height:1.6}
.contact-form-section{max-width:680px;margin:0 auto}
.contact-form-header{text-align:center;margin-bottom:2.5rem}
.contact-form-header h2{margin-bottom:0.75rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.form-group{display:flex;flex-direction:column;gap:0.5rem;margin-bottom:1.25rem}
.form-group label{font-size:0.85rem;font-weight:600;color:var(--cream)}
.form-group input,.form-group textarea,.form-group select{background:var(--dark);border:1.5px solid var(--border);border-radius:6px;padding:0.75rem 1rem;color:var(--cream);font-size:0.9rem;transition:border-color .2s;-webkit-appearance:none}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--accent)}
.form-group textarea{resize:vertical;min-height:120px}
.form-success-inner{text-align:center;padding:3rem 2rem;background:var(--bg-alt);border:1px solid var(--border);border-radius:8px}
.form-success-inner h3{margin:1rem 0 0.5rem}

/* ─── 21. FAQ ────────────────────────────────────────────────────────── */
.faq-list{max-width:720px;margin:0 auto}
.faq-item{border-bottom:1px solid var(--border)}
.faq-question{width:100%;text-align:left;padding:1.25rem 0;font-size:1rem;font-weight:600;color:var(--cream);display:flex;justify-content:space-between;align-items:center;gap:1rem;font-family:var(--ff-body)}
.faq-question::after{content:'+';font-size:1.4rem;color:var(--accent);flex-shrink:0;transition:transform .3s}
.faq-item.open .faq-question::after{transform:rotate(45deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-answer p{padding-bottom:1.25rem;font-size:0.92rem}

/* ─── 22. SCROLL TO TOP ──────────────────────────────────────────────── */
#scrollTop{position:fixed;bottom:2rem;right:2rem;z-index:90;width:44px;height:44px;border-radius:50%;background:var(--accent);color:#fff;font-size:1.4rem;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .3s,transform .3s;box-shadow:0 4px 14px rgba(194,51,50,0.4)}
#scrollTop.visible{opacity:1;pointer-events:all}
#scrollTop:hover{transform:translateY(-3px)}

/* ─── 23. LIGHTBOX ───────────────────────────────────────────────────── */
#lightbox{display:none;position:fixed;inset:0;z-index:200;background:rgba(10,6,6,0.96);align-items:center;justify-content:center}
#lightbox.open{display:flex}
#lb-img{max-width:90vw;max-height:85vh;border-radius:4px;object-fit:contain}
#lb-close{position:absolute;top:1.5rem;right:1.5rem;font-size:2rem;color:var(--cream);width:44px;height:44px;border-radius:50%;background:rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center}
#lb-prev,#lb-next{position:absolute;top:50%;transform:translateY(-50%);font-size:2.5rem;color:var(--cream);width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center}
#lb-prev{left:1.5rem}
#lb-next{right:1.5rem}
#lb-counter{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);font-size:0.85rem;color:var(--cream-dim)}

/* ─── 24. FADE IN ────────────────────────────────────────────────────── */
.fade-in{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
.fade-in.visible{opacity:1;transform:none}

/* ─── 25. RESPONSIVE ─────────────────────────────────────────────────── */
@media(max-width:1024px){
  .offerings-grid{grid-template-columns:repeat(2,1fr)}
  .teaser{grid-template-columns:1fr;gap:2.5rem}
  .teaser-image{aspect-ratio:16/9}
  .about-split{grid-template-columns:1fr;gap:2.5rem}
  .about-image{aspect-ratio:16/9}
  .cta-split-inner{grid-template-columns:1fr}
  .cta-split-image{display:none}
  .footer-grid{grid-template-columns:1fr 1fr;gap:2rem}
}
@media(max-width:768px){
  .navbar{padding:0 1.25rem}
  .nav-links{display:none;position:fixed;inset:0;top:68px;background:rgba(16,8,8,0.98);flex-direction:column;align-items:center;justify-content:center;gap:1.5rem;z-index:99}
  .nav-links.open{display:flex}
  .nav-links a{font-size:1.1rem}
  .hamburger{display:flex}
  .hero{padding:7rem 1.25rem 4rem}
  .hero-badge{display:none}
  .section{padding:3.5rem 1.25rem}
  .offerings-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .feed-grid{grid-template-columns:repeat(3,1fr)}
  .masonry{columns:2}
  .menu-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .features-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}
@media(max-width:480px){
  h1{font-size:2.4rem}
  .masonry{columns:1}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .page-hero{padding:8rem 1.25rem 3.5rem}
  .menu-filters{gap:0.5rem}
  .feed-grid{grid-template-columns:repeat(2,1fr)}
}
