/*
Theme Name: BOON Burgers & Brasserie
Theme URI: https://restaurant-boon.fr
Description: Site officiel de BOON, brasserie moderne halal a Ris-Orangis. Theme sur-mesure, optimise mobile et referencement (SEO). Burgers gourmets, smash, grillades, brunch et desserts.
Author: Souhaib Cherqaoui
Version: 1.1.4
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: boon
*/

/* =========================================================
   1. DESIGN TOKENS
   ========================================================= */
:root {
  --bg:          #0B1825;
  --bg-deep:     #081320;
  --surface:     #12212F;
  --surface-2:   #18293A;
  --accent:      #C56B3A;
  --accent-soft: #D2865A;
  --accent-dark: #AC5A2E;
  --cream:       #F3EBDE;
  --text:        #A7B2BC;
  --text-dim:    #7C8893;
  --line:        rgba(243, 235, 222, 0.09);
  --line-strong: rgba(243, 235, 222, 0.18);

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --maxw: 1180px;
  --pad: 22px;
  --header-h: 76px;
  --radius: 16px;
  --radius-sm: 10px;
  --section-y: clamp(64px, 9vw, 120px);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* =========================================================
   2. RESET / BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--cream); font-weight: 600; line-height: 1.12; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =========================================================
   3. LAYOUT HELPERS
   ========================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.container--narrow { max-width: 820px; }
.section { padding-block: var(--section-y); }
.section--deep { background: var(--bg-deep); }
.section--flush-top { padding-top: 0; }
.text-center { text-align: center; }

/* =========================================================
   4. SHARED COMPONENTS
   ========================================================= */

/* Eyebrow / kicker */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
}
.eyebrow--lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9em;
  letter-spacing: 0.3em;
}
.eyebrow--lines::before,
.eyebrow--lines::after {
  content: "";
  width: clamp(28px, 6vw, 52px);
  height: 1px;
  background: var(--accent);
  opacity: 0.55;
}

