/* =========================================
   GLOBAL VARIABLES & RESETS
   ========================================= */
:root {
  --cream: #fffacd;
  --black: #1a191b;
  --warm: #efeeec;
  --blue: #3a5a8c;
  --deep-blue: #1e3455;
  --sky: #6b8fb5;
  --sky-light: rgba(106, 143, 181, 0.15);
  --sky-border: rgba(106, 143, 181, 0.25);
  --text-dim: rgba(239, 238, 236, 0.5);
  --text-ghost: rgba(239, 238, 236, 0.3);
  --text-faint: rgba(239, 238, 236, 0.12);
}

/* Confirmation Page Theme Overrides */
body.page-confirmation {
  --deep-blue: #c4a882;
  --sky: #d4b896;
  --sky-light: rgba(196, 168, 130, 0.15);
  --sky-border: rgba(196, 168, 130, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--warm);
  overflow-x: hidden;
  overflow-y: hidden;
}
body.loaded { overflow-y: auto; }
body.page-confirmation { min-height: 100vh; }

.f-display {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", "URW Palladio L", "P052", "Times New Roman", serif;
  font-weight: 300;
  font-style: italic;
}
.f-body {
  font-family: "Helvetica Neue", "Segoe UI", "SF Pro Display", system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* =========================================
   COMMON ELEMENTS
   ========================================= */
.loader-bg {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--black);
  pointer-events: none;
}

.page-content {
  position: relative;
  z-index: 1;
  opacity: 0;
}

.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  z-index: 50;
  pointer-events: none;
  mix-blend-mode: screen;
}

.pinned-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  text-align: center;
  pointer-events: none;
}
.pinned-text .line {
  display: block;
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", "URW Palladio L", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(38px, 7.5vw, 96px);
  line-height: 1.15;
  color: var(--warm);
  opacity: 0;
  will-change: opacity;
}

footer {
  text-align: center;
  padding: 60px 24px 80px;
  background: var(--black);
}
.footer-name {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300;
  font-style: italic;
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.footer-links a {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  text-decoration: none;
  color: var(--text-ghost);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--sky); }
.footer-copy {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(239,238,236,0.15);
}

/* =========================================
   INDEX PAGE STYLES
   ========================================= */
.pinned-text .line-accent { color: var(--sky); }
.pinned-text .byline {
  display: block;
  font-family: "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.2em;
  text-transform: lowercase;
  color: rgba(239, 238, 236, 0.35);
  margin-top: 20px;
  opacity: 0;
}
.pinned-sub {
  display: block;
  font-family: "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(10px, 1.3vw, 13px);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
  opacity: 0;
}

.glass-cta-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 190px));
  z-index: 200;
  opacity: 0;
  pointer-events: none;
}
.glass-cta-wrap.active { pointer-events: auto; }

.glass-cta {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  text-decoration: none;
  color: var(--warm);
  background: var(--sky-light);
  border: 1px solid var(--sky-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  white-space: nowrap; /* Forces text to stay on one line */
  text-align: center;  /* Centers the text */
}
.glass-cta:hover {
  background: rgba(106,143,181,0.25);
  border-color: rgba(106,143,181,0.5);
  box-shadow: 0 8px 40px rgba(30,52,85,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  transform: scaleX(1.4) scale(1.1);
  filter: blur(12px);
  will-change: transform, filter;
}

.hero-flare {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(106,143,181,0.15) 40%, rgba(106,143,181,0.2) 50%, rgba(106,143,181,0.15) 60%, transparent 100%);
  opacity: 0.6;
  will-change: opacity;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,25,27,0.3) 0%, rgba(26,25,27,0.65) 100%);
}
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to bottom, transparent 0%, rgba(26,25,27,0.4) 40%, rgba(26,25,27,0.85) 70%, var(--black) 100%);
  pointer-events: none;
}

.hero-placeholder { height: 200px; pointer-events: none; }
.hero-sub { display: none; }

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-ghost);
  opacity: 0;
  z-index: 2;
}
.scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: var(--text-ghost);
  margin: 10px auto 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.4); opacity: 0.7; }
}

.sect {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
}
.sect-inner {
  max-width: 720px;
  margin: 0 auto;
}
.reveal {
  opacity: 0;
  transform: translateY(50px);
  will-change: opacity, transform;
}
.sect-label {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 20px;
}
.sect-title {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.25;
  color: var(--warm);
  margin-bottom: 28px;
}
.sect-body {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  color: var(--text-dim);
}
.sect-body strong { color: var(--warm); font-weight: 400; }

