/* ═══════════════════════════════════════════════════
   PAMSKITCHEN — CINEMATIC EDITION
   Styles
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #0a0705;
  --bg-warm: #14100c;
  --ember-1: #ff7a2e;
  --ember-2: #d94915;
  --ember-3: #ff9a3c;
  --amber: #e8a86b;
  --cream: #f3e7d2;
  --paper: #ebd9b6;
  --ink: #f5ead5;
  --ink-soft: rgba(245,234,213,.62);
  --ink-faint: rgba(245,234,213,.34);
  --rule: rgba(245,234,213,.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.55 "Manrope", ui-sans-serif, system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .8s ease, color .8s ease;
}

/* ── ATMOSPHERE ── */
.atmosphere {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.atm-base {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(217,73,21,.32) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 15% 90%, rgba(255,122,46,.22) 0%, transparent 55%),
    linear-gradient(180deg, #0a0705 0%, #14100c 35%, #1a1108 65%, #1f1308 100%);
}
.ember {
  position: absolute; border-radius: 50%;
  filter: blur(48px); mix-blend-mode: screen;
  will-change: opacity, transform; opacity: .75;
}
.ember-1 { left: 12%; bottom: -8%; width: 520px; height: 380px;
  background: radial-gradient(circle, rgba(255,122,46,.85), rgba(217,73,21,.4) 40%, transparent 70%);
  animation: pulse-a 5.5s ease-in-out infinite; }
.ember-2 { left: 50%; bottom: -12%; width: 700px; height: 480px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,154,60,.7), rgba(217,73,21,.32) 45%, transparent 72%);
  animation: pulse-b 7.2s ease-in-out infinite; }
.ember-3 { right: 10%; bottom: -6%; width: 460px; height: 340px;
  background: radial-gradient(circle, rgba(255,90,30,.75), rgba(180,50,10,.3) 45%, transparent 70%);
  animation: pulse-a 6.4s ease-in-out infinite .8s; }
@keyframes pulse-a { 0%,100% { opacity:.55; transform:scale(1) } 50% { opacity:.95; transform:scale(1.08) } }
@keyframes pulse-b { 0%,100% { opacity:.5; transform:translateX(-50%) scale(1) } 50% { opacity:.85; transform:translateX(-50%) scale(1.06) } }

.grain {
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.86  0 0 0 0 0.72  0 0 0 0.32 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .18; mix-blend-mode: overlay;
  animation: grain-shift 1.4s steps(6) infinite;
  pointer-events: none;
}
@keyframes grain-shift {
  0%   { transform: translate(0,0) }
  20%  { transform: translate(-6%, 4%) }
  40%  { transform: translate(4%, -6%) }
  60%  { transform: translate(-4%, -2%) }
  80%  { transform: translate(2%, 6%) }
  100% { transform: translate(0,0) }
}
.vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 40%, rgba(0,0,0,.55) 85%, rgba(0,0,0,.8) 100%);
  pointer-events: none;
}

/* ── PAGE LAYER ── */
.page { position: relative; z-index: 1; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  font: 500 11px/1 "Manrope", sans-serif;
  letter-spacing: .22em; text-transform: uppercase; color: var(--ink);
  background: linear-gradient(180deg, rgba(10,7,5,.8) 0%, transparent 100%);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.nav .mark { display: flex; align-items: center; gap: 14px; text-transform: none; }
.nav .mark img {
  display: block; width: 50px; height: 50px; border-radius: 50%;
  background: var(--cream); padding: 3px; object-fit: contain;
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 1px rgba(245,234,213,.18);
}
.nav .wordmark {
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: 20px; letter-spacing: .02em; line-height: 1; color: var(--ink);
}
.nav .wordmark small {
  display: block; margin-top: 3px;
  font-family: "Manrope", sans-serif; font-style: normal;
  font-size: 8px; letter-spacing: .32em; text-transform: uppercase; color: var(--ember-3);
}
.nav ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.nav a { color: inherit; text-decoration: none; opacity: .85; transition: opacity .2s; }
.nav a:hover { opacity: 1; }

/* ── SECTION SHARED ── */
.eyebrow {
  font: 500 11px/1 "Manrope", sans-serif;
  letter-spacing: .32em; text-transform: uppercase; color: var(--ember-3);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--ember-3); }
