*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0B2A63;
  --navy-light:#1a3f8a;
  --orange:#F58220;
  --orange-light:#ffa94d;
  --white:#ffffff;
  --light:#F8F9FB;
  --text:#1E293B;
  --text-muted:#64748B;
  --border:#E2E8F0;
  --radius:12px;
  --radius-sm:8px;
  --shadow:0 2px 20px rgba(11,42,99,0.09);
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text);background:var(--white);line-height:1.6;overflow-x:hidden}
h1,h2,h3,h4{font-family:'Playfair Display',serif;line-height:1.25}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button{cursor:pointer;font-family:'Inter',sans-serif;border:none;background:none}

/* ===== NAV ===== */
.nav{position:sticky;top:0;z-index:100;background:var(--white);border-bottom:1px solid var(--border);padding:0 1.25rem}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:66px;max-width:1120px;margin:0 auto}
.nav-logo{display:flex;align-items:center;gap:.6rem;cursor:pointer}
.nav-logo-img{
  width:42px;height:42px;border-radius:8px;
  background:var(--navy);display:flex;align-items:center;justify-content:center;
  flex-shrink:0;overflow:hidden;
}
.nav-logo-img img{width:100%;height:100%;object-fit:cover;display:block}
.nav-logo-text{line-height:1.1}
.nav-logo-text strong{display:block;font-family:'Playfair Display',serif;font-size:.95rem;color:var(--navy);font-weight:700}
.nav-logo-text span{font-size:.7rem;color:var(--text-muted);font-weight:400;letter-spacing:.02em}
.nav-links{display:none}
.nav-hamburger{padding:8px;color:var(--navy)}
.nav-hamburger svg{width:22px;height:22px;stroke:currentColor;stroke-width:2;fill:none;display:block}
.nav-mobile{display:none;position:fixed;top:66px;left:0;right:0;bottom:0;background:var(--white);z-index:99;padding:1.5rem;flex-direction:column;overflow-y:auto}
.nav-mobile.open{display:flex}
.nav-mobile a,.nav-mobile button{display:block;width:100%;text-align:left;padding:1rem 0;font-size:1rem;font-weight:500;color:var(--text);border:none;background:none;border-bottom:1px solid var(--border);cursor:pointer}
.nav-mobile .m-wa{margin-top:1.25rem;background:#25D366;color:white;text-align:center;padding:1rem;border-radius:var(--radius);font-weight:600;font-size:1rem}
@media(min-width:768px){
  .nav-hamburger{display:none}
  .nav-links{display:flex;align-items:center;gap:1.5rem}
  .nav-links button{font-size:.875rem;font-weight:500;color:var(--text);padding:.3rem 0;position:relative;background:none;border:none;cursor:pointer}
  .nav-links button::after{content:'';position:absolute;bottom:-2px;left:0;right:0;height:2px;background:var(--orange);transform:scaleX(0);transition:transform .2s}
  .nav-links button:hover::after,.nav-links button.active::after{transform:scaleX(1)}
  .nav-links .l-wa{background:#25D366;color:white;padding:.5rem 1.25rem;border-radius:100px;font-size:.8rem}
  .nav-links .l-wa::after{display:none}
}

/* ===== PAGES ===== */
.page{display:none}.page.active{display:block}

/* ===== HERO ===== */
.hero{position:relative;min-height:90vh;display:flex;align-items:center;overflow:hidden}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(160deg,rgba(11,42,99,.92) 0%,rgba(11,42,99,.7) 60%,rgba(11,42,99,.5) 100%);z-index:1}
.hero-bg{
  position:absolute;inset:0;
  background:url('images/hero.jpg') center/cover no-repeat;
}
.hero-content{position:relative;z-index:2;padding:2rem 1.25rem 4rem;max-width:700px;margin:0 auto;text-align:center;padding-top:5rem}
.hero-badge{display:inline-block;background:rgba(245,130,32,.18);border:1px solid rgba(245,130,32,.5);color:#ffc47a;font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;padding:.4rem 1.1rem;border-radius:100px;margin-bottom:1.5rem}
.hero h1{font-size:clamp(2rem,6vw,3.6rem);color:white;font-weight:700;margin-bottom:1.25rem;line-height:1.15}
.hero h1 em{color:var(--orange);font-style:normal}
.hero p{color:rgba(255,255,255,.82);font-size:1rem;margin-bottom:2.25rem;max-width:540px;margin-left:auto;margin-right:auto}
.hero-btns{display:flex;flex-wrap:wrap;gap:.75rem;justify-content:center}

/* ===== BUTTONS ===== */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.45rem;padding:.82rem 1.6rem;border-radius:100px;font-weight:600;font-size:.875rem;border:none;cursor:pointer;transition:all .2s;font-family:'Inter',sans-serif;text-decoration:none}
.btn-primary{background:var(--orange);color:white}.btn-primary:hover{background:var(--orange-light);transform:translateY(-1px)}
.btn-outline-white{background:transparent;color:white;border:1.5px solid rgba(255,255,255,.45)}.btn-outline-white:hover{background:rgba(255,255,255,.1);border-color:white}
.btn-navy{background:var(--navy);color:white}.btn-navy:hover{background:var(--navy-light)}
.btn-wa{background:#25D366;color:white}.btn-wa:hover{background:#1fb85a;transform:translateY(-1px)}
.btn-orange-outline{background:transparent;color:var(--orange);border:1.5px solid var(--orange)}.btn-orange-outline:hover{background:var(--orange);color:white}

/* ===== TRUST BAR ===== */
.trust{padding:5rem 1.5rem;background:#ffffff}
.trust-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:1.5rem}
.trust-item{background:#f8f9fb;padding:2rem;border-radius:16px;text-align:center;transition:all 0.3s ease;border:1px solid rgba(11,42,99,0.08)}
.trust-item:hover{transform:translateY(-4px);border-color:#f58220}
.trust-item h3{color:#0b2a63;font-size:1.1rem;font-weight:700;margin-bottom:.75rem}
.trust-item p{color:#64748b;font-size:.95rem;line-height:1.6}
@media(max-width:768px){.trust-inner{grid-template-columns:1fr}}

/* ===== SECTIONS ===== */
.section{padding:4rem 1.25rem}
.section-alt{background:var(--light)}
.section-inner{max-width:1120px;margin:0 auto}
.section-header{text-align:center;margin-bottom:2.5rem}
.eyebrow{font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--orange);margin-bottom:.6rem;display:block}
.section-header h2{font-size:clamp(1.65rem,4vw,2.4rem);color:var(--navy);margin-bottom:.65rem}
.section-header p{color:var(--text-muted);max-width:520px;margin:0 auto;font-size:.9rem}
.ornament{width:44px;height:3px;background:var(--orange);border-radius:2px;margin:.85rem auto 0}

/* ===== SERVICE CARDS (HOME) ===== */
.services-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:600px){.services-grid{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.services-grid{grid-template-columns:repeat(3,1fr)}}
.svc-card{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:box-shadow .2s,transform .2s;background:white}
.svc-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.svc-img{height:200px;overflow:hidden;position:relative}
.svc-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s}
.svc-card:hover .svc-img img{transform:scale(1.04)}
.svc-badge{position:absolute;top:.75rem;left:.75rem;background:var(--orange);color:white;font-size:.7rem;font-weight:700;padding:.3rem .75rem;border-radius:100px;letter-spacing:.04em;text-transform:uppercase}
.svc-body{padding:1.25rem}
.svc-body h3{font-size:1.05rem;color:var(--navy);margin-bottom:.4rem}
.svc-body p{font-size:.825rem;color:var(--text-muted);line-height:1.65;margin-bottom:.85rem}
.svc-body .btn{font-size:.8rem;padding:.55rem 1.1rem;width:100%}

/* ===== EVENTS GRID ===== */
.events-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(min-width:768px){.events-grid{grid-template-columns:repeat(4,1fr)}}
.event-card{border-radius:var(--radius);overflow:hidden;position:relative;cursor:pointer;aspect-ratio:3/4}
.ev-img{width:100%;height:100%;position:relative}
.ev-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s}
.event-card:hover .ev-img img{transform:scale(1.06)}
.ev-overlay{position:absolute;inset:0;background:linear-gradient(0deg,rgba(11,42,99,.85) 0%,transparent 55%);display:flex;align-items:flex-end;padding:1.1rem}
.ev-label{color:white;font-family:'Playfair Display',serif;font-size:1rem;font-weight:600;line-height:1.2}
.ev-sub{font-family:'Inter',sans-serif;font-size:.72rem;color:rgba(255,255,255,.7);font-weight:400;display:block;margin-top:.15rem}

/* ===== FOOD CARDS ===== */
.food-card{background:white;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;transition:box-shadow .2s,transform .2s}
.food-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.food-img{height:180px;overflow:hidden;background:var(--light)}
.food-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s}
.food-card:hover .food-img img{transform:scale(1.06)}
.food-body{padding:1rem}
.food-body h4{font-family:'Playfair Display',serif;font-size:.975rem;color:var(--navy);margin-bottom:.3rem}
.food-body p{font-size:.78rem;color:var(--text-muted);margin-bottom:.75rem;line-height:1.55}
.food-body .btn{font-size:.78rem;padding:.5rem 1rem;width:100%;border-radius:var(--radius-sm)}

/* ===== MENU TABS ===== */
.tab-bar{display:flex;gap:.5rem;overflow-x:auto;padding:.25rem 0 .75rem;margin-bottom:1.75rem;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.tab-bar::-webkit-scrollbar{display:none}
.tab-btn{flex-shrink:0;padding:.55rem 1.15rem;border-radius:100px;border:1.5px solid var(--border);background:white;font-size:.82rem;font-weight:500;color:var(--text-muted);cursor:pointer;transition:all .2s;white-space:nowrap}
.tab-btn.active{background:var(--navy);color:white;border-color:var(--navy)}
.cat-section{display:none !important;visibility:hidden;height:0;overflow:hidden}
.cat-section.active{display:grid !important;visibility:visible;height:auto;overflow:visible}
.food-grid{display:grid;grid-template-columns:1fr;gap:1.1rem}
@media(min-width:560px){.food-grid{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.food-grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1100px){.food-grid{grid-template-columns:repeat(4,1fr)}}

/* ===== TESTIMONIALS ===== */
.testi-grid{display:grid;grid-template-columns:1fr;gap:1.1rem}
@media(min-width:600px){.testi-grid{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.testi-grid{grid-template-columns:repeat(3,1fr)}}
.testi-card{background:white;border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem}
.testi-stars{color:var(--orange);font-size:.95rem;margin-bottom:.75rem;letter-spacing:.05em}
.testi-card blockquote{font-size:.875rem;color:var(--text);font-style:italic;margin-bottom:1rem;line-height:1.75}
.testi-author{display:flex;align-items:center;gap:.75rem}
.testi-avatar{width:40px;height:40px;border-radius:50%;background:var(--navy);display:flex;align-items:center;justify-content:center;color:white;font-size:.8rem;font-weight:600;flex-shrink:0}
.testi-info strong{display:block;font-size:.825rem;font-weight:600;color:var(--navy)}
.testi-info span{font-size:.75rem;color:var(--text-muted)}

/* ===== CTA ===== */
.cta-section{background:var(--navy);padding:4.5rem 1.25rem;text-align:center}
.cta-section h2{font-size:clamp(1.7rem,4vw,2.6rem);color:white;margin-bottom:.85rem}
.cta-section p{color:rgba(255,255,255,.72);max-width:460px;margin:0 auto 2rem;font-size:.9rem}

/* ===== PAGE HERO ===== */
.page-hero{background:var(--navy);padding:5rem 1.25rem 3.5rem;text-align:center}
.page-hero h1{color:white;font-size:clamp(1.8rem,5vw,2.9rem);margin-bottom:.75rem}
.page-hero p{color:rgba(255,255,255,.72);max-width:500px;margin:0 auto;font-size:.925rem}

/* ===== ABOUT PAGE ===== */
.stat-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:2.5rem 0}
@media(min-width:600px){.stat-grid{grid-template-columns:repeat(4,1fr)}}
.stat-box{text-align:center;padding:1.5rem 1rem;background:white;border:1px solid var(--border);border-radius:var(--radius)}
.stat-box strong{display:block;font-size:2rem;font-weight:700;color:var(--navy);font-family:'Playfair Display',serif}
.stat-box span{font-size:.78rem;color:var(--text-muted)}
.mv-grid{display:grid;grid-template-columns:1fr;gap:1.1rem;margin-top:1.75rem}
@media(min-width:600px){.mv-grid{grid-template-columns:1fr 1fr}}
.mv-card{padding:2rem;border-radius:var(--radius)}
.mv-card.mission{background:var(--navy)}
.mv-card.vision{background:var(--light);border:1px solid var(--border)}
.mv-card h3{font-size:1.15rem;margin-bottom:.75rem}
.mv-card.mission h3{color:var(--orange)}.mv-card.vision h3{color:var(--navy)}
.mv-card p{font-size:.875rem;line-height:1.75}
.mv-card.mission p{color:rgba(255,255,255,.78)}.mv-card.vision p{color:var(--text-muted)}
.why-grid{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:600px){.why-grid{grid-template-columns:1fr 1fr}}
.why-card{display:flex;gap:.9rem;padding:1.25rem;background:white;border:1px solid var(--border);border-radius:var(--radius)}
.why-num{width:36px;height:36px;min-width:36px;background:var(--orange);color:white;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.875rem}
.why-card h4{font-size:.9rem;color:var(--navy);margin-bottom:.2rem;font-family:'Playfair Display',serif}
.why-card p{font-size:.8rem;color:var(--text-muted);line-height:1.6}

/* ===== SERVICES PAGE ===== */
.svc-page-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media(min-width:768px){.svc-page-grid{grid-template-columns:1fr 1fr}}
.svc-page-card{border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:white}
.svc-page-img{height:200px;overflow:hidden}
.svc-page-img img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .35s}
.svc-page-card:hover .svc-page-img img{transform:scale(1.04)}
.svc-page-top{background:var(--navy);padding:1.6rem}
.svc-page-top h3{color:white;font-size:1.1rem;margin-bottom:.35rem}
.svc-page-top p{color:rgba(255,255,255,.65);font-size:.8rem;line-height:1.6}
.svc-page-body{padding:1.5rem}
.feat-list{list-style:none;margin-bottom:1.25rem}
.feat-list li{display:flex;align-items:flex-start;gap:.6rem;font-size:.82rem;color:var(--text);padding:.35rem 0;border-bottom:1px solid var(--light);line-height:1.5}
.feat-list li::before{content:'✓';color:var(--orange);font-weight:800;flex-shrink:0;margin-top:.05rem}
.feat-list li:last-child{border-bottom:none}

/* ===== GALLERY ===== */
.gallery-grid{columns:1;gap:1rem}
@media(min-width:560px){.gallery-grid{columns:2}}
@media(min-width:900px){.gallery-grid{columns:3}}
.gallery-item{break-inside:avoid;margin-bottom:1rem;border-radius:var(--radius);overflow:hidden;cursor:pointer;position:relative}
.gallery-item img{width:100%;height:auto;display:block;transition:transform .3s}
.gallery-item:hover img{transform:scale(1.04)}
.gallery-overlay{position:absolute;inset:0;background:rgba(11,42,99,0);display:flex;align-items:center;justify-content:center;transition:background .25s;opacity:0;border-radius:var(--radius)}
.gallery-item:hover .gallery-overlay{background:rgba(11,42,99,.5);opacity:1}
.gallery-overlay span{color:white;font-size:.8rem;font-weight:600;background:rgba(0,0,0,.3);padding:.35rem .85rem;border-radius:100px}

/* ===== CONTACT ===== */
.contact-grid{display:grid;grid-template-columns:1fr;gap:2rem}
@media(min-width:768px){.contact-grid{grid-template-columns:1fr 1fr}}
.contact-form-card{background:white;border:1px solid var(--border);border-radius:var(--radius);padding:2rem}
.contact-form-card h3{font-size:1.25rem;color:var(--navy);margin-bottom:.5rem}
.contact-form-card .sub{font-size:.82rem;color:var(--text-muted);margin-bottom:1.5rem}
.form-group{margin-bottom:1.15rem}
.form-group label{display:block;font-size:.8rem;font-weight:600;color:var(--text);margin-bottom:.4rem}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:.72rem 1rem;border:1.5px solid var(--border);border-radius:var(--radius-sm);font-size:.875rem;font-family:'Inter',sans-serif;color:var(--text);outline:none;transition:border-color .2s;background:white}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--navy)}
.form-group textarea{height:110px;resize:vertical}
.contact-info-card{background:white;border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;margin-bottom:1rem}
.contact-info-card h3{font-size:1.05rem;color:var(--navy);margin-bottom:1.1rem;font-family:'Playfair Display',serif}
.ci-item{display:flex;align-items:flex-start;gap:.85rem;padding:.85rem 0;border-bottom:1px solid var(--light)}
.ci-item:last-child{border-bottom:none}
.ci-icon{width:38px;height:38px;min-width:38px;background:var(--navy);border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;font-size:1rem}
.ci-icon span{font-size:1rem}
.ci-info strong{display:block;font-size:.825rem;font-weight:600;color:var(--navy);margin-bottom:.15rem}
.ci-info p{font-size:.82rem;color:var(--text-muted);line-height:1.5}
.wa-card{background:var(--navy);border-radius:var(--radius);padding:1.75rem;text-align:center}
.wa-card p{color:rgba(255,255,255,.72);font-size:.85rem;margin-bottom:1.25rem;line-height:1.6}
.wa-card .btn{width:100%;font-size:.9rem;padding:.85rem}

