/* =========================================================================
   SAVEUR — dual-mode restaurant theme
   Fine Dining mode: dark/champagne/ivory, elegant serif feel.
   Casual Bistro mode: warm cream/terracotta/olive, welcoming.
   Brand tokens are also printed live by the plugin (#svcc-brand-vars); the
   fallbacks below keep the theme on-brand with no plugin installed.
   ========================================================================= */
:root {
  /* Fine Dining (default) */
  --svcc-primary:  #C9A96E;
  --svcc-gold:     #E8D5A3;
  --svcc-dark-red: #2A1810;
  --svcc-orange:   #3D2310;
  --svcc-black:    #000000;
  --svcc-white:    #FFFFFF;
  --svcc-radius:   16px;
  --svcc-heading-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --svcc-body-font:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --sv-ink-1: #ffffff;
  --sv-ink-2: #c8c8d0;
  --sv-ink-3: #8a8a92;
  --sv-surface-1: #0a0a0b;
  --sv-surface-2: #111114;
  --sv-surface-3: #17171c;
  --sv-border: rgba(254, 194, 8, 0.16);
  --sv-border-soft: rgba(255, 255, 255, 0.08);
  --sv-container: 1280px;
  --sv-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);

  /* Area colors — "where does each color apply".
     The plugin (Saveur Restaurant → Theme Settings → Section Colors) overrides any of
     these live; when unset they fall back to the brand palette below so the
     theme always looks complete. */
  --sv-header-bg: rgba(0, 0, 0, 0.78);
  --sv-header-text: #ffffff;
  --sv-accent: var(--svcc-gold);
  --sv-btn-bg: linear-gradient(135deg, var(--svcc-primary) 0%, var(--svcc-gold) 100%);
  --sv-btn-text: #000000;
  --sv-footer-bg: #050506;
  --sv-body-bg: var(--svcc-black);
  --sv-heading: var(--sv-ink-1);
  --sv-link: var(--svcc-gold);
  --sv-footer-text: var(--sv-ink-2);
}

/* Reset / base ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--sv-body-bg);
  color: var(--sv-ink-1);
  font-family: var(--svcc-body-font);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sv-link); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--svcc-primary); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--svcc-heading-font);
  color: var(--sv-heading);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-weight: 700;
}
p { margin: 0 0 1.2em; }
::selection { background: var(--svcc-primary); color: #000; }
:focus-visible { outline: 3px solid var(--svcc-gold); outline-offset: 2px; }
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Layout helpers --------------------------------------------------------- */
.sv-container { width: 100%; max-width: var(--sv-container); margin: 0 auto; padding: 0 24px; }
.sv-section { padding: 110px 0; position: relative; }
.sv-section--tight { padding: 80px 0; }
.sv-eyebrow {
  display: inline-block;
  font-family: var(--svcc-heading-font);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sv-accent);
  margin-bottom: 14px;
}
.sv-section-title { font-size: clamp(2rem, 4vw, 3.1rem); margin: 0 0 18px; }
.sv-section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.sv-section-head p { color: var(--sv-ink-2); font-size: 1.08rem; }
.sv-gradient-text {
  background: linear-gradient(120deg, var(--svcc-primary), var(--svcc-gold) 60%, var(--svcc-orange));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Buttons ---------------------------------------------------------------- */
.sv-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--svcc-heading-font); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: var(--svcc-radius); border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.sv-btn--primary { background: var(--sv-btn-bg); color: var(--sv-btn-text); }
.sv-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(254,194,8,.4); color: var(--sv-btn-text); }
.sv-btn--ghost { background: transparent; color: var(--sv-ink-1); border-color: rgba(255,255,255,.28); }
.sv-btn--ghost:hover { border-color: var(--svcc-primary); color: var(--svcc-primary); transform: translateY(-3px); }
.sv-btn--block { width: 100%; }

/* Announcement bar ------------------------------------------------------- */
.sv-announce { background: var(--svcc-gold); color: #000; font-weight: 600; font-size: .92rem; text-align: center; padding: 9px 0; }
.sv-announce a, .sv-announce span { color: inherit; }
.sv-announce a { text-decoration: underline; }

/* Header ----------------------------------------------------------------- */
.sv-header {
  position: sticky; top: 0; z-index: 999;
  background: var(--sv-header-bg); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--sv-border-soft); transition: background .3s ease, border-color .3s ease;
}
.sv-header.is-scrolled { background: var(--sv-header-bg); border-bottom-color: var(--sv-border); box-shadow: 0 8px 30px rgba(0,0,0,.28); }

