:root{
  --bg:#0a0d12;
  --bg-alt:#10151c;
  --surface:#151b23;
  --surface-2:#1b232d;
  --border:#262f3a;
  --text:#f2f5f8;
  --muted:#9aa7b4;
  --red:#e0263f;
  --red-dim:#a01c2f;
  --red-bright:#ff4a5e;
  --gold:#f4c430;
  --silver:#c7ccd1;
  --silver-bright:#e8eaed;
  --radius:16px;
  --radius-sm:10px;
  --maxw:1100px;
  --header-h:64px;
}

*, *::before, *::after{ box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html{ scroll-behavior:smooth; }
html, body{ margin:0; padding:0; }
body{
  background:var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  line-height:1.5;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  opacity:.2;
  transition:opacity 1.4s ease-in-out;
}
body.is-loaded{ opacity:1; }
body.is-leaving{ opacity:.2 !important; transition:opacity 1.4s ease-in-out !important; }
img{ max-width:100%; display:block; }
a{ color:inherit; }

.container{
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}

/* ---------- header / nav ---------- */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(10,13,18,.9);
  backdrop-filter:blur(10px);
  border-bottom:2px solid var(--silver-bright);
  box-shadow:0 2px 14px rgba(232,234,237,.20);
}
.site-header .container{
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:var(--text);
  min-width:0;
}
.brand img{
  width:38px;
  height:38px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:0 0 0 2px var(--red);
  flex:none;
}
.brand-name{
  font-weight:700;
  font-size:15px;
  letter-spacing:.2px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav-toggle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  border-radius:8px;
  background:transparent;
  border:1px solid var(--border);
  color:var(--text);
  cursor:pointer;
  flex:none;
}
.nav-toggle svg{ width:20px; height:20px; }

.site-nav{
  position:fixed;
  top:var(--header-h);
  left:0;
  right:0;
  background:var(--bg-alt);
  border-bottom:1px solid var(--border);
  display:none;
  flex-direction:column;
  padding:10px 20px 18px 20px;
  gap:2px;
  max-height:calc(100vh - var(--header-h));
  overflow-y:auto;
}
.site-nav.open{ display:flex; }
.site-nav a{
  display:block;
  padding:13px 6px;
  text-decoration:none;
  color:var(--text);
  font-weight:600;
  font-size:15px;
  border-bottom:1px solid var(--border);
}
.site-nav a:last-of-type{ border-bottom:none; }
.site-nav a.active{ color:var(--red-bright); }
.nav-tag{
  display:block;
  font-size:12px;
  font-weight:700;
  font-style:italic;
  color:#5aa9e6;
  margin-top:3px;
}

.nav-fb-btn{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--red);
  color:#fff !important;
  font-weight:700;
  padding:12px 16px;
  border-radius:10px;
  text-align:center;
}

@media (min-width:860px){
  .nav-toggle{ display:none; }
  .site-nav{
    position:static;
    display:flex !important;
    flex-direction:row;
    align-items:center;
    background:transparent;
    border:none;
    padding:0;
    gap:26px;
    max-height:none;
    overflow:visible;
  }
  .site-nav a{
    padding:8px 0;
    border-bottom:none;
    font-size:14.5px;
    text-align:center;
  }
  .nav-fb-btn{
    margin-top:0;
    padding:10px 18px;
    font-size:14px;
  }
}

/* ---------- hero ---------- */