.section-h2 {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(40px, 7vw, 84px); line-height: .96;
  letter-spacing: .01em; color: var(--ink); margin: 0;
}
.section-h2 em { font-style: italic; color: var(--ember-3); }

/* ═══════════════════════════════════════
   1. HERO — CURTAIN REVEAL
   ═══════════════════════════════════════ */
.hero-curtain { position: relative; height: 300vh; }
.hero-sticky {
  position: sticky; top: 0; height: 100dvh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
/* The content behind the curtain */
.hero-behind {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
}
.hero-behind img, .hero-behind .hero-video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92) contrast(1.05) brightness(.82);
}
.hero-behind .hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 60%, transparent 30%, rgba(10,7,5,.75) 95%);
}
.hero-behind .hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; z-index: 3;
}
.hero-behind .hero-title {
  font-family: "Cormorant Garamond", serif; font-weight: 300;
  font-size: clamp(60px, 12vw, 200px); line-height: .88;
  letter-spacing: .04em; text-transform: uppercase; color: var(--ink);
}
.hero-behind .hero-title .ital {
  font-style: italic; font-weight: 300; letter-spacing: 0; color: var(--ember-3);
  display: block;
}
.hero-behind .hero-sub {
  margin-top: 28px; font-size: 13px; color: var(--ink-soft);
  letter-spacing: .2em; text-transform: uppercase;
}
.hero-behind .scroll-cue {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--ink-faint); text-align: center; opacity: 0;
}
.hero-behind .scroll-cue .line {
  display: block; width: 1px; height: 44px;
  background: var(--ink-faint); margin: 12px auto 0;
  animation: drop 2.4s ease-in-out infinite; transform-origin: top;
}
@keyframes drop { 0%,100% { transform: scaleY(.4); opacity:.4 } 50% { transform: scaleY(1); opacity:1 } }

/* The two curtain panels */
.curtain-left, .curtain-right {
  position: absolute; top: 0; bottom: 0; width: 50%;
  background: var(--bg); z-index: 4;
  display: flex; align-items: center;
}
.curtain-left {
  left: 0; justify-content: flex-end; padding-right: 40px;
  border-right: 1px solid var(--rule);
}
.curtain-right {
  right: 0; justify-content: flex-start; padding-left: 40px;
  border-left: 1px solid var(--rule);
}
.curtain-left h2, .curtain-right h2 {
  font-family: "Cormorant Garamond", serif; font-weight: 300;
  font-size: clamp(48px, 10vw, 120px); letter-spacing: .06em;
  line-height: .9; color: var(--ink); text-transform: uppercase;
}
.curtain-left h2 em, .curtain-right h2 em {
  font-style: italic; color: var(--ember-3);
}

/* ── Photo label (reusable) ── */
.photo-label {
  position: absolute; left: 18px; bottom: 18px; z-index: 5;
  width: 46%; min-width: 200px; max-width: 340px;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
  border: 1.5px solid rgba(255,255,255,.9); color: #fff;
  padding: 20px 24px 16px;
  text-shadow: 0 2px 14px rgba(0,0,0,.55); pointer-events: none;
}
.photo-label .script {
  font-family: "Alex Brush", cursive; font-weight: 400;
  font-size: 52px; line-height: 1; letter-spacing: .01em; color: #fff; width: 100%;
}
.photo-label .script .ln { display: block; }
.photo-label .script .ln + .ln { margin-top: .04em; padding-left: 1.4em; }
.photo-label .sub {
  margin-top: 10px; font-family: "Manrope", sans-serif; font-weight: 400;
  font-size: 11px; letter-spacing: .22em; text-transform: none; color: #fff; align-self: center;
}

/* ═══════════════════════════════════════
   2. KINETIC MARQUEE
   ═══════════════════════════════════════ */
