/* =================================================================
   Relating Lab. Design system
   Dark, warm, evening. Golden hour on a plum night sky.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* night palette */
  --ink:       #0c0910;
  --ink-2:     #140e1c;
  --ink-3:     #1d1528;
  --line:      rgba(244, 236, 226, 0.10);
  --line-soft: rgba(244, 236, 226, 0.06);

  /* warmth */
  --gold:      #e7b878;
  --gold-soft: #f0cf9e;
  --rose:      #e0a0a6;
  --wine:      #7b3f5a;
  --plum:      #3a2347;

  /* text */
  --cream:     #f5ede2;
  --muted:     #b3a6bd;
  --muted-2:   #877b94;

  --maxw: 1080px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.1px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ---- atmospheric background ---- */
.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(60% 50% at 15% 8%, rgba(123, 63, 90, 0.40), transparent 70%),
    radial-gradient(55% 45% at 88% 18%, rgba(231, 184, 120, 0.16), transparent 70%),
    radial-gradient(70% 60% at 50% 110%, rgba(58, 35, 71, 0.55), transparent 70%),
    var(--ink);
}
.atmosphere::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(40% 40% at 30% 40%, rgba(224, 160, 166, 0.10), transparent 60%),
    radial-gradient(35% 35% at 75% 65%, rgba(231, 184, 120, 0.08), transparent 60%);
  animation: drift 26s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(-4%, 3%, 0) scale(1.12); }
}

/* film grain */
.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; }
.section-pad { padding: 96px 0; }

/* ---- typography ---- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.7rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

.lead { font-size: clamp(1.05rem, 2.2vw, 1.28rem); color: var(--muted); font-weight: 300; }

em, .accent { font-style: italic; color: var(--gold-soft); }

a { color: inherit; text-decoration: none; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(115deg, var(--gold), var(--rose));
  color: #2a1620;
  box-shadow: 0 8px 30px -8px rgba(231, 184, 120, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(231, 184, 120, 0.6); }
.btn-ghost {
  background: rgba(245, 237, 226, 0.03);
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn-ghost:hover { background: rgba(245, 237, 226, 0.07); transform: translateY(-2px); }
.btn-lg { padding: 18px 38px; font-size: 1rem; }

/* ---- nav ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 9, 16, 0.72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--wine));
  box-shadow: 0 0 14px 1px rgba(231, 184, 120, 0.7);
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a.link {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
  transition: color 0.3s;
}
.nav-links a.link:hover { color: var(--cream); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.6px; background: var(--cream); margin: 5px 0; transition: 0.3s var(--ease); }

/* ---- hero ---- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  position: relative;
}
.hero-inner { max-width: 760px; }
.hero h1 { margin: 22px 0 26px; }
.shimmer {
  background: linear-gradient(100deg, var(--gold-soft) 0%, var(--rose) 35%, var(--gold) 62%, var(--gold-soft) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 8s linear infinite;
}
@keyframes shimmer { to { background-position: 220% center; } }
.hero-sub { max-width: 560px; margin-bottom: 38px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 24px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex; align-items: center; gap: 10px;
}
.scroll-hint .ln { width: 40px; height: 1px; background: var(--muted-2); transform-origin: left; animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.3; transform: scaleX(0.6);} 50%{opacity:1; transform: scaleX(1);} }

/* ---- reveal animation ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ---- intro / philosophy ---- */
.intro-grid { display: grid; gap: 60px; }
.intro-head { max-width: 640px; }
.intro-head h2 { margin: 18px 0 20px; }

.beliefs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 14px; }
.belief {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(245,237,226,0.035), rgba(245,237,226,0.012));
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}
.belief:hover { transform: translateY(-4px); border-color: rgba(231,184,120,0.35); }
.belief .num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.belief h3 { font-size: 1.18rem; margin-bottom: 10px; line-height: 1.25; }
.belief p { font-size: 0.96rem; color: var(--muted); }