/* Sticky header off */
body.sv-header-static .sv-header { position: static; }

/* Transparent header over the hero (front page) — solid again on scroll */
body.sv-front.sv-header-transparent .sv-header { position: absolute; top: auto; left: 0; right: 0; background: transparent; border-bottom-color: transparent; }
body.sv-front.sv-header-transparent .sv-header.is-scrolled { position: fixed; top: 0; background: var(--sv-header-bg); border-bottom-color: var(--sv-border); }
.sv-header__inner { display: flex; align-items: center; gap: 20px; padding: 16px 24px; max-width: 1400px; margin: 0 auto; }
.sv-brand { display: flex; align-items: center; flex: 0 0 auto; }
.sv-brand img, .sv-brand .custom-logo { max-height: 58px; width: auto; }
.sv-brand__text { font-family: var(--svcc-heading-font); font-weight: 800; font-size: 1.4rem; color: var(--sv-header-text); letter-spacing: -.01em; }
.sv-brand__text span { color: var(--svcc-primary); }
.sv-nav { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.sv-menu { display: flex; align-items: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
.sv-menu li { position: relative; }
.sv-menu a { color: var(--sv-header-text); font-weight: 600; font-size: .98rem; padding: 6px 0; position: relative; }
.sv-menu > li > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--svcc-primary), var(--svcc-gold)); transition: width .25s ease;
}
.sv-menu > li > a:hover::after, .sv-menu > li.current-menu-item > a::after { width: 100%; }
.sv-menu a:hover, .sv-menu .current-menu-item > a { color: var(--svcc-primary); }
.sv-menu .sub-menu {
  position: absolute; top: 100%; left: 0; min-width: 230px; list-style: none; margin: 14px 0 0; padding: 8px;
  background: #0b0b0d; border: 1px solid var(--sv-border); border-radius: 14px; box-shadow: var(--sv-shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .22s ease;
}
.sv-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sv-menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 9px; }
.sv-menu .sub-menu a:hover { background: rgba(255,241,10,.08); }
.sv-header__actions { display: flex; align-items: center; gap: 12px; margin-left: 16px; }
.sv-nav__cta { display: flex; align-items: center; }
.sv-header__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--sv-border-soft); color: var(--sv-header-text);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.sv-header__icon svg { display: block; }
.sv-header__icon:hover { transform: translateY(-2px); }
.sv-header__icon--phone:hover { background: var(--sv-accent); color: #000; border-color: var(--sv-accent); }
.sv-header__icon--whatsapp { color: #25D366; border-color: rgba(37,211,102,.45); }
.sv-header__icon--whatsapp:hover { background: #25D366; color: #fff; border-color: #25D366; }
.sv-burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; margin-left: auto; }
.sv-burger span { width: 26px; height: 2px; background: var(--sv-header-text); border-radius: 2px; transition: .25s ease; }
.sv-nav-scrim { display: none; }
body.sv-nav-open .sv-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.sv-nav-open .sv-burger span:nth-child(2) { opacity: 0; }
body.sv-nav-open .sv-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero ------------------------------------------------------------------- */
.sv-hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.sv-hero__bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; }
.sv-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.78) 60%, #000 100%); }
.sv-hero--no-image { background:
  radial-gradient(1200px 600px at 70% -10%, rgba(254,194,8,.18), transparent 60%),
  radial-gradient(900px 500px at 0% 100%, rgba(207,36,10,.16), transparent 55%),
  #000; }
.sv-hero__inner { position: relative; z-index: 1; max-width: 880px; padding: 60px 0; }
.sv-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 0 0 22px; }
.sv-hero__subtitle { font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--sv-ink-2); margin-bottom: 36px; max-width: 640px; }
.sv-hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }
.sv-hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 1; color: var(--sv-ink-3); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; }

/* Trust bar -------------------------------------------------------------- */
.sv-trust { border-top: 1px solid var(--sv-border-soft); border-bottom: 1px solid var(--sv-border-soft); background: var(--sv-surface-1); }
.sv-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 34px 0; }
.sv-trust__item { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; }
.sv-trust__item .dashicons { color: var(--svcc-gold); font-size: 30px; width: 30px; height: 30px; }
.sv-trust__item strong { display: block; font-family: var(--svcc-heading-font); }
.sv-trust__item span { color: var(--sv-ink-3); font-size: .9rem; }