.hero{
  position:relative;
  background:
    linear-gradient(180deg, rgba(10,13,18,.55) 0%, rgba(10,13,18,.80) 65%, var(--bg) 100%),
    radial-gradient(1100px 480px at 15% -10%, rgba(224,38,63,.22), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(244,196,48,.10), transparent 55%),
    url('/images/sunset-poppy.jpg');
  background-size: cover;
  background-position: center 60%;
  border-bottom:1px solid var(--border);
  padding:56px 0 60px 0;
}
.hero .container{
  position:relative;
  z-index:20;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:22px;
}
.press-me-btn{
  position:absolute;
  top:56px;
  left:6px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  background:none;
  border:none;
  padding:0;
  cursor:pointer;
  z-index:5;
  perspective:400px;
}
@media (min-width:768px){
  .press-me-btn{ top:80px; left:16px; }
}
.press-me-badge{
  width:92px;
  height:92px;
  border-radius:50%;
  background:radial-gradient(circle at 32% 30%, #2c333c, #0a0d12 75%);
  border:2px solid var(--silver-bright);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 0 12px rgba(232,234,237,.25), inset 0 1px 0 rgba(255,255,255,.2);
  transition:transform .15s ease;
  animation:coin-spin 3.5s linear infinite;
}
.press-me-icon{
  width:70%;
  height:70%;
  object-fit:contain;
}
@keyframes coin-spin{
  0%{ transform:rotateY(0deg); }
  18%{ transform:rotateY(360deg); }
  45%{ transform:rotateY(360deg); }
  63%{ transform:rotateY(720deg); }
  100%{ transform:rotateY(720deg); }
}
.press-me-btn:active .press-me-badge{ transform:scale(.92); }
.press-me-btn.is-playing .press-me-badge{ border-color:var(--red-bright); box-shadow:0 0 14px rgba(224,38,63,.4); animation-play-state:paused; }
.press-me-label{
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--silver-bright);
}

