/* ==========================================================================
   Blue Feathers — taste of India   |   brand design system + pages
   Rebrand of The Haveli 122. Palette from the peacock logo + menu PDF.
   ========================================================================== */
:root{
  --cream:#F5F0E4;      /* page background            */
  --cream-2:#EFE8D6;    /* alt section / cards        */
  --teal:#1C4A5A;       /* primary — headings         */
  --teal-deep:#123543;  /* darker teal — footer/nav   */
  --rust:#A0472A;       /* accent — prices, CTAs      */
  --rust-2:#8A3B22;
  --gold:#C9A24B;       /* ornament / hairlines       */
  --ink:#2C2822;        /* body text                  */
  --muted:#6E6656;      /* secondary text             */
  --line:rgba(28,74,90,.18);
  --shadow:0 18px 50px -22px rgba(18,53,67,.55);
  --serif:"Cormorant Garamond",Georgia,serif;
  --caps:"Marcellus","Cormorant Garamond",serif;
  --sans:"Mulish","Segoe UI",system-ui,sans-serif;
  --wrap:1180px;
}

/* ---- reset-ish (scoped so we don't fight plugin styles elsewhere) ---- */
.bf *{box-sizing:border-box}
.bf{font-family:var(--sans);color:var(--ink);background:var(--cream);line-height:1.65;font-size:17px;-webkit-font-smoothing:antialiased}
.bf img{max-width:100%;height:auto;display:block}
.bf a{color:var(--rust);text-decoration:none;transition:.2s}
.bf a:hover{color:var(--rust-2)}
.bf-wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px}

/* ---- shared type ---- */
.bf h1,.bf h2,.bf h3{font-family:var(--serif);color:var(--teal);font-weight:700;line-height:1.1;margin:0}
.bf .eyebrow{font-family:var(--caps);letter-spacing:.34em;text-transform:uppercase;font-size:.72rem;color:var(--rust);margin:0 0 14px}
.bf h2.section-title{font-size:clamp(2rem,4.4vw,3.1rem);margin-bottom:.35em}
.bf .lead{font-size:1.12rem;color:var(--muted);max-width:60ch}
.bf .ornament{display:flex;align-items:center;justify-content:center;gap:16px;color:var(--gold);margin:14px 0 8px}
.bf .ornament::before,.bf .ornament::after{content:"";height:1px;width:70px;background:linear-gradient(90deg,transparent,var(--gold))}
.bf .ornament::after{background:linear-gradient(270deg,transparent,var(--gold))}
.bf .ornament span{font-size:1.1rem}