/* ===== FOOTER ===== */
footer{background:#071c40;padding:3rem 1.25rem 1.5rem}
.footer-inner{max-width:1120px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:2.5rem;padding-bottom:2.5rem;border-bottom:1px solid rgba(255,255,255,.08)}
@media(min-width:600px){.footer-top{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.footer-top{grid-template-columns:2fr 1fr 1fr}}
.footer-brand p{font-size:.82rem;color:rgba(255,255,255,.48);line-height:1.75;margin-top:.75rem;max-width:300px}
.footer-col h4{color:var(--orange);font-family:'Inter',sans-serif;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin-bottom:1rem}
.footer-col a,.footer-col button{display:block;width:auto;text-align:left;font-size:.82rem;color:rgba(255,255,255,.55);padding:.3rem 0;transition:color .2s;background:none;border:none;cursor:pointer;font-family:'Inter',sans-serif}
.footer-col a:hover,.footer-col button:hover{color:white}
.footer-bottom{display:flex;flex-wrap:wrap;gap:.5rem;justify-content:space-between;align-items:center}
.footer-bottom p{font-size:.75rem;color:rgba(255,255,255,.28)}

/* ===== FLOATING WA ===== */
.wa-float{position:fixed;bottom:1.5rem;right:1.25rem;z-index:200;background:#25D366;color:white;border-radius:50%;width:56px;height:56px;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.4);transition:transform .2s,box-shadow .2s;border:none;cursor:pointer}
.wa-float:hover{transform:scale(1.08);box-shadow:0 6px 28px rgba(37,211,102,.55)}
.wa-float svg{width:28px;height:28px;fill:white}
.wa-pulse{position:absolute;inset:-4px;border-radius:50%;border:2px solid rgba(37,211,102,.5);animation:wapulse 2.2s infinite}
@keyframes wapulse{0%{transform:scale(1);opacity:1}100%{transform:scale(1.55);opacity:0}}

/* ===== LOCATION BADGE ===== */
.location-badge{display:inline-flex;align-items:center;gap:.4rem;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.85);font-size:.75rem;padding:.35rem .9rem;border-radius:100px;margin-bottom:1rem}

/* ===== MISC ===== */
.text-center{text-align:center}
.mt-1{margin-top:1rem}
.mt-2{margin-top:2rem}
.divider{height:1px;background:var(--border);margin:2rem 0}

/* ===== POWERED BY BADGE (HERO) ===== */
.powered-badge{display:inline-block;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.8);font-size:.78rem;padding:.5rem 1.1rem;border-radius:100px;margin-bottom:1.5rem;letter-spacing:.01em}
.powered-badge strong{color:var(--orange)}

/* ===== DELIVERY GRID (HOME) ===== */
.delivery-grid{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:560px){.delivery-grid{grid-template-columns:1fr 1fr}}
@media(min-width:900px){.delivery-grid{grid-template-columns:repeat(3,1fr)}}
.delivery-card{background:white;border:1px solid var(--border);border-radius:var(--radius);padding:1.5rem;text-align:center;transition:box-shadow .2s,transform .2s}
.delivery-card:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.delivery-img{width:72px;height:72px;border-radius:50%;overflow:hidden;margin:0 auto .85rem;border:2px solid var(--light)}
.delivery-img img{width:100%;height:100%;object-fit:cover;display:block}
.delivery-card h4{font-family:'Playfair Display',serif;font-size:1rem;color:var(--navy);margin-bottom:.4rem}
.delivery-card p{font-size:.8rem;color:var(--text-muted);margin-bottom:1rem;line-height:1.6}
.delivery-cta-box{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;background:var(--navy);border-radius:var(--radius);padding:1.5rem 2rem;margin-top:2rem}
.delivery-cta-box strong{display:block;color:white;font-size:1rem;margin-bottom:.25rem}
.delivery-cta-box p{color:rgba(255,255,255,.65);font-size:.82rem;margin:0}
@media(max-width:600px){.delivery-cta-box{text-align:center;justify-content:center}}
.delivery-section-header h2{font-size:1.5rem}
.delivery-section-header p{font-size:.85rem}
.delivery-section-header .eyebrow{font-size:.68rem}

/* ===== KITCHEN INTRO (ABOUT) ===== */
.kitchen-intro{background:var(--navy);border-radius:var(--radius);padding:2rem;margin-bottom:.5rem}
.kitchen-intro p{color:rgba(255,255,255,.8);font-size:.925rem;line-height:1.9;margin:0}

/* ===== SERVICES DIVISION HEADERS ===== */
.division-header{text-align:center;margin-bottom:1.75rem}
.division-label{display:inline-block;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:.4rem 1.1rem;border-radius:100px;margin-bottom:.75rem}
.events-label{background:rgba(11,42,99,.1);color:var(--navy);border:1px solid rgba(11,42,99,.2)}
.kitchen-label{background:rgba(245,130,32,.12);color:var(--orange);border:1px solid rgba(245,130,32,.3)}
.division-header h2{font-size:clamp(1.5rem,3.5vw,2.1rem);color:var(--navy);margin-bottom:.5rem}
.division-header p{color:var(--text-muted);max-width:540px;margin:0 auto;font-size:.875rem}
.division-divider{height:2px;background:linear-gradient(90deg,transparent,var(--border),transparent);margin:3rem 0}

/* ===== REVIEWS CAROUSEL ===== */
.reviews-carousel-wrapper{position:relative;overflow:hidden;padding:0 0 2.5rem}
.reviews-track{display:flex;transition:transform .5s cubic-bezier(.4,0,.2,1)}
.review-slide{min-width:100%;padding:0 .5rem}
@media(min-width:600px){.review-slide{min-width:50%;padding:0 .6rem}}
@media(min-width:900px){.review-slide{min-width:33.333%;padding:0 .7rem}}
.reviews-carousel-outer{position:relative}
.carousel-btn{position:absolute;top:50%;transform:translateY(-60%);z-index:10;width:42px;height:42px;border-radius:50%;background:white;border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s;box-shadow:0 2px 12px rgba(11,42,99,.1)}
.carousel-btn:hover{background:var(--navy);border-color:var(--navy);color:white}
.carousel-btn svg{width:18px;height:18px;stroke:currentColor;stroke-width:2;fill:none;display:block}
.carousel-btn:hover svg{stroke:white}
.carousel-prev{left:-1rem}
.carousel-next{right:-1rem}
@media(max-width:600px){.carousel-prev{left:-.25rem}.carousel-next{right:-.25rem}}
.carousel-dots{display:flex;justify-content:center;gap:.5rem;margin-top:1.5rem}
.carousel-dot{width:8px;height:8px;border-radius:50%;background:var(--border);border:none;cursor:pointer;transition:all .25s;padding:0}
.carousel-dot.active{background:var(--orange);width:22px;border-radius:4px}

/* ===== SOCIAL ICONS ===== */
.social-icons{display:flex;align-items:center;gap:.65rem}
.social-icon{display:flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:50%;border:1.5px solid rgba(255,255,255,.2);color:rgba(255,255,255,.65);transition:all .2s;flex-shrink:0}
.social-icon:hover{background:var(--orange);border-color:var(--orange);color:white;transform:translateY(-2px)}
.social-icon svg{width:17px;height:17px;fill:currentColor;display:block}
/* contact page social icons (on light bg) */
.social-icons-light .social-icon{border-color:var(--border);color:var(--text-muted)}
.social-icons-light .social-icon:hover{background:var(--orange);border-color:var(--orange);color:white}
.social-connect-row{display:flex;align-items:center;gap:1rem;flex-wrap:wrap;margin-top:1.1rem}
.social-connect-row span{font-size:.8rem;color:var(--text-muted);font-weight:500}
/* footer social row */
.footer-social-row{margin-top:1rem;display:flex;align-items:center;gap:.5rem}
.footer-social-row span{font-size:.72rem;color:rgba(255,255,255,.4);font-weight:500;letter-spacing:.04em;text-transform:uppercase;margin-right:.25rem}