/* ---- offerings grid ---- */
.offer-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 44px; }
.offer-head h2 { margin-top: 16px; }
.offerings { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 34px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink-2);
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease);
}
.offer-card .glow {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  transition: opacity 0.6s var(--ease);
}
.offer-card.singles .glow { background: radial-gradient(80% 90% at 80% 0%, rgba(224,160,166,0.30), transparent 60%); }
.offer-card.couples .glow { background: radial-gradient(80% 90% at 80% 0%, rgba(231,184,120,0.22), transparent 60%); }
.offer-card.repair  .glow { background: radial-gradient(80% 90% at 80% 0%, rgba(123,63,90,0.40), transparent 60%); }
.offer-card:hover { transform: translateY(-6px); border-color: rgba(231,184,120,0.4); }
.offer-card:hover .glow { opacity: 0.9; }
.offer-card > * { position: relative; z-index: 1; }
.offer-tag {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; border: 1px solid var(--line);
  align-self: flex-start; color: var(--muted); margin-bottom: auto;
}
.offer-tag.live { color: var(--gold); border-color: rgba(231,184,120,0.45); background: rgba(231,184,120,0.06); }
.offer-card h3 { margin: 26px 0 12px; max-width: 90%; }
.offer-card p { color: var(--muted); font-size: 0.96rem; margin-bottom: 22px; max-width: 95%; }
.offer-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--gold-soft); font-weight: 500; }
.offer-link .arr { transition: transform 0.4s var(--ease); }
.offer-card:hover .offer-link .arr { transform: translateX(5px); }
.offer-card.soon { opacity: 0.72; }
.offer-card.soon:hover { transform: none; border-color: var(--line); }

/* ---- about ---- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(70% 60% at 50% 20%, rgba(231,184,120,0.35), transparent 70%),
    radial-gradient(80% 70% at 50% 110%, rgba(123,63,90,0.6), transparent 70%),
    var(--ink-3);
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 28px;
}
.about-portrait .glyph {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-style: italic; font-size: 4rem;
  color: rgba(245,237,226,0.16);
}
.about-portrait span.cap { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }
.about-text h2 { margin: 16px 0 22px; }
.about-text p { color: var(--muted); margin-bottom: 18px; }
.about-text p strong { color: var(--cream); font-weight: 500; }

/* ---- closing band ---- */
.band {
  text-align: center;
  padding: 110px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.band h2 { max-width: 720px; margin: 0 auto 28px; }
.band .lead { max-width: 540px; margin: 0 auto 36px; }

/* ---- footer ---- */
.footer { padding: 70px 0 50px; }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 50px; }
.footer .brand { margin-bottom: 14px; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; color: var(--muted); font-size: 0.95rem; margin-bottom: 10px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-about { max-width: 280px; }
.footer-about p { color: var(--muted); font-size: 0.92rem; margin-top: 10px; }
.footer-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--line-soft); font-size: 0.82rem; color: var(--muted-2); }

/* =================================================================
   OFFERING / EVENT PAGE
   ================================================================= */
.event-hero {
  min-height: 96svh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
}
.event-hero .wrap { max-width: 880px; }
.event-hero .back { font-size: 0.85rem; color: var(--muted); display: inline-flex; gap: 8px; align-items: center; margin-bottom: 30px; transition: color 0.3s; }
.event-hero .back:hover { color: var(--gold-soft); }
.event-hero h1 { margin: 20px 0 26px; max-width: 12ch; }
.event-meta-row { display: flex; gap: 26px; flex-wrap: wrap; margin: 34px 0 38px; }
.event-meta-row .m { display: flex; flex-direction: column; gap: 3px; }
.event-meta-row .m .k { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); }
.event-meta-row .m .v { font-size: 1.02rem; color: var(--cream); }

/* generic event section */
.es { padding: 80px 0; border-top: 1px solid var(--line-soft); }
.es .wrap { max-width: 860px; }
.es .eyebrow { margin-bottom: 18px; }
.es h2 { margin-bottom: 26px; max-width: 18ch; }
.es p.body { color: var(--muted); font-size: 1.08rem; margin-bottom: 18px; max-width: 60ch; }
.es p.body strong { color: var(--cream); font-weight: 500; }