/* About ------------------------------------------------------------------ */
.sv-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.sv-about__media { position: relative; border-radius: 22px; overflow: hidden; min-height: 440px;
  background: linear-gradient(135deg, #1a1407, #000); border: 1px solid var(--sv-border); }
.sv-about__media img { width: 100%; height: 100%; object-fit: cover; }
.sv-about__badge { position: absolute; right: -10px; bottom: 30px; background: linear-gradient(135deg, var(--svcc-primary), var(--svcc-gold));
  color: #000; padding: 18px 24px; border-radius: 16px; font-family: var(--svcc-heading-font); font-weight: 800; box-shadow: var(--sv-shadow); }
.sv-about__badge b { font-size: 1.8rem; display: block; line-height: 1; }
.sv-about h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
.sv-about p { color: var(--sv-ink-2); }

/* Generic card grids ----------------------------------------------------- */
.sv-grid { display: grid; gap: 26px; }
.sv-grid--3 { grid-template-columns: repeat(3, 1fr); }
.sv-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sv-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Services --------------------------------------------------------------- */
.sv-service {
  background: linear-gradient(180deg, var(--sv-surface-2), var(--sv-surface-1));
  border: 1px solid var(--sv-border-soft); border-radius: 20px; padding: 34px 30px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; position: relative; overflow: hidden;
}
.sv-service:hover { transform: translateY(-6px); border-color: var(--sv-border); box-shadow: var(--sv-shadow); }
.sv-service__icon { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(254,194,8,.12); color: var(--svcc-gold); font-size: 28px; }
.sv-service__icon .dashicons { font-size: 30px; width: 30px; height: 30px; }
.sv-service h3 { font-size: 1.35rem; margin-bottom: 8px; }
.sv-service__price { color: var(--svcc-primary); font-family: var(--svcc-heading-font); font-weight: 700; margin-bottom: 14px; }
.sv-service__price span { color: var(--sv-ink-3); font-weight: 500; font-size: .85rem; }
.sv-service p { color: var(--sv-ink-2); font-size: .98rem; }
.sv-service__features { list-style: none; margin: 16px 0 0; padding: 0; }
.sv-service__features li { display: flex; gap: 10px; align-items: flex-start; color: var(--sv-ink-2); font-size: .95rem; margin-bottom: 8px; }
.sv-service__features li::before { content: "✓"; color: var(--svcc-gold); font-weight: 800; }
.sv-service.is-featured { border-color: var(--svcc-gold); }
.sv-service__tag { position: absolute; top: 16px; right: 16px; background: var(--svcc-primary); color: #000; font-size: .72rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; }

/* Why choose us ---------------------------------------------------------- */
.sv-feature { padding: 30px; border-radius: 18px; background: var(--sv-surface-2); border: 1px solid var(--sv-border-soft); }
.sv-feature__icon { font-size: 30px; color: var(--svcc-gold); margin-bottom: 14px; }
.sv-feature__icon .dashicons { font-size: 34px; width: 34px; height: 34px; }
.sv-feature h3 { font-size: 1.2rem; }
.sv-feature p { color: var(--sv-ink-2); font-size: .96rem; margin: 0; }

/* Stats ------------------------------------------------------------------ */
.sv-stats { background:
  linear-gradient(120deg, rgba(254,194,8,.06), transparent 40%), var(--sv-surface-1);
  border-top: 1px solid var(--sv-border-soft); border-bottom: 1px solid var(--sv-border-soft); }
.sv-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.sv-stat b { display: block; font-family: var(--svcc-heading-font); font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.sv-stat span { color: var(--sv-ink-3); text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }

/* Gallery ---------------------------------------------------------------- */
.sv-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.sv-gallery-item { position: relative; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; border: 1px solid var(--sv-border-soft);
  background: linear-gradient(135deg, #14100a, #000); }
.sv-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sv-gallery-item:hover img { transform: scale(1.07); }
.sv-gallery-item__ph { position: absolute; inset: 0; display: grid; place-items: center; color: var(--sv-ink-3); }
.sv-gallery-item__ph .dashicons { font-size: 40px; width: 40px; height: 40px; opacity: .5; }
.sv-gallery-item__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; font-size: .9rem;
  background: linear-gradient(0deg, rgba(0,0,0,.8), transparent); }

/* Testimonials ----------------------------------------------------------- */
.sv-testimonial { background: var(--sv-surface-2); border: 1px solid var(--sv-border-soft); border-radius: 20px; padding: 32px; }
.sv-testimonial__stars { color: var(--svcc-primary); letter-spacing: 2px; margin-bottom: 14px; }
.sv-testimonial p { color: var(--sv-ink-1); font-size: 1.05rem; font-style: italic; }
.sv-testimonial__by { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.sv-testimonial__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: linear-gradient(135deg, var(--svcc-gold), var(--svcc-orange)); display: grid; place-items: center; color: #000; font-weight: 800; }
.sv-testimonial__by strong { display: block; font-family: var(--svcc-heading-font); }
.sv-testimonial__by span { color: var(--sv-ink-3); font-size: .88rem; }

/* FAQ -------------------------------------------------------------------- */
.sv-faq { max-width: 860px; margin: 0 auto; }
.sv-faq__item { border: 1px solid var(--sv-border-soft); border-radius: 14px; margin-bottom: 14px; overflow: hidden; background: var(--sv-surface-2); }
.sv-faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--sv-heading); font-family: var(--svcc-heading-font);
  font-weight: 600; font-size: 1.08rem; padding: 22px 26px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sv-faq__q::after { content: "+"; color: var(--svcc-gold); font-size: 1.6rem; line-height: 1; transition: transform .25s ease; }
.sv-faq__item.is-open .sv-faq__q::after { transform: rotate(45deg); }
.sv-faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; color: var(--sv-ink-2); padding: 0 26px; }
.sv-faq__item.is-open .sv-faq__a { padding-bottom: 22px; }

/* CTA -------------------------------------------------------------------- */
.sv-cta { text-align: center; background:
  radial-gradient(900px 400px at 50% 0%, rgba(254,194,8,.18), transparent 60%), var(--sv-surface-1);
  border-top: 1px solid var(--sv-border-soft); }
.sv-cta h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); max-width: 820px; margin: 0 auto 18px; }
.sv-cta p { color: var(--sv-ink-2); max-width: 620px; margin: 0 auto 32px; font-size: 1.1rem; }
.sv-cta--image { background-size: cover; background-position: center; position: relative; }
.sv-cta--image::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.88)); }
.sv-cta--image .sv-container { position: relative; z-index: 1; }