.marquee-band {
  padding: 28px 0; overflow: hidden;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.marquee-row {
  display: flex; white-space: nowrap; will-change: transform; padding: 8px 0;
}
.marquee-row + .marquee-row { margin-top: 2px; }
.marquee-item {
  display: inline-flex; align-items: center; flex-shrink: 0;
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(36px, 7vw, 80px); letter-spacing: .02em;
  color: var(--ink); padding: 0 32px;
}
.marquee-item .dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember-2); margin: 0 28px; opacity: .6;
}
/* Outlined variant */
.marquee-outline .marquee-item {
  color: transparent; -webkit-text-stroke: 1.5px var(--ink-soft);
}
.marquee-outline .marquee-item .dot {
  background: none; border: 1.5px solid var(--ink-soft); opacity: .4;
}

/* ═══════════════════════════════════════
   3. ACCORDION SLIDER — TODAY'S FRESH
   ═══════════════════════════════════════ */
.accordion-section {
  padding: 120px 40px 140px;
}
.accordion-inner { max-width: 1320px; margin: 0 auto; }
.accordion-head { margin-bottom: 52px; }

.accordion {
  display: flex; gap: 8px;
  height: 65vh; min-height: 400px; max-height: 620px;
}
.accordion-panel {
  flex: 1; border-radius: 14px; overflow: hidden;
  position: relative; cursor: pointer;
  transition: flex .6s cubic-bezier(.16,1,.3,1);
}
.accordion-panel:hover, .accordion-panel.active { flex: 5; }
.panel-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.accordion-panel:hover .panel-bg, .accordion-panel.active .panel-bg { transform: scale(1.05); }
.panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,7,5,.85) 0%, rgba(10,7,5,.2) 40%, transparent 60%);
}
.panel-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; z-index: 2;
}
.panel-num {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ember-3); margin-bottom: 8px;
  opacity: 0; transform: translateY(8px);
  transition: all .4s cubic-bezier(.16,1,.3,1) .1s;
}
.panel-vtitle {
  font: 600 11px/1 "Manrope", sans-serif; letter-spacing: .08em; text-transform: uppercase;
  writing-mode: vertical-rl; text-orientation: mixed;
  position: absolute; bottom: 28px; left: 14px; color: var(--ink);
  transition: opacity .3s;
}
.accordion-panel:hover .panel-vtitle, .accordion-panel.active .panel-vtitle { opacity: 0; }
.panel-h3 {
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: 28px; letter-spacing: .01em; margin-bottom: 6px; color: var(--ink);
  opacity: 0; transform: translateY(10px);
  transition: all .4s cubic-bezier(.16,1,.3,1) .15s;
}
.panel-desc {
  font-size: 13px; color: var(--ink-soft); line-height: 1.5; max-width: 30ch;
  opacity: 0; transform: translateY(10px);
  transition: all .4s cubic-bezier(.16,1,.3,1) .2s;
}
.accordion-panel:hover .panel-num,
.accordion-panel:hover .panel-h3,
.accordion-panel:hover .panel-desc,
.accordion-panel.active .panel-num,
.accordion-panel.active .panel-h3,
.accordion-panel.active .panel-desc { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   4. HORIZONTAL SCROLL GALLERY
   ═══════════════════════════════════════ */
.hscroll-section { overflow: clip; }
.hscroll-sticky {
  position: sticky; top: 0; height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
}
.hscroll-header {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 100px 48px 0; z-index: 5; pointer-events: none;
}
.hscroll-track {
  display: flex; gap: 28px;
  padding: 0 max(48px, 5vw);
  will-change: transform;
}
.hscroll-card {
  flex-shrink: 0;
  width: clamp(300px, 36vw, 460px);
  height: 60vh;
  border-radius: 16px; overflow: hidden;
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.hscroll-card:hover { transform: translateY(-4px); }
.hscroll-card-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.hscroll-card:hover .hscroll-card-bg { transform: scale(1.04); }
.hscroll-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,7,5,.88) 0%, rgba(10,7,5,.25) 45%, transparent 70%);
}
.hscroll-card-content { position: relative; z-index: 2; }
.hscroll-card-num {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ember-3); margin-bottom: 6px;
}
.hscroll-card h3 {
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: 26px; letter-spacing: .01em; margin-bottom: 4px; color: var(--ink);
}
.hscroll-card h3 em { font-style: italic; color: var(--ember-3); font-weight: 400; }
.hscroll-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; max-width: 30ch; }
.hscroll-card .price-tag {
  display: none;
}