/* ---- buttons ---- */
.bf .btn{display:inline-flex;align-items:center;gap:.6em;font-family:var(--caps);letter-spacing:.12em;text-transform:uppercase;font-size:.82rem;padding:15px 30px;border-radius:2px;border:1px solid transparent;cursor:pointer;transition:.22s}
.bf .btn-primary{background:var(--rust);color:#fff}
.bf .btn-primary:hover{background:var(--rust-2);color:#fff;transform:translateY(-2px)}
.bf .btn-ghost{background:transparent;color:var(--teal);border-color:var(--teal)}
.bf .btn-ghost:hover{background:var(--teal);color:var(--cream)}
.bf .btn-gold{background:transparent;color:var(--cream);border-color:var(--gold)}
.bf .btn-gold:hover{background:var(--gold);color:var(--teal-deep)}

/* ==========================================================================
   NAV
   ========================================================================== */
.bf-nav{position:sticky;top:0;z-index:50;background:rgba(245,240,228,.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.bf-nav .bf-wrap{display:flex;align-items:center;justify-content:space-between;padding-top:14px;padding-bottom:14px;gap:24px}
.bf-nav img.logo{height:56px;width:auto}
.bf-nav ul{display:flex;gap:30px;list-style:none;margin:0;padding:0;align-items:center}
.bf-nav ul a{font-family:var(--caps);letter-spacing:.1em;text-transform:uppercase;font-size:.8rem;color:var(--teal)}
.bf-nav ul a:hover{color:var(--rust)}
.bf-nav .nav-cta{display:flex;align-items:center;gap:14px}
.bf-burger{display:none;background:none;border:0;font-size:1.6rem;color:var(--teal);cursor:pointer}
@media(max-width:900px){
  /* full-viewport drawer (explicit height so backdrop-filter containing-block can't shrink it) */
  .bf-nav ul{position:fixed;top:0;right:0;left:auto;width:min(80vw,320px);height:100vh;height:100dvh;
    flex-direction:column;justify-content:center;background:var(--teal-deep);padding:80px 34px;gap:22px;
    transform:translateX(100%);transition:transform .32s ease;z-index:1000;overflow-y:auto}
  .bf-nav ul.open{transform:none}
  .bf-nav ul a{color:var(--cream);font-size:1.05rem;display:block;width:100%;text-align:center;padding:8px 0}
  .bf-burger{display:block;position:relative;z-index:1002}   /* stays above drawer so it can close it */
  .bf-nav .nav-cta .btn{padding:12px 20px}
  /* dim backdrop behind the drawer, tap to close (added by JS as body.bf-nav-open) */
  body.bf-nav-open::after{content:"";position:fixed;inset:0;background:rgba(9,26,33,.5);z-index:999;opacity:1}
  /* raise the whole nav (and its drawer) ABOVE the backdrop when open, else the
     root-level backdrop covers the drawer (trapped in .bf-nav's z-50 context) and eats link clicks */
  body.bf-nav-open .bf-nav{z-index:1001}
}

/* ==========================================================================
   HERO
   ========================================================================== */
.bf-hero{position:relative;min-height:82vh;display:flex;align-items:center;justify-content:center;text-align:center;color:var(--cream);overflow:hidden}
.bf-hero .bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.05);filter:brightness(.55) saturate(1.05)}
.bf-hero::after{content:"";position:absolute;inset:0;background:radial-gradient(120% 90% at 50% 40%,rgba(18,53,67,.25),rgba(18,53,67,.78))}
.bf-hero .inner{position:relative;z-index:2;padding:60px 24px;max-width:820px}
.bf-hero .peacock{width:120px;margin:0 auto 18px;opacity:.95}
.bf-hero h1{color:var(--cream);font-size:clamp(2.6rem,7vw,5.2rem);text-shadow:0 2px 30px rgba(0,0,0,.4)}
.bf-hero .tagline{font-family:var(--caps);letter-spacing:.4em;text-transform:uppercase;color:var(--gold);font-size:clamp(.8rem,2vw,1rem);margin:10px 0 26px}
.bf-hero .hero-cta{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:8px}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.bf-section{padding:clamp(64px,9vw,120px) 0}
.bf-section.alt{background:var(--cream-2)}
.bf-section.teal{background:var(--teal-deep);color:var(--cream)}
.bf-section.teal h2,.bf-section.teal .ornament{color:var(--cream)}
.bf-center{text-align:center}
.bf-center .lead{margin-left:auto;margin-right:auto}

/* About */
.bf-about{display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(30px,5vw,70px);align-items:center}
.bf-about .imgwrap{position:relative}
.bf-about .imgwrap img{border-radius:3px;box-shadow:var(--shadow)}
.bf-about .imgwrap::before{content:"";position:absolute;inset:-16px -16px auto auto;width:60%;height:60%;border:1px solid var(--gold);border-left:0;border-bottom:0;opacity:.6}
@media(max-width:820px){.bf-about{grid-template-columns:1fr}}

/* Featured dishes */
.bf-dishes{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:52px}
.bf-dish{background:var(--cream);border:1px solid var(--line);border-radius:4px;overflow:hidden;box-shadow:0 10px 30px -22px rgba(18,53,67,.5);transition:.25s}
.bf-dish:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.bf-dish .ph{aspect-ratio:4/3;background:var(--cream-2) center/cover no-repeat}
.bf-dish .body{padding:20px 22px 24px}
.bf-dish .row{display:flex;justify-content:space-between;align-items:baseline;gap:12px}
.bf-dish h3{font-size:1.35rem}
.bf-dish .price{font-family:var(--serif);font-weight:700;color:var(--rust);font-size:1.3rem;white-space:nowrap}
.bf-dish p{margin:.5em 0 0;color:var(--muted);font-size:.95rem}
.bf-dish .tag{display:inline-block;margin-top:12px;font-family:var(--caps);letter-spacing:.14em;text-transform:uppercase;font-size:.62rem;color:var(--teal);border:1px solid var(--line);border-radius:20px;padding:3px 12px}
@media(max-width:820px){.bf-dishes{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.bf-dishes{grid-template-columns:1fr}}

/* Menu + QR band */
.bf-menuband{display:grid;grid-template-columns:1.15fr .85fr;gap:clamp(30px,5vw,64px);align-items:center}
.bf-menuband .qrcard{background:var(--cream);border:1px solid var(--gold);border-radius:6px;padding:26px;text-align:center;box-shadow:var(--shadow)}
.bf-menuband .qrcard img{width:200px;margin:0 auto 14px}
.bf-menuband .qrcard .cap{font-family:var(--caps);letter-spacing:.14em;text-transform:uppercase;font-size:.72rem;color:var(--muted)}
@media(max-width:820px){.bf-menuband{grid-template-columns:1fr;text-align:center}.bf-menuband .lead{margin:0 auto}}

/* Reservation */
.bf-reserve .inner{max-width:760px;margin:0 auto}
.bf-reserve .rtb-booking-form,.bf-reserve form{background:transparent;padding:0;box-shadow:none;margin-top:22px}
.bf-reserve label{font-family:var(--caps);letter-spacing:.06em;font-size:.8rem;color:var(--teal)}
.bf-reserve input,.bf-reserve select,.bf-reserve textarea{width:100%;padding:12px 14px;margin-top:6px;border:1px solid var(--line);border-radius:3px;background:#fff;font-family:var(--sans)}
.bf-reserve button[type=submit],.bf-reserve .rtb-submit input{background:var(--rust)!important;color:#fff!important;border:0;padding:14px 30px;font-family:var(--caps);letter-spacing:.12em;text-transform:uppercase;border-radius:2px;cursor:pointer}

/* Info trio (hours / address / contact) */
.bf-info{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;text-align:center}
.bf-info .card h3{color:var(--cream);font-size:1.5rem;margin-bottom:10px}
.bf-info .card .ico{font-size:1.6rem;color:var(--gold);margin-bottom:8px}
.bf-info .card p{color:rgba(245,240,228,.82);margin:.2em 0;font-size:.98rem}
@media(max-width:760px){.bf-info{grid-template-columns:1fr;gap:36px}}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.bf-footer{background:#0f2c37;color:rgba(245,240,228,.8);padding:60px 0 30px;text-align:center}
.bf-footer img.logo{height:66px;margin:0 auto 18px;opacity:.95}
.bf-footer .fnav{display:flex;gap:26px;justify-content:center;flex-wrap:wrap;margin:18px 0}
.bf-footer .fnav a{color:var(--cream);font-family:var(--caps);letter-spacing:.1em;text-transform:uppercase;font-size:.76rem}
.bf-footer .legal{font-size:.8rem;color:rgba(245,240,228,.5);margin-top:20px;border-top:1px solid rgba(255,255,255,.1);padding-top:20px}

/* ==========================================================================
   FLIPBOOK MENU PAGE
   ========================================================================== */
.bf-menu-page{background:radial-gradient(120% 120% at 50% 0%,#1c4a5a,#0f2c37);min-height:100vh;padding:34px 16px 60px;color:var(--cream)}
.bf-menu-page .head{text-align:center;margin-bottom:26px}
.bf-menu-page .head img{height:74px;margin:0 auto 10px;}
.bf-menu-page .head h1{color:var(--cream);font-size:clamp(1.8rem,4vw,2.6rem)}
.bf-menu-page .head p{color:var(--gold);font-family:var(--caps);letter-spacing:.3em;text-transform:uppercase;font-size:.72rem;margin-top:6px}
.bf-flip-stage{display:flex;justify-content:center;align-items:center;width:min(94vw,calc(74vh * 1.414),900px);margin:0 auto}
#bf-flipbook{box-shadow:0 40px 90px -30px rgba(0,0,0,.7);border-radius:4px;overflow:hidden}
#bf-flipbook .page{background:var(--cream) center/cover no-repeat;overflow:hidden}
#bf-flipbook .page img{width:100%;height:100%;object-fit:cover;display:block}
.bf-flip-controls{display:flex;gap:16px;justify-content:center;align-items:center;margin-top:26px}
.bf-flip-controls button{background:transparent;border:1px solid var(--gold);color:var(--cream);width:48px;height:48px;border-radius:50%;font-size:1.2rem;cursor:pointer;transition:.2s}
.bf-flip-controls button:hover{background:var(--gold);color:var(--teal-deep)}
.bf-flip-controls .pg{font-family:var(--caps);letter-spacing:.14em;color:rgba(245,240,228,.8);min-width:120px;text-align:center;font-size:.85rem}
.bf-menu-page .hint{text-align:center;color:rgba(245,240,228,.55);font-size:.85rem;margin-top:18px}
.bf-menu-page .backhome{text-align:center;margin-top:30px}

/* ==========================================================================
   FIXES / OVERRIDES (2026-07-05)
   ========================================================================== */
/* kill inherited text-transform:capitalize from theme/Elementor kit on headings */
.bf h1,.bf h2,.bf h3{text-transform:none!important}

/* Reservation form — single background: fields sit flat on the section band (no nested card) */
.bf-reserve .rr-reservation-form-container{max-width:620px;margin:0 auto;padding:0!important}
.bf-reserve .rr-form-wrapper{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important}
.bf-reserve .rr-form-header{display:none}            /* avoid duplicate "Tisch reservieren" title */
.bf-reserve .rr-form-group label{color:var(--teal)!important;font-family:var(--caps);letter-spacing:.04em;font-size:.82rem}
.bf-reserve .rr-form-group label .required{color:var(--rust)!important}
.bf-reserve .rr-form-group input[type="text"],
.bf-reserve .rr-form-group input[type="email"],
.bf-reserve .rr-form-group input[type="tel"],
.bf-reserve .rr-form-group input[type="date"],
.bf-reserve .rr-form-group input[type="number"],
.bf-reserve .rr-form-group select,
.bf-reserve .rr-form-group textarea{background:#fff!important;color:var(--ink)!important;border:1px solid var(--line)!important;border-radius:3px}
.bf-reserve .rr-form-group input:focus,
.bf-reserve .rr-form-group select:focus,
.bf-reserve .rr-form-group textarea:focus{border-color:var(--rust)!important;outline:none}
.bf-reserve .rr-form-group input::placeholder,
.bf-reserve .rr-form-group textarea::placeholder{color:var(--muted)}
.bf-reserve .rr-form-group select option{background:#fff;color:var(--ink)}
.bf-reserve .rr-submit-btn,
.bf-reserve .rr-form button[type="submit"],
.bf-reserve .rr-form input[type="submit"]{background:var(--rust)!important;color:#fff!important;border:0;font-family:var(--caps);letter-spacing:.12em;text-transform:uppercase;border-radius:2px;padding:15px 34px;cursor:pointer;transition:.22s}
.bf-reserve .rr-submit-btn:hover,
.bf-reserve .rr-form button[type="submit"]:hover{background:var(--rust-2)!important}
/* intl-tel / phone widget on cream */
.bf-reserve .iti,.bf-reserve .rr-form-group{--iti-bg:#fff}

/* ==========================================================================
   PRO PASS (2026-07-05): hero logo, parallax, scroll-reveal, video reels
   ========================================================================== */
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* Hero: logo as centerpiece + parallax bg */
.bf-hero .bg{transform:translate3d(0,var(--py,0),0) scale(1.14);will-change:transform}
.bf-hero .hero-logo{width:min(460px,82vw);margin:0 auto 22px;filter:drop-shadow(0 10px 34px rgba(0,0,0,.55));opacity:0;transform:translateY(18px) scale(.98);animation:bf-heroin 1.1s .15s cubic-bezier(.2,.7,.2,1) forwards}
.bf-hero .lead{opacity:0;animation:bf-heroin 1s .5s ease forwards}
.bf-hero .hero-cta{opacity:0;animation:bf-heroin 1s .72s ease forwards}
@keyframes bf-heroin{to{opacity:1;transform:none}}
.bf-hero .scrollcue{position:absolute;left:50%;bottom:26px;transform:translateX(-50%);z-index:3;color:var(--gold);font-size:1.5rem;animation:bf-bounce 2.2s ease-in-out infinite;opacity:.85}
@keyframes bf-bounce{0%,100%{transform:translate(-50%,0)}50%{transform:translate(-50%,10px)}}

/* Scroll-reveal (hidden state only when JS is active, so no-JS users still see content) */
.js .bf-reveal{opacity:0;transform:translateY(36px);transition:opacity .85s cubic-bezier(.2,.7,.2,1),transform .85s cubic-bezier(.2,.7,.2,1)}
.js .bf-reveal.in{opacity:1;transform:none}
.bf-reveal.d1{transition-delay:.09s}.bf-reveal.d2{transition-delay:.18s}.bf-reveal.d3{transition-delay:.27s}

/* Video reels */
.bf-reels .bf-reelgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;margin-top:52px}
.bf-reels .reel{position:relative;margin:0;border-radius:10px;overflow:hidden;box-shadow:var(--shadow);border:1px solid var(--gold);background:var(--teal-deep);aspect-ratio:9/16}
.bf-reels .reel:nth-child(2){transform:translateY(-30px)}
.bf-reels .reel video{width:100%;height:100%;object-fit:cover;display:block}
.bf-reels .reel::after{content:"";position:absolute;inset:0;pointer-events:none;box-shadow:inset 0 -60px 60px -30px rgba(18,53,67,.55)}
.bf-reels .reel .cap{position:absolute;left:16px;bottom:14px;z-index:2;color:var(--cream);font-family:var(--caps);letter-spacing:.14em;text-transform:uppercase;font-size:.72rem;text-shadow:0 2px 10px rgba(0,0,0,.6)}
@media(max-width:820px){.bf-reels .bf-reelgrid{grid-template-columns:1fr 1fr;gap:16px}.bf-reels .reel:nth-child(2){transform:none}.bf-reels .reel:nth-child(3){display:none}}
@media(max-width:520px){.bf-reels .bf-reelgrid{grid-template-columns:1fr;max-width:340px;margin-inline:auto}.bf-reels .reel:nth-child(3){display:block}}

@media(prefers-reduced-motion:reduce){
  .bf-reveal{opacity:1!important;transform:none!important;transition:none}
  .bf-hero .hero-logo,.bf-hero .lead,.bf-hero .hero-cta{opacity:1!important;animation:none}
  .bf-hero .bg{transform:scale(1.05)!important}
  .bf-hero .scrollcue{animation:none}
}

/* ==========================================================================
   REFINEMENTS v2 (2026-07-05): distributed videos, testimonials, icons,
   clearer reservation form
   ========================================================================== */
/* generic video frame */
.bf-vidframe{width:100%;display:block;border-radius:12px;border:1px solid var(--gold);box-shadow:var(--shadow);object-fit:cover;background:var(--teal-deep)}

/* About: video replaces static image */
.bf-about .imgwrap .bf-vidframe{aspect-ratio:4/5;max-height:580px;margin-left:auto}

/* eyebrow contrast on dark teal sections */
.bf-section.teal .eyebrow{color:var(--gold)}

/* Testimonials */
.bf-testi-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(30px,5vw,64px);align-items:center}
.bf-testi-media .bf-vidframe{aspect-ratio:9/16;max-height:640px;margin:0 auto}
.bf-quote{position:relative;border-left:2px solid var(--gold);padding:4px 0 4px 24px;margin:28px 0 0}
.bf-quote .stars{color:var(--gold);letter-spacing:4px;font-size:.95rem;margin-bottom:10px}
.bf-quote p{color:rgba(245,240,228,.92);font-family:var(--serif);font-size:1.28rem;font-style:italic;line-height:1.5;margin:0}
.bf-quote cite{display:block;margin-top:12px;font-family:var(--caps);letter-spacing:.14em;text-transform:uppercase;font-size:.72rem;color:var(--gold);font-style:normal}
@media(max-width:820px){.bf-testi-grid{grid-template-columns:1fr;gap:34px}.bf-testi-media .bf-vidframe{aspect-ratio:4/5;max-height:420px}}

/* Reservation: video beside form */
.bf-reserve-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(28px,4vw,54px);align-items:center}
.bf-reserve-media .bf-vidframe{aspect-ratio:3/4;max-height:640px}
@media(max-width:860px){.bf-reserve-grid{grid-template-columns:1fr;gap:30px}.bf-reserve-media{max-width:420px;margin:0 auto}.bf-reserve-media .bf-vidframe{aspect-ratio:16/10}}

/* Branded circular gold icons (info trio) */
.bf-info .card .ico{display:inline-flex;align-items:center;justify-content:center;width:66px;height:66px;border:1px solid rgba(201,162,75,.55);border-radius:50%;color:var(--gold);margin:0 auto 16px;background:rgba(201,162,75,.06)}
.bf-info .card .ico svg{width:30px;height:30px}

/* Reservation form — clearer labels & fields, on-brand */
.bf-reserve .rr-form-group label{font-family:var(--sans)!important;text-transform:none;letter-spacing:.005em;font-weight:600;font-size:.92rem;color:var(--teal)!important;margin-bottom:4px;display:block}
.bf-reserve .rr-form-group label .required{color:var(--rust)!important}
.bf-reserve .rr-form-group input,
.bf-reserve .rr-form-group select,
.bf-reserve .rr-form-group textarea{border:1.5px solid rgba(28,74,90,.30)!important;color:var(--ink)!important;font-size:1rem;padding:13px 14px!important;border-radius:6px!important}
.bf-reserve .rr-form-group input:focus,
.bf-reserve .rr-form-group select:focus,
.bf-reserve .rr-form-group textarea:focus{border-color:var(--rust)!important;box-shadow:0 0 0 3px rgba(160,71,42,.12)!important}
.bf-reserve .rr-form-group input::placeholder,
.bf-reserve .rr-form-group textarea::placeholder{color:#9a917f}
.bf-reserve .rr-hint{color:var(--muted);font-size:.82rem;line-height:1.5}
.bf-reserve .rr-large-party-notice{background:rgba(201,162,75,.12)!important;border:1px solid rgba(201,162,75,.5)!important;border-radius:8px}
.bf-reserve .rr-large-party-notice,.bf-reserve .rr-large-party-notice *{color:var(--teal)!important}
.bf-reserve .rr-large-party-notice svg{color:var(--rust)!important}

/* Reservation date field — make native calendar icon visible on the cream form
   (plugin inverts it white for its dark theme; we use a light card) */
.bf-reserve .rr-form-group input[type="date"]::-webkit-calendar-picker-indicator{filter:none!important;opacity:.55;cursor:pointer}
.bf-reserve .rr-form-group input[type="date"]:hover::-webkit-calendar-picker-indicator{opacity:.9}
.bf-reserve .rr-form-group input[type="date"]{cursor:pointer}

/* More-dishes menu list (under the 3 featured cards) */
.bf-menulist{margin-top:56px;display:grid;grid-template-columns:1fr 1fr;column-gap:clamp(30px,5vw,60px)}
.bf-menulist .grp{grid-column:1/-1;font-family:var(--caps);letter-spacing:.2em;text-transform:uppercase;font-size:.74rem;color:var(--rust);margin:28px 0 6px;padding-bottom:9px;border-bottom:1px solid var(--gold)}
.bf-menulist .grp:first-child{margin-top:0}
.bf-mi{display:flex;align-items:baseline;padding:11px 2px}
.bf-mi .nm{font-family:var(--serif);font-size:1.18rem;color:var(--teal);font-weight:600}
.bf-mi .dot{flex:1 1 auto;border-bottom:1px dotted rgba(28,74,90,.35);margin:0 10px;transform:translateY(-5px)}
.bf-mi .pr{font-family:var(--serif);font-weight:700;color:var(--rust);white-space:nowrap;font-size:1.12rem}
@media(max-width:720px){.bf-menulist{grid-template-columns:1fr;column-gap:0}.bf-menulist .grp:nth-of-type(2){margin-top:20px}}

/* ==========================================================================
   MOBILE REFINEMENTS (2026-07-05)
   ========================================================================== */
/* stop the nav logo from being squeezed by the CTA (flex-shrink + max-width:100%) */
.bf-nav .bf-wrap > a{flex:0 0 auto}
.bf-nav img.logo{flex:0 0 auto}
/* flipbook prev/next: always fixed circles (never stretch to ovals) */
.bf-flip-controls button{flex:0 0 48px;width:48px;height:48px;min-width:0;padding:0}

@media(max-width:600px){
  /* NAV: legible logo + compact CTA */
  .bf-nav .bf-wrap{gap:10px}
  .bf-nav img.logo{height:44px}
  .bf-nav .nav-cta{gap:9px}
  .bf-nav .nav-cta .btn{padding:9px 12px;font-size:.58rem;letter-spacing:.05em;white-space:nowrap}
  .bf-burger{font-size:1.45rem}

  /* RESERVATION FORM: compact */
  .bf-reserve .rr-form-group input,
  .bf-reserve .rr-form-group select,
  .bf-reserve .rr-form-group textarea{padding:10px 12px!important;font-size:.95rem}
  .bf-reserve .rr-form-group label{font-size:.85rem;margin-bottom:3px!important}
  .bf-reserve .rr-hint{font-size:.76rem}
  .bf-reserve .rr-large-party-notice{padding:12px 14px!important}
  .bf-reserve .rr-large-party-notice p,.bf-reserve .rr-large-party-notice span{font-size:.85rem}

  /* FLIPBOOK controls smaller */
  .bf-flip-controls{gap:12px}
  .bf-flip-controls button{flex:0 0 42px;width:42px;height:42px;font-size:1rem}
  .bf-flip-controls .pg{min-width:0;font-size:.78rem}
  .bf-menu-page{padding:26px 12px 44px}
  .bf-menu-page .head h1{font-size:1.5rem}

  /* dish list a touch tighter */
  .bf-mi{padding:9px 0}
  .bf-mi .nm{font-size:1.05rem}
}

@media(max-width:600px){
  /* tighter vertical rhythm across sections on mobile */
  .bf-section{padding:clamp(46px,10vw,70px) 0}
  .bf-reserve .rr-form-row{gap:12px!important}
  .bf-reserve .rr-form{gap:12px}
  .bf-about,.bf-testi-grid{gap:26px}
  .bf h2.section-title{font-size:clamp(1.7rem,7vw,2.2rem)}
}

/* ==========================================================================
   MOBILE FIX v2 (2026-07-05): kill horizontal scroll + compact reserve form
   ========================================================================== */
/* off-canvas nav sits 320px beyond viewport when closed → clip it */
/* overflow-x:clip (not hidden) → kills off-canvas scroll WITHOUT breaking the drawer's position:fixed */
html{overflow-x:clip}
body.bf{overflow-x:clip}
@media(max-width:900px){ .bf-nav ul:not(.open){visibility:hidden} .bf-nav ul{transition:transform .3s,visibility .3s} }

@media(max-width:600px){
  /* form is flat on the section now — just trim the outer column padding */
  .bf-reserve .bf-wrap{padding-left:14px;padding-right:14px}
  .bf-reserve .inner{max-width:none}
}

/* ==========================================================================
   CONTENT / LEGAL PAGES (Impressum, Datenschutz) — template-content.php
   ========================================================================== */
.bf-pagehead{background:var(--teal-deep);color:var(--cream);text-align:center;padding:clamp(80px,13vw,140px) 0 clamp(46px,7vw,74px)}
.bf-pagehead .eyebrow{color:var(--gold)}
.bf-pagehead h1{color:var(--cream);font-size:clamp(2.1rem,6vw,3.5rem)}
.bf-pagehead .ornament{justify-content:center}
.bf-legal .bf-legal-inner{max-width:800px;margin:0 auto;font-size:1.02rem}
.bf-legal h1{font-size:clamp(1.7rem,4vw,2.3rem);color:var(--teal);margin:0 0 .5em}
.bf-legal h2{font-family:var(--serif);font-size:clamp(1.4rem,3vw,1.9rem);color:var(--teal);margin:1.7em 0 .45em}
.bf-legal h3{font-family:var(--serif);font-size:1.2rem;color:var(--teal);margin:1.35em 0 .35em}
.bf-legal :is(h1,h2,h3):first-child{margin-top:0}
.bf-legal p{margin:0 0 1.05em;color:var(--ink)}
.bf-legal a{color:var(--rust);text-decoration:underline;text-underline-offset:2px}
.bf-legal a:hover{color:var(--rust-2)}
.bf-legal ul,.bf-legal ol{margin:0 0 1.05em;padding-left:1.35em}
.bf-legal li{margin:.3em 0}
.bf-legal strong{color:var(--teal)}
.bf-legal hr{border:0;border-top:1px solid var(--line);margin:2em 0}