.hero-logo-wrap{
  position:relative;
  width:clamp(161px, 46vw, 230px);
  height:clamp(161px, 46vw, 230px);
  border-radius:50%;
  box-shadow:0 0 0 4px var(--red), 0 14px 40px rgba(0,0,0,.55);
  overflow:hidden;
}
@media (min-width:768px){
  .hero-logo-wrap{ width:300px; height:300px; }
}
.hero-logo{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.eyebrow{
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12.5px;
  font-weight:700;
  color:var(--gold);
}
.hero-h1-img{
  margin:0;
  max-width:520px;
  width:100%;
}
.hero-h1-img img{
  width:100%;
  height:auto;
  display:block;
}
.hero p.lede{
  margin:0;
  max-width:56ch;
  color:var(--muted);
  font-size:16px;
}
.hero-actions{
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:340px;
  gap:12px;
  margin-top:6px;
}
@media (min-width:560px){
  .hero-actions{ flex-direction:row; max-width:none; justify-content:center; }
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:15px 22px;
  border-radius:12px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{
  background:linear-gradient(180deg, #ff3b52 0%, var(--red) 55%, var(--red-dim) 100%);
  color:#fff;
  border:2px solid var(--silver-bright);
  box-shadow:0 4px 16px rgba(224,38,63,.35), 0 0 14px rgba(232,234,237,.25), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn-primary:hover{ filter:brightness(1.06); }
.btn-outline{
  background:transparent;
  border-color:var(--silver-bright);
  color:var(--text);
}
.btn-outline:hover{ border-color:var(--red); color:var(--red-bright); }
.btn svg{ width:18px; height:18px; flex:none; }
.btn-block{ width:100%; }

/* ---------- info strip (address / hours) ---------- */

.info-strip{ padding:44px 0; }
.info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
@media (min-width:700px){
  .info-grid{ grid-template-columns:1fr 1fr; }
}
.info-card{
  background:var(--surface);
  border:2px solid var(--silver-bright);
  box-shadow:0 0 14px rgba(232,234,237,.18), inset 0 1px 0 rgba(255,255,255,.25);
  border-radius:var(--radius);
  padding:22px 22px;
  display:flex;
  gap:16px;
  align-items:flex-start;
}
.info-icon{
  flex:none;
  width:42px;
  height:42px;
  border-radius:10px;
  background:rgba(224,38,63,.14);
  color:var(--red-bright);
  display:flex;
  align-items:center;
  justify-content:center;
}
.info-icon svg{ width:22px; height:22px; }
.info-card h3{
  margin:2px 0 6px 0;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}
.info-card p{ margin:0; font-size:15.5px; }
.info-card .hours-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:14.5px;
  padding:3px 0;
}
.info-card .hours-row span:first-child{ color:var(--muted); }
.info-card a.map-link{
  display:inline-block;
  margin-top:8px;
  color:var(--red-bright);
  font-weight:700;
  font-size:13.5px;
  text-decoration:none;
}

/* Same padding/radius/layout approach as .info-card, but with a gold border -
   a purely visual, non-editable wrapper (not connected to page_content). */
.gold-card{
  background:var(--surface);
  border:2px solid var(--gold);
  box-shadow:0 0 14px rgba(244,196,48,.18), inset 0 1px 0 rgba(255,255,255,.25);
  border-radius:var(--radius);
  padding:22px 22px;
  display:flex;
  gap:16px;
  align-items:flex-start;
}

/* ---------- socials ---------- */

.social-strip{
  padding:8px 0 48px 0;
}
.social-card{
  background:linear-gradient(135deg, rgba(224,38,63,.14), rgba(244,196,48,.06));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:26px 22px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.social-card h2{ margin:0; font-size:20px; }
.social-card p{ margin:0; color:var(--muted); font-size:14.5px; max-width:44ch; }
.social-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:8px;
}

/* ---------- section headings ---------- */

.section{ padding:48px 0; }
.section-head{
  text-align:center;
  max-width:52ch;
  margin:0 auto 30px auto;
}
.section-head .eyebrow{ display:block; margin-bottom:8px; }
.section-head h2{ margin:0 0 10px 0; font-size:clamp(22px,4.5vw,30px); }
.section-head p{ margin:0; color:var(--muted); font-size:15px; }

/* ---------- testimonials ---------- */

.testimonial-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media (min-width:760px){
  .testimonial-grid{ grid-template-columns:repeat(3,1fr); }
}
.testimonial-card{
  background:var(--surface);
  border:2px solid var(--silver-bright);
  box-shadow:0 0 14px rgba(232,234,237,.18), inset 0 1px 0 rgba(255,255,255,.25);
  border-radius:var(--radius);
  padding:22px;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.stars{ color:var(--gold); font-size:15px; letter-spacing:2px; }
.testimonial-card blockquote{
  margin:0;
  font-size:15px;
  color:var(--text);
  font-style:italic;
}
.testimonial-card cite{
  font-style:normal;
  font-size:13px;
  color:var(--muted);
  font-weight:600;
}
.placeholder-note{
  font-size:12px;
  color:var(--muted);
  text-align:center;
  margin-top:18px;
}

/* ---------- generic content blocks (about page) ---------- */

.content-block{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  align-items:center;
  padding:16px 0;
}
@media (min-width:760px){
  .content-block{ grid-template-columns:1fr 1fr; }
  .content-block.reverse .content-media{ order:2; }
}
.content-media{
  aspect-ratio:4/3;
  background:var(--surface);
  border:1px dashed var(--border);
  border-radius:var(--radius);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  font-size:13px;
  text-align:center;
  padding:20px;
  gap:8px;
  flex-direction:column;
}
.content-media.has-photos{
  display:grid;
  padding:6px;
  gap:6px;
  border-style:solid;
}
.content-media.has-photos.count-4{ grid-template-columns:repeat(2,1fr); grid-template-rows:repeat(2,1fr); }
.content-media.has-photos.count-3{ grid-template-columns:repeat(3,1fr); }
.content-media.has-photos.count-2{ grid-template-columns:repeat(2,1fr); }
.content-media.has-photos.count-1{ grid-template-columns:1fr; }
.content-media.has-photos img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:8px;
  display:block;
}

.content-media svg{ width:34px; height:34px; opacity:.6; }
.content-text h2{ margin:0 0 12px 0; font-size:22px; }
.content-text p{ margin:0 0 12px 0; color:var(--muted); font-size:15px; }
.content-text p:last-child{ margin-bottom:0; }

/* ---------- gallery ---------- */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}
@media (min-width:600px){ .gallery-grid{ grid-template-columns:repeat(3,1fr); gap:14px; } }
@media (min-width:900px){ .gallery-grid{ grid-template-columns:repeat(4,1fr); } }
.gallery-item-photo{
  aspect-ratio:1/1;
  border-radius:var(--radius-sm);
  overflow:hidden;
  margin:0;
  border:1px solid var(--border);
}
.gallery-item-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.gallery-item{
  aspect-ratio:1/1;
  border-radius:var(--radius-sm);
  background:var(--surface);
  border:1px dashed var(--border);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  text-align:center;
  padding:10px;
  font-size:12px;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; }
.gallery-item svg{ width:26px; height:26px; opacity:.55; margin-bottom:6px; }
.gallery-empty{
  text-align:center;
  color:var(--muted);
  font-size:14.5px;
  padding:20px 0 8px 0;
}

/* ---------- contact ---------- */

.contact-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
@media (min-width:820px){
  .contact-grid{ grid-template-columns:.85fr 1fr; align-items:start; }
}
.contact-details-col{
  display:flex;
  flex-direction:column;
  gap:24px;
}
.contact-details{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:24px;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.contact-details .detail-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.contact-details .detail-row h3{
  margin:0 0 4px 0;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}
.contact-details .detail-row p, .contact-details .detail-row a{
  margin:0;
  font-size:15.5px;
  text-decoration:none;
  color:var(--red-bright);
  font-weight:700;
}
.contact-details a.tel-link, .contact-details a.email-link{ color:var(--red-bright); font-weight:700; }

.contact-form{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
}
.contact-form h3{
  margin:0 0 16px 0;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}
.form-row{ margin-bottom:12px; }
.form-row label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--muted);
  margin-bottom:6px;
}
.form-row input, .form-row textarea{
  width:100%;
  background:var(--bg-alt);
  border:1px solid var(--border);
  border-radius:8px;
  color:var(--text);
  font-family:inherit;
  font-size:15px;
  padding:11px 12px;
}
.form-row textarea{ resize:vertical; min-height:80px; line-height:1.4; }
.form-row input:focus, .form-row textarea:focus{
  outline:2px solid var(--red);
  outline-offset:0;
  background:#20262f;
}
.form-note{ font-size:12.5px; color:var(--muted); margin:2px 0 12px 0; }
.form-status{
  font-size:14px;
  font-weight:600;
  margin-top:14px;
  min-height:20px;
}
.form-status.ok{ color:#5fd88a; }
.form-status.err{ color:var(--red-bright); }

/* ---------- footer ---------- */

.site-footer{
  margin-top:auto;
  border-top:1px solid var(--border);
  background:var(--bg-alt);
  padding:36px 0 28px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
@media (min-width:700px){
  .footer-grid{ grid-template-columns:1.2fr 1fr 1fr; }
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.footer-brand img{ width:34px; height:34px; border-radius:50%; object-fit:cover; }
.footer-brand span{ font-weight:700; }
.site-footer h4{
  margin:0 0 10px 0;
  font-size:12.5px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--muted);
}
.site-footer p{ margin:0 0 6px 0; font-size:14px; color:var(--muted); }
.footer-links{ display:flex; flex-direction:column; gap:8px; }
.footer-links a{ font-size:14px; text-decoration:none; color:var(--text); }
.footer-links a:hover{ color:var(--red-bright); }
.footer-bottom{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--border);
  text-align:center;
  font-size:12.5px;
  color:var(--muted);
}


.gallery-mute-btn{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:40;
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--surface);
  border:2px solid var(--silver-bright);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 4px 16px rgba(0,0,0,.5), 0 0 12px rgba(232,234,237,.2);
}
.gallery-mute-btn svg{ width:22px; height:22px; }
.gallery-mute-btn:active{ transform:scale(.94); }

.slideshow-open-btn{
  position:fixed;
  top:82px;
  right:18px;
  z-index:40;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  background:none;
  border:none;
  cursor:pointer;
  perspective:400px;
}
.slideshow-open-badge{
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--surface);
  border:2px solid var(--silver-bright);
  color:var(--text);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.5), 0 0 12px rgba(232,234,237,.2);
  animation:coin-spin 3.5s linear infinite;
}
.slideshow-open-icon{ width:65%; height:65%; object-fit:contain; filter:brightness(0) invert(1); }
.slideshow-open-btn:active .slideshow-open-badge{ transform:scale(.94); }
.slideshow-open-label{
  font-size:9.5px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  color:var(--silver-bright);
  background:rgba(10,13,18,.7);
  padding:2px 6px;
  border-radius:6px;
}

