/* ===========================================================
   Bella Ciao Pizzeria — feuille de style
   Brand kit: Cream / Sage / Olive / Forest / Deep Forest / Tomato
   Type: Cormorant Garamond (titres) · Manrope (UI)
   =========================================================== */

:root {
  /* Brand kit */
  --cream-kit: #DAD7CD;
  --sage:      #A3B18A;
  --olive:     #588157;
  --forest:    #3A5A40;
  --deep:      #344E41;
  --tomato:    #C84A36;

  /* Working surfaces (warm paper tones derived from cream) */
  --paper:     #FBF7EC;   /* main background */
  --paper-2:   #F4EEDF;   /* alt cream section */
  --card:      #FFFDF7;   /* cards on paper */
  --ink:       #2C4034;   /* body text (soft deep green) */
  --ink-soft:  #5E6F60;   /* secondary text */
  --line:      #E2DCC9;   /* hairline on cream */
  --line-sage: rgba(163,177,138,.55);

  /* on dark green */
  --on-dark:        #F4EEDF;
  --on-dark-soft:   #C8D2BD;
  --line-dark:      rgba(218,215,205,.18);

  --tomato-deep: #B23E2C;

  --maxw: 1200px;
  --pad: clamp(20px, 4vw, 56px);

  --shadow-sm: 0 2px 10px rgba(52,78,65,.08);
  --shadow-md: 0 12px 34px rgba(52,78,65,.14);
  --shadow-lg: 0 28px 70px rgba(36,52,42,.26);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Manrope", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; margin: 0; line-height: 1.04; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--tomato);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow.both::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--sage);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.section { padding-block: calc(clamp(64px, 8vw, 112px) * var(--dens, 1)); position: relative; }

.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); }
.section-head h2 {
  font-size: calc(clamp(2.4rem, 4.6vw, 3.6rem) * var(--ts, 1));
  color: var(--deep);
  margin-top: 14px;
  letter-spacing: .01em;
}
.section-head p { color: var(--ink-soft); margin: 16px auto 0; max-width: 56ch; }

.on-dark .section-head h2 { color: var(--on-dark); }
.on-dark .section-head p { color: var(--on-dark-soft); }

/* ---------- Buttons ---------- */
.btn {
  --b: var(--tomato);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase;
  padding: 15px 30px; border-radius: var(--btn-radius, 999px);
  border: 1.5px solid var(--b);
  cursor: pointer; transition: all .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--tomato); color: #fff; border-color: var(--tomato); box-shadow: 0 8px 22px rgba(200,74,54,.28); }
.btn-primary:hover { background: var(--tomato-deep); border-color: var(--tomato-deep); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(200,74,54,.34); }
.btn-ghost { background: transparent; color: var(--deep); border-color: var(--forest); }
.btn-ghost:hover { background: var(--forest); color: var(--on-dark); transform: translateY(-2px); }
.btn-cream { background: var(--card); color: var(--deep); border-color: var(--cream-kit); }
.btn-cream:hover { background: var(--forest); color: var(--on-dark); border-color: var(--forest); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 13px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,247,236,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, background .2s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 62px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 14px; font-weight: 600; letter-spacing: .03em;
  color: var(--deep); position: relative; padding: 6px 0;
  text-transform: uppercase;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--tomato); transition: width .2s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-right { display: flex; align-items: center; gap: 20px; }
.phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--deep); }
.phone-link svg { width: 16px; height: 16px; color: var(--tomato); }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--deep); }
.burger svg { width: 28px; height: 28px; }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 80; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(36,52,42,.4); opacity: 0; transition: opacity .25s; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 340px);
  background: var(--paper); padding: 28px 26px; transform: translateX(100%);
  transition: transform .28s cubic-bezier(.2,.8,.2,1); display: flex; flex-direction: column; gap: 6px;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-panel a { padding: 14px 6px; font-weight: 600; font-size: 16px; border-bottom: 1px solid var(--line); color: var(--deep); }
.drawer-close { align-self: flex-end; background: none; border: none; cursor: pointer; color: var(--deep); margin-bottom: 12px; }
.drawer-close svg { width: 26px; height: 26px; }