/* ── Video card in horizontal scroll ── */
.hscroll-card--video {
  overflow: hidden;
  cursor: pointer;
}
.hscroll-card--video .hscroll-card-video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hscroll-card--video:hover .hscroll-card-video {
  filter: brightness(1.05);
}
.hscroll-card--video .hscroll-card-overlay {
  pointer-events: none;
}
.video-hover-hint {
  display: flex; align-items: center; gap: 6px;
  margin-top: 10px;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ember-3);
  opacity: .7; transition: opacity .3s;
}
.hscroll-card--video:hover .video-hover-hint {
  opacity: 1;
}
.video-hover-hint svg {
  color: var(--ember-3);
}

/* Progress bar */
.h-progress {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 50; display: flex; align-items: center; gap: 12px;
  opacity: 0; transition: opacity .3s;
}
.h-progress.visible { opacity: 1; }
.h-progress-bar { width: 120px; height: 2px; background: var(--rule); border-radius: 1px; overflow: hidden; }
.h-progress-fill { height: 100%; background: var(--ember-3); width: 0%; transition: width .1s; }
.h-progress-label { font-size: 10px; color: var(--ink-faint); letter-spacing: .08em; }

/* ═══════════════════════════════════════
   5. TEXT MASK REVEAL — STORY
   ═══════════════════════════════════════ */
.mask-section { position: relative; min-height: 300vh; }
.mask-sticky {
  position: sticky; top: 0; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.mask-bg {
  position: absolute; inset: 0;
  overflow: hidden; opacity: .7;
}
.mask-bg video, .mask-bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.mask-overlay {
  position: absolute; inset: 0; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.mask-text {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(48px, 13vw, 180px); letter-spacing: .06em;
  line-height: .88; text-align: center; text-transform: uppercase;
  background: var(--bg); color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,234,213,.12);
  position: relative; z-index: 2;
}
.mask-reveal {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 3; clip-path: inset(100% 0 0 0);
}
.mask-text-filled {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(48px, 13vw, 180px); letter-spacing: .06em;
  line-height: .88; text-align: center; text-transform: uppercase;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-image:
    radial-gradient(ellipse 60% 80% at 25% 40%, rgba(245,234,213,.55), transparent 55%),
    radial-gradient(ellipse 70% 90% at 75% 65%, rgba(255,154,60,.5), transparent 60%),
    radial-gradient(ellipse 50% 70% at 50% 30%, rgba(255,217,160,.45), transparent 50%),
    linear-gradient(135deg, var(--ember-3), var(--amber), var(--cream));
  background-size: 180% 180%, 200% 200%, 160% 160%, cover;
  background-repeat: no-repeat;
  animation: smoke-drift 9s ease-in-out infinite;
}
@keyframes smoke-drift {
  0% {
    background-position: 10% 50%, 90% 50%, 50% 20%, center;
  }
  33% {
    background-position: 60% 20%, 30% 80%, 80% 60%, center;
  }
  66% {
    background-position: 90% 70%, 10% 30%, 20% 50%, center;
  }
  100% {
    background-position: 10% 50%, 90% 50%, 50% 20%, center;
  }
}
.mask-subtext {
  position: absolute; bottom: 4%; left: 50%; transform: translateX(-50%);
  text-align: center; opacity: 0; z-index: 4; max-width: 560px;
}
.mask-subtext p {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: clamp(16px, 2vw, 22px); color: var(--ink-soft); line-height: 1.5;
}
.mask-subtext .sig {
  display: block; margin-top: 16px;
  font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--ember-3); letter-spacing: .02em;
}

/* ═══════════════════════════════════════
   6. STICKY CARD STACK — MENU
   ═══════════════════════════════════════ */