.slideshow-overlay{
  position:fixed;
  inset:0;
  z-index:300;
  background:linear-gradient(rgba(5,6,9,.88), rgba(5,6,9,.88)), url('/images/sunset-poppy.jpg') center/cover no-repeat;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.slideshow-overlay.is-open{ display:flex; }
.slideshow-stage{
  width:96vw;
  max-width:1300px;
  aspect-ratio:4/3;
  max-height:88vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.slideshow-photo{
  max-width:100%;
  max-height:100%;
  border-radius:6px;
  box-shadow:0 20px 60px rgba(0,0,0,.7), 0 0 0 8px #fff, 0 0 0 9px rgba(0,0,0,.2);
  opacity:0;
  transition:opacity .5s ease-in-out, filter .5s ease-in-out, transform .5s ease-in-out;
}
.slideshow-photo.t-default{ filter:blur(18px); transform:scale(1.06) rotate(-2deg); }
.slideshow-photo.t-zoom{ filter:blur(6px); transform:scale(.35); }
.slideshow-photo.t-rotate{ filter:blur(10px); transform:scale(.85) rotate(18deg); }
.slideshow-photo.t-flip{ filter:blur(6px); transform:scale(.94) rotateY(90deg); }
.slideshow-photo.t-slide{ filter:blur(8px); transform:scale(.97) translateX(120px); }
.slideshow-photo.is-visible{
  opacity:1;
  filter:blur(0);
  transform:none;
}
.slideshow-photo.is-hero{
  border-radius:0;
  box-shadow:none;
}
@media (min-width:768px){
  .slideshow-photo.is-hero{
    position:fixed;
    inset:0;
    width:100vw;
    height:100vh;
    z-index:1;
    max-width:none;
    max-height:none;
    object-fit:cover;
  }
}
.slideshow-stage{ position:relative; }

.slideshow-photo.is-visible{
  opacity:1;
  filter:blur(0);
  transform:scale(1) rotate(0deg);
}
.slideshow-close{
  position:absolute;
  top:20px;
  right:24px;
  z-index:5;
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--surface);
  border:2px solid var(--silver-bright);
  color:var(--text);
  font-size:24px;
  line-height:1;
  cursor:pointer;
}


.ghost-gull{
  position:fixed;
  top:-15px;
  left:-10vw;
  width:140vw;
  max-width:2800px;
  height:auto;
  pointer-events:none;
  z-index:5;
  opacity:0;
  mix-blend-mode:screen;
  filter:brightness(1.15);
  transition:opacity 1.2s ease-in-out;
}
.ghost-gull.is-flying{
  opacity:.5;
}








.catering-hero{
  position:relative;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.catering-hero-bg{
  position:absolute;
  inset:0;
  display:flex;
  z-index:0;
}
.catering-hero-bg img{
  width:50%;
  height:100%;
  object-fit:cover;
  display:block;
}
.catering-hero-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(10,13,18,.55) 0%, rgba(10,13,18,.82) 65%, var(--bg) 100%);
}
.catering-hero .container{
  position:relative;
  z-index:2;
}
.catering-content-bg{
  position:relative;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(10,13,18,.80) 12%, rgba(10,13,18,.90) 100%),
    url("/images/catering-hero.png");
  background-size:cover;
  background-position:center 30%;
}
.social-card--solid{
  background:var(--surface);
  border:1px solid var(--border);
}

