
/* =======================================================
   LaBella Charcuterie — Clean, Center-Locked Layout
   Black • Gold • Bubble Header
   ======================================================= */

:root{
  --bg:#000;
  --paper:#0f0f10;
  --paper2:#141416;
  --ink:#f5f5f5;
  --muted:rgba(245,245,245,.68);

  --gold:#d6b25e;
  --goldSoft:#f3df9b;

  /* Logo blush (pale pink) */
 --blush:#f7e7d8;
  --blushSoft:rgba(247,231,216,.85);

  --line:rgba(255,255,255,.12);
  --lineGold:rgba(214,178,94,.28);

  --shadow:0 18px 44px rgba(0,0,0,.60);
  --shadowSoft:0 14px 30px rgba(0,0,0,.42);

  --radius:22px;
  --max:1120px;
}


/* ---------- Reset ---------- */
*{box-sizing:border-box}
html{scroll-behavior:smooth; overflow-y:scroll}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 22px}
/* Global section spacing (tighter) */
section{ padding: 48px 0; }

/* Mobile: even tighter */
@media (max-width: 900px){
  section{ padding: 38px 0; }
}
.center{text-align:center}
.measure{max-width:760px; margin:0 auto}

/* ---------- Typography ---------- */
h1,h2,h3{font-family:"Playfair Display",serif; letter-spacing:.06em}
h1{font-size:56px; text-transform:uppercase; margin:12px 0 10px; color:var(--blush)}
h2{font-size:32px; margin:0 0 12px; color:var(--blush)}
h3{font-size:18px; margin:0 0 8px}
p{margin:0 0 12px}
.small{font-size:13px; color:var(--muted)}


/* ---------- Logo blush accents ---------- */
.text-blush{ color: var(--blush); }
.text-blush-soft{ color: var(--blushSoft); }

/* ---------- Bubble buttons (reused everywhere) ---------- */
.nav-bubble{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(214,178,94,.30);
  background:rgba(255,255,255,.05);
  color:rgba(245,245,245,.92);
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  box-shadow:0 12px 26px rgba(0,0,0,.45);
  transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.nav-bubble:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.07);
  border-color:rgba(214,178,94,.55);
  box-shadow:0 16px 34px rgba(0,0,0,.58);
}
.nav-bubble.solid{
  background:var(--gold);
  border:none;
  color:#0b0b0b;
}
.nav-bubble.gold{
  background:linear-gradient(180deg,var(--goldSoft),var(--gold));
  border:none;
  color:#0b0b0b;
}
/* Signature script using Stalemate */
.script-blush,
.script-signoff {
  font-family: 'Stalemate', cursive;
  font-weight: 400;
  color: var(--blush);
  letter-spacing: .04em;
}
.script-blush{
  font-size: 30px;
}

.script-signoff{
  font-family: 'Great Vibes', cursive;   /* or your chosen script */
  font-size: 34px;                      /* ⬅️ bigger & elegant */
  color: var(--blushSoft);
  margin-top: 10px;
  display: inline-block;
  line-height: 1;
}

.script-signoff{
  font-size: 36px;
  transform: translateX(4px);
}


/* Round icon bubbles */
.bubble-icon{
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(214,178,94,.28);
  color:#fff;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 12px 26px rgba(0,0,0,.45);
  transition:transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.bubble-icon:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.08);
  border-color:rgba(214,178,94,.50);
  box-shadow:0 16px 34px rgba(0,0,0,.58);
}
.bubble-icon.fb{background:#1877f2;border:none}
.bubble-icon.fb:hover{background:#145dbf}

/* ---------- Header (CENTER-LOCKED with body) ---------- */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--lineGold);
}

/* The key: header grid is inside .wrap, so it shares the same center as the body */
.topbar-grid{
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap:14px;
  padding:14px 0;
}