.stack-section { max-width: 800px; margin: 0 auto; padding: 0 24px 200px; }
.stack-section-head {
  text-align: center; padding: 120px 24px 48px;
}
.stack-card {
  position: sticky; border-radius: 20px;
  padding: 0; margin-bottom: 28px; overflow: hidden;
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: 0 24px 56px rgba(0,0,0,.35);
  transition: transform .1s ease; will-change: transform;
  background: var(--bg-warm);
}
.stack-card:nth-child(1) { top: 80px; z-index: 1; }
.stack-card:nth-child(2) { top: 100px; z-index: 2; }
.stack-card:nth-child(3) { top: 120px; z-index: 3; }
.stack-card:nth-child(4) { top: 140px; z-index: 4; }
.stack-card:nth-child(5) { top: 160px; z-index: 5; }
.stack-card:nth-child(6) { top: 180px; z-index: 6; }
.stack-card:nth-child(7) { top: 200px; z-index: 7; }
.stack-card:nth-child(8) { top: 220px; z-index: 8; }
.stack-card-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.stack-card-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,7,5,.92) 0%, rgba(10,7,5,.35) 50%, transparent 75%);
}
.stack-card-body {
  position: relative; z-index: 2; padding: 32px 36px;
}
.stack-card-body .card-num {
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ember-3); margin-bottom: 10px;
}
.stack-card-body h3 {
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: 30px; letter-spacing: .01em; margin-bottom: 4px; color: var(--ink);
}
.stack-card-body h3 em { font-style: italic; color: var(--ember-3); }
.stack-card-body p {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5; max-width: 50ch;
}
.stack-card-body .tags {
  display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap;
}
.stack-card-body .tags span {
  font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cream); background: rgba(217,73,21,.55);
  padding: 5px 12px; border-radius: 100px;
}
.stack-card-body .price {
  position: absolute; top: 32px; right: 36px;
  font-family: "Cormorant Garamond", serif; font-weight: 500;
  font-size: 32px; color: var(--ink);
}

/* ═══════════════════════════════════════
   7. TEXT SCRAMBLE — CONTACT
   ═══════════════════════════════════════ */
.contact-section {
  padding: 180px 40px 100px;
  min-height: 80vh;
  display: flex; align-items: flex-end;
}
.contact-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px; align-items: end;
}
.contact-left { text-align: left; }
.contact-right { display: flex; justify-content: flex-end; }
.scramble-headline {
  font-family: "Cormorant Garamond", serif; font-weight: 400;
  font-size: clamp(48px, 8vw, 100px); letter-spacing: .03em;
  line-height: .92; text-transform: uppercase; color: var(--ink);
  margin-bottom: 20px; white-space: nowrap;
}
.scramble-headline .char { display: inline-block; transition: color .1s; }
.scramble-headline .char.resolved { color: var(--ember-3); }
.scramble-headline .char.scrambling { color: var(--ink-faint); }
.contact-sub {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 18px; color: var(--ink-soft); line-height: 1.5;
  max-width: 42ch; margin-bottom: 28px;
}
.contact-form {
  display: flex; gap: 0; max-width: 460px;
  border-bottom: 1px solid var(--rule); padding-bottom: 4px;
}
.contact-form input {
  flex: 1; background: none; border: 0;
  font: 400 15px "Manrope", sans-serif; color: var(--ink);
  padding: 10px 0; outline: none;
}
.contact-form input::placeholder { color: var(--ink-faint); }
.contact-form button {
  appearance: none; border: 0;
  background: var(--ember-2); color: var(--cream);
  padding: 0 24px; border-radius: 100px;
  font: 600 10px/1 "Manrope", sans-serif; letter-spacing: .24em;
  text-transform: uppercase; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: background .2s;
}
.contact-form button:hover { background: var(--ember-1); }