/* Contact ---------------------------------------------------------------- */
.sv-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.sv-contact__info li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; list-style: none; }
.sv-contact__info ul { padding: 0; margin: 0; }
.sv-contact__info .dashicons { color: var(--svcc-gold); font-size: 24px; width: 24px; height: 24px; margin-top: 2px; }
.sv-contact__map iframe, .sv-contact__map > * { width: 100%; min-height: 380px; border: 0; border-radius: 18px; }
.sv-contact__map { border-radius: 18px; overflow: hidden; border: 1px solid var(--sv-border); min-height: 380px; background: var(--sv-surface-2); }

/* Page / blog ------------------------------------------------------------ */
.sv-page-hero { padding: 120px 0 60px; text-align: center; background:
  radial-gradient(1000px 400px at 50% -20%, rgba(254,194,8,.14), transparent 60%), #000; border-bottom: 1px solid var(--sv-border-soft); }
.sv-page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.sv-page-body { padding: 70px 0; }
.sv-page-body .sv-prose { max-width: 820px; margin: 0 auto; color: var(--sv-ink-2); }
.sv-prose a { text-decoration: underline; }
.sv-post-card { background: var(--sv-surface-2); border: 1px solid var(--sv-border-soft); border-radius: 18px; overflow: hidden; transition: transform .25s ease, border-color .25s ease; }
.sv-post-card:hover { transform: translateY(-5px); border-color: var(--sv-border); }
.sv-post-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, #14100a, #000); }
.sv-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sv-post-card__body { padding: 24px; }
.sv-post-card__meta { color: var(--sv-ink-3); font-size: .85rem; margin-bottom: 8px; }
.sv-post-card h2, .sv-post-card h3 { font-size: 1.25rem; margin: 0 0 10px; }
.sv-pagination { display: flex; gap: 10px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }
.sv-pagination .page-numbers { padding: 10px 16px; border: 1px solid var(--sv-border-soft); border-radius: 10px; color: var(--sv-ink-1); }
.sv-pagination .page-numbers.current, .sv-pagination .page-numbers:hover { background: var(--svcc-primary); color: #000; border-color: var(--svcc-primary); }

/* 404 -------------------------------------------------------------------- */
.sv-404 { text-align: center; padding: 140px 0; }
.sv-404 h1 { font-size: clamp(5rem, 18vw, 12rem); margin: 0; line-height: 1; }

/* Reveal animation ------------------------------------------------------- */
.sv-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.sv-reveal.is-visible { opacity: 1; transform: none; }

/* Footer ----------------------------------------------------------------- */
.sv-footer { background: var(--sv-footer-bg); border-top: 1px solid var(--sv-border-soft); }
.sv-footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; padding: 70px 24px 40px; max-width: 1400px; margin: 0 auto; }
.sv-footer__title { font-size: 1.6rem; margin-bottom: 12px; }
.sv-footer__tag { color: var(--sv-footer-text); }
.sv-footer__heading { font-size: .9rem; text-transform: uppercase; letter-spacing: .1em; color: var(--svcc-gold); margin-bottom: 16px; }
.sv-footer ul { list-style: none; margin: 0; padding: 0; }
.sv-footer li { margin-bottom: 10px; }
.sv-footer a { color: var(--sv-footer-text); }
.sv-footer a:hover { color: var(--svcc-primary); }
.sv-footer__social { display: flex; gap: 12px; margin-top: 18px; }
.sv-footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--sv-border-soft); display: grid; place-items: center; }
.sv-footer__social a:hover { border-color: var(--svcc-primary); }
.sv-footer__bottom { border-top: 1px solid var(--sv-border-soft); display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; justify-content: space-between; padding: 22px 24px; color: var(--sv-ink-3); font-size: .88rem; max-width: 1400px; margin: 0 auto; }
.sv-footer__bottom p { margin: 0; }
.sv-credit a { color: var(--svcc-gold); font-weight: 700; }
.sv-credit a:hover { color: var(--svcc-primary); }