/* Right-side actions: lock to right, no wrapping */
.nav-right{
  justify-self:end;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:nowrap;       /* <-- keeps it one line */
  white-space:nowrap;     /* <-- prevents weird breaks */
}

/* Brand (stacked and centered, NOT clickable) */
.brand{
  justify-self:start;
  display:flex;
  flex-direction:column;
  align-items:center;  /* centers logo above subline */
  gap:6px;
  user-select:none;
}
.brand-logo{
  height:64px;
  width:auto;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.55));
}
.brand-sub{
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  color:var(--gold);
  text-align:center;
  white-space:nowrap;
}
/* Make logo clickable without changing layout */
.brand{
  text-decoration:none;
  color:inherit;
  cursor:pointer;
}

.brand:hover{
  filter: brightness(1.06);
}
/* Center nav bubbles */
.nav-bubbles{
  justify-self:center;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}

/* Right action bubbles */
.nav-actions{
  justify-self:end;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Mobile: stack header cleanly */
@media (max-width:980px){
  .topbar-grid{
    grid-template-columns: 1fr;
    justify-items:center;
    row-gap:10px;
  }
  .nav-actions{justify-content:center}
}
/* =======================================================
   Mobile-only header mode (phones)
   Keeps brand centered, swaps full nav for dropdown
   ======================================================= */

.menu-toggle{
  display:none;
  appearance:none;
  border:1px solid rgba(214,178,94,.30);
  background:rgba(255,255,255,.06);
  color:rgba(245,245,245,.92);
  width:46px;
  height:46px;
  border-radius:999px;
  box-shadow:0 12px 26px rgba(0,0,0,.45);
  cursor:pointer;
  position:relative;
}

.menu-toggle:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(214,178,94,.55);
}

.menu-toggle-icon{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  margin:0 auto;
  position:relative;
  border-radius:2px;
}
.menu-toggle-icon::before,
.menu-toggle-icon::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:2px;
}
.menu-toggle-icon::before{ top:-6px; }
.menu-toggle-icon::after{ top:6px; }

/* Dropdown panel */
.mobile-menu{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  padding:10px 0 16px;
  background:rgba(0,0,0,.92);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(214,178,94,.28);
}

.mobile-menu-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:0 22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.mobile-menu-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:center;   /* ✅ centers icons + buttons */
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:12px;
}
@media (max-width:640px){
  .mobile-menu-actions{
    flex-direction:column;
  }

  .mobile-menu-actions .bubble-icon{
    width:44px;
    height:44px;
  }

  .mobile-menu-actions .nav-bubble{
    min-width:180px;
    text-align:center;
  }
}


/* Open state */
body.menu-open .mobile-menu{
  display:block;
}

/* Phone breakpoint only: <=640px
   - Brand centered
   - Hide full nav + actions
   - Show menu toggle + dropdown */
@media (max-width:640px){
  .topbar-grid{
    grid-template-columns: 1fr auto 1fr;
    align-items:center;
  }

  .brand{
    grid-column:2;
    justify-self:center;
    align-items:center;
  }

  .nav-bubbles,
  .nav-actions{
    display:none;
  }

  .menu-toggle{
    display:inline-grid;
    place-items:center;
    grid-column:3;
    justify-self:end;
  }
}

