/* ============================================================
   PAINT NIGHT — Sections 2–9 + sticky bar
   ============================================================ */

section { position: relative; }
.section-pad { padding: clamp(5rem, 11vh, 9rem) 0; }

/* reveal-on-scroll utility */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

.kicker { color: var(--red); display: inline-block; margin-bottom: 1rem; }
[data-dark] .kicker { color: var(--mustard); }

.h-sec { font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.0; }
.h-sec .script { color: var(--orange); font-size: 1.04em; line-height: 1.0; }
[data-dark] .h-sec .script { color: var(--mustard); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; color: color-mix(in oklab, var(--ink) 80%, transparent); max-width: 52ch; }
[data-dark] .lead { color: rgba(245,235,222,0.82); }

/* brush underline behind accent words */
.brush-ul { position: relative; display: inline-block; }
.brush-ul::after {
  content: ""; position: absolute; left: -4%; right: -4%; bottom: 0.04em; height: 0.42em;
  background: var(--paint-a);
  z-index: -1; opacity: 0.85;
  filter: url(#paint-rough);
  border-radius: 40% 55% 50% 45%;
  transform: scaleX(0); transform-origin: left center;
  transition: transform .7s var(--ease);
}
.reveal.in .brush-ul::after, .in .brush-ul::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce){ .brush-ul::after { transform: scaleX(1); } }

/* floating paint blobs (decorative bg) */
.blobs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.blob {
  position: absolute; border-radius: 50%;
  filter: url(#paint-rough) blur(2px);
  opacity: 0.14;
  will-change: transform;
}

/* ---------------- Section 2 — Experience ---------------- */
.experience { background: var(--cream); }
.exp-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; position: relative; z-index: 1; }
.exp-media { position: relative; }
.exp-media .frame {
  border-radius: 22px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(40,12,8,0.5);
  transform: rotate(-1.4deg); border: 10px solid #fff;
}
.exp-media image-slot, .exp-media .frame > img { width: 100%; height: 560px; display: block; object-fit: cover; }
.exp-media .exp-svg { width: 100%; height: 560px; display: block; background: var(--cream); }
.exp-media .tag {
  position: absolute; bottom: -18px; right: -10px;
  background: var(--red); color: #fff3df; font-family: var(--f-script); font-size: 1.7rem;
  padding: 0.2em 0.9em; border-radius: 14px; transform: rotate(3deg);
  box-shadow: 0 14px 30px -10px rgba(158,28,28,0.6);
}
.feature-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.feature {
  display: flex; gap: 1.1rem; align-items: flex-start;
  background: var(--paper); border-radius: 16px; padding: 1.2rem 1.3rem;
  border: 1px solid rgba(40,20,10,0.08);
  box-shadow: 0 14px 30px -22px rgba(40,12,8,0.4);
}
.feature .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff; filter: url(#paint-rough); }
.feature h4 { font-family: var(--f-display); font-weight: 700; font-size: 1.12rem; margin: 0 0 0.2rem; }
.feature p { margin: 0; font-size: 0.96rem; line-height: 1.45; color: color-mix(in oklab, var(--ink) 70%, transparent); }

@media (max-width: 880px){
  .exp-grid { grid-template-columns: 1fr; }
  .exp-media .frame { transform: none; }
  .exp-media image-slot, .exp-media .frame > img { height: 380px; }
  .exp-media .exp-svg { height: 380px; }
}

/* -------- Sections 3+4 — Pinned "Color outside the routine" / What's included -------- */
.splash { position: relative; height: 600vh; background: var(--paper); }
.splash-pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  padding: clamp(2rem, 4vh, 3.4rem) 0 clamp(1.4rem, 3vh, 2.2rem);
}
.splash-bg { position: absolute; inset: 0; z-index: 0; }
.splash-inner { position: relative; z-index: 1; width: min(1180px, 92vw); flex: 1; display: flex; flex-direction: column; }
.splash-head { text-align: center; max-width: 820px; margin: 0 auto clamp(1.2rem, 3vh, 2.2rem); position: relative; z-index: 3; }
.splash-head h2 { font-size: clamp(2.4rem, 6vw, 5.2rem); line-height: 0.98; text-shadow: 0 2px 0 var(--paper), 0 0 18px var(--paper), 0 0 40px var(--paper); }
.splash-lead { margin: 1rem auto 0; max-width: 56ch; color: color-mix(in oklab, var(--ink) 74%, transparent); font-size: clamp(1rem, 1.3vw, 1.18rem); }