/* WhatsApp float --------------------------------------------------------- */
.sv-wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 998; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(0,0,0,.4); font-weight: 800; }
.sv-wa-float:hover { transform: scale(1.06); color: #fff; }

/* Responsive ------------------------------------------------------------- */
@media (max-width: 1200px) {
  .sv-burger { display: flex; }
  /* Full-height slide-in drawer pinned to the right. height:100dvh keeps the
     whole menu usable on phones (dvh accounts for mobile browser toolbars), so
     top-level items like Home/Gallery are visible at the top without scrolling. */
  .sv-nav { position: fixed; top: 0; right: 0; bottom: 0; left: auto; height: 100vh; height: 100dvh;
    width: min(88vw, 340px); display: flex; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--sv-body-bg);
    border-left: 1px solid var(--sv-border); padding: 72px 20px 24px; transform: translateX(100%);
    transition: transform .32s ease; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch;
    box-shadow: -8px 0 30px rgba(0,0,0,.18); }
  /* Inside the slide-in drawer use the page text colour so the menu tabs are
     always readable, regardless of the header background/text colours. */
  .sv-nav .sv-menu a { color: var(--sv-ink-1); }
  .sv-nav .sv-menu a:hover, .sv-nav .sv-menu .current-menu-item > a { color: var(--svcc-primary); }
  /* Phone + WhatsApp icons stay in the top bar at all times (not in the drawer). */
  .sv-header__actions { margin-left: auto; gap: 8px; order: 1; }
  .sv-burger { order: 2; }
  /* Book Now lives in the drawer, full width under the menu. */
  .sv-nav__cta { width: 100%; margin-top: auto; padding-top: 16px; }
  .sv-nav__cta .sv-btn { width: 100%; }
  body.sv-nav-open .sv-nav { transform: translateX(0); }
  body.sv-nav-open { overflow: hidden; }
  /* Keep the open drawer + burger above the body-level scrim. */
  body.sv-nav-open .sv-header { z-index: 1001; }
  .sv-burger { position: relative; z-index: 2; }
  .sv-nav { z-index: 1; }
  .sv-nav-scrim { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden;
    transition: opacity .3s ease; z-index: 1000; }
  body.sv-nav-open .sv-nav-scrim { opacity: 1; visibility: visible; }
  /* One menu item per row, full width, comfortable tap targets, light dividers. */
  .sv-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .sv-menu > li { width: 100%; border-bottom: 1px solid var(--sv-border-soft, rgba(0,0,0,.08)); }
  .sv-nav .sv-menu a { display: block; width: 100%; padding: 14px 2px; font-size: 1.08rem; font-weight: 600; }
  .sv-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding-left: 14px; margin: 0 0 6px; }
  .sv-menu .sub-menu a { font-size: .98rem; padding: 9px 2px; font-weight: 500; }
  .sv-about__grid, .sv-contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .sv-grid--4, .sv-trust__grid, .sv-stats__grid, .sv-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .sv-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sv-section { padding: 72px 0; }
  .sv-grid--3, .sv-grid--2, .sv-grid--4, .sv-trust__grid, .sv-stats__grid { grid-template-columns: 1fr; }
  .sv-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-footer__inner { grid-template-columns: 1fr; }
  .sv-hero { min-height: 86vh; }
}

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