/* belief list on event page */
.belief-list { display: grid; gap: 2px; margin-top: 10px; }
.belief-row {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px;
  padding: 28px 4px;
  border-top: 1px solid var(--line-soft);
}
.belief-row:last-child { border-bottom: 1px solid var(--line-soft); }
.belief-row .bn { font-family: var(--font-display); font-style: italic; font-size: 1.7rem; color: var(--gold); line-height: 1; }
.belief-row h3 { font-size: 1.22rem; margin-bottom: 8px; }
.belief-row p { color: var(--muted); font-size: 1rem; }

/* the evening, flow steps */
.flow { display: grid; gap: 18px; margin-top: 14px; }
.flow-step {
  display: grid; grid-template-columns: auto 1fr; gap: 22px;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(245,237,226,0.03), rgba(245,237,226,0.008));
  transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.flow-step:hover { border-color: rgba(231,184,120,0.3); transform: translateX(4px); }
.flow-step .ico { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); }
.flow-step h3 { font-size: 1.12rem; margin-bottom: 6px; }
.flow-step p { color: var(--muted); font-size: 0.97rem; }
.note-card {
  margin-top: 26px; padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px dashed rgba(231,184,120,0.35);
  background: rgba(231,184,120,0.05);
  color: var(--cream);
}
.note-card strong { color: var(--gold-soft); }

/* who it's for */
.foryou { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 16px; }
.foryou .yes {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 22px; border-radius: 14px;
  border: 1px solid var(--line); background: rgba(245,237,226,0.02);
}
.foryou .yes .chk { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.foryou .yes p { color: var(--cream); font-size: 0.97rem; }

/* details list */
.details { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-top: 10px; }
.details .d { padding: 26px 28px; border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.details .d:nth-child(2n) { border-right: none; }
.details .d .k { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.details .d .v { color: var(--cream); font-size: 1.04rem; }

/* faq */
.faq { margin-top: 14px; }
.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px; color: var(--cream); font-family: var(--font-display); font-size: 1.2rem;
}
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform 0.4s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; top:50%; left:50%; transform: translate(-50%,-50%); background: var(--gold); }
.faq-q .pm::before { width: 14px; height: 1.6px; }
.faq-q .pm::after { width: 1.6px; height: 14px; transition: transform 0.4s var(--ease); }
.faq-item.open .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { color: var(--muted); padding: 0 4px 26px; font-size: 1rem; max-width: 60ch; }

/* =================================================================
   REGISTRATION / CHECKOUT
   ================================================================= */
.register { padding: 90px 0 110px; border-top: 1px solid var(--line-soft); }
.register .wrap { max-width: 720px; }
.reg-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(245,237,226,0.045), rgba(245,237,226,0.01));
  padding: 40px 38px;
  position: relative;
  overflow: hidden;
}
.reg-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 50% at 80% -10%, rgba(231,184,120,0.16), transparent 60%);
}
.reg-card > * { position: relative; }
.reg-head { text-align: center; margin-bottom: 34px; }
.reg-head h2 { margin-bottom: 12px; }
.reg-head p { color: var(--muted); }