.gallery-item-photo{ position:relative; cursor:pointer; }
.reaction-badge{
  position:absolute;
  bottom:4px;
  left:4px;
  right:4px;
  display:flex;
  flex-wrap:wrap;
  gap:3px;
  justify-content:flex-start;
  pointer-events:none;
}
.reaction-badge-item{
  background:rgba(5,6,9,.78);
  border-radius:999px;
  padding:2px 6px;
  font-size:10px;
  font-weight:700;
  color:#fff;
  display:flex;
  align-items:center;
  gap:2px;
}
.reaction-badge-item .reaction-icon-img{ width:11px; height:11px; }
.lightbox-overlay{
  position:fixed;
  inset:0;
  z-index:400;
  background:rgba(5,6,9,.92);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  flex-direction:column;
  gap:16px;
}
.lightbox-overlay.is-open{ display:flex; }
.lightbox-stage{
  width:100%;
  max-width:900px;
  max-height:60vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox-photo{
  max-width:100%;
  max-height:60vh;
  border-radius:8px;
  box-shadow:0 20px 60px rgba(0,0,0,.7);
}
.lightbox-close{
  position:absolute;
  top:20px;
  right:24px;
  z-index:5;
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--surface);
  border:2px solid var(--silver-bright);
  color:var(--text);
  font-size:24px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox-reactions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:center;
  max-width:640px;
}
.lightbox-reaction-btn{
  background:var(--surface);
  border:2px solid var(--border);
  border-radius:999px;
  padding:8px 14px;
  font-size:20px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
  color:var(--text);
}
.lightbox-reaction-btn .count{ font-size:13px; font-weight:700; color:var(--muted); }
.lightbox-reaction-btn.is-active{ border-color:var(--red-bright); background:rgba(224,38,63,.18); }
.lightbox-reaction-btn.is-active .count{ color:var(--red-bright); }