.bg-1 { background: linear-gradient(180deg, var(--black) 0%, #0d1825 100%); }
.bg-2 { background: linear-gradient(180deg, #0d1825 0%, #111f33 100%); }
.bg-3 { background: linear-gradient(180deg, #111f33 0%, #0d1825 100%); }
.bg-4 { background: linear-gradient(180deg, #0d1825 0%, #0a1119 100%); }
.bg-5 { background: linear-gradient(180deg, #0a1119 0%, #0d1420 100%); }
.bg-6 { background: linear-gradient(180deg, #0d1420 0%, var(--black) 100%); }

.beginner-note {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(106,143,181,0.06);
  border-left: 2px solid rgba(106,143,181,0.2);
  border-radius: 0 6px 6px 0;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
}
.beginner-note a {
  color: var(--sky);
  text-decoration: none;
  border-bottom: 1px solid rgba(106,143,181,0.3);
  transition: border-color 0.3s;
}
.beginner-note a:hover { border-color: var(--sky); }

/* Calendar */
.cal-header {
  text-align: center;
  margin-bottom: 32px;
  margin-top: 48px;
}
.cal-month {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--warm);
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  max-width: 400px;
  margin: 0 auto 28px;
}
.cal-day-name {
  text-align: center;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-ghost);
  padding: 6px 0 8px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-ghost);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
}
.cal-cell.empty { visibility: hidden; }
.cal-cell.session {
  background: transparent;
  color: var(--warm);
  cursor: pointer;
  font-weight: 400;
}
.cal-cell.session::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sky);
  transition: all 0.3s ease;
}
.cal-cell.session:hover { color: var(--sky); }
.cal-cell.session:hover::after {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 8px rgba(106,143,181,0.4);
}
.cal-cell.session.active { color: var(--sky); }
.cal-cell.session.active::after {
  width: 6px;
  height: 6px;
  background: var(--sky);
  box-shadow: 0 0 12px rgba(106,143,181,0.4);
}
.cal-cell.session.closing::after { background: var(--cream); }
.cal-cell.session.closing:hover { color: var(--cream); }

.cal-detail {
  max-width: 400px;
  margin: 0 auto;
  min-height: 90px;
  text-align: center;
  padding: 24px 20px;
  background: rgba(106,143,181,0.05);
  border: 1px solid rgba(106,143,181,0.1);
  border-radius: 12px;
  transition: opacity 0.3s ease;
}
.cal-detail-label {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}
.cal-detail-title {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--warm);
  margin-bottom: 6px;
}
.cal-detail-meta {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.cal-add-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--sky);
  background: transparent;
  border: 1px solid rgba(106,143,181,0.2);
  transition: all 0.3s;
  cursor: pointer;
}
.cal-add-btn:hover {
  background: rgba(106,143,181,0.1);
  border-color: var(--sky);
}
.cal-note {
  text-align: center;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 12px;
  font-style: italic;
  color: var(--text-ghost);
  margin-top: 16px;
}
.cal-subscribe {
  display: block;
  text-align: center;
  margin-top: 28px;
}
.cal-subscribe a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--warm);
  background: rgba(106,143,181,0.08);
  border: 1px solid rgba(106,143,181,0.15);
  transition: all 0.3s;
}
.cal-subscribe a:hover {
  background: rgba(106,143,181,0.15);
  border-color: var(--sky-border);
}

/* Pricing & Features */
.included-list {
  list-style: none;
  margin: 32px 0 48px;
}
.included-list li {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dim);
  padding: 10px 0;
  border-bottom: 1px solid var(--text-faint);
  display: flex;
  align-items: center;
  gap: 12px;
}
.included-list li::before {
  content: '·';
  color: var(--sky);
  font-size: 24px;
  line-height: 1;
}
.price-card {
  text-align: center;
  padding: 32px 28px;
  background:
    linear-gradient(135deg, rgba(106,143,181,0.12) 0%, rgba(106,143,181,0.03) 40%, rgba(106,143,181,0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.06) 100%);
  border: 1px solid rgba(106,143,181,0.18);
  border-top-color: rgba(255,255,255,0.1);
  border-radius: 16px;
  margin-top: 20px;
  backdrop-filter: blur(32px) saturate(1.3);
  -webkit-backdrop-filter: blur(32px) saturate(1.3);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 8px 32px rgba(0,0,0,0.2),
    0 0 0 0.5px rgba(106,143,181,0.1);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(106,143,181,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(106,143,181,0.06) 0%, transparent 40%);
  pointer-events: none;
  animation: glassShift 3s ease-in-out infinite alternate;
}
@keyframes glassShift {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(8%, -6%) rotate(2deg); }
  100% { transform: translate(-5%, 8%) rotate(-1deg); }
}
.price-spots {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}
.price-amount {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 8vw, 72px);
  color: var(--warm);
  line-height: 1;
}
.price-sub {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 6px;
  margin-bottom: 24px;
}
.price-cta {
  display: inline-block;
  padding: 16px 44px;
  border-radius: 50px;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  text-decoration: none;
  color: var(--warm);
  background: var(--sky-light);
  border: 1px solid var(--sky-border);
  backdrop-filter: blur(20px);
  transition: all 0.4s;
  cursor: pointer;
}
.price-cta:hover {
  background: rgba(106,143,181,0.3);
  border-color: var(--sky);
  box-shadow: 0 8px 40px rgba(30,52,85,0.5);
}
.price-fallback {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-ghost);
  margin-top: 16px;
}
.price-fallback a {
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--text-faint);
  transition: color 0.3s;
}
.price-fallback a:hover { color: var(--warm); }