/* ---------- Hero ---------- */
.hero{padding:32px 0 0}
.hero-card{
  position:relative;
  min-height:560px;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.10);
  background:#000;
}
.hero-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(1.15) contrast(1.08) saturate(1.10);
  transform:scale(1.01);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.18), rgba(0,0,0,.38));
}
.hero-content{
  position:relative;
  padding:72px 22px;
  text-align:center;
  max-width:900px;
  width:100%;                 /* 🔒 hard clamp */
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.kicker{
  display:inline-block;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid rgba(214,178,94,.55);
  background:rgba(0,0,0,.28);
  font-size:12px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:#F2D58B;
  backdrop-filter:blur(6px);
}
.hero h1{
  color:var(--blush);
  letter-spacing:.14em;
  -webkit-text-stroke:0.6px #1F2F45;
  text-shadow:0 10px 28px rgba(0,0,0,.60);
}
.hero p{
  color:rgba(245,245,245,.86);
  max-width:780px;
  text-shadow:0 10px 30px rgba(0,0,0,.55);
}
.hero-actions{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
}


/* ---------- Accent text helpers ---------- */
.accent-blush{ color:var(--blush); }
.accent-blush-soft{ color:var(--blushSoft); }

/* ---------- Section title (centered) ---------- */
.section-title{
  text-align:center;
  max-width:820px;
  margin:0 auto 18px;
}

/* ---------- Menu cards ---------- */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}
@media (max-width:980px){ .menu-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width:560px){ .menu-grid{grid-template-columns:1fr;} }

.menu-card{
  background:var(--paper);
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadowSoft);
  overflow:hidden;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.menu-card:hover{
  transform:translateY(-2px);
  border-color:rgba(214,178,94,.35);
  box-shadow:0 18px 44px rgba(0,0,0,.62);
}
.menu-media{
  aspect-ratio:16/10;
  background:#0a0a0a;
  display:flex;
  align-items:center;
  justify-content:center;
}
.menu-media img{
  width:100%;
  height:100%;
  object-fit:contain; /* no crop, uniform */
  background:#0a0a0a;
}
.menu-media.contain img{object-fit:contain}
.menu-body{padding:16px 16px 18px}
.menu-top{
  display:flex;
  align-items:center;
  gap:10px;
}

.menu-title{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  font-weight:900;
    flex:1;
  font-size:18px;
  letter-spacing:.02em;
  color:rgba(245,245,245,.95);
}
/* Inline "Order" link next to price */
.menu-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-title {
  flex: 1; /* pushes price + order to the right */
}

.menu-order.inline{
  font-size: 0.8rem;
  opacity: 0.75;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  white-space: nowrap;
}

.menu-order.inline:hover{
  opacity: 1;
  border-bottom-color: rgba(255,255,255,0.85);
}

.menu-price{
  white-space:nowrap;
  padding:7px 10px;
  border-radius:999px;
  background:linear-gradient(180deg,var(--goldSoft),var(--gold));
  color:#0b0b0b;
  font-weight:900;
  font-size:13px;
  letter-spacing:.06em;
}
.menu-meta{margin-top:10px;font-size:13px;color:rgba(245,245,245,.58)}
.menu-desc{margin:10px 0 0;color:rgba(245,245,245,.70);font-size:15px;line-height:1.45}