.price-row { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin: 18px 0 4px; }
.price-row .amt { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-soft); }
.price-row .per { color: var(--muted); font-size: 0.92rem; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.84rem; color: var(--muted); margin-bottom: 9px; letter-spacing: 0.02em; }
.field label .req { color: var(--rose); }
.field input[type=text],
.field input[type=email],
.field input[type=number],
.field select {
  width: 100%;
  background: rgba(12,9,16,0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field select:focus { outline: none; border-color: rgba(231,184,120,0.55); background: rgba(12,9,16,0.8); }
.field input::placeholder { color: var(--muted-2); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* gender / cap selector */
.cap-select { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 6px; }
.cap-opt { position: relative; }
.cap-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.cap-opt label {
  display: block; cursor: pointer; margin: 0;
  padding: 18px 20px; border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(12,9,16,0.4);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.cap-opt label .t { display: block; color: var(--cream); font-size: 1.02rem; margin-bottom: 4px; }
.cap-opt label .s { display: block; font-size: 0.82rem; }
.cap-opt label .s.open-s { color: var(--gold); }
.cap-opt label .s.low { color: var(--rose); }
.cap-opt input:checked + label { border-color: var(--gold); background: rgba(231,184,120,0.08); transform: translateY(-2px); }
.cap-opt input:focus-visible + label { border-color: var(--gold-soft); }
.cap-hint { font-size: 0.82rem; color: var(--muted-2); margin-top: 4px; }

/* consent checkboxes */
.consent { display: flex; gap: 13px; align-items: flex-start; padding: 16px 0; border-top: 1px solid var(--line-soft); }
.consent input[type=checkbox] {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  border: 1px solid var(--line); border-radius: 6px;
  background: rgba(12,9,16,0.5); cursor: pointer;
  position: relative; transition: 0.25s;
}
.consent input[type=checkbox]:checked { background: var(--gold); border-color: var(--gold); }
.consent input[type=checkbox]:checked::after {
  content: ""; position: absolute; left: 7px; top: 3px;
  width: 5px; height: 10px; border: solid #2a1620; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.consent label { font-size: 0.92rem; color: var(--muted); line-height: 1.5; cursor: pointer; }
.consent label a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.consent label .req { color: var(--rose); }

.reg-submit { margin-top: 26px; }
.reg-submit .btn { width: 100%; justify-content: center; }
.reg-fine { text-align: center; font-size: 0.82rem; color: var(--muted-2); margin-top: 16px; }

.form-error { color: var(--rose); font-size: 0.86rem; margin-top: 8px; min-height: 1em; }

.reg-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.reg-success.show { display: block; }
.reg-success .seal {
  width: 70px; height: 70px; margin: 0 auto 22px; border-radius: 50%;
  background: linear-gradient(120deg, var(--gold), var(--rose));
  display: grid; place-items: center; color: #2a1620;
  box-shadow: 0 10px 40px -8px rgba(231,184,120,0.6);
}
.reg-success h3 { margin-bottom: 12px; }
.reg-success p { color: var(--muted); max-width: 42ch; margin: 0 auto; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-portrait { max-width: 340px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section-pad { padding: 72px 0; }
  .es { padding: 60px 0; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px;
    padding: 40px;
    background: rgba(16, 11, 22, 0.96); backdrop-filter: blur(20px);
    border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a.link { font-size: 1.2rem; font-family: var(--font-display); }
  .nav-links .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; z-index: 110; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  .beliefs { grid-template-columns: 1fr; }
  .offerings { grid-template-columns: 1fr; }
  .foryou { grid-template-columns: 1fr; }
  .details { grid-template-columns: 1fr; }
  .details .d { border-right: none; }
  .two-col { grid-template-columns: 1fr; }
  .cap-select { grid-template-columns: 1fr; }
  .reg-card { padding: 30px 22px; }
  .event-meta-row { gap: 18px 26px; }
  .flow-step { grid-template-columns: 1fr; gap: 14px; }
  .belief-row { grid-template-columns: 40px 1fr; gap: 16px; }
}

/* ---- sticky mobile booking bar (event page) ---- */
.sticky-cta { display: none; }
@media (max-width: 720px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 12px; right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px 11px 20px;
    border-radius: 100px;
    background: rgba(20, 14, 28, 0.88);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid var(--line);
    box-shadow: 0 12px 34px -12px rgba(0, 0, 0, 0.7);
    transform: translateY(160%);
    transition: transform 0.5s var(--ease);
  }
  .sticky-cta.show { transform: none; }
  .sticky-cta .info { font-size: 0.78rem; color: var(--muted); line-height: 1.25; }
  .sticky-cta .info b { display: block; color: var(--cream); font-weight: 500; font-size: 0.92rem; font-family: var(--font-display); }
  .sticky-cta .btn { padding: 12px 22px; font-size: 0.9rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