/* FAQ */
.faq-list { margin-top: 40px; }
.faq-item { border-bottom: 1px solid var(--text-faint); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--warm);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--sky); }
.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 200;
  color: var(--sky);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-a p {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
}

.gallery-link {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  text-decoration: none;
  color: var(--warm);
  background: transparent;
  border: 1px solid var(--sky-border);
  transition: all 0.4s ease;
}
.gallery-link:hover {
  background: var(--sky-light);
  border-color: var(--sky);
  box-shadow: 0 4px 24px rgba(30,52,85,0.3);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 360px;
  padding: 24px 28px;
  background:
    linear-gradient(135deg, rgba(196,168,130,0.1) 0%, rgba(196,168,130,0.03) 40%, rgba(196,168,130,0.07) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.06) 100%);
  border: 1px solid rgba(196,168,130,0.18);
  border-top-color: rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(32px) saturate(1.3);
  -webkit-backdrop-filter: blur(32px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), inset 0 -1px 0 rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  overflow: hidden;
}
.cookie-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 25% 25%, rgba(196,168,130,0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: cookieGlow 10s ease-in-out infinite alternate;
}
@keyframes cookieGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(4%, -4%); }
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner-title {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--warm);
  margin-bottom: 10px;
  position: relative;
}
.cookie-banner-text {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-dim);
  margin-bottom: 20px;
  position: relative;
}
.cookie-btns {
  display: flex;
  gap: 10px;
  position: relative;
}
.cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 50px;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.cookie-btn-accept {
  background: rgba(196,168,130,0.2);
  color: var(--warm);
  border: 1px solid rgba(196,168,130,0.3);
}
.cookie-btn-accept:hover {
  background: rgba(196,168,130,0.35);
  border-color: var(--sky);
}
.cookie-btn-decline {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--text-faint);
}
.cookie-btn-decline:hover {
  color: var(--warm);
  border-color: var(--text-ghost);
}

/* =========================================
   GALLERY PAGE STYLES
   ========================================= */
.gallery-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 40px;
  mix-blend-mode: difference;
}
.gallery-nav a {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300; font-size: 12px;
  letter-spacing: 0.15em; text-transform: lowercase; text-decoration: none;
  color: var(--warm); transition: opacity 0.3s;
}
.gallery-nav a:hover { opacity: 0.5; }
.gallery-nav-title {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300; font-style: italic; font-size: 16px; color: var(--warm);
}

.gallery-hero {
  height: 60vh; min-height: 400px;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: 0 24px;
  background: linear-gradient(180deg, var(--deep-blue) 0%, var(--black) 100%);
  position: relative;
}
.gallery-hero-label {
  font-family: "Helvetica Neue", system-ui, sans-serif; font-weight: 400; font-size: 10px;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--sky);
  margin-bottom: 20px; opacity: 0; transform: translateY(20px);
}
.gallery-hero-title {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300; font-style: italic; font-size: clamp(36px, 6vw, 72px);
  line-height: 1.15; color: var(--warm); opacity: 0; transform: translateY(30px);
}
.gallery-hero-sub {
  font-family: "Helvetica Neue", system-ui, sans-serif; font-weight: 300; font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.7; color: var(--text-dim); max-width: 480px; margin-top: 24px; opacity: 0; transform: translateY(20px);
}
.gallery-hero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to bottom, transparent, var(--black)); pointer-events: none; }

.masonry-section { padding: 40px 0 120px; background: var(--black); }
.masonry { max-width: 1100px; margin: 0 auto; padding: 0 60px; columns: 3; column-gap: 32px; }
.masonry-item { break-inside: avoid; margin-bottom: 32px; position: relative; overflow: hidden; opacity: 0; transform: translateY(40px); will-change: opacity, transform; }
.masonry-item.square { aspect-ratio: 1; }
.masonry-item.portrait { aspect-ratio: 3/4; }
.masonry-item.landscape { aspect-ratio: 4/3; }
.masonry-item.tall { aspect-ratio: 2/3; }
.masonry-item.wide { aspect-ratio: 16/9; }
.masonry-img { width: 100%; height: 100%; object-fit: cover; display: block; background-size: cover; background-position: center; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.masonry-item:hover .masonry-img { transform: scale(1.04); }

.masonry-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 20px 20px; background: linear-gradient(to top, rgba(26,25,27,0.7), transparent); opacity: 0; transition: opacity 0.4s ease; }
.masonry-item:hover .masonry-caption { opacity: 1; }
.masonry-caption p { font-family: "Helvetica Neue", system-ui, sans-serif; font-weight: 300; font-size: 12px; letter-spacing: 0.1em; color: var(--text-dim); }