/* Featured */
.menu-feature{
  display:grid;
  grid-template-columns:1.15fr 1fr;
  gap:18px;
  align-items:stretch;
  background:var(--paper);
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 44px rgba(0,0,0,.60);
  overflow:hidden;
  margin-top:22px;
  text-decoration:none;
}
.menu-feature-media{min-height:320px;background:#0a0a0a;}
.menu-feature-media img{width:100%;height:100%;object-fit:cover;display:block;}
.menu-feature-body{
  padding:22px 22px 22px 6px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.menu-feature-kicker{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(245,245,245,.62);
  margin-bottom:8px;
}
.menu-feature-title{
  font-family:"Playfair Display",serif;
  font-size:28px;
  letter-spacing:.04em;
  margin:0 0 8px;
  color:rgba(245,245,245,.96);
}
.menu-feature-title.accent-blush{
  color: var(--blush);
  text-shadow: 0 0 10px rgba(247,231,216,.35);
}

.menu-feature-price{font-weight:800;margin-bottom:10px;color:rgba(245,245,245,.74)}
.menu-feature-desc{margin:0 0 14px;color:rgba(245,245,245,.70);font-size:16px;line-height:1.5}
.menu-feature-actions{display:flex;gap:10px;flex-wrap:wrap}

@media (max-width:980px){
  .menu-feature{grid-template-columns:1fr;}
  .menu-feature-body{padding:18px; text-align:center;}
  .menu-feature-actions{justify-content:center;}
}

/* ---------- Generic grid / quotes ---------- */
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.quote{
  grid-column:span 6;
  padding:22px;
  background:var(--paper);
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadowSoft);
}

/* Make the two workshop panels match height and align nicely */
.workshop-card-center{
  grid-column: span 5;
  min-height: 240px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* ===== Workshops: stacked wide bubbles ===== */
.workshop-stack{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:22px;
  margin-top:28px;
}

.workshop-wide{
  width:100%;
  max-width:980px;
  min-height:200px;
  padding:28px 34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:left;
}

.workshop-wide h3{
  font-size:22px;
  letter-spacing:.08em;
  margin-bottom:10px;
}

.workshop-wide p{
  max-width:68ch;
  font-size:17px;
  line-height:1.55;
  color:rgba(245,245,245,.82);
}

@media (max-width:640px){
  .workshop-wide{
    max-width:100%;
    min-height:auto;
    padding:22px;
  }
}

/* Mobile: stack full width if you ever use workshop-card-center */
@media (max-width:900px){
  .workshop-card-center{
    grid-column: span 12;
  }
}


.quote .who{margin-top:10px;font-weight:800;font-size:13px;color:rgba(245,245,245,.85)}
@media (max-width:900px){
  .grid{grid-template-columns:1fr}
  .quote{grid-column:span 12}
  h1{font-size:42px}
}

/* ---------- Panels / About / Contact ---------- */
.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius:28px;
  border:1px solid rgba(214,178,94,.22);
  box-shadow:0 18px 44px rgba(0,0,0,.60);
  padding:22px;
}
/* Contact panel readability */
#contact .panel .small{
  margin: 6px 0;
}

#contact .panel .small a{
  text-decoration: underline;
  text-decoration-color: rgba(214,178,94,.35);
  text-underline-offset: 3px;
}

/* ---------- About ---------- */
.about-grid{
  display:grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 22px;                 /* tighter space between photo + text */
  align-items: start;        /* top-align */
}

.about-photo img{
  width:100%;
  max-width:420px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 44px rgba(0,0,0,.62);
  margin:0 auto;
}

.about-text{
  text-align:left;
  padding: 4px 20px 0 4px;   /* top | right | bottom | left */
}

.about-text p{
  font-size:16px;
  color:rgba(245,245,245,.74);
}

/* intro + close */
.about-hello{
  margin: 0 0 10px;
  line-height: 1;
}

.about-close{
  margin-top: 10px;
  font-weight:700;
  color:rgba(245,245,245,.85);
}

/* mobile stack */
@media (max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
    text-align:center;
  }
  .about-text{
    text-align:center;
    padding: 0;              /* remove right padding on mobile */
  }
}


.contact-card{display:grid;grid-template-columns:1fr 1fr;gap:18px}
@media (max-width:900px){ .contact-card{grid-template-columns:1fr} }

.cta-row{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}
/* Contact: if only one card, make it span full width */
#contact .contact-card > .panel{
  grid-column: 1 / -1;
}
/* Center the contact content */
#contact .panel{
  text-align: center;
}

/* ===== Contact bubble alignment polish ===== */

.contact-bubbles{
  width:100%;
  margin-top:22px;
  margin-bottom:10px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  align-items:center;
}

#contact .contact-bubbles .nav-bubble{
  min-width:160px;
  padding:12px 20px;
  font-size:13px;
  letter-spacing:.14em;
}

/* Bottom line under the bubbles */
.contact-footnote{
  margin-top:14px;
  text-align:center;
  font-size:13px;
  color:rgba(245,245,245,.65);
  letter-spacing:.08em;
}