/* Section title */
.title {
  font-size: clamp(2rem, 5.4vw, 3.5rem);
  letter-spacing: -0.01em;
  font-weight: 600;
  color: var(--cream);
}
.title .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.lead {
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 58ch;
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.02em 1.85em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--solid { background: var(--accent); color: #FCF7F0; }
.btn--solid:hover { background: var(--accent-dark); }
.btn--outline { border-color: var(--line-strong); color: var(--cream); }
.btn--outline:hover { background: rgba(243, 235, 222, 0.06); border-color: var(--cream); }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.btn-row--center { justify-content: center; }

/* =========================================================
   5. HEADER + NAV
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(8, 19, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.site-header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand img { height: 48px; width: auto; }
.brand--text { font-family: var(--font-serif); color: var(--cream); font-size: 1.5rem; letter-spacing: 0.16em; line-height: 1; }
.brand--text small { display: block; font-family: var(--font-sans); font-size: 0.42rem; letter-spacing: 0.4em; color: var(--text); margin-top: 4px; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; align-items: center; gap: 2rem; }
.nav-desktop a {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.82;
  transition: opacity .25s, color .25s;
}
.nav-desktop a:hover, .nav-desktop a[aria-current="page"] { opacity: 1; color: var(--accent); }

.header-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }

/* Mobile overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  padding: calc(var(--header-h) + 8px) var(--pad) 48px;
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform .5s var(--ease), visibility .5s;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--pad);
}
.mobile-nav__close {
  width: 48px; height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.mobile-nav__close svg { width: 22px; height: 22px; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 0.3rem; margin-top: auto; margin-bottom: auto; }
.mobile-nav__links a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 9vw, 2.6rem);
  color: var(--cream);
  padding-block: 0.28em;
  transition: color .25s;
}
.mobile-nav__links a:hover, .mobile-nav__links a[aria-current="page"] { color: var(--accent); }
.mobile-nav .btn { align-self: flex-start; margin-top: 1.8rem; }

body.nav-open { overflow: hidden; }

/* =========================================================
   6. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--header-h) + 40px) 64px;
  text-align: center;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,19,32,0.72) 0%, rgba(8,19,32,0.55) 40%, rgba(8,19,32,0.9) 100%);
}
.hero__inner { width: 100%; max-width: 760px; margin-inline: auto; padding-inline: var(--pad); }
.hero__title {
  font-size: clamp(2.6rem, 8.5vw, 5rem);
  line-height: 1.05;
  margin: 0.5em 0 0.55em;
  color: var(--cream);
}
.hero__title .accent { display: block; color: var(--accent); font-style: italic; font-weight: 500; }
.hero__lead { color: rgba(243, 235, 222, 0.86); font-size: clamp(1rem, 1.8vw, 1.18rem); max-width: 46ch; margin: 0 auto 2.2em; }
.hero .btn-row { justify-content: center; }

/* Compact hero (interior pages on dark background) */
.hero--compact {
  min-height: auto;
  text-align: center;
  padding-block: calc(var(--header-h) + 56px) 0;
}
.hero--compact .hero__title { font-size: clamp(2.4rem, 7vw, 4.4rem); }
.hero--compact .hero__title .accent { display: inline; }

/* Full image interior hero (contact, privatisation) */
.hero--image { min-height: 62vh; }
.hero--image .hero__title .accent { display: inline; }

/* =========================================================
   7. HOME : LA MAISON (feature cards)
   ========================================================= */
.section-head { text-align: center; margin-bottom: clamp(40px, 6vw, 68px); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head .title { margin-inline: auto; max-width: 16ch; }

.feature-cards { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.feature-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}
.feature-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .7s var(--ease); }
.feature-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,19,32,0.05) 30%, rgba(8,19,32,0.92) 100%); }
.feature-card:hover img { transform: scale(1.05); }
.feature-card__body { padding: 1.7rem; }
.feature-card__kicker { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
.feature-card h3 { font-size: 1.5rem; margin: 0.5rem 0 0.4rem; color: var(--cream); }
.feature-card p { font-size: 0.95rem; color: rgba(243, 235, 222, 0.74); margin: 0; }

/* =========================================================
   8. HOME : SPLIT (images + copy)
   ========================================================= */
.split { display: grid; gap: clamp(34px, 5vw, 64px); align-items: center; grid-template-columns: 1fr; }
.split--reverse .split__media { order: -1; }
.split__media { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.split__media--single { grid-template-columns: 1fr; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); aspect-ratio: 4 / 5; }
.split__media--stack { grid-template-columns: 1fr; }
.split__copy .eyebrow { margin-bottom: 1.1rem; }
.split__copy .title { margin-bottom: 1.1rem; }
.split__copy p + p { margin-top: 1rem; }
.split__copy .btn { margin-top: 1.8rem; }

.feature-list { display: flex; flex-wrap: wrap; gap: 1rem 1.8rem; margin-top: 1.7rem; }
.feature-list li { display: flex; align-items: center; gap: 0.6rem; color: var(--cream); font-size: 0.95rem; }
.feature-list svg { width: 20px; height: 20px; color: var(--accent); flex: none; }

/* =========================================================
   9. TESTIMONIALS
   ========================================================= */
.testimonials-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.quote-card .stars { display: flex; gap: 3px; margin-bottom: 1.1rem; color: var(--accent); }
.quote-card .stars svg { width: 16px; height: 16px; }
.quote-card blockquote { font-style: italic; color: var(--cream); font-size: 1.05rem; line-height: 1.6; font-family: var(--font-serif); }
.quote-card cite { display: block; margin-top: 1.3rem; font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }

/* =========================================================
   10. INSTAGRAM STRIP
   ========================================================= */
.insta-head { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; margin-bottom: 2.2rem; }
.insta-head .title { max-width: none; }
.insta-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
.insta-grid a { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.insta-grid a:hover img { transform: scale(1.06); opacity: 0.9; }

/* =========================================================
   11. FOOTER
   ========================================================= */
.site-footer { background: var(--bg-deep); padding-top: clamp(56px, 7vw, 84px); border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 2.4rem; grid-template-columns: 1fr; }
.footer-brand img { height: 38px; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col li { font-size: 0.92rem; color: var(--text); transition: color .25s; }
.footer-col a:hover { color: var(--cream); }
.footer-contact li { display: flex; gap: 0.7rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.footer-bottom {
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p { font-size: 0.74rem; letter-spacing: 0.04em; color: var(--text-dim); }
.footer-bottom .tag { letter-spacing: 0.18em; text-transform: uppercase; }

/* =========================================================
   12. MENU PAGE
   ========================================================= */
.menu-head { text-align: center; padding-top: calc(var(--header-h) + 56px); }
.menu-head .title { margin: 1rem auto 1.1rem; }
.menu-head .lead { margin-inline: auto; }

.menu-tabs-wrap { position: sticky; top: var(--header-h); z-index: 40; background: var(--bg); border-block: 1px solid var(--line); margin-top: clamp(36px, 5vw, 56px); }
.menu-tabs-wrap::before, .menu-tabs-wrap::after { content: ""; position: absolute; top: 1px; bottom: 1px; width: 60px; pointer-events: none; z-index: 2; opacity: 0; transition: opacity .25s var(--ease); }
.menu-tabs-wrap::before { left: 0; background: linear-gradient(to right, var(--bg) 35%, rgba(11, 24, 37, 0)); }
.menu-tabs-wrap::after { right: 0; background: linear-gradient(to left, var(--bg) 35%, rgba(11, 24, 37, 0)); }
.menu-tabs-wrap.can-scroll-left::before { opacity: 1; }
.menu-tabs-wrap.can-scroll-right::after { opacity: 1; }
.menu-tabs-hint { position: absolute; top: 50%; right: 8px; transform: translateY(-50%); z-index: 3; pointer-events: none; display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: 0; transition: opacity .25s var(--ease); }
.menu-tabs-hint svg { width: 18px; height: 18px; }
.menu-tabs-wrap.can-scroll-right .menu-tabs-hint { opacity: 1; animation: boon-tab-nudge 1.5s var(--ease) infinite; }
@keyframes boon-tab-nudge { 0%, 100% { transform: translateY(-50%) translateX(0); } 50% { transform: translateY(-50%) translateX(4px); } }
@media (prefers-reduced-motion: reduce) { .menu-tabs-wrap.can-scroll-right .menu-tabs-hint { animation: none; } }
.menu-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.85rem var(--pad);
  max-width: var(--maxw);
  margin-inline: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex: none;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.7em 1.3em;
  border-radius: 999px;
  transition: background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.is-active { background: var(--accent); color: #FCF7F0; }

.menu-panel { display: none; padding-block: clamp(48px, 7vw, 88px); }
.menu-panel.is-active { display: block; animation: fade-in .5s var(--ease); }
.menu-panel__head { text-align: center; margin-bottom: clamp(40px, 6vw, 64px); }
.menu-panel__head .eyebrow { margin-bottom: 0.9rem; }
.menu-panel__head h2 { font-size: clamp(2rem, 6vw, 3.2rem); color: var(--cream); }
.menu-panel__divider { width: 56px; height: 1px; background: var(--accent); margin: 1.4rem auto 0; }
.menu-panel__sub { font-style: italic; color: var(--text); margin-top: 1rem; font-family: var(--font-serif); font-size: 1.05rem; }

.menu-list { max-width: 840px; margin-inline: auto; }
.menu-item { padding-block: 1.4rem; border-bottom: 1px solid var(--line); }
.menu-item__row { display: flex; align-items: baseline; gap: 0.8rem; }
.menu-item__name { font-family: var(--font-serif); font-size: 1.3rem; color: var(--cream); font-weight: 500; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-0.25em); min-width: 24px; }
.menu-item__price { font-size: 1.15rem; color: var(--accent); white-space: nowrap; }
.menu-item--sized .menu-item__row { justify-content: space-between; align-items: flex-start; gap: 1.4rem; }
.menu-item__sizes { display: flex; flex-direction: column; gap: 0.35rem; align-items: flex-end; flex: none; }
.menu-item__size { display: inline-flex; align-items: baseline; gap: 0.7rem; }
.menu-item__size em { font-style: normal; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); min-width: 1.8em; text-align: left; }
.menu-item__size b { font-weight: 400; font-size: 1.05rem; color: var(--accent); white-space: nowrap; }
.menu-item__desc { color: var(--text); font-size: 0.94rem; margin-top: 0.5rem; max-width: 62ch; }
.menu-empty { text-align: center; color: var(--text-dim); font-style: italic; padding: 1rem; }

.menu-note { text-align: center; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem; color: var(--text-dim); margin-top: clamp(40px, 6vw, 64px); }

/* =========================================================
   13. CARD GRID (values / occasions / brunch features)
   ========================================================= */
.card-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.card-grid--2 { grid-template-columns: 1fr; }
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.info-card .ic { width: 34px; height: 34px; color: var(--accent); margin-bottom: 1.3rem; }
.info-card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; color: var(--cream); }
.info-card p { font-size: 0.95rem; color: var(--text); margin: 0; }

/* =========================================================
   14. BRUNCH SPECIFICS
   ========================================================= */
.wide-media { border-radius: var(--radius); overflow: hidden; }
.wide-media img { width: 100%; height: clamp(240px, 42vw, 460px); object-fit: cover; }

.formula-list { max-width: 920px; margin-inline: auto; display: grid; gap: 1.1rem; }
.formula {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.9rem;
}
.formula__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.formula__name { font-family: var(--font-serif); font-size: 1.5rem; color: var(--cream); }
.formula__price { font-size: 1.3rem; color: var(--accent); white-space: nowrap; }
.formula p { margin-top: 0.7rem; font-size: 0.95rem; color: var(--text); }

.plates-list { max-width: 820px; margin-inline: auto; }
.plate { padding-block: 1.3rem; border-bottom: 1px solid var(--line); }
.plate h3 { font-size: 1.3rem; color: var(--cream); font-weight: 500; }
.plate p { font-size: 0.94rem; color: var(--text); margin-top: 0.35rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; max-width: 820px; margin: 1.8rem auto 0; }
.chip {
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.55em 1.1em;
  font-size: 0.82rem;
  color: var(--cream);
}
.chip b { color: var(--accent); font-weight: 600; }

/* =========================================================
   15. FORMS
   ========================================================= */
.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  max-width: 760px;
  margin-inline: auto;
}
.form-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text); }
.field input, .field textarea {
  background: var(--bg-deep);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 0.9em 1em;
  color: var(--cream);
  transition: border-color .25s, background .25s;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: rgba(8, 19, 32, 0.6); }