/* Formspree form */
.fs-form {
  width: 100%;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 20px;
}
.fs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 520px) { .fs-row { grid-template-columns: 1fr; } }
.fs-field { display: flex; flex-direction: column; gap: 6px; }
.fs-field label {
  font-size: 10px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft);
}
.fs-optional { font-weight: 400; opacity: .6; text-transform: none; letter-spacing: 0; }
.fs-field input,
.fs-field textarea {
  background: rgba(245,234,213,.05);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  font: 400 14px/1.5 "Manrope", sans-serif;
  outline: none;
  transition: border-color .2s, background .2s;
  resize: none; width: 100%;
}
.fs-field input::placeholder,
.fs-field textarea::placeholder { color: var(--ink-faint); }
.fs-field input:focus,
.fs-field textarea:focus {
  border-color: rgba(255,122,46,.4);
  background: rgba(245,234,213,.08);
}
.fs-footer {
  display: flex; flex-direction: column;
  gap: 14px;
}
.fs-consent {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-soft);
  cursor: pointer; user-select: none;
}
.fs-consent input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  accent-color: var(--ember-1); cursor: pointer;
}
.fs-btn {
  appearance: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, var(--ember-1), var(--ember-2));
  color: var(--cream); padding: 16px 26px; border-radius: 100px;
  font: 600 12px/1 "Manrope", sans-serif;
  letter-spacing: .14em; text-transform: uppercase;
  transition: opacity .2s, transform .2s, box-shadow .3s;
  box-shadow: 0 4px 18px rgba(255,122,46,.25); white-space: nowrap;
}
.fs-btn span { position: relative; z-index: 1; }
/* Left-to-right progress fill while sending */
.fs-btn::before {
  content: "";
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(135deg, #ffb054, var(--ember-3));
  z-index: 0;
}
.fs-btn.sending::before { width: 92%; transition: width 1.6s cubic-bezier(.25,.6,.3,1); }
.fs-btn.sent::before { width: 100%; transition: width .25s ease-out; }
.fs-btn:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,122,46,.35); }
.fs-btn:active { transform: scale(.99); }
.fs-btn:disabled { cursor: wait; transform: none; opacity: 1; }
.fs-success {
  display: none; text-align: center; padding: 14px;
  border-radius: 10px;
  background: rgba(255,122,46,.08); border: 1px solid rgba(255,122,46,.2);
  color: var(--ember-3); font-size: 14px; letter-spacing: .02em;
}

/* Slide-to-send control */
.slide-send {
  position: relative;
  width: 100%; height: 58px;
  border-radius: 100px;
  overflow: hidden;
  background: rgba(245,234,213,.06);
  border: 1px solid var(--rule);
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.slide-send-fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(135deg, var(--ember-1), var(--ember-2));
  border-radius: 100px;
  pointer-events: none;
}
.slide-send-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font: 600 12px/1 "Manrope", sans-serif;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft);
  pointer-events: none;
}
.slide-send-knob {
  position: absolute; top: 4px; left: 4px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember-3), var(--ember-1));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  cursor: grab;
  touch-action: none;
  box-shadow: 0 2px 14px rgba(255,122,46,.45);
  will-change: transform;
}
.slide-send-knob:active { cursor: grabbing; }
.slide-send-knob svg { animation: ss-nudge 1.8s ease-in-out infinite; }
@keyframes ss-nudge {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(4px); opacity: .75; }
}
.slide-send.sending .slide-send-knob svg,
.slide-send.sent .slide-send-knob svg { animation: none; }
.slide-send.sent .slide-send-fill { width: 100% !important; }
.slide-send.sent .slide-send-label {
  color: var(--cream); opacity: 1 !important;
}