/* ===========================================================
   HERO — centered editorial, big pizza centerpiece
   =========================================================== */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding-top: clamp(34px, 5vw, 64px);
  background: radial-gradient(130% 90% at 50% -10%, #FDFBF3 0%, var(--paper) 60%);
}
.hero-center { position: relative; z-index: 6; max-width: 900px; }
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: calc(clamp(2.9rem, 7vw, 5.6rem) * var(--ts, 1));
  color: var(--deep); line-height: 1.0; letter-spacing: .01em; margin: 0;
}
.hero-title .accent { color: var(--accent-word, var(--tomato)); font-style: italic; }
.hero.flat { background: var(--paper); }
.hero-pizza.no-anim { animation: none; }
.hero-sub {
  font-size: clamp(1.05rem, 1.55vw, 1.24rem); color: var(--ink-soft);
  margin: 24px auto 32px; max-width: 48ch; line-height: 1.55;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-size: 12px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--deep); box-shadow: var(--shadow-sm);
}
.hero-chip svg { width: 16px; height: 16px; color: var(--olive); }

.hero-pizza-wrap { position: relative; z-index: 4; margin-top: clamp(14px, 2.5vw, 34px); }
.hero-pizza {
  width: min(560px, 62vw); margin: 0 auto;
  margin-bottom: clamp(-50px, -5vw, -100px);
  display: block;
  filter: drop-shadow(0 44px 46px rgba(36,52,42,.30));
  animation: pizzaFloat 8s ease-in-out infinite;
}
@keyframes pizzaFloat { 0%,100%{ transform: translateY(0) rotate(0deg); } 50%{ transform: translateY(-14px) rotate(2deg); } }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

/* floating ingredient stickers */
.hero-fx { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.fx { position: absolute; filter: drop-shadow(0 12px 13px rgba(36,52,42,.24)); animation: floaty 7s ease-in-out infinite; }
.fx svg { display: block; width: 100%; height: 100%; }
.fx.f1 { width: 70px; height: 70px; top: 30%; left: 7%;  animation-duration: 7.5s; }
.fx.f2 { width: 64px; height: 64px; top: 20%; right: 8%; animation-duration: 6.5s; animation-delay: -1.2s; }
.fx.f3 { width: 58px; height: 58px; top: 52%; left: 13%; animation-duration: 8.2s; animation-delay: -.6s; }
.fx.f4 { width: 60px; height: 60px; top: 46%; right: 11%; animation-duration: 7.8s; animation-delay: -2s; }
.fx.f5 { width: 78px; height: 78px; top: 64%; right: 18%; animation-duration: 6.8s; animation-delay: -1.6s; }
.fx.f6 { width: 74px; height: 74px; top: 70%; left: 19%; animation-duration: 7.2s; animation-delay: -2.6s; }

/* ===========================================================
   POINTS FORTS
   =========================================================== */
.feat { background: var(--paper-2); position: relative; }
.feat-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  position: relative;
}
.feat-card { text-align: center; padding: 18px 16px; position: relative; }
.feat-card + .feat-card::before {
  content: ""; position: absolute; left: 0; top: 16%; height: 68%; width: 1px; background: var(--line-sage);
}
.feat-ic { width: 62px; height: 62px; margin: 0 auto 16px; color: var(--olive); }
.feat-ic svg { width: 100%; height: 100%; }
.feat-card h3 { font-size: 1.42rem; color: var(--deep); margin-bottom: 8px; }
.feat-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.feat-mascot { position: absolute; right: -10px; bottom: -10px; width: 168px; z-index: 2; filter: drop-shadow(0 14px 18px rgba(36,52,42,.22)); }

/* ===========================================================
   MENU (dark green)
   =========================================================== */
.menu { background: var(--deep); color: var(--on-dark); position: relative; overflow: hidden; }
.menu .section-head h2 { color: var(--on-dark); }
.menu-layout { display: grid; grid-template-columns: 0.92fr 1.35fr 0.86fr; gap: clamp(20px, 3vw, 40px); align-items: stretch; }
.menu-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 360px; }
.menu-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 38px; align-content: start; }
.pizza { padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.pizza-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pizza-top h3 { font-size: 1.55rem; color: var(--on-dark); }
.price { font-family: var(--sans); font-weight: 800; font-size: 13.5px; color: #fff; background: var(--tomato); padding: 4px 11px; border-radius: 999px; white-space: nowrap; flex: none; }
.pizza p { font-size: 13px; color: var(--on-dark-soft); margin: 7px 0 0; line-height: 1.45; }
.menu-aside {
  background: var(--paper); color: var(--ink); border-radius: var(--r-lg);
  padding: 26px 24px; display: flex; flex-direction: column; align-items: center; text-align: center;
  box-shadow: var(--shadow-md); justify-content: space-between;
}
.menu-aside img.masc { width: 78%; margin: -10px auto 6px; filter: drop-shadow(0 12px 16px rgba(36,52,42,.18)); }
.menu-aside .quote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--deep); line-height: 1.15; margin: 6px 0 18px; }