.field textarea { resize: vertical; min-height: 130px; }
.field input[type="date"] { color-scheme: dark; }
.stepper { display: flex; align-items: stretch; width: 100%; max-width: 200px; border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; background: rgba(8, 19, 32, 0.4); color-scheme: dark; }
.stepper:focus-within { border-color: var(--accent); }
.stepper__btn { flex: none; width: 46px; font-size: 1.4rem; line-height: 1; color: var(--cream); background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease), color .2s var(--ease); -webkit-tap-highlight-color: transparent; }
.stepper__btn:hover, .stepper__btn:focus-visible { background: var(--accent); color: #fff; outline: none; }
.stepper__btn:active { background: var(--accent-dark); }
.field .stepper__input { flex: 1 1 auto; width: auto; min-width: 0; text-align: center; border: none; border-radius: 0; background: transparent; color: var(--cream); font-size: 1.05rem; padding: 0.7em 0.2em; -moz-appearance: textfield; appearance: textfield; }
.field .stepper__input:focus { outline: none; background: transparent; }
.stepper__input::-webkit-outer-spin-button, .stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.form-card .btn { margin-top: 0.4rem; }
.form-hint { text-align: center; color: var(--text-dim); font-size: 0.85rem; margin-top: 1.1rem; }
.form-honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-msg { font-size: 0.92rem; margin-top: 1rem; text-align: center; display: none; }
.form-msg.is-visible { display: block; }
.form-msg.ok { color: #7FBF8A; }
.form-msg.err { color: #D88A6A; }

/* Contact info cards */
.contact-cards { display: grid; gap: 1rem; max-width: 820px; margin-inline: auto; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.contact-card .ic-circle {
  width: 48px; height: 48px; flex: none;
  border-radius: 999px;
  background: rgba(197, 107, 58, 0.16);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact-card .ic-circle svg { width: 22px; height: 22px; }
.contact-card .label { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.25rem; }
.contact-card .value { font-family: var(--font-serif); font-size: 1.2rem; color: var(--cream); }

.map-embed { max-width: 980px; margin: clamp(40px, 6vw, 64px) auto 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; filter: grayscale(0.3) brightness(0.9); }

/* =========================================================
   16. ANIMATIONS
   ========================================================= */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   17. RESPONSIVE
   ========================================================= */
@media (min-width: 600px) {
  .feature-cards { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid--2 { grid-template-columns: 1fr 1fr; }
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 880px) {
  :root { --pad: 40px; }
  .nav-desktop { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .split { grid-template-columns: 1fr 1fr; }
  .split--text-first .split__copy { order: -1; }
  .insta-head { flex-direction: row; align-items: center; justify-content: space-between; }
  .split__media--single img { aspect-ratio: 5 / 4; }
}

/* =========================================================
   18. REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   19. INTERIOR PAGE HELPERS (brunch intro, image duo)
   ========================================================= */
.page-intro { padding-top: calc(var(--header-h) + 56px); }
.page-intro .eyebrow { margin-bottom: 1.1rem; }
.page-intro__title { font-family: var(--font-serif); font-size: clamp(2.4rem, 7vw, 4.4rem); line-height: 1.08; color: var(--cream); margin-bottom: 1.1rem; }
.page-intro__title .accent { color: var(--accent); font-style: italic; font-weight: 500; }
.lead-left { color: var(--text); font-size: clamp(1rem, 1.7vw, 1.15rem); max-width: 54ch; margin-bottom: 2rem; }

.media-duo { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.media-duo img { width: 100%; height: clamp(200px, 30vw, 360px); object-fit: cover; border-radius: var(--radius); }

.block-eyebrow { display: block; margin-bottom: 1.6rem; }
.cta-block { text-align: center; }
.cta-block .lead { margin: 0 auto 2rem; }

/* =========================================================
   20. FALLBACK CONTENT + A11Y UTILITIES
   ========================================================= */
.entry-content { color: var(--text); max-width: 70ch; }
.entry-content p { margin-bottom: 1rem; }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content h2, .entry-content h3 { color: var(--cream); margin: 1.8rem 0 .8rem; }
.entry-content img { border-radius: var(--radius); margin: 1.2rem 0; }
.entry-content ul, .entry-content ol { margin: 0 0 1rem 1.2rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link:focus { left: 16px !important; top: 12px; background: var(--accent); color: #fff; padding: .6em 1em; border-radius: 8px; z-index: 300; width: auto; height: auto; }