/* QR card — blue-black running ring */
.qr-card {
  position: relative; z-index: 0;
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 22px 28px 18px;
  border-radius: 20px;
  overflow: hidden;
}
/* Rotating blue-black conic ring */
.qr-card::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 620px; height: 620px;
  background: conic-gradient(
    #060912 0deg,
    #2a6fdb 30deg,
    #7db4ff 55deg,
    #cfe4ff 70deg,
    #2a6fdb 95deg,
    #060912 140deg,
    #060912 180deg,
    #1a4fae 210deg,
    #5a93ff 235deg,
    #060912 280deg,
    #060912 360deg);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: wa-spin 3.4s linear infinite, wa-twinkle 1.6s ease-in-out infinite;
  z-index: -2;
}
/* Inner fill leaves a thin ring at the edge */
.qr-card::after {
  content: "";
  position: absolute; inset: 2.5px;
  background: #0c1018;
  border-radius: 18px;
  z-index: -1;
}
.qr-box {
  background: var(--cream);
  padding: 12px;
  border-radius: 12px;
  line-height: 0;
}
.qr-box svg {
  display: block;
  width: 150px; height: 150px;
}
.qr-label {
  font: 600 11px/1.4 "Manrope", sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--cream);
  text-align: center;
  max-width: 200px;
}
.qr-tap {
  font: 400 12px/1.4 "Manrope", sans-serif;
  color: #7db4ff;
  text-decoration: none;
  border-bottom: 1px dotted rgba(125,180,255,.5);
  transition: color .2s, border-color .2s;
}
.qr-tap:hover { color: #cfe4ff; border-color: #cfe4ff; }

/* WhatsApp button — twinkling blue ring */
.whatsapp-btn {
  position: relative; z-index: 0;
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 13px 26px;
  background: var(--ember-2); color: var(--cream);
  border-radius: 100px; text-decoration: none;
  font: 600 11px/1 "Manrope", sans-serif;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .3s, transform .2s;
  overflow: hidden;
}
/* Rotating conic gradient = the moving ring (blue + black) */
.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 420px; height: 420px;
  background: conic-gradient(
    #060912 0deg,
    #2a6fdb 30deg,
    #7db4ff 55deg,
    #cfe4ff 70deg,
    #2a6fdb 95deg,
    #060912 140deg,
    #060912 180deg,
    #1a4fae 210deg,
    #5a93ff 235deg,
    #060912 280deg,
    #060912 360deg);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: wa-spin 3.4s linear infinite, wa-twinkle 1.6s ease-in-out infinite;
  z-index: -2;
}
/* Inner fill leaves a thin ring visible at the edge */
.whatsapp-btn::after {
  content: "";
  position: absolute; inset: 2px;
  background: var(--ember-2);
  border-radius: 100px;
  z-index: -1;
  transition: background .3s;
}
@keyframes wa-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes wa-twinkle {
  0%, 100% { filter: brightness(1) saturate(1); }
  50% { filter: brightness(1.7) saturate(1.3); }
}
.whatsapp-btn:hover { transform: translateY(-1px); }
.whatsapp-btn:hover::after { background: var(--ember-1); }
.whatsapp-btn:active { transform: scale(.97); }
.whatsapp-btn svg { flex-shrink: 0; }
.contact-cols {
  display: flex; flex-direction: row; gap: 48px; text-align: right;
}
.contact-cols .col h4 {
  font: 600 10px/1 "Manrope", sans-serif; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ember-3); margin-bottom: 10px;
}
.contact-cols .col a, .contact-cols .col p {
  display: block; font-size: 14px; color: var(--ink-soft);
  text-decoration: none; line-height: 1.6;
}
.contact-cols .col a:hover { color: var(--ink); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  position: relative; padding: 48px 40px 40px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-faint);
}
.footer .mark {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 16px; letter-spacing: .02em; text-transform: none; color: var(--ink-soft);
}

/* Live visit counter */
.visit-counter {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-faint);
}
.visit-counter .vc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ember-1);
  box-shadow: 0 0 8px rgba(255,122,46,.7);
  animation: vc-pulse 2.4s ease-in-out infinite;
}
@keyframes vc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.8); }
}
.visit-counter .vc-num {
  color: var(--amber);
  font-variant-numeric: tabular-nums;
}
.visit-counter .vc-sep { color: var(--ink-faint); }

.footer-legal {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color .2s, border-color .2s;
}
.footer-legal:hover { color: var(--ember-3); border-color: var(--ember-3); }

/* Footer nav links */
.footer-links {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.footer-links a {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--ember-3); }
.footer-links a.footer-legal { border-bottom: none; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 920px) {
  .nav { padding: 14px 20px; }
  .nav ul { gap: 16px; font-size: 10px; }
  .curtain-left h2, .curtain-right h2 { font-size: clamp(32px, 8vw, 60px); }
  .accordion { flex-direction: column; height: auto; min-height: auto; max-height: none; }
  .accordion-panel { height: 60px; flex: none !important; }
  .accordion-panel:hover, .accordion-panel.active { height: 260px; flex: none !important; }
  .panel-vtitle { writing-mode: horizontal-tb; position: relative; bottom: auto; left: auto; padding: 18px 16px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; align-items: start; }
  .contact-right { text-align: left; }
  .contact-cols { text-align: left; }
  .footer { flex-direction: column; gap: 12px; }
}