/* ============================================================
   v1.4.0 (TDF_CP_M6) — Page Manager block + extra transitions
   Added by Saveur Control Center. Additive only.
   ============================================================ */

/* Managed per-page content block (Saveur Restaurant → Page Manager) */
.sv-pm { padding: 90px 0; }
.sv-pm__inner { display: block; }
.sv-pm__inner--has-img {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.sv-pm__heading { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin: 10px 0 18px; }
.sv-pm__body { color: var(--sv-ink-2); font-size: 1.06rem; line-height: 1.8; }
.sv-pm__body p { margin: 0 0 1em; }
.sv-pm__media { position: relative; }
.sv-pm__img {
  width: 100%; height: auto; border-radius: 22px; display: block;
  box-shadow: 0 24px 60px rgba(0,0,0,.28); transition: transform .5s ease, box-shadow .5s ease;
}
.sv-pm__inner--has-img:hover .sv-pm__img { transform: translateY(-4px) scale(1.01); box-shadow: 0 30px 70px rgba(0,0,0,.34); }
@media (max-width: 860px) {
  .sv-pm__inner--has-img { grid-template-columns: 1fr; gap: 28px; }
  .sv-pm__media { order: -1; }
}

/* --- "Showie" polish: richer reveal directions + stagger --- */
.sv-reveal-left  { opacity: 0; transform: translateX(-36px); transition: opacity .7s ease, transform .7s ease; }
.sv-reveal-right { opacity: 0; transform: translateX(36px);  transition: opacity .7s ease, transform .7s ease; }
.sv-reveal-zoom  { opacity: 0; transform: scale(.94);        transition: opacity .7s ease, transform .7s ease; }
.sv-reveal-left.is-visible,
.sv-reveal-right.is-visible,
.sv-reveal-zoom.is-visible { opacity: 1; transform: none; }

/* Stagger children of a revealed group */
.sv-stagger.is-visible > * { animation: sv-fade-up .6s ease both; }
.sv-stagger.is-visible > *:nth-child(2) { animation-delay: .08s; }
.sv-stagger.is-visible > *:nth-child(3) { animation-delay: .16s; }
.sv-stagger.is-visible > *:nth-child(4) { animation-delay: .24s; }
.sv-stagger.is-visible > *:nth-child(5) { animation-delay: .32s; }
.sv-stagger.is-visible > *:nth-child(6) { animation-delay: .40s; }
@keyframes sv-fade-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

/* Smooth, premium hover lift for cards site-wide */
.sv-card, .sv-service-card, .sv-post-card { will-change: transform; }

/* Animated gradient accent on section titles when revealed (subtle) */
.sv-gradient-text {
  background: linear-gradient(90deg, var(--svcc-primary), var(--svcc-gold), var(--svcc-orange));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: sv-shine 6s linear infinite;
}
@keyframes sv-shine { to { background-position: 200% center; } }

/* Booking confirmation overlay (shown after a successful booking) */
.sv-booking-success {
  position: fixed; inset: 0; z-index: 9999; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
}
.sv-booking-success.is-open { display: flex; animation: sv-fade-up .4s ease both; }
.sv-booking-success__card {
  background: var(--sv-surface-2, #14110c); color: var(--sv-ink, #fff);
  max-width: 460px; width: 100%; text-align: center; padding: 40px 32px;
  border-radius: 22px; border: 1px solid var(--svcc-gold, #FEC208);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.sv-booking-success__icon {
  width: 72px; height: 72px; margin: 0 auto 16px; border-radius: 50%;
  display: grid; place-items: center; font-size: 38px;
  background: rgba(37,211,102,.15); color: #25D366;
  animation: sv-pop .5s cubic-bezier(.18,.89,.32,1.28) both;
}
@keyframes sv-pop { 0% { transform: scale(0); } 100% { transform: scale(1); } }
.sv-booking-success__title { font-family: Poppins, sans-serif; font-size: 1.5rem; margin: 0 0 8px; }
.sv-booking-success__text { color: var(--sv-ink-2, #c9c3b8); margin: 0 0 22px; }
.sv-booking-success__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.sv-booking-success .sv-btn--whatsapp { background: #25D366; color: #fff; }
@media (prefers-reduced-motion: reduce) {
  .sv-reveal-left, .sv-reveal-right, .sv-reveal-zoom { opacity: 1; transform: none; }
  .sv-stagger.is-visible > * { animation: none; }
  .sv-gradient-text { animation: none; }
}

/* ============================================================
   v1.4.0 (TDF_CP_M6) — Services & Testimonials pages + steps
   Additive only.
   ============================================================ */
.sv-services-hero { padding: 130px 0 50px; }
.sv-services-hero__sub {
  max-width: 680px; margin: 18px auto 0; color: var(--sv-ink-2);
  font-size: 1.12rem; line-height: 1.7;
}
.sv-services-page { padding-top: 70px; }
.sv-testimonials-page { padding-top: 70px; }

/* "How it works" numbered steps */
.sv-step {
  background: var(--sv-surface-2); border: 1px solid var(--sv-border-soft);
  border-radius: var(--svcc-radius, 16px); padding: 34px 28px; position: relative;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.sv-step:hover { transform: translateY(-6px); border-color: var(--sv-border); box-shadow: var(--sv-shadow); }
.sv-step__num {
  display: inline-grid; place-items: center; width: 52px; height: 52px; margin-bottom: 18px;
  border-radius: 50%; font-family: Poppins, sans-serif; font-weight: 700; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--svcc-primary), var(--svcc-gold)); color: #000;
  box-shadow: 0 10px 24px rgba(254,194,8,.30);
}
.sv-step h3 { font-size: 1.25rem; margin: 0 0 8px; }
.sv-step p { color: var(--sv-ink-2); margin: 0; line-height: 1.7; }

@media (max-width: 860px) {
  .sv-services-hero { padding: 100px 0 36px; }
}

/* ============================================================
   v1.4.2 (TDF_CP_M8) — Page Manager extra layout options
   Additive only.
   ============================================================ */
.sv-pm--soft { background: var(--sv-surface-1); }
.sv-pm--bordered { background: var(--sv-surface-1); border-top: 1px solid var(--sv-border-soft); border-bottom: 1px solid var(--sv-border-soft); }
.sv-pm__inner--img-left { direction: rtl; }
.sv-pm__inner--img-left > * { direction: ltr; }
.sv-pm__inner--stack { grid-template-columns: 1fr !important; }
.sv-pm__inner--stack .sv-pm__media { order: -1; }
.sv-pm__inner--center { text-align: center; }
.sv-pm__inner--center .sv-pm__text { margin: 0 auto; max-width: 760px; }
.sv-pm__cta { margin-top: 24px; }
.sv-faq-page { padding-top: 70px; }

/* ============================================================
   v1.4.4 (TDF_CP_M10) — Custom Section Builder
   ============================================================ */
.sv-cs--soft { background: var(--sv-surface-1); }
.sv-cs--bordered { background: var(--sv-surface-1); border-top: 1px solid var(--sv-border-soft); border-bottom: 1px solid var(--sv-border-soft); }
.sv-cs__cta { margin-top: 24px; }
.sv-section-head--left { text-align: left; margin-left: 0; }
.sv-cs__split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sv-cs__split--img-left { direction: rtl; }
.sv-cs__split--img-left > * { direction: ltr; }
.sv-cs__img { width: 100%; height: auto; border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.sv-cs__placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 20px;
  background: linear-gradient(135deg, var(--svcc-primary,#CF240A), var(--svcc-gold,#FEC208));
  opacity: .25; }
.sv-cs__cta-text { color: var(--sv-ink-2); }
@media (max-width: 860px) {
  .sv-cs__split { grid-template-columns: 1fr; gap: 26px; }
  .sv-cs__split--img-left { direction: ltr; }
}

/* ============================================================
   v1.4.5 — Section Builder: extra layouts
   ============================================================ */
.sv-cs--compact { padding-top: 40px; padding-bottom: 40px; }
.sv-cs--spacious { padding-top: 130px; padding-bottom: 130px; }
.sv-cs-spacer { width: 100%; }
.sv-cs-spacer--line { display: flex; align-items: center; }
.sv-cs-spacer--line::before { content: ""; display: block; width: 100%; border-top: 1px solid var(--sv-border-soft); }
/* Stats */
.sv-cs-stats { text-align: center; }
.sv-cs-stat { display: flex; flex-direction: column; gap: 6px; }
.sv-cs-stat__num { font-family: Poppins, sans-serif; font-weight: 800; font-size: clamp(2rem,4vw,3rem);
  background: linear-gradient(135deg, var(--svcc-primary), var(--svcc-gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sv-cs-stat__label { color: var(--sv-ink-2); font-size: .95rem; }
/* Gallery strip */
.sv-cs-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.sv-cs-gallery__item img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; aspect-ratio: 4/3; display: block; }
@media (max-width: 700px){ .sv-cs-gallery { grid-template-columns: repeat(2,1fr); } }
/* Quote */
.sv-cs-quote { max-width: 760px; margin: 0 auto; text-align: center; }
.sv-cs-quote blockquote { font-family: Poppins, sans-serif; font-size: clamp(1.3rem,2.6vw,1.9rem); line-height: 1.5; margin: 0 0 18px; color: var(--sv-ink-1); }
.sv-cs-quote figcaption strong { color: var(--svcc-gold); }
.sv-cs-quote figcaption span { color: var(--sv-ink-2); }
/* Two column */
.sv-cs-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 760px){ .sv-cs-twocol { grid-template-columns: 1fr; gap: 20px; } }

/* ============================================================
   Saveur — Fine Dining mode (default): champagne, ivory, dark
   ============================================================ */
.sv-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(201,169,110,.04) 0px, rgba(201,169,110,.04) 1px,
    transparent 1px, transparent 40px
  );
}
.sv-hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,169,110,.12), transparent 70%);
}
.sv-hero > * { position: relative; z-index: 1; }
.sv-hero h1 { text-shadow: 0 0 80px rgba(201,169,110,.2); }

.sv-eyebrow {
  font-style: italic;
  letter-spacing: .15em;
  font-size: .82rem;
  color: var(--svcc-primary);
  opacity: .9;
  display: inline-block;
  margin-bottom: 12px;
}
.sv-section-title::after {
  content: "";
  display: block; width: 48px; height: 1px; margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--svcc-primary), transparent);
}
.sv-service:hover { border-top-color: var(--svcc-primary); }

/* ============================================================
   Saveur — Casual Bistro mode (body.sv-casual)
   Swaps to a warm cream/terracotta/olive daytime palette
   ============================================================ */
body.sv-casual {
  --svcc-primary:  #C4501A;
  --svcc-gold:     #8B9B3C;
  --sv-bg:          #FAF5EE;
  --sv-surface-1:   #F3EBE0;
  --sv-surface-2:   #FFFFFF;
  --sv-surface-3:   #EDE3D5;
  --sv-ink-1:       #2C1A0E;
  --sv-ink-2:       #5C3D22;
  --sv-ink-3:       #8B6240;
  --sv-border-soft: rgba(196,80,26,.12);
  --sv-border:      rgba(196,80,26,.25);
  --sv-btn-bg:      linear-gradient(135deg, #C4501A 0%, #8B9B3C 100%);
  --sv-btn-text:    #FFFFFF;
  --sv-shadow:      0 16px 40px rgba(196,80,26,.1), 0 4px 12px rgba(0,0,0,.08);
  --svcc-heading-font: 'Nunito', 'DM Sans', system-ui, sans-serif;
}

/* Casual hero: warm sunlit gradient */
body.sv-casual .sv-hero::after {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196,80,26,.1), transparent 70%);
}
body.sv-casual .sv-hero::before {
  background-image: none;
  background: linear-gradient(180deg, rgba(250,245,238,.4), transparent);
}
body.sv-casual .sv-eyebrow { color: var(--svcc-primary); font-style: normal; }
body.sv-casual .sv-section-title::after {
  background: linear-gradient(90deg, transparent, #C4501A 30%, #8B9B3C 70%, transparent);
}
body.sv-casual .sv-service { border: 1px solid rgba(196,80,26,.15); }
body.sv-casual .sv-service:hover { border-top-color: #C4501A; box-shadow: 0 16px 40px rgba(196,80,26,.12); }
body.sv-casual .sv-feature__icon { background: rgba(196,80,26,.1); color: #C4501A; }
body.sv-casual .sv-trust__item .dashicons { color: #C4501A; }
body.sv-casual .sv-announce { background: rgba(196,80,26,.08); color: #C4501A; }
body.sv-casual .sv-stat__num {
  background: linear-gradient(135deg, #C4501A, #8B9B3C);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Mode switcher toggle on front end (shown to logged-in admins) */
.sv-mode-switcher {
  position: fixed; bottom: 140px; right: 20px; z-index: 8888;
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(14,11,8,.9); padding: 10px 12px; border-radius: 12px;
  border: 1px solid rgba(201,169,110,.25); backdrop-filter: blur(8px);
  font-family: inherit; font-size: .78rem; line-height: 1.4;
}
.sv-mode-switcher label { cursor: pointer; color: var(--sv-ink-2); }
.sv-mode-switcher input:checked + span { color: var(--svcc-primary); font-weight: 700; }
body.sv-casual .sv-mode-switcher {
  background: rgba(255,255,255,.95);
  border-color: rgba(196,80,26,.25);
}
