/*
Theme Name: Bull House Restaurant & Bar
Theme URI: https://bullhouse.in
Author: Bull House
Description: White maroon glassmorphism WordPress theme for Bull House Restaurant and Bar, Nelamangala.
Version: 3.1.1
Requires at least: 5.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: bull-house
Tags: restaurant, food-and-drink, custom-menu, light, custom-colors
*/

:root {
  --w: #FFFFFF;
  --off: #F8F4F4;
  --r: #C8102E;
  --rd: #9B0B22;
  --rdp: #5C0716;
  --glass: rgba(255,255,255,0.08);
  --glassh: rgba(255,255,255,0.15);
  --border: rgba(200,16,46,0.25);
  --borderh: rgba(200,16,46,0.6);
  --text: #1a1a2e;
  --textl: rgba(26,26,46,0.6);
  --glow: rgba(200,16,46,0.4);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: #FFFFFF;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}

#cv-particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.page { position: relative; z-index: 2; }

/* ── TOP MAROON STRIP ── */
.bh-top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998;
  text-align: center;
  padding: .5rem 1rem;
  background: linear-gradient(135deg, #C8102E 0%, #9B0B22 55%, #5C0716 100%);
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ── PILL NAV ── */
.pill-nav {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  gap: .18rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1.5px solid rgba(200,16,46,0.3);
  border-radius: 60px;
  padding: .42rem .55rem;
  box-shadow: 0 8px 48px rgba(200,16,46,0.22), 0 0 0 1px rgba(255,255,255,0.5) inset;
}
.pill-nav a {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--r);
  text-decoration: none;
  padding: .44rem 1rem;
  border-radius: 40px;
  transition: all .22s cubic-bezier(.23,1,.32,1);
  white-space: nowrap;
}
.pill-nav a:hover,
.pill-nav a.active {
  background: var(--r);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,16,46,0.35);
}
@media (max-width: 760px) {
  .pill-nav { bottom: .8rem; }
  .pill-nav a { font-size: .55rem; padding: .38rem .65rem; }
}

/* ── GLASS CARD ── */
.glass-card {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(200,16,46,0.1), 0 0 0 1px rgba(255,255,255,0.6) inset;
  transition: transform .45s cubic-bezier(.23,1,.32,1), box-shadow .45s, border-color .3s;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(200,16,46,0.14) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}
.glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(200,16,46,0.22), 0 0 0 1px rgba(255,255,255,0.8) inset;
  border-color: rgba(200,16,46,0.4);
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--r);
  display: block;
  margin-bottom: .8rem;
}
.eyebrow-c {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  letter-spacing: .46em;
  text-transform: uppercase;
  color: var(--r);
  display: block;
  margin-bottom: .8rem;
  text-align: center;
}
.display { font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: .88; color: var(--rdp); }
.h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.4rem); color: var(--rdp); font-weight: 700; line-height: 1.04; }
.h2c { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.4rem); color: var(--rdp); font-weight: 700; line-height: 1.04; text-align: center; }
.body-text { font-size: .9rem; color: var(--textl); line-height: 1.95; }
.rule { width: 50px; height: 2px; background: linear-gradient(90deg, var(--r), transparent); margin: .9rem 0; }
.rulec { width: 50px; height: 2px; background: linear-gradient(90deg, var(--r), transparent); margin: .9rem auto; }

/* ── BUTTONS ── */
.btn-r {
  display: inline-block;
  padding: .9rem 2.6rem;
  background: var(--r);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 28px rgba(200,16,46,0.38);
  transition: all .3s cubic-bezier(.23,1,.32,1);
}
.btn-r:hover {
  background: var(--rd);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(200,16,46,0.52);
  color: #fff;
}
.btn-w {
  display: inline-block;
  padding: .9rem 2.6rem;
  background: #fff;
  color: var(--r);
  font-family: 'Jost', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--r);
  cursor: pointer;
  transition: all .3s;
}
.btn-w:hover {
  background: var(--r);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200,16,46,0.38);
}