/* =========================================
   CONFIRMATION PAGE STYLES
   ========================================= */
.pinned-text .emoji {
  display: block;
  font-style: normal;
  font-size: clamp(28px, 4vw, 48px);
  margin-top: 16px;
  opacity: 0;
}

.conf-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, #2a2118 0%, var(--black) 100%);
  position: relative;
}
.conf-hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
}

.conf-card {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.conf-label {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.conf-title {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.25;
  color: var(--warm);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.conf-body {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  color: var(--text-dim);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.conf-body p + p {
  margin-top: 24px;
}
.conf-body strong {
  color: var(--warm);
  font-weight: 400;
}

.conf-cal-section {
  margin: 48px 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.conf-cal-label {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 20px;
}
.conf-cal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  text-decoration: none;
  color: var(--warm);
  background:
    linear-gradient(135deg, rgba(196,168,130,0.12) 0%, rgba(196,168,130,0.03) 40%, rgba(196,168,130,0.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.06) 100%);
  border: 1px solid rgba(196,168,130,0.25);
  border-top-color: rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.4s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 4px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}
.conf-cal-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 30%, rgba(196,168,130,0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: btnGlow 8s ease-in-out infinite alternate;
}
@keyframes btnGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(5%, -5%); }
}
.conf-cal-btn:hover {
  background: rgba(196,168,130,0.2);
  border-color: var(--sky);
  box-shadow: 0 8px 32px rgba(30,28,22,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

.conf-sign {
  margin-top: 48px;
  text-align: right;
  opacity: 0;
  transform: translateY(20px);
}
.conf-sign-warm {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.conf-sign-name {
  font-family: "Didot", "Bodoni MT", "Noto Serif Display", serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--warm);
}

.conf-footer {
  text-align: center;
  padding: 48px 24px 80px;
  background: var(--black);
}
.conf-footer p {
  font-family: "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: rgba(239,238,236,0.15);
}

/* =========================================
   MEDIA QUERIES
   ========================================= */
@media print {
  .loader-bg, .cursor-trail, .glass-cta-wrap, .scroll-cue, .gallery-nav, .pinned-text { display: none; }
  .pinned-text { position: static; transform: none; }
  .pinned-text .line, .pinned-text .byline { opacity: 1; }
  .page-content { opacity: 1; }
  .reveal { opacity: 1; transform: none; }
  body { overflow: visible; }
  .hero { height: auto; min-height: 300px; }
  .faq-a { max-height: none !important; padding-bottom: 16px !important; }
  .masonry-item { opacity: 1; transform: none; break-inside: avoid; }
  .gallery-hero-label, .gallery-hero-title, .gallery-hero-sub { opacity: 1; transform: none; }
  .conf-label, .conf-title, .conf-body, .conf-cal-section, .conf-sign { opacity: 1; transform: none; }
  .conf-hero { min-height: auto; }
}

@media (max-width: 900px) { 
  .masonry { columns: 2; padding: 0 32px; column-gap: 24px; } 
  .masonry-item { margin-bottom: 24px; } 
}

@media (max-width: 600px) {
  .sect { padding: 80px 28px; }
  .cal-grid { gap: 1px; max-width: 100%; padding: 0 8px; }
  .cal-cell { font-size: 12px; }
  .cal-detail { padding: 20px 16px; }
  .price-card { padding: 36px 20px; }
  .sect-body { padding: 0 8px; }
  .beginner-note { margin-left: 8px; margin-right: 8px; }
  .pinned-text .line { font-size: clamp(32px, 10vw, 48px); }
  .pinned-sub { font-size: 10px; letter-spacing: 0.2em; }
  .glass-cta-wrap { transform: translate(-50%, calc(-50% + 160px)); }
  .glass-cta { padding: 14px 28px; } /* Add this line here */
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .masonry { columns: 1; padding: 0 28px; } 
  .masonry-item { margin-bottom: 28px; } 
  .gallery-nav { padding: 20px 24px; } 
  .gallery-hero { height: 50vh; min-height: 320px; } 
  .conf-hero { padding: 60px 28px; }
  .conf-body { font-size: 15px; }
}