/* Mobile: stacked and centered */
@media (max-width:640px){
  .contact-bubbles{
    flex-direction:column;
    align-items:center;
  }
  #contact .contact-bubbles .nav-bubble{
    width:100%;
    max-width:280px;
    min-width:0;
  }
}



/* ---------- Footer ---------- */
footer{
  border-top:1px solid rgba(214,178,94,.28);
  padding:34px 0 44px;
  text-align:center;
  color:rgba(245,245,245,.72);
}
/* Instagram icon (native-ish gradient) */
.icon.ig{
  border:none;
  color:#fff;
  background: radial-gradient(circle at 30% 30%, #feda75 0%, #fa7e1e 25%, #d62976 55%, #962fbf 75%, #4f5bd5 100%);
}
.icon.ig:hover{
  filter:brightness(1.05);
}
.icon.ig{ width:40px; height:40px; font-size:16px; }
/* Force IG to be a true circular header bubble */
.icon,
.icon.ig{
  border-radius:999px;   /* guarantees circle */
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:1 / 1;    /* locks width = height */
}
/* Social icon SVG sizing */
.bubble-icon svg{
  width:20px;
  height:20px;
  fill:#fff;
  display:block;
}

/* Make IG a touch larger */
.bubble-icon.ig svg{
  width:22px;
  height:22px;
}

/* Instagram animated gradient */
.ig-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ig-svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: none;
  background: linear-gradient(
    120deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  background-size: 300% 300%;
  animation: igGradientShift 14s ease infinite;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5.5a4.5 4.5 0 1 0 0 9a4.5 4.5 0 0 0 0-9zm5.2-.8a1.05 1.05 0 1 0 0 2.1a1.05 1.05 0 0 0 0-2.1z"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 1 0-5-5V7a5 5 0 0 1 5-5zm5 5.5a4.5 4.5 0 1 0 0 9a4.5 4.5 0 0 0 0-9zm5.2-.8a1.05 1.05 0 1 0 0 2.1a1.05 1.05 0 0 0 0-2.1z"/></svg>') center / contain no-repeat;
}

@keyframes igGradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ig-icon:hover .ig-svg {
  filter: brightness(1.15);
}
/* Shared social base */
.social {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Instagram official gradient animation */
.social.ig {
  background: linear-gradient(
    120deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  background-size: 300% 300%;
  animation: igShift 18s ease infinite;
  -webkit-mask: none;
}

.social-svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social.ig .social-svg {
  color: transparent;
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtle luxury motion */
@keyframes igShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.social.ig:hover {
  filter: brightness(1.15);
}

/* ===== Social icon bubbles (override) ===== */
.bubble-icon{
  width:44px;
  height:44px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 22px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.14);
}

/* Instagram: subtle animated official gradient */
.bubble-icon.ig{
  background: linear-gradient(120deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888);
  background-size: 300% 300%;
  animation: igShift 20s ease infinite;
}
@keyframes igShift{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* Make the SVG white + sized correctly */
.bubble-icon.ig svg,
.bubble-icon.fb svg{
  width:20px;
  height:20px;
  fill:#fff;
  display:block;
}

/* Facebook: correct brand blue */
.bubble-icon.fb{
  background:#1877F2;
}

/* Hover: tiny lift only */
.bubble-icon:hover{ transform: translateY(-1px); }
/* ===== Grazing gallery: photo-forward upgrade ===== */

/* Slightly larger grid presence */
.g-bubble-grid{
  gap:18px;
}

/* Stronger card presence */
.g-bubble{
  border-radius:28px;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    0 18px 40px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(255,255,255,.04);
  background:#0a0a0a;
}

/* Make images feel richer */
.g-bubble-img{
  aspect-ratio: 3 / 2; /* slightly taller = more impact */
}

.g-bubble-img img{
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
  transition: transform .35s ease, filter .35s ease;
}

/* Hover = subtle luxury zoom */
.g-bubble:hover .g-bubble-img img{
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.08);
}

/* Soft glow on hover (very subtle) */
.g-bubble:hover{
  border-color: rgba(214,178,94,.35);
  box-shadow:
    0 22px 60px rgba(0,0,0,.75),
    0 0 0 1px rgba(214,178,94,.25);
}
/* Use this on sections that should be closer together */
.section-tight{ padding: 28px 0 !important; }
.section-flush-top{ padding-top: 20px !important; }
.section-flush-bottom{ padding-bottom: 20px !important; }
.logo-tile a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  z-index:2;
  position:relative;
}
.logo-tile img{
  width: 100%;
  max-width: 420px;
  height: auto;
}
/* Center text in workshop value bubbles */
.workshop-wide{
  text-align: center;
}

.workshop-wide p{
  margin-left: auto;
  margin-right: auto;
}
/* === HERO TEXT CROPPING FIX (iPhone / Mobile Safari) === */
@media (max-width: 640px){
  .hero-card{
    min-height: auto;     /* allow natural height */
    aspect-ratio: 4 / 5;  /* keeps elegant portrait ratio */
  }

  .hero-content{
    padding: 56px 16px;   /* tighter vertical padding */
  }

  .hero h1{
    font-size: 34px;      /* prevents clipping */
    line-height: 1.15;
    letter-spacing: .10em;
  }

  .kicker{
    font-size: 11px;
    letter-spacing: .22em;
  }
}











/* =======================================================
   NEWSLETTER SIGNUP (inline + sticky bar)
   ======================================================= */
.newsletter-panel h2{ margin-bottom:10px; }
.newsletter-panel p{ margin-bottom:16px; }

.nl-form{
  display:flex;
  gap:10px;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  margin-top:10px;
}

.nl-form input[type="email"]{
  width:min(420px, 92vw);
  height:46px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(214,178,94,.28);
  background:rgba(255,255,255,.06);
  color:rgba(245,245,245,.92);
  outline:none;
  box-shadow:0 12px 26px rgba(0,0,0,.35);
}

.nl-form input[type="email"]::placeholder{
  color:rgba(245,245,245,.55);
}

.nl-form input[type="email"]:focus{
  border-color:rgba(214,178,94,.55);
  background:rgba(255,255,255,.08);
}

.nl-btn{ height:46px; padding:0 18px; }
.nl-fineprint{ margin-top:10px; }

.nl-hidden{ display:none; }

/* Sticky bar */
.newsletter-bar{
  position:fixed;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:80;
  opacity:0;
  transform:translateY(18px);
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}

.newsletter-bar.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.nlbar-inner{
  max-width:var(--max);
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 14px;
  border-radius:24px;
  background:rgba(0,0,0,.86);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(214,178,94,.28);
  box-shadow:0 22px 60px rgba(0,0,0,.72);
}

.nlbar-copy{
  flex:1;
  min-width:220px;
}

.nlbar-title{
  font-weight:900;
  letter-spacing:.02em;
  color:rgba(245,245,245,.94);
}

.nlbar-sub{
  margin-top:2px;
  font-size:13px;
  color:rgba(245,245,245,.68);
}

.nl-form-bar{
  margin:0;
  justify-content:flex-end;
}

.nl-form-bar input[type="email"]{
  width:220px;
  height:44px;
}

.nl-form-bar .nl-btn{
  height:44px;
}

.nl-close{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:rgba(245,245,245,.92);
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:22px;
  line-height:1;
}

.nl-close:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(214,178,94,.45);
}

@media (max-width:740px){
  .nlbar-inner{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
  }
  .nl-form-bar{
    justify-content:center;
  }
  .nl-form-bar input[type="email"]{
    width:min(420px, 92vw);
  }
  .nl-close{
    align-self:center;
  }
}

/* ================= NEWSLETTER THANK YOU TOAST ================= */

.nl-toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.82);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.nl-toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