/* ── SECTION ── */
.sec { padding: 5rem 2rem; position: relative; }
.sec-alt { background: rgba(255,255,255,0.5); }
.sec-tight { padding: 3rem 2rem; }
.sec-tight-top { padding-top: 2rem; }
.wrap { max-width: 1240px; margin: 0 auto; }
.sec-head { text-align: center; max-width: 580px; margin: 0 auto 4rem; }
.sec-desc { text-align: center; max-width: none; margin: .8rem auto 0; }
.sec-cta { text-align: center; margin-top: 3rem; }
.testi-mt { margin-top: 3.8rem; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  text-align: center;
  padding: 6rem 2rem 2.5rem;
  background: linear-gradient(180deg, rgba(200,16,46,0.04) 0%, #FFFFFF 100%);
}
.page-hero .hero-title { font-size: clamp(2.2rem,6vw,4.5rem); line-height: 1.02; }
.page-hero .hero-sub { margin-top: 1rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem 7rem;
  position: relative;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--r);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(200,16,46,0.28);
  padding: .4rem 1.3rem;
  border-radius: 40px;
  margin-bottom: 2.2rem;
  animation: fadeUp .8s ease both;
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.8rem;
}
.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 32px rgba(200,16,46,0.45));
  animation: fadeUp .85s .05s ease both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(5rem,13vw,12rem);
  font-weight: 700;
  line-height: .86;
  color: var(--rdp);
  animation: fadeUp .9s .1s ease both;
}
.hero-title .outline {
  -webkit-text-stroke: 2.5px var(--r);
  color: transparent;
  display: block;
}
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: clamp(.85rem,1.5vw,1rem);
  color: rgba(26,26,46,0.65);
  letter-spacing: .06em;
  max-width: 560px;
  line-height: 1.9;
  margin: 2rem auto 0;
  animation: fadeUp 1s .18s ease both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  animation: fadeUp 1s .26s ease both;
}
.hero-services {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3.2rem;
  animation: fadeUp 1s .34s ease both;
}
.svc-chip {
  font-family: 'Jost', sans-serif;
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--r);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200,16,46,0.22);
  padding: .36rem 1rem;
  border-radius: 40px;
  transition: all .25s;
}
.svc-chip:hover { background: var(--r); color: #fff; border-color: var(--r); }
.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 4rem;
  animation: fadeUp 1s .42s ease both;
}
.hstat { text-align: center; }
.hstat-n { font-family: 'Cormorant Garamond', serif; font-size: 2.9rem; font-weight: 700; color: var(--r); display: block; line-height: 1; }
.hstat-l { font-size: .6rem; letter-spacing: .26em; text-transform: uppercase; color: var(--textl); margin-top: .35rem; }
.scue {
  position: absolute;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  animation: bob 2.5s ease-in-out infinite;
}
.scue-line { width: 1px; height: 52px; background: linear-gradient(to bottom, var(--r), transparent); }
.scue span { font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; color: var(--textl); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: none; } }
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }

/* ── MARQUEE ── */
.marquee {
  overflow: hidden;
  padding: .85rem 0;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200,16,46,0.14);
  border-bottom: 1px solid rgba(200,16,46,0.14);
}
.mtrack { display: flex; gap: 3rem; width: max-content; animation: mq 28s linear infinite; }
.mtrack span { font-family: 'Cormorant Garamond', serif; font-size: .78rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(155,11,34,0.5); }
.mtrack .mdot { color: var(--r); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES GRID ── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
@media (max-width: 900px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 340px;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.23,1,.32,1), box-shadow .55s;
  box-shadow: 0 6px 32px rgba(200,16,46,0.12);
}
.svc-card:hover { transform: perspective(900px) rotateX(-5deg) rotateY(3deg) translateZ(18px) scale(1.02); box-shadow: 0 32px 80px rgba(200,16,46,0.3); }
.svc-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s, filter .5s; filter: brightness(.45) saturate(1.3); }
.svc-card:hover .svc-card-bg { transform: scale(1.08); filter: brightness(.32) saturate(1.6); }
.svc-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(92,7,22,.95) 0%, rgba(92,7,22,.3) 55%, transparent 100%); pointer-events: none; z-index: 1; }
.svc-card::before { content: ''; position: absolute; top: 0; left: -70%; width: 45%; height: 100%; z-index: 3; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transform: skewX(-22deg); transition: left .65s ease; pointer-events: none; }
.svc-card:hover::before { left: 130%; }
.svc-body { position: absolute; inset: 0; z-index: 2; padding: 2.2rem; display: flex; flex-direction: column; justify-content: flex-end; }
.svc-icon { font-family: 'Jost', sans-serif; font-size: .6rem; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,180,180,.8); margin-bottom: .6rem; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: #fff; font-weight: 700; margin-bottom: .5rem; letter-spacing: .04em; }
.svc-desc { font-size: .78rem; color: rgba(255,255,255,.62); line-height: 1.72; }
.svc-card-cta { background: linear-gradient(135deg, rgba(200,16,46,.9), rgba(92,7,22,.95)); }
.svc-body-center { justify-content: center; text-align: center; }
.svc-name-lg { font-size: 1.8rem; text-align: center; margin-bottom: 1rem; }