.reaction-icon-img{ width:22px; height:22px; display:block; }
.reaction-badge .reaction-icon-img{ width:14px; height:14px; }

/* Cookbook page */
.cookbook-head{ margin-bottom:8px; }
.cookbook-heading{
  font-family:'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight:700;
  font-size:clamp(24px, 4.2vw, 34px);
  color:var(--text);
  margin:0 0 10px 0;
  position:relative;
  display:inline-block;
}
.cookbook-heading::after{
  content:"";
  display:block;
  width:60px;
  height:2px;
  background:var(--red, #e0263f);
  margin:12px auto 0 auto;
}
.cookbook-stage{
  position:relative;
  width:100%;
  max-width:900px;
  aspect-ratio:870/720;
  margin:32px auto;
  border-radius:16px;
  overflow:hidden;
  background:#0a0a0a;
  box-shadow:0 4px 24px rgba(0,0,0,.5);
}
.cookbook-video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.cookbook-tap-btn{
  position:absolute;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  background:rgba(0,0,0,.6);
  color:var(--red-bright, #e0263f);
  border:1px solid var(--red-bright, #e0263f);
  border-radius:999px;
  padding:10px 22px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  cursor:pointer;
  backdrop-filter:blur(4px);
}
.cookbook-tap-btn:active{ transform:translateX(-50%) scale(.96); }
.cookbook-reveal{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:24px;
  opacity:0;
  transition:opacity .6s ease;
  pointer-events:none;
  container-type:inline-size;
}
.cookbook-reveal.is-visible{ opacity:1; }
.cookbook-reveal p{ margin:0; color:var(--muted, #8a8a8a); font-size:15px; }
.cookbook-page-boxes{
  position:absolute;
  inset:0;
  transition:opacity .25s ease;
}
.cookbook-page-boxes.is-turning{ opacity:0; }

.cookbook-box{
  position:absolute;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:6px;
  margin:0;
  border:none;
  background:transparent;
  font-family:inherit;
  font-size:13px;
  font-weight:700;
  line-height:1.3;
  color:var(--muted, #8a8a8a);
  text-decoration:none;
}
.cookbook-box--active{
  flex-direction:column;
  gap:8px;
  transition:opacity .2s ease;
}
.cookbook-reveal.is-visible .cookbook-box--active{ cursor:pointer; pointer-events:auto; }
.cookbook-box--active:hover{ opacity:.75; }
.cookbook-box-eyebrow{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:10.5px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:2.5px;
  color:#1a1a1a;
  position:relative;
  padding-bottom:8px;
}
.cookbook-box-eyebrow::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:28px;
  height:1px;
  background:var(--red, #e0263f);
}
.cookbook-box-title{
  font-family:'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight:700;
  font-size:clamp(17px, 2.6vw, 23px);
  line-height:1.2;
  color:#111111;
}

/* .cookbook-box is a percentage-sized child of .cookbook-reveal, so on narrow
   phones the box itself shrinks a lot more than the viewport does - vw-based
   sizing above doesn't track that. Where container queries are supported
   (all target browsers - iOS Safari 16+/2022, Chrome Android 105+/2022),
   scale eyebrow/title text and the box's own spacing off the box's actual
   size (via .cookbook-reveal as the query container) instead, so they stay
   proportionally correct at any screen size. The desktop numbers are chosen
   so this still resolves to the exact same fixed caps as before at the
   900px stage width - desktop is unchanged. Browsers without support keep
   the plain vw/px rules above untouched. */
@supports (container-type: inline-size){
  .cookbook-box--active{
    gap:clamp(3px, 1cqw, 8px);
    padding:clamp(3px, 0.75cqw, 6px);
  }
  .cookbook-box-eyebrow{
    font-size:clamp(7px, 1.5cqw, 10.5px);
    letter-spacing:clamp(0.6px, 0.32cqw, 2.5px);
    padding-bottom:clamp(3px, 1cqw, 8px);
  }
  .cookbook-box-title{
    font-size:clamp(11px, 2.73cqw, 23px);
  }
}
.cookbook-box-photo{
  padding:0;
  overflow:hidden;
}
.cookbook-box-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.cookbook-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  max-width:900px;
  margin:20px auto 0 auto;
  opacity:0;
  pointer-events:none;
  transition:opacity .6s ease;
}
.cookbook-pagination.is-visible{ opacity:1; pointer-events:auto; }
.cookbook-page-btn{
  background:rgba(0,0,0,.6);
  color:var(--red-bright, #e0263f);
  border:1px solid var(--red-bright, #e0263f);
  border-radius:999px;
  padding:10px 22px;
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  cursor:pointer;
  backdrop-filter:blur(4px);
  transition:opacity .15s ease;
}
.cookbook-page-btn:disabled{ opacity:.35; cursor:not-allowed; }
.cookbook-page-indicator{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  min-width:74px;
  text-align:center;
}

/* Recipe detail page */
.recipe-body{
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  max-width:760px;
  margin:0 auto;
}
@media (min-width:760px){
  .recipe-body{ grid-template-columns:1fr 1fr; }
}
.recipe-col h3{ margin:0 0 12px 0; font-size:16px; }
.recipe-col ul,
.recipe-col ol{
  margin:0;
  padding-left:20px;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}
.recipe-col li{ margin-bottom:6px; }
.recipe-back{ text-align:center; margin:36px 0 0 0; }
.recipe-back a{ color:var(--red-bright, #e0263f); text-decoration:none; font-weight:700; font-size:14px; }
.recipe-back a:hover{ text-decoration:underline; }
#recipeServings{
  color:var(--text);
  font-weight:700;
  margin:6px 0 0 0;
}
.recipe-photo-wrap{
  max-width:520px;
  margin:0 auto 32px auto;
}
.recipe-photo-img{
  width:100%;
  height:auto;
  max-height:360px;
  object-fit:cover;
  border-radius:14px;
  display:block;
}