.splash-grid {
  flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr);
  gap: clamp(1rem, 2.2vw, 2rem); align-content: stretch;
}
.cell { position: relative; display: grid; place-items: center; }

/* realistic splatter behind each card (tinted PNG via mask) */
.splat {
  position: absolute; left: 50%; top: 50%;
  width: 152%; aspect-ratio: 1.32 / 1; z-index: 0;
  background: var(--accent, var(--orange));
  -webkit-mask: var(--simg) center / contain no-repeat;
  mask: var(--simg) center / contain no-repeat;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center; opacity: 0; pointer-events: none;
  will-change: transform, opacity; filter: saturate(1.05);
}
/* falling paint drop that "hits" the canvas */
.drop {
  position: absolute; left: 50%; top: 50%; width: 26px; height: 26px; z-index: 1;
  margin: -13px 0 0 -13px; border-radius: 50%;
  background: var(--accent, var(--orange)); opacity: 0; pointer-events: none;
  will-change: transform, opacity;
}

.splash .inc-card {
  position: relative; z-index: 2; width: 100%; height: 100%;
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  border-radius: 20px; padding: clamp(1.1rem, 1.8vw, 1.8rem);
  border: 1px solid rgba(40,20,10,0.10);
  box-shadow: 0 22px 44px -30px rgba(40,12,8,0.5);
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0; will-change: transform, opacity;
  transition: box-shadow .35s var(--ease);
}
.splash .inc-card:hover { box-shadow: 0 38px 66px -28px var(--accent, rgba(40,12,8,0.5)); }
.inc-num { font-family: var(--f-display); font-weight: 800; font-size: 0.9rem; color: var(--accent, var(--orange)); letter-spacing: 0.06em; }
.splash .inc-card h4 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.15rem, 1.6vw, 1.5rem); margin: 0.45rem 0 0.5rem; position: relative; display: inline-block; }
.splash .inc-card h4::after { content:""; position:absolute; left:0; right:0; bottom:-3px; height:0.32em; background: var(--accent, var(--orange)); opacity:0.34; filter: url(#paint-rough); border-radius: 40% 55% 50% 45%; transform: scaleX(0); transform-origin:left; transition: transform .5s var(--ease) .15s; }
.splash .inc-card.lit h4::after { transform: scaleX(1); }
.splash .inc-card p { margin: 0; line-height: 1.45; font-size: clamp(0.86rem, 1.1vw, 1rem); color: color-mix(in oklab, var(--ink) 72%, transparent); }

.splash-cta { position: relative; z-index: 3; margin-top: clamp(1rem, 2vh, 1.6rem); opacity: 0; transform: translateY(16px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.splash-cta.show { opacity: 1; transform: none; }

@media (max-width: 900px){
  .splash { height: 760vh; }
  .splash-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
}
@media (max-width: 560px){
  .splash { height: 900vh; }
  .splash-pin { padding-top: 1.4rem; }
  .splash-grid { grid-template-columns: 1fr; grid-template-rows: repeat(6, 1fr); gap: 0.7rem; }
  .splash-head h2 { font-size: 2.2rem; }
  .splash-lead { display: none; }
}

/* ---------------- Section 5 — Beginner friendly ---------------- */
.beginner { background: var(--black); color: #f4ecdf; overflow: hidden; }
.beg-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,5rem); align-items: center; position: relative; z-index: 1; }
.beg-media { position: relative; }
.beg-media .glow { position: absolute; inset: -12% -8%; background: radial-gradient(circle at 50% 50%, color-mix(in oklab, var(--mustard) 55%, transparent), transparent 62%); filter: blur(30px); z-index:0; }
.beg-media .frame { position: relative; z-index: 1; border-radius: 22px; overflow: hidden; transform: rotate(1.6deg); border: 10px solid #211a14; box-shadow: 0 50px 90px -40px #000; }
.beg-media image-slot, .beg-media .frame > img { width: 100%; height: 540px; object-fit: cover; }
.beg h2 { color: #fff7ea; }
.beg .lead { color: rgba(245,235,222,0.82); margin-top: 1.2rem; }
.quote {
  margin-top: 2.2rem; font-family: var(--f-script); font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem); line-height: 1.15; color: var(--mustard);
  position: relative; display: inline-block;
}
.quote svg { display: block; width: 100%; height: 26px; margin-top: 6px; overflow: visible; }
.quote svg path { fill: none; stroke: var(--orange); stroke-width: 9; stroke-linecap: round; stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 1.1s var(--ease) .2s; }
.quote.in svg path { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce){ .quote svg path { stroke-dashoffset: 0; } }
@media (max-width: 880px){ .beg-grid { grid-template-columns: 1fr; } .beg-media .frame { transform: none; } .beg-media image-slot, .beg-media .frame > img { height: 380px; } }

/* ---------------- Section 6 — Perfect for (carousel) ---------------- */
.perfect { background: var(--cream); overflow: hidden; }
.perfect-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.carousel { display: flex; gap: 1.3rem; overflow-x: auto; padding: 0.6rem 0 1.6rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.occ-card {
  scroll-snap-align: start; flex: 0 0 clamp(260px, 30vw, 360px);
  height: 320px; border-radius: 22px; position: relative; overflow: hidden;
  color: #fff; padding: 1.8rem; display: flex; flex-direction: column; justify-content: flex-end;
  cursor: pointer; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  box-shadow: 0 26px 50px -30px rgba(40,12,8,0.5);
}
.occ-card .occ-bg { position: absolute; inset: 0; z-index: 0; }
.occ-card .occ-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(10,6,4,0.66), rgba(10,6,4,0.05) 60%); }
.occ-card .occ-splat { position:absolute; right:-20px; top:-20px; width: 140px; height: 140px; opacity:0; transition: opacity .4s, transform .5s var(--ease); z-index:1; }
.occ-card:hover { transform: translateY(-10px) rotate(-1deg); box-shadow: 0 44px 70px -34px rgba(40,12,8,0.6); }
.occ-card:hover .occ-splat { opacity: 0.5; transform: scale(1.3) rotate(20deg); }
.occ-card .occ-ic { position: relative; z-index: 2; width: 48px; height: 48px; margin-bottom: auto; }
.occ-card h4 { position: relative; z-index: 2; font-family: var(--f-display); font-weight: 800; font-size: 1.7rem; }
.occ-card p { position: relative; z-index: 2; margin: 0.3rem 0 0; font-size: 0.95rem; opacity: 0.9; }
.carousel-hint { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: color-mix(in oklab, var(--ink) 55%, transparent); }
.perfect-foot { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-top: 2.4rem; }
.perfect-foot p { margin: 0; max-width: 46ch; }

/* ---------------- Section 7 — Event details (dark) ---------------- */
.details { background: var(--black); color: #f4ecdf; overflow: hidden; }
.det-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; position: relative; z-index: 1; margin-top: 2.6rem; }
.det-card {
  background: linear-gradient(160deg, #221913, #181210);
  border-radius: 18px; padding: 1.7rem; position: relative; overflow: hidden;
  border: 1px solid rgba(255,225,190,0.1);
}
.det-card .stroke-border { position:absolute; left:0; top:0; bottom:0; width: 7px; background: var(--accent, var(--orange)); filter: url(#paint-rough); }
.det-card .lab { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,235,222,0.55); font-weight: 700; }
.det-card .val { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; margin-top: 0.4rem; color: #fff7ea; }
.det-card.wide { grid-column: span 2; }
.det-note { margin-top: 1.8rem; font-size: 1.05rem; color: var(--mustard); font-family: var(--f-script); font-size: 1.5rem; }
.det-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.2rem; }
@media (max-width: 760px){ .det-grid { grid-template-columns: 1fr; } .det-card.wide { grid-column: auto; } }

/* ---------------- Section 8 — Food + wine ---------------- */
.crave { background: var(--black); color: #f4ecdf; overflow: hidden; padding: 0; }
.crave-grid { display: grid; grid-template-columns: 1.15fr 1fr; min-height: 86vh; }
.crave-media { position: relative; overflow: hidden; }
.crave-media .crave-photo { position: absolute; inset: -8%; width: 116%; height: 116%; will-change: transform; }
.crave-media image-slot, .crave-media .crave-photo > img { width: 100%; height: 100%; object-fit: cover; }
.crave-media .steam { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: radial-gradient(60% 40% at 50% 70%, color-mix(in oklab, var(--orange) 40%, transparent), transparent 70%); mix-blend-mode: screen; opacity: 0.5; animation: steam 7s ease-in-out infinite; }
@keyframes steam { 0%,100%{ transform: translateY(0) scale(1); opacity:.4 } 50%{ transform: translateY(-14px) scale(1.05); opacity:.6 } }
@media (prefers-reduced-motion: reduce){ .crave-media .steam { animation: none; } }
.crave-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem,6vw,6rem); position: relative; z-index: 1; }
.crave-copy h2 { color:#fff7ea; }
@media (max-width: 880px){ .crave-grid { grid-template-columns: 1fr; } .crave-media { height: 420px; min-height: 420px; } .crave-grid { min-height: 0; } }

/* ---------------- Section 9 — Final CTA ---------------- */
.final { background: radial-gradient(120% 120% at 50% 0%, var(--hero-grad-3) 0%, var(--hero-grad-1) 45%, #0c0807 100%); color: #fff7ea; text-align: center; overflow: hidden; }
.final-stage { position: relative; padding: clamp(5rem,12vh,9rem) 0; }
.final-svg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }
.final-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.final h2 { font-size: clamp(2.8rem, 8vw, 6.5rem); }
.final h2 .script { color: var(--mustard); font-size: 1.1em; }
.final .lead { color: rgba(245,235,222,0.85); margin: 1.4rem auto 2.4rem; }
.final .muted { margin-top: 1.4rem; font-size: 0.92rem; letter-spacing: 0.04em; color: rgba(245,235,222,0.6); }
.float-drops { position: absolute; inset: 0; z-index: 1; pointer-events: none; }

/* ---------------- Sticky reservation bar ---------------- */
.resbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  transform: translateY(120%); transition: transform .45s var(--ease);
  background: color-mix(in oklab, var(--black) 92%, transparent);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,225,190,0.14);
  box-shadow: 0 -14px 40px -12px rgba(0,0,0,0.5);
}
.resbar.show { transform: translateY(0); }
.resbar-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.85rem clamp(1rem,4vw,3rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.resbar-info { display: flex; align-items: center; gap: 0.9rem; color: #f7ecde; min-width: 0; }
.resbar-info .rb-logo { height: 34px; width: auto; flex: 0 0 auto; }
.resbar-info .rb-text { font-family: var(--f-display); font-weight: 700; font-size: 1rem; line-height: 1.1; }
.resbar-info .rb-text span { color: var(--mustard); }
.resbar-info .rb-sub { font-size: 0.8rem; color: rgba(247,236,222,0.6); font-weight: 500; }
.resbar .btn { padding: 0.8em 1.5em; }
@media (max-width: 620px){
  .resbar-inner { padding: 0.7rem 0.9rem; }
  .resbar-info .rb-logo, .resbar-info .rb-sub { display: none; }
  .resbar-info .rb-text { font-size: 0.92rem; }
  .resbar .btn { padding: 0.85em 1.3em; font-size: 0.95rem; }
}

/* footer */
.foot { background: #0c0807; color: rgba(245,235,222,0.6); text-align: center; padding: 3rem 1rem 6.5rem; font-size: 0.9rem; }
.foot img { height: 56px; margin: 0 auto 1.2rem; opacity: 0.95; }
.foot a { color: var(--mustard); text-decoration: none; }
.foot-logo { display: inline-block; }
.foot-logo img { transition: opacity 0.2s ease; }
.foot-logo:hover img { opacity: 1; }
.foot-site { margin-top: 1rem; }
.foot-site a { letter-spacing: 0.03em; }
.foot-site a:hover { text-decoration: underline; }
.hero-logo-link { display: inline-block; }

/* generic icon stroke */
.ic svg, .occ-ic svg, .det-ic svg { width: 100%; height: 100%; }

/* calm motion (Tweaks toggle): hush the looping decoration */
body.calm-motion .crave-media .steam { animation: none; }
body.calm-motion .blob { display: none; }
body.calm-motion .float-drops { display: none; }
body.calm-motion .scroll-hint .mouse::after { animation: none; }