/* ── PHOTO SPLIT ── */
.photo-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
@media (max-width: 760px) { .photo-split { grid-template-columns: 1fr; } }
.photo-pane { position: relative; overflow: hidden; min-height: 380px; }
.photo-pane img { width: 100%; height: 100%; object-fit: cover; transition: transform 10s ease; }
.photo-pane:hover img { transform: scale(1.06); }
.photo-tint { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,16,46,.3), rgba(255,255,255,.04)); }
.photo-label { position: absolute; bottom: 2.4rem; left: 2.4rem; background: rgba(255,255,255,.82); backdrop-filter: blur(18px); border: 1px solid rgba(200,16,46,.22); border-radius: 10px; padding: 1.2rem 1.8rem; }
.photo-label h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--rdp); font-weight: 700; }
.photo-label p { font-size: .7rem; color: var(--textl); letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem; }
.text-pane { padding: 5.5rem 4.5rem; display: flex; flex-direction: column; justify-content: center; background: rgba(255,255,255,.8); backdrop-filter: blur(22px); border-left: 1px solid rgba(200,16,46,.14); }
@media (max-width: 760px) { .text-pane { padding: 3.5rem 2.5rem; border-left: none; border-top: 1px solid rgba(200,16,46,.14); } }
.text-pane .body-text { max-width: none; margin: 1.1rem 0 2.2rem; }
.tpane-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FOOD MOSAIC ── */
.food-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  grid-template-areas:
    "tall a b c"
    "tall wide wide d";
  gap: 12px;
}
.food-mosaic .ftile-tall { grid-area: tall; min-height: 100%; }
.food-mosaic .ftile-a { grid-area: a; }
.food-mosaic .ftile-b { grid-area: b; }
.food-mosaic .ftile-c { grid-area: c; }
.food-mosaic .ftile-wide { grid-area: wide; }
.food-mosaic .ftile-d { grid-area: d; }
@media (max-width: 900px) {
  .food-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
      "tall tall"
      "a b"
      "wide wide"
      "c d";
  }
  .food-mosaic .ftile { min-height: 220px; }
}
@media (max-width: 480px) {
  .food-mosaic {
    grid-template-columns: 1fr;
    grid-template-areas: "tall" "a" "b" "wide" "c" "d";
  }
}
.ftile { position: relative; overflow: hidden; border-radius: 12px; min-height: 220px; cursor: pointer; transform-style: preserve-3d; transition: transform .5s cubic-bezier(.23,1,.32,1), box-shadow .5s; box-shadow: 0 4px 24px rgba(200,16,46,.1); }
.ftile:hover { transform: perspective(800px) rotateX(-5deg) rotateY(3deg) translateZ(14px) scale(1.015); box-shadow: 0 24px 64px rgba(200,16,46,.28); }
.ftile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s, filter .5s; filter: brightness(.62) saturate(1.2); }
.ftile:hover img { transform: scale(1.08); filter: brightness(.46) saturate(1.5); }
.ftile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(92,7,22,.9) 0%, transparent 55%); pointer-events: none; }
.ftile-cap { position: absolute; inset: 0; z-index: 2; padding: 1.6rem; display: flex; flex-direction: column; justify-content: flex-end; }
.ftile-name { font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; color: #fff; font-weight: 700; margin-bottom: .3rem; }
.ftile-tag { font-size: .68rem; color: rgba(255,200,200,.7); letter-spacing: .12em; }

/* ── FEATURE CARDS ── */
.feat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 900px) { .feat-row { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .feat-row { grid-template-columns: 1fr; } }
.feat-card { position: relative; overflow: hidden; border-radius: 14px; min-height: 300px; cursor: pointer; transform-style: preserve-3d; transition: transform .5s cubic-bezier(.23,1,.32,1), box-shadow .5s; box-shadow: 0 4px 24px rgba(200,16,46,.1); }
.feat-card:hover { transform: perspective(820px) rotateX(-6deg) rotateY(3.5deg) translateZ(14px) scale(1.018); box-shadow: 0 26px 68px rgba(200,16,46,.28); }
.feat-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .7s, filter .5s; filter: brightness(.45) saturate(1.2); }
.feat-card:hover .feat-card-bg { transform: scale(1.08); filter: brightness(.32) saturate(1.5); }
.feat-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(92,7,22,.94) 0%, rgba(92,7,22,.25) 55%, transparent 100%); z-index: 1; pointer-events: none; }
.feat-sheen { position: absolute; top: 0; left: -70%; width: 44%; height: 100%; z-index: 3; background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), transparent); transform: skewX(-22deg); transition: left .65s; pointer-events: none; }
.feat-card:hover .feat-sheen { left: 130%; }
.feat-card-body { position: absolute; inset: 0; z-index: 2; padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end; }
.feat-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: #fff; font-weight: 700; margin-bottom: .48rem; }
.feat-card-text { font-size: .78rem; color: rgba(255,255,255,.62); line-height: 1.74; }