/* ===========================================================
   SERVICES
   =========================================================== */
.serv { background: var(--paper); }
.serv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 34px); }
.serv-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px 30px; position: relative; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease; overflow: hidden;
}
.serv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.serv-ic { width: 54px; height: 54px; color: var(--olive); margin-bottom: 18px; }
.serv-ic svg { width: 100%; height: 100%; }
.serv-card h3 { font-size: 1.85rem; color: var(--deep); margin-bottom: 10px; }
.serv-card p { color: var(--ink-soft); font-size: 15px; margin: 0; max-width: 30ch; }
.serv-card .num { position: absolute; top: 22px; right: 26px; font-family: var(--serif); font-size: 2.4rem; color: var(--cream-kit); line-height: 1; }
.serv-card .masc { position: absolute; right: -28px; bottom: -22px; width: 150px; opacity: .96; filter: drop-shadow(0 12px 14px rgba(36,52,42,.2)); pointer-events: none; }
.serv-card.has-masc p { max-width: 20ch; }

/* ===========================================================
   À PROPOS / AMBIANCE (dark green)
   =========================================================== */
.about { background: var(--forest); color: var(--on-dark); position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr 1.06fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.about-photos { position: relative; }
.about-photos .main { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3.2; }
.about-photos .main img { width: 100%; height: 100%; object-fit: cover; }
.about-photos .poly {
  position: absolute; right: -4%; bottom: -10%; width: 46%;
  background: var(--card); padding: 10px 10px 30px; border-radius: 6px;
  box-shadow: var(--shadow-lg); transform: rotate(4deg); border: 1px solid var(--line);
}
.about-photos .poly img { border-radius: 3px; aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.about-photos .poly .cap { font-family: var(--serif); font-style: italic; color: var(--deep); text-align: center; font-size: 1.05rem; margin-top: 8px; }
.about-pin {
  position: absolute; left: -6%; bottom: 14%; z-index: 4;
  background: var(--paper); color: var(--deep); border-radius: 999px;
  padding: 12px 20px 12px 14px; display: flex; align-items: center; gap: 11px;
  box-shadow: var(--shadow-md); font-weight: 700; font-size: 13.5px;
}
.about-pin .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--tomato); display: grid; place-items: center; color: #fff; flex: none; }
.about-pin .dot svg { width: 17px; height: 17px; }
.about-pin span small { display: block; font-weight: 600; color: var(--ink-soft); font-size: 12px; }
.about-copy h2 { font-size: calc(clamp(2.3rem, 4vw, 3.3rem) * var(--ts, 1)); color: var(--on-dark); margin: 16px 0 20px; }
.about-copy p { color: var(--on-dark-soft); font-size: 1.05rem; max-width: 46ch; margin: 0 0 28px; }
.about-eyebrow { color: var(--sage); }
.about-eyebrow::before { background: var(--sage); }

/* ===========================================================
   AVIS + CONTACT
   =========================================================== */
.reviews { background: var(--paper-2); }
.review-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.review-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 22px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; color: var(--tomato); margin-bottom: 12px; }
.stars svg { width: 17px; height: 17px; }
.review-card .txt { font-family: var(--serif); font-style: italic; font-size: 1.22rem; color: var(--ink); line-height: 1.32; margin: 0 0 16px; }
.review-card .who { font-weight: 800; font-size: 14px; color: var(--deep); margin-top: auto; letter-spacing: .02em; }

/* contact */
.contact { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.5fr 0.9fr; gap: clamp(20px, 3vw, 44px); align-items: stretch; }
.contact-info h2 { font-size: calc(clamp(2.2rem, 3.6vw, 3rem) * var(--ts, 1)); color: var(--deep); margin-bottom: 22px; }
.cinfo-row { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.cinfo-row .ic { width: 38px; height: 38px; flex: none; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; color: var(--olive); }
.cinfo-row .ic svg { width: 18px; height: 18px; }
.cinfo-row b { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 700; }
.cinfo-row span { font-size: 16px; color: var(--deep); font-weight: 600; }
.contact-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; align-items: flex-start; }
.contact-cta .btn { width: 100%; justify-content: center; }

