/* ============ TOKENS ============ */
:root{
  --navy: #101d3a;
  --navy-2: #1b2c52;
  --navy-soft: #2c3f6b;
  --yellow: #eeb520;
  --yellow-deep: #c9910a;
  --yellow-pale: #fbe6a8;
  --cream: #fbf5e7;
  --cream-2: #f6efdc;
  --white: #ffffff;
  --gray: #e8e3d6;
  --ink: #1d2230;
  --ink-soft: #55596b;

  --display: 'Fraunces', serif;
  --body: 'Manrope', sans-serif;
  --hand: 'Caveat', cursive;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px -20px rgba(16,29,58,0.35);
  --shadow-card: 0 12px 30px -12px rgba(16,29,58,0.22);
  --container: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body{
  margin:0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--display); margin:0; font-weight:600; color: var(--navy); }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
input,textarea,select{ font-family: inherit; }
.container{ max-width: var(--container); margin:0 auto; padding: 0 22px; }
section{ position:relative; }
:focus-visible{ outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

.eyebrow{
  font-family: var(--hand);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  color: var(--yellow-deep);
  display:inline-block;
  margin-bottom: 6px;
  transform: rotate(-2deg);
}
.section-head{ text-align:center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2{ font-size: clamp(2rem, 4vw, 2.9rem); line-height:1.15; }
.section-head p{ color: var(--ink-soft); margin-top:14px; font-size: 1.05rem; }
.section-pad{ padding: clamp(60px, 9vw, 110px) 0; }

/* signature: cut-corner "menu card" shape, echoing the restaurant's own paper menus */
.cut-card{
  --cut: 22px;
  clip-path: polygon(
    var(--cut) 0, calc(100% - var(--cut)) 0, 100% var(--cut),
    100% 100%, 0 100%, 0 var(--cut)
  );
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight:700;
  font-size: 0.95rem;
  letter-spacing: .2px;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-3px); }
.btn-primary{ background: var(--yellow); color: var(--navy); box-shadow: 0 14px 30px -10px rgba(238,181,32,0.55); }
.btn-primary:hover{ background: var(--yellow-deep); box-shadow: 0 16px 34px -10px rgba(201,145,10,0.55); }
.btn-outline{ background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover{ background: var(--white); color: var(--navy); }
.btn-navy{ background: var(--navy); color: var(--cream); }
.btn-navy:hover{ background: var(--navy-2); }
.btn-wa{ background:#25D366; color:#fff; }
.btn-wa:hover{ background:#1ebc59; }
.btn-sm{ padding: 10px 20px; font-size: .85rem; }

/* ============ NAV ============ */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 1000;
  background: rgba(16,29,58,0.0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 20px 0;
}
.nav.scrolled{
  background: rgba(16,29,58,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -15px rgba(0,0,0,0.4);
  padding: 12px 0;
}
.nav .container{ display:flex; align-items:center; justify-content:space-between; }
.nav-brand{ display:flex; align-items:center; gap:12px; }
.nav-brand img{ width:46px; height:46px; border-radius:50%; object-fit:cover; border:2px solid var(--yellow); transition: width .3s ease, height .3s ease; }
.nav.scrolled .nav-brand img{ width:38px; height:38px; }
.nav-brand span{ font-family: var(--display); font-weight:600; color:#fff; font-size:1.15rem; letter-spacing: .3px; }
.nav-links{ display:flex; align-items:center; gap:32px; }
.nav-links a{ color: rgba(255,255,255,0.86); font-size: .95rem; font-weight:600; position:relative; padding: 4px 0; }
.nav-links a::after{ content:''; position:absolute; left:0; bottom:-2px; height:2px; width:0; background: var(--yellow); transition: width .25s ease; }
.nav-links a:hover::after, .nav-links a:focus-visible::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{ display:none; background:none; border:none; color:#fff; width:40px; height:40px; }
.nav-toggle svg{ width:26px; height:26px; }

@media (max-width: 900px){
  .nav-links{
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); height:100vh;
    background: var(--navy); flex-direction:column; justify-content:center; align-items:flex-start;
    padding: 40px; gap: 26px; transform: translateX(100%); transition: transform .35s ease;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.15rem; }
  .nav-toggle{ display:flex; align-items:center; justify-content:center; z-index:1100; }
  .nav-cta .btn span.long{ display:none; }
  body.menu-open{ overflow:hidden; }
}
.nav-overlay{ position:fixed; inset:0; background: rgba(0,0,0,.45); z-index: 999; opacity:0; pointer-events:none; transition: opacity .3s ease; }
.nav-overlay.show{ opacity:1; pointer-events:auto; }

/* ============ HERO ============ */
.hero{
  min-height: 100svh;
  display:flex; align-items:flex-end;
  position:relative;
  background: linear-gradient(180deg, rgba(16,29,58,0.35) 0%, rgba(16,29,58,0.55) 55%, rgba(16,29,58,0.92) 100%), url('img/gallery-table-pizzas.jpg') center 30%/cover no-repeat;
  padding: 140px 0 70px;
}
.hero::before{
  content:''; position:absolute; inset:0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 26px, transparent 26px 78px);
  pointer-events:none;
  mix-blend-mode: overlay;
}
.hero-inner{ position:relative; z-index:2; color:#fff; max-width: 720px; }
.hero-badge{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.35);
  padding: 8px 16px; border-radius:100px; font-size:.82rem; font-weight:700; letter-spacing:.5px;
  text-transform:uppercase; backdrop-filter: blur(6px); margin-bottom:22px;
  opacity:0; animation: fadeUp .8s ease .1s forwards;
}
.hero h1{
  color:#fff; font-size: clamp(2.6rem, 6.2vw, 4.6rem); line-height:1.03; font-weight:600;
  opacity:0; animation: fadeUp .9s ease .25s forwards;
}
.hero h1 em{ font-style:italic; color: var(--yellow); }
.hero p.lede{
  margin-top:20px; font-size: clamp(1.05rem,1.6vw,1.25rem); color: rgba(255,255,255,0.88); max-width:540px;
  opacity:0; animation: fadeUp .9s ease .4s forwards;
}
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin-top:36px; opacity:0; animation: fadeUp .9s ease .55s forwards; }
.hero-meta{
  display:flex; flex-wrap:wrap; gap:14px 34px; margin-top:48px;
  opacity:0; animation: fadeUp .9s ease .7s forwards;
}
.hero-meta .item{ display:flex; align-items:center; gap:10px; color:#fff; font-size:.92rem; font-weight:600; }
.hero-meta svg{ width:20px; height:20px; flex-shrink:0; color: var(--yellow); }
.hero-scroll{
  position:absolute; right: 26px; bottom: 26px; z-index:2; color:#fff; display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:.72rem; letter-spacing:2px; text-transform:uppercase; opacity:.85;
}
.hero-scroll .line{ width:1px; height:44px; background: linear-gradient(#fff, transparent); animation: scrollLine 1.8s ease infinite; }
@media (max-width: 700px){ .hero-scroll{ display:none; } }

.brand-seal{
  position:absolute; top: 108px; right: 26px; z-index:3;
  width: 108px; height:108px; border-radius:50%;
  border: 3px solid var(--yellow); box-shadow: var(--shadow-soft);
  overflow:hidden; opacity:0; animation: fadeUp .9s ease .3s forwards;
}
.brand-seal img{ width:100%; height:100%; object-fit:cover; }
@media (max-width: 760px){
  .brand-seal{ width:74px; height:74px; top: 92px; right:18px; border-width:2px; }
}

@keyframes fadeUp{ from{ opacity:0; transform: translateY(22px);} to{ opacity:1; transform:none; } }
@keyframes scrollLine{ 0%{ transform: scaleY(0); transform-origin: top;} 50%{ transform: scaleY(1); transform-origin: top;} 51%{ transform-origin: bottom;} 100%{ transform: scaleY(0); transform-origin: bottom;} }

/* ============ REVEAL ============ */
.reveal{ opacity:0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ============ INTRO STRIP ============ */
.intro-strip{ background: var(--navy); color:#fff; padding: 0; }
.intro-grid{ display:grid; grid-template-columns: repeat(4,1fr); }
.intro-item{ padding: 30px 20px; text-align:center; border-right:1px solid rgba(255,255,255,0.1); }
.intro-item:last-child{ border-right:none; }
.intro-item svg{ width:28px; height:28px; color: var(--yellow); margin-bottom:10px; }
.intro-item h4{ color:#fff; font-size:.95rem; margin-bottom:4px; }
.intro-item p{ font-size:.82rem; color: rgba(255,255,255,0.65); }
@media (max-width: 760px){
  .intro-grid{ grid-template-columns: repeat(2,1fr); }
  .intro-item{ border-bottom:1px solid rgba(255,255,255,0.1); }
}

/* ============ ABOUT ============ */
.about{ background: var(--cream); }
.about-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items:center; }
.about-media{ position:relative; }
.about-media .frame-main{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft); }
.about-media .frame-small{
  position:absolute; right:-30px; bottom:-40px; width:56%;
  border: 8px solid var(--cream); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  overflow:hidden;
}
.about-quote{
  position:absolute; left:-24px; top:-30px; background: var(--yellow); color: var(--navy);
  padding: 16px 20px; border-radius: var(--radius-sm); font-family: var(--hand); font-size:1.3rem;
  max-width:210px; box-shadow: var(--shadow-card); transform: rotate(-4deg); line-height:1.25;
}
.about h2{ font-size: clamp(1.9rem,3.6vw,2.6rem); margin-bottom:20px; }
.about p{ color: var(--ink-soft); margin-bottom:16px; }
.about-signature{ font-family: var(--hand); font-size:2rem; color: var(--navy); margin-top:18px; }
@media (max-width: 900px){
  .about-grid{ grid-template-columns:1fr; gap:70px; }
  .about-media{ margin-bottom: 20px;}
  .about-media .frame-small{ width:60%; right:-14px; bottom:-30px; }
  .about-quote{ left:10px; top:-24px; }
}

/* ============ HOURS BAND ============ */
.hours-band{
  background: var(--yellow-pale);
  padding: 46px 0;
  position: relative;
}
.hours-inner{ display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:24px; }
.hours-cols{ display:flex; gap:46px; flex-wrap:wrap; }
.hours-col h4{ font-size:.78rem; text-transform:uppercase; letter-spacing:1.5px; color: var(--yellow-deep); margin-bottom:6px; }
.hours-col p{ font-family: var(--display); font-size:1.35rem; color: var(--navy); }
.hours-col .closed{ color:#b23b3b; }

/* ============ MENU ============ */
.menu-section{ background: var(--white); }
.menu-tabs{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom: 46px; }
.menu-tab{
  padding: 11px 22px; border-radius:100px; border:1.5px solid var(--gray); background: var(--white);
  font-weight:700; font-size:.9rem; color: var(--ink-soft); transition: all .25s ease;
}
.menu-tab:hover{ border-color: var(--yellow); color: var(--navy); }
.menu-tab.active{ background: var(--navy); border-color: var(--navy); color:#fff; }

.menu-panel{ display:none; }
.menu-panel.active{ display:block; animation: fadeUp .5s ease; }
.menu-panel-head{ display:flex; gap:28px; align-items:center; margin-bottom:36px; flex-wrap:wrap; }
.menu-panel-head img{ width:120px; height:120px; object-fit:cover; border-radius: var(--radius-md); box-shadow: var(--shadow-card); flex-shrink:0; }
.menu-panel-head .txt{ flex:1; min-width:220px; }
.menu-panel-head h3{ font-size: clamp(1.5rem,2.6vw,2rem); }
.menu-panel-head p{ color: var(--ink-soft); margin-top:8px; }
.menu-note{ display:inline-block; margin-top:12px; font-size:.85rem; background: var(--cream-2); padding:6px 14px; border-radius:100px; color: var(--navy); font-weight:600; }

.menu-list{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 760px){ .menu-list{ grid-template-columns: 1fr; } }

.menu-item{
  display:flex; justify-content:space-between; gap:16px; align-items:flex-start;
  padding: 20px 22px; border:1px solid var(--gray); border-radius: var(--radius-md);
  background: var(--cream); transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.menu-item:hover{ box-shadow: var(--shadow-card); border-color: var(--yellow); transform: translateY(-3px); }
.menu-item .mi-main{ flex:1; }
.menu-item h5{ font-family: var(--display); font-size:1.08rem; color: var(--navy); font-weight:600; margin-bottom:4px; }
.menu-item p{ font-size:.87rem; color: var(--ink-soft); margin-bottom:12px; }
.menu-item .mi-price{ font-family: var(--display); font-weight:600; color: var(--yellow-deep); font-size:1.05rem; white-space:nowrap; margin-left:10px; }
.mi-order{
  display:inline-flex; align-items:center; gap:6px; font-size:.78rem; font-weight:700; color:#1ea952;
  padding: 7px 13px; border-radius:100px; border:1.5px solid #bfe8cf; background:#eefbf2; transition: all .2s ease;
  font-family: var(--body); cursor:pointer;
}
.mi-order:hover{ background:#1ea952; color:#fff; border-color:#1ea952; }
.mi-order svg{ width:14px; height:14px; }

/* ============ RESERVATION ============ */
.reservation{
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow:hidden;
}
.reservation::before{
  content:''; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(16,29,58,0.94) 15%, rgba(16,29,58,0.78) 55%, rgba(16,29,58,0.6) 100%), url('img/interior-fountain-2.jpg') center/cover no-repeat;
}
.reservation::after{
  content:''; position:absolute; right:-120px; top:-120px; width:420px; height:420px;
  background: radial-gradient(circle, rgba(238,181,32,0.18), transparent 70%);
}
.reservation-grid{ display:grid; grid-template-columns: 1fr; gap:38px; align-items:flex-start; position:relative; z-index:1;}
.reservation-info{ max-width:720px; }
.reservation-list{ display:flex; flex-wrap:wrap; gap:10px 26px; }
@media (max-width: 900px){
  .reservation-grid{ grid-template-columns: 1fr; gap:38px; }
}
.reservation-info h2{ color:#fff; font-size: clamp(1.9rem,3.6vw,2.6rem); margin-bottom:18px; }
.reservation-info p{ color: rgba(255,255,255,0.72); margin-bottom:26px; }
.reservation-list li{ display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; color: rgba(255,255,255,0.85); font-size:.94rem; }
.reservation-list svg{ width:20px; height:20px; color: var(--yellow); flex-shrink:0; margin-top:2px; }

.res-form{
  background: var(--cream); border-radius: var(--radius-lg); padding: clamp(24px,4vw,44px); box-shadow: var(--shadow-soft);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; margin-bottom:18px; }
.form-row.single{ grid-template-columns: 1fr; }
@media (max-width: 620px){ .form-row{ grid-template-columns: 1fr; } }
.field label{ display:block; font-size:.8rem; font-weight:700; color: var(--navy); margin-bottom:7px; text-transform:uppercase; letter-spacing:.5px; }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 16px; border-radius: var(--radius-sm); border:1.5px solid var(--gray);
  background:#fff; font-size:.95rem; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(238,181,32,0.18); outline:none; }
.field textarea{ resize: vertical; min-height:90px; }
.form-foot{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; margin-top:6px; }
.form-note{ font-size:.8rem; color: var(--ink-soft); }
.form-status{ margin-top:14px; font-size:.9rem; font-weight:700; color:#1ea952; display:none; }
.form-status.show{ display:block; }

/* ============ GALLERY ============ */
.gallery-section{ background: var(--cream-2); }
.masonry{
  column-count: 3; column-gap: 18px;
}
@media (max-width: 860px){ .masonry{ column-count:2; } }
@media (max-width: 520px){ .masonry{ column-count:1; } }
.masonry figure{
  break-inside: avoid; margin: 0 0 18px; border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-card); position:relative; cursor: zoom-in;
}
.masonry figure img{ width:100%; transition: transform .5s ease; }
.masonry figure:hover img{ transform: scale(1.06); }
.masonry figure figcaption{
  position:absolute; left:0; right:0; bottom:0; padding: 16px;
  background: linear-gradient(0deg, rgba(16,29,58,0.85), transparent);
  color:#fff; font-size:.82rem; font-weight:600; opacity:0; transition: opacity .3s ease;
}
.masonry figure:hover figcaption{ opacity:1; }

/* Lightbox */
.lightbox{ position:fixed; inset:0; background: rgba(16,20,32,0.94); z-index:2000; display:none; align-items:center; justify-content:center; padding: 30px; }
.lightbox.open{ display:flex; }
.lightbox img{ max-width:min(90vw,1000px); max-height:86vh; border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close{ position:absolute; top:24px; right:24px; width:46px; height:46px; border-radius:50%; background: rgba(255,255,255,0.12); color:#fff; border:1px solid rgba(255,255,255,0.3); display:flex; align-items:center; justify-content:center; }
.lightbox-close:hover{ background: var(--yellow); color: var(--navy); }

/* ============ TESTIMONIALS ============ */
.reviews{ background: var(--white); }
.review-track{ display:grid; grid-template-columns: repeat(3,1fr); gap:24px; }
@media (max-width: 900px){ .review-track{ grid-template-columns: 1fr; max-width:520px; margin:0 auto; } }
.review-card{
  background: var(--cream); border-radius: var(--radius-md); padding: 30px 26px; position:relative;
  border: 1px dashed var(--yellow-deep); box-shadow: var(--shadow-card);
}
.review-stars{ display:flex; gap:4px; color: var(--yellow-deep); margin-bottom:14px; }
.review-stars svg{ width:16px; height:16px; }
.review-card p.quote{ font-family: var(--display); font-style:italic; font-size:1.05rem; color: var(--navy); line-height:1.55; margin-bottom:18px; }
.review-person{ display:flex; align-items:center; gap:12px; }
.review-avatar{ width:42px; height:42px; border-radius:50%; background: var(--navy); color: var(--yellow); display:flex; align-items:center; justify-content:center; font-family: var(--display); font-weight:600; }
.review-person span{ font-weight:700; font-size:.9rem; color: var(--navy); display:block; }
.review-person small{ color: var(--ink-soft); font-size:.78rem; }

/* ============ INSTAGRAM ============ */
.insta-section{ background: var(--navy); color:#fff; }
.insta-head{ display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:20px; margin-bottom:32px; }
.insta-head h2{ color:#fff; font-size: clamp(1.8rem,3.4vw,2.4rem); }
.insta-head p{ color: rgba(255,255,255,0.65); margin-top:8px; }
.insta-grid{ display:grid; grid-template-columns: repeat(5,1fr); gap:14px; }
@media (max-width: 900px){ .insta-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px){ .insta-grid{ grid-template-columns: repeat(2,1fr); } }
.insta-tile{ position:relative; border-radius: var(--radius-sm); overflow:hidden; aspect-ratio:1/1; }
.insta-tile img{ width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.insta-tile:hover img{ transform: scale(1.08); }
.insta-tile::after{
  content:''; position:absolute; inset:0; background: rgba(238,181,32,0); transition: background .3s ease;
}
.insta-tile:hover::after{ background: rgba(238,181,32,0.18); }
.insta-tile .ig-icon{ position:absolute; top:10px; right:10px; width:22px; height:22px; color:#fff; opacity:0; transition: opacity .3s ease; }
.insta-tile:hover .ig-icon{ opacity:1; }

/* ============ CONTACT ============ */
.contact{ background: var(--cream); }
.contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:50px; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{ background:#fff; border-radius: var(--radius-lg); padding: clamp(24px,3vw,36px); box-shadow: var(--shadow-card); margin-bottom:22px; }
.contact-row{ display:flex; gap:16px; align-items:flex-start; padding: 16px 0; border-bottom: 1px solid var(--gray); }
.contact-row:last-child{ border-bottom:none; }
.contact-row svg{ width:22px; height:22px; color: var(--yellow-deep); flex-shrink:0; margin-top:2px; }
.contact-row h4{ font-size:.98rem; margin-bottom:4px; }
.contact-row p, .contact-row a{ color: var(--ink-soft); font-size:.92rem; }
.contact-row a:hover{ color: var(--navy); text-decoration:underline; }
.map-wrap{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-card); height: 320px; }
.map-wrap iframe{ width:100%; height:100%; border:0; }
.contact-form .field{ margin-bottom:16px; }

/* ============ FOOTER ============ */
footer{ background: #0b1530; color: rgba(255,255,255,0.75); padding: 60px 0 26px; }
.foot-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap:40px; margin-bottom:44px; }
@media (max-width: 800px){ .foot-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .foot-grid{ grid-template-columns: 1fr; } }
.foot-brand{ display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.foot-brand img{ width:44px; height:44px; border-radius:50%; border:2px solid var(--yellow); object-fit:cover; }
.foot-brand span{ font-family: var(--display); color:#fff; font-size:1.15rem; }
.foot-col h5{ color:#fff; font-size:.85rem; text-transform:uppercase; letter-spacing:1px; margin-bottom:16px; }
.foot-col ul li{ margin-bottom:10px; }
.foot-col a:hover{ color: var(--yellow); }
.foot-social{ display:flex; gap:12px; margin-top:16px; }
.foot-social a{ width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,0.08); display:flex; align-items:center; justify-content:center; transition: background .25s ease; }
.foot-social a:hover{ background: var(--yellow); color: var(--navy); }
.foot-social svg{ width:18px; height:18px; }
.foot-bottom{ border-top:1px solid rgba(255,255,255,0.1); padding-top:22px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.82rem; }

/* ============ FLOATING WHATSAPP ============ */
.float-wa{
  position: fixed; right: 22px; bottom: 22px; z-index: 900;
  width: 60px; height:60px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);
  animation: pulse 2.6s ease infinite;
}
.float-wa svg{ width:30px; height:30px; }
@keyframes pulse{ 0%,100%{ box-shadow: 0 12px 30px -8px rgba(37,211,102,0.6);} 50%{ box-shadow: 0 12px 30px -8px rgba(37,211,102,1);} }

/* ============ CART / PANIER ============ */
.float-cart{
  position: fixed; right: 22px; bottom: 92px; z-index: 900;
  width: 60px; height:60px; border-radius:50%; background: var(--navy); color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-soft);
  border:none; cursor:pointer;
}
.float-cart svg{ width:26px; height:26px; }
.cart-badge{
  position:absolute; top:-4px; right:-4px; background: var(--yellow); color: var(--navy);
  font-family: var(--body); font-weight:800; font-size:.72rem; min-width:20px; height:20px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding:0 4px; border:2px solid var(--cream);
}
.mi-add{
  display:inline-flex; align-items:center; gap:6px; border:1.5px solid var(--navy); color: var(--navy);
  background:#fff; padding:7px 14px; border-radius: 999px; font-size:.8rem; font-weight:700; cursor:pointer;
  transition: background .2s ease, color .2s ease;
}
.mi-add:hover{ background: var(--navy); color:#fff; }
.mi-actions{ display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.cart-overlay{
  position:fixed; inset:0; background: rgba(16,29,58,0.5); z-index:1400; opacity:0; pointer-events:none; transition: opacity .3s ease;
}
.cart-overlay.show{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position:fixed; top:0; right:-420px; width:100%; max-width:420px; height:100%; background: var(--cream);
  z-index:1500; box-shadow: -20px 0 50px -20px rgba(16,29,58,0.4); transition: right .35s ease;
  display:flex; flex-direction:column;
}
.cart-drawer.open{ right:0; }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding:22px 24px; border-bottom:1px solid var(--gray); }
.cart-head h3{ font-family: var(--display); margin:0; color: var(--navy); }
.cart-close{ background:none; border:none; cursor:pointer; color: var(--navy); }
.cart-close svg{ width:22px; height:22px; }
.cart-body{ flex:1; overflow-y:auto; padding:18px 24px; }
.cart-empty{ text-align:center; color: var(--ink-soft); padding:40px 10px; }
.cart-row{ display:flex; gap:12px; align-items:flex-start; padding:14px 0; border-bottom:1px solid var(--gray); }
.cart-row-main{ flex:1; }
.cart-row-main h5{ margin:0 0 4px; font-family: var(--display); font-size:1rem; color: var(--navy); }
.cart-row-price{ font-size:.85rem; color: var(--ink-soft); }
.cart-qty{ display:flex; align-items:center; gap:8px; margin-top:8px; }
.cart-qty button{ width:26px; height:26px; border-radius:50%; border:1px solid var(--navy); background:#fff; color: var(--navy); cursor:pointer; font-weight:700; }
.cart-remove{ background:none; border:none; color:#b23; cursor:pointer; font-size:.78rem; text-decoration:underline; margin-top:6px; }
.cart-foot{ padding:20px 24px; border-top:1px solid var(--gray); }
.cart-total{ display:flex; justify-content:space-between; font-weight:800; color: var(--navy); margin-bottom:14px; font-family: var(--display); font-size:1.1rem; }

.order-modal-overlay{
  position:fixed; inset:0; background: rgba(16,29,58,0.55); z-index:1600; opacity:0; pointer-events:none; transition: opacity .3s ease;
  display:flex; align-items:center; justify-content:center; padding:20px;
}
.order-modal-overlay.show{ opacity:1; pointer-events:auto; }
.order-modal{
  background: var(--cream); border-radius: var(--radius-lg); max-width:440px; width:100%;
  padding:28px; box-shadow: var(--shadow-soft); max-height:90vh; overflow-y:auto;
  transform: translateY(20px); transition: transform .3s ease;
}
.order-modal-overlay.show .order-modal{ transform: translateY(0); }
.order-modal h3{ font-family: var(--display); color: var(--navy); margin:0 0 6px; }
.order-modal p.hint{ color: var(--ink-soft); font-size:.88rem; margin:0 0 18px; }
.order-modal .field{ margin-bottom:14px; }
.order-modal label{ display:block; font-size:.82rem; font-weight:700; color: var(--navy); margin-bottom:6px; }
.order-modal input, .order-modal select{
  width:100%; padding:11px 14px; border-radius: var(--radius-sm); border:1px solid var(--gray); font-family: var(--body); font-size:.92rem; background:#fff;
}
.order-type-choice{ display:flex; gap:10px; }
.order-type-choice label{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px; padding:11px 10px; border-radius: var(--radius-sm);
  border:1.5px solid var(--gray); cursor:pointer; font-weight:700; font-size:.85rem; color: var(--ink-soft); margin:0;
}
.order-type-choice input{ width:auto; }
.order-type-choice input:checked + span{ color: var(--navy); }
.order-type-choice label:has(input:checked){ border-color: var(--navy); background: var(--yellow-pale); color: var(--navy); }
#orderAddressField{ display:none; }
.order-modal-actions{ display:flex; gap:10px; margin-top:6px; }
.order-modal-actions .btn{ flex:1; justify-content:center; }
.order-modal-cancel{
  background:#fff; border:1.5px solid var(--gray); color: var(--ink-soft); border-radius:999px; padding:12px 18px; font-weight:700; cursor:pointer; font-size:.9rem;
}

/* skip link */
.skip-link{ position:absolute; left:-999px; top:0; background:#fff; color:#000; padding:12px 18px; z-index:3000; border-radius: 0 0 10px 0; }
.skip-link:focus{ left:0; }

.lemon-divider{ display:flex; align-items:center; justify-content:center; gap:14px; margin: 0 auto 10px; color: var(--yellow-deep); }
.lemon-divider svg{ width:26px; height:26px; }
.lemon-divider .rule{ width:60px; height:1px; background: var(--yellow-deep); opacity:.5; }