/* ── PARALLAX BAND ── */
.par { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.par-bg { position: absolute; inset: -80px 0; background-size: cover; background-position: center; filter: brightness(.25) saturate(1.4); }
.par-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,16,46,.65), rgba(92,7,22,.78)); }
.par-c { position: relative; z-index: 2; padding: 5rem 2rem; max-width: 680px; }
.par-c h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,5vw,4.2rem); color: #fff; font-weight: 700; line-height: .96; font-style: italic; margin-bottom: 1.2rem; }
.par-c p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.9; margin-bottom: 2.4rem; }
.par-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }
.tc { padding: 2.6rem; border-radius: 14px; transition: transform .44s, box-shadow .44s, border-color .3s; }
.tc:hover { transform: translateY(-7px); box-shadow: 0 22px 56px rgba(200,16,46,.16); border-color: rgba(200,16,46,.38); }
.tc-stars { color: var(--r); font-size: .9rem; letter-spacing: .1em; margin-bottom: 1rem; }
.tc-text { font-size: .86rem; color: var(--textl); line-height: 1.86; font-style: italic; margin-bottom: 1.4rem; }
.tc-name { font-family: 'Cormorant Garamond', serif; font-size: .92rem; color: var(--rdp); font-weight: 700; }
.tc-loc { font-size: .67rem; color: var(--textl); letter-spacing: .1em; margin-top: .18rem; }