.contact-mascot { align-self: end; display: grid; place-items: end center; }
.contact-mascot img { width: 100%; max-width: 240px; filter: drop-shadow(0 18px 20px rgba(36,52,42,.22)); }

.hours { background: var(--deep); color: var(--on-dark); border-radius: var(--r-lg); padding: 30px 30px; box-shadow: var(--shadow-md); }
.hours h3 { font-size: 1.9rem; color: var(--on-dark); text-align: center; margin-bottom: 18px; }
.hours-row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-dark); font-size: 14.5px; }
.hours-row:last-child { border-bottom: none; }
.hours-row .d { color: var(--on-dark-soft); }
.hours-row .h { font-weight: 700; color: var(--on-dark); }
.hours-row.closed .h { color: var(--tomato); }
.hours-row.today { background: rgba(163,177,138,.16); margin-inline: -14px; padding-inline: 14px; border-radius: 8px; }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--deep); color: var(--on-dark-soft); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer .brand img { height: 92px; }
.footer-tag { font-family: var(--serif); font-size: 1.5rem; color: var(--on-dark); line-height: 1.2; margin: 18px 0; max-width: 22ch; }
.footer h4 { font-family: var(--sans); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; font-weight: 800; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14.5px; color: var(--on-dark-soft); transition: color .15s; }
.footer-links a:hover { color: var(--tomato); }
.pay-row { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-chip { background: rgba(255,255,255,.94); border-radius: 7px; padding: 7px 10px; font-size: 11px; font-weight: 800; color: var(--deep); letter-spacing: .02em; display: grid; place-items: center; min-width: 52px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom .heart { color: var(--tomato); }

/* ===========================================================
   MODALS
   =========================================================== */
.modal { position: fixed; inset: 0; z-index: 120; display: none; }
.modal.open { display: block; }
.modal-scrim { position: absolute; inset: 0; background: rgba(36,52,42,.55); backdrop-filter: blur(3px); animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  position: relative; z-index: 2; background: var(--paper);
  max-width: 920px; width: calc(100% - 36px); max-height: 88vh; overflow: auto;
  margin: 6vh auto 0; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  animation: pop .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop { from { transform: translateY(18px) scale(.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal-box.narrow { max-width: 520px; }
.modal-head { position: sticky; top: 0; background: var(--paper); padding: 26px var(--pad) 18px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; z-index: 3; }
.modal-head h2 { font-size: 2rem; color: var(--deep); }
.modal-head .eyebrow { margin-bottom: 6px; }
.modal-close { background: none; border: 1px solid var(--line); border-radius: 50%; width: 40px; height: 40px; cursor: pointer; color: var(--deep); display: grid; place-items: center; transition: all .15s; flex: none; }
.modal-close:hover { background: var(--tomato); color: #fff; border-color: var(--tomato); }
.modal-body { padding: 26px var(--pad) 40px; }

.menu-cat { margin-bottom: 30px; }
.menu-cat h3 { font-size: 1.7rem; color: var(--olive); margin-bottom: 4px; }
.menu-cat .catline { height: 1px; background: var(--line-sage); margin-bottom: 14px; }
.menu-item { display: flex; align-items: baseline; gap: 12px; padding: 9px 0; }
.menu-item .nm { font-weight: 700; color: var(--deep); font-size: 16px; flex: none; }
.menu-item .dots { flex: 1; border-bottom: 1.5px dotted var(--line-sage); transform: translateY(-4px); }
.menu-item .pr { font-weight: 800; color: var(--tomato); font-size: 15px; }
.menu-item .desc { display: block; font-size: 13px; color: var(--ink-soft); margin-top: 2px; }

/* reservation form */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--card); font-family: var(--sans); font-size: 15px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--olive); box-shadow: 0 0 0 3px rgba(88,129,87,.16); }
.field.err input, .field.err select { border-color: var(--tomato); }
.field .msg { font-size: 12px; color: var(--tomato); margin-top: 5px; display: none; }
.field.err .msg { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { text-align: center; padding: 20px 0; }
.form-success .check { width: 72px; height: 72px; border-radius: 50%; background: var(--olive); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .check svg { width: 36px; height: 36px; }
.form-success h3 { font-size: 2rem; color: var(--deep); margin-bottom: 8px; }
.form-success p { color: var(--ink-soft); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- toast ---------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--deep); color: var(--on-dark); padding: 14px 24px; border-radius: 999px; box-shadow: var(--shadow-lg); z-index: 200; font-weight: 600; font-size: 14px; transition: transform .35s cubic-bezier(.2,.8,.2,1); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 1080px) {
  .feat-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .feat-card + .feat-card::before { display: none; }
  .feat-mascot { display: none; }
  .menu-layout { grid-template-columns: 1fr 1fr; }
  .menu-photo { grid-column: 1 / -1; min-height: 280px; }
  .menu-aside { grid-column: 1 / -1; flex-direction: row; gap: 24px; text-align: left; }
  .menu-aside img.masc { width: 180px; margin: 0; }
  .menu-aside .quote { margin: 0; }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-mascot { display: none; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 80px; }
  .header .wrap { height: 72px; }
  .brand img { height: 50px; }
  .nav, .phone-link { display: none; }
  .burger { display: block; }
  .hero-title { font-size: clamp(2.6rem, 9vw, 3.6rem); }
  .hero-pizza { width: min(420px, 82vw); margin-bottom: -40px; }
  .fx.f3, .fx.f4 { display: none; }
  .fx.f1 { left: 2%; top: 34%; }
  .fx.f2 { right: 2%; top: 24%; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .menu-aside { flex-direction: column; text-align: center; }
  .menu-aside img.masc { width: 60%; }
  .serv-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy { order: -1; }
  .about-photos { margin-bottom: 60px; }
  .review-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hours { order: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .feat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}

/* ===========================================================
   CONTACT PAGE
   =========================================================== */
.contact-page-hero {
  background: radial-gradient(110% 90% at 50% -10%, #FDFBF3 0%, var(--paper) 58%);
  padding: clamp(46px, 7vw, 92px) 0 clamp(54px, 7vw, 88px);
  overflow: hidden;
}
.contact-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.contact-page-copy h1 {
  font-size: calc(clamp(3rem, 6vw, 5.2rem) * var(--ts, 1));
  color: var(--deep);
  margin: 16px 0 22px;
  letter-spacing: .01em;
}
.contact-page-copy p {
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  max-width: 46ch;
  margin: 0 0 30px;
}
.contact-page-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.contact-page-visual { position: relative; min-height: 440px; }
.contact-page-photo {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.contact-page-mascot {
  position: absolute;
  width: min(230px, 38%);
  right: -22px;
  bottom: -40px;
  filter: drop-shadow(0 18px 22px rgba(36,52,42,.24));
}
.contact-page-main { background: var(--paper-2); }
.contact-page-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(22px, 3vw, 42px);
  align-items: start;
}
.contact-page-details {
  display: grid;
  gap: 14px;
}
.contact-detail-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-detail-card .ic {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--olive);
  display: grid;
  place-items: center;
}
.contact-detail-card .ic svg { width: 19px; height: 19px; }
.contact-detail-card b {
  display: block;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.contact-detail-card span { color: var(--deep); font-weight: 700; }
.contact-page-form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 4vw, 42px);
}
.contact-page-form-card h2 {
  color: var(--deep);
  font-size: calc(clamp(2.1rem, 3.4vw, 3rem) * var(--ts, 1));
  margin: 10px 0 24px;
}
.contact-page-form-card .btn { justify-content: center; }
.contact-page-band {
  background: var(--forest);
  color: var(--on-dark);
}
.contact-page-band-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}
.contact-page-map {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 26px;
}
.contact-page-map h2 {
  color: var(--deep);
  font-size: calc(clamp(2rem, 3.2vw, 2.8rem) * var(--ts, 1));
  margin: 10px 0 12px;
}
.contact-page-map p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 52ch;
}
.map-box {
  min-height: 260px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(163,177,138,.18) 25%, transparent 25%) 0 0 / 48px 48px,
    linear-gradient(225deg, rgba(200,74,54,.12) 25%, transparent 25%) 0 0 / 48px 48px,
    var(--paper-2);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--deep);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: transform .18s ease, box-shadow .18s ease;
}
.map-box:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.map-pin {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--tomato);
  color: #fff;
  display: grid;
  place-items: center;
}
.map-pin svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .contact-page-hero-grid,
  .contact-page-layout,
  .contact-page-band-grid {
    grid-template-columns: 1fr;
  }
  .contact-page-visual { min-height: auto; }
}
@media (max-width: 560px) {
  .contact-page-photo { height: 310px; }
  .contact-page-mascot { width: 150px; right: -12px; bottom: -28px; }
  .contact-page-actions .btn { width: 100%; justify-content: center; }
  .map-box { min-height: 210px; }
}