/* ── CTA SECTION ── */
.cta-sec { text-align: center; background: linear-gradient(160deg, rgba(255,255,255,.4), rgba(200,16,46,.06)); backdrop-filter: blur(18px); border-top: 1px solid rgba(200,16,46,.12); }
.cta-sec h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,5vw,3.8rem); color: var(--rdp); font-weight: 700; margin-bottom: 1rem; line-height: .96; }
.cta-sec p { color: var(--textl); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.9; font-size: .9rem; }
.cta-tel { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,4vw,2.6rem); color: var(--r); text-decoration: none; display: block; margin-bottom: 2.2rem; letter-spacing: .05em; font-weight: 700; }
.cta-tel:hover { color: var(--rd); }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.bh-footer-gradient {
  background: linear-gradient(160deg, #C8102E 0%, #9B0B22 45%, #5C0716 100%);
}
.pfoot {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 2.4rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 0;
}
.pfoot a {
  font-family: 'Jost', sans-serif;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .3s;
}
.pfoot a:hover { color: #fff; }
.copy {
  text-align: center;
  padding: 1rem 2rem 5.5rem;
  font-size: .63rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: .1em;
  background: transparent;
}

/* ── INNER PAGE CONTENT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 2rem; }
.page-content { padding: 4rem 2rem 6rem; }
.content-card { padding: 3rem; margin-bottom: 2rem; }
.page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem,5vw,4rem); color: var(--rdp); font-weight: 700; margin-bottom: 1.5rem; }
.entry-content { font-size: .95rem; color: var(--textl); line-height: 1.9; }
.entry-content h2, .entry-content h3 { font-family: 'Cormorant Garamond', serif; color: var(--rdp); margin: 2rem 0 1rem; }
.entry-content p { margin-bottom: 1rem; }

/* ── MENU GRID ── */
.menu-page-wrap { padding-top: 0; }
.menu-sec { padding: 2.5rem 2rem; }
.menu-sec + .menu-sec { padding-top: 0; }
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 900px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-item { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.menu-item-img { width: 100%; height: 180px; object-fit: cover; display: block; }
.menu-item-body { padding: 1.4rem 1.6rem 1.6rem; }
.menu-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--rdp); font-weight: 700; margin-bottom: .35rem; }
.menu-item p { font-size: .82rem; color: var(--textl); line-height: 1.7; }
.menu-cat { margin-bottom: 1.5rem; text-align: center; }
.menu-cat h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,3vw,2.2rem); color: var(--rdp); margin-bottom: .5rem; }
.menu-cat-img { width: 100%; max-height: 280px; object-fit: cover; border-radius: 14px; margin-bottom: 1.2rem; box-shadow: 0 8px 32px rgba(200,16,46,.12); }
.menu-badge { font-size: .58rem; color: var(--r); letter-spacing: .14em; text-transform: uppercase; display: inline-block; margin-left: .4rem; }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(200,16,46,.1); }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.05); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { padding: 2.5rem; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--rdp); margin-bottom: 1rem; }
.contact-info p { font-size: .88rem; color: var(--textl); line-height: 1.8; margin-bottom: .8rem; }
.contact-map { border-radius: 14px; overflow: hidden; min-height: 320px; border: 1px solid rgba(200,16,46,0.18); }
.contact-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }

/* ── WHATSAPP FAB ── */
.bh-wa-fab {
  position: fixed;
  bottom: 6.5rem;
  right: 1.5rem;
  z-index: 998;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--r);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(200,16,46,0.4);
  transition: transform .3s, box-shadow .3s;
}
.bh-wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(200,16,46,0.55); color: #fff; }
@media (max-width: 760px) { .bh-wa-fab { bottom: 5.5rem; right: 1rem; } }

/* ── FORMS ── */
.bh-form .form-group { margin-bottom: 1rem; }
.bh-form label { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--r); margin-bottom: .4rem; }
.bh-form input,
.bh-form select,
.bh-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  background: rgba(255,255,255,0.9);
  color: var(--text);
}
.bh-form input:focus,
.bh-form select:focus,
.bh-form textarea:focus { outline: none; border-color: var(--r); box-shadow: 0 0 0 3px rgba(200,16,46,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ── SCROLL REVEAL ── */
[data-a] { opacity: 0; transition: opacity .85s ease, transform .85s ease; }
[data-a="up"] { transform: translateY(44px); }
[data-a="left"] { transform: translateX(-42px); }
[data-a="right"] { transform: translateX(42px); }
[data-a="scale"] { transform: scale(.87); }
[data-a].vis { opacity: 1; transform: none; }
[data-s] > * { opacity: 0; transform: translateY(26px); transition: opacity .65s ease, transform .65s ease; }
[data-s].vis > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
[data-s].vis > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .08s; }
[data-s].vis > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .16s; }
[data-s].vis > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .24s; }
[data-s].vis > *:nth-child(5) { opacity: 1; transform: none; transition-delay: .32s; }
[data-s].vis > *:nth-child(6) { opacity: 1; transform: none; transition-delay: .40s; }
[data-s].vis > *:nth-child(7) { opacity: 1; transform: none; transition-delay: .48s; }
[data-s].vis > *:nth-child(8) { opacity: 1; transform: none; transition-delay: .56s; }

/* ══ FUTURISTIC FX LAYERS ══ */
.bh-fx-layers { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.bh-aurora {
  position: absolute; inset: -20%;
  background:
    radial-gradient(ellipse 60% 45% at 12% 18%, rgba(200,16,46,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 88% 22%, rgba(200,16,46,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 70% 35% at 50% 95%, rgba(200,16,46,0.06) 0%, transparent 60%);
  animation: bhAurora 18s ease-in-out infinite alternate;
}
@keyframes bhAurora { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(2%,-1%) scale(1.04); } }

.bh-light-beams { position: absolute; inset: 0; }
.bh-light-beams span {
  position: absolute; top: -10%; width: 2px; height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(200,16,46,0.12), transparent);
  transform-origin: top center;
  animation: bhBeam 8s ease-in-out infinite;
}
.bh-light-beams span:nth-child(1) { left: 18%; transform: rotate(12deg); animation-delay: 0s; }
.bh-light-beams span:nth-child(2) { left: 52%; transform: rotate(-8deg); animation-delay: 2.5s; }
.bh-light-beams span:nth-child(3) { left: 78%; transform: rotate(6deg); animation-delay: 4.8s; }
@keyframes bhBeam { 0%,100% { opacity: .2; } 50% { opacity: .7; } }

#bh-neural-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .35; }

.bh-data-streams span {
  position: absolute; width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(200,16,46,0.35), transparent);
  animation: bhStream 4s linear infinite;
}
.bh-data-streams span:nth-child(1) { left: 8%; animation-delay: 0s; }
.bh-data-streams span:nth-child(2) { left: 28%; animation-delay: 1.1s; }
.bh-data-streams span:nth-child(3) { left: 62%; animation-delay: 2.2s; }
.bh-data-streams span:nth-child(4) { left: 88%; animation-delay: .6s; }
@keyframes bhStream { 0% { top: -80px; opacity: 0; } 20% { opacity: 1; } 100% { top: 110%; opacity: 0; } }

/* ══ FUTURISTIC HERO ══ */
.bh-fx-hero {
  position: relative; min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem 2.5rem; overflow: hidden;
}
.bh-fx-hero-home { min-height: 100vh; padding: 5rem 2rem 7rem; }
.bh-fx-hero .hero-title { font-size: clamp(2.2rem, 6vw, 4.8rem); line-height: 1.04; }
.bh-fx-hero-home .hero-title { font-size: clamp(5rem, 13vw, 12rem); line-height: .86; }
.bh-fx-hero-inner {
  position: relative; z-index: 3; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.bh-fx-hero-content { max-width: 760px; margin: 0 auto; }

.bh-holo-dashboard {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  max-width: 900px; margin: 2.5rem auto 0;
}
@media (max-width: 900px) { .bh-holo-dashboard { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bh-holo-dashboard { grid-template-columns: 1fr 1fr; gap: .7rem; } }

.bh-dash-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(200,16,46,0.16);
  border-radius: 16px; padding: 1.2rem 1rem;
  box-shadow: 0 12px 40px rgba(200,16,46,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  text-align: center; position: relative; overflow: hidden;
}
.bh-dash-card::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(200,16,46,0.12), transparent 70%);
  filter: blur(12px);
}
.bh-dash-label { display: block; font-size: .52rem; letter-spacing: .22em; text-transform: uppercase; color: var(--r); margin-bottom: .4rem; }
.bh-dash-value { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--rdp); line-height: 1; }
.bh-dash-meta { display: block; font-size: .62rem; color: var(--textl); margin-top: .3rem; letter-spacing: .08em; }

.bh-float-card { animation: bhFloat 6s ease-in-out infinite; }
@keyframes bhFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.bh-kinetic { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.23,1,.32,1); }
.bh-kinetic.vis { opacity: 1; transform: none; }

/* Ambience strip */
.ambience-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 900px) { .ambience-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ambience-strip { grid-template-columns: 1fr; } }
.ambience-item { border-radius: 14px; overflow: hidden; }
.ambience-item img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .6s; }
.ambience-item:hover img { transform: scale(1.05); }
.ambience-cap { padding: .9rem 1.1rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--textl); }

/* Form notification toast */
.bh-toast {
  position: fixed; top: 3.5rem; right: 1.5rem; z-index: 10001;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(20px);
  border: 1px solid rgba(200,16,46,0.25); border-radius: 12px;
  padding: 1rem 1.4rem; max-width: 320px;
  box-shadow: 0 12px 40px rgba(200,16,46,0.18);
  font-size: .82rem; color: var(--text);
  transform: translateX(120%); transition: transform .4s cubic-bezier(.23,1,.32,1);
}
.bh-toast.show { transform: translateX(0); }
.bh-toast.success { border-color: rgba(200,16,46,0.4); }
.bh-toast.error { border-color: rgba(200,16,46,0.6); }

.form-status { margin-top: .8rem; font-size: .78rem; color: var(--r); min-height: 1.2rem; }
