/* ============================================================
   HOUSE OF VSE — Shared Stylesheet
   Fonts: Roboto (body/UI) + Cormorant Garamond (display)
   ============================================================ */

/* Fonts are loaded via <link> in each HTML <head> for better performance */

/* ── SKIP TO MAIN CONTENT (accessibility + SEO) ── */
.skip-link {
  position: absolute;
  top: -48px; left: 16px; z-index: 9999;
  padding: 10px 20px;
  background: #1a1a1a; color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 14px; font-weight: 400;
  border-radius: 0 0 3px 3px;
  transition: top .2s ease;
  text-decoration: none;
}
.skip-link:focus { top: 0; outline: 2px solid #f9c74f; outline-offset: 2px; }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: 'Roboto', sans-serif; }

/* ── TOKENS ── */
:root {
  --ink:         #1a1a1a;
  --ink-2:       #444444;
  --ink-3:       #666666;
  --canvas:      #ffffff;
  --parchment:   #f7f5f2;
  --parchment-2: #eeebe6;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --hairline:    #dedede;
  --rainbow:     linear-gradient(90deg,#e63946,#f4a261,#f9c74f,#52b788,#4361ee,#7209b7);
  --sp:          96px;
  --sp-sm:       64px;
  --radius:      3px;
}

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 56px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 768px) {
  .container, .container--narrow { padding: 0 24px; }
  :root { --sp: 64px; --sp-sm: 44px; }
}

.label {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 12px;
}
.label--light { color: rgba(255,255,255,.45); }

.rbar { display: block; width: 36px; height: 2px; background: var(--rainbow); margin-bottom: 18px; }

/* ── TYPOGRAPHY ── */
h1.display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(56px, 8vw, 108px);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.025em;
}
h1.display em { font-style: italic; font-weight: 300; }

h2.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400; line-height: 1.08; letter-spacing: -0.015em;
}

h3.card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 17px; font-weight: 500; line-height: 1.35;
}

/* ── PAGE-LEVEL FADE IN ── */
@keyframes pageFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-enter { animation: pageFade .6s ease both; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0ms);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 80px;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.07); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 56px;
}

.nav-logo img { height: 40px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--ink-3);
  letter-spacing: .02em; padding: 4px 0;
  transition: color .2s, font-weight .1s;
}
.nav-links a:hover, .nav-links a.active { font-weight: 600; }

/* Rainbow hover — one color per nav position */
.nav-links li:nth-child(1) a:hover, .nav-links li:nth-child(1) a.active { color: #e63946; }
.nav-links li:nth-child(2) a:hover, .nav-links li:nth-child(2) a.active { color: #f4a261; }
.nav-links li:nth-child(3) a:hover, .nav-links li:nth-child(3) a.active { color: #d4b800; }
.nav-links li:nth-child(4) a:hover, .nav-links li:nth-child(4) a.active { color: #52b788; }
.nav-links li:nth-child(5) a:hover, .nav-links li:nth-child(5) a.active { color: #4361ee; }
.nav-links li:nth-child(6) a:hover, .nav-links li:nth-child(6) a.active { color: #9b5de5; }
.nav-links li:nth-child(7) a:hover, .nav-links li:nth-child(7) a.active { color: #7209b7; }

/* Sign In + Enquire — plain links, no button background */
.nav-cta {
  display: inline-flex; align-items: center;
  padding: 4px 0; background: transparent;
  color: var(--ink-3) !important;
  font-size: 13px; font-weight: 400;
  letter-spacing: .02em; transition: color .2s, font-weight .1s;
}
.nav-cta:hover { font-weight: 600; opacity: 1; }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

#mobile-menu {
  display: none; position: fixed;
  top: 80px; left: 0; right: 0; z-index: 199;
  background: #fff; border-bottom: 1px solid var(--hairline);
  padding: 16px 24px 32px;
}
#mobile-menu.open { display: block; }
#mobile-menu ul { list-style: none; }
#mobile-menu ul li a {
  display: block; padding: 13px 0; font-size: 16px;
  color: var(--ink); border-bottom: 1px solid var(--hairline);
}
.mobile-cta {
  display: inline-flex; margin-top: 20px; padding: 13px 32px;
  background: var(--ink); color: #fff; font-size: 14px;
  font-weight: 400; border-radius: 2px; letter-spacing: .02em;
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
}

/* ============================================================
   HERO — HOME PAGE
   ============================================================ */
#hero-home {
  min-height: 100vh;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: var(--sp);
  position: relative; overflow: hidden;
  padding-top: 80px;
}

.hero-canvas {
  position: absolute; inset: 0; pointer-events: none;
}

/* Animated gradient orbs */
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(3%, 2%) scale(1.06); }
  66%       { transform: translate(-2%, 4%) scale(.96); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-4%, -2%) scale(1.08); }
  70%       { transform: translate(2%, 3%) scale(.94); }
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .12;
}
.orb-1 {
  width: 600px; height: 600px;
  background: #7209b7; top: 10%; right: 15%;
  animation: orbFloat1 14s ease-in-out infinite;
}
.orb-2 {
  width: 480px; height: 480px;
  background: #4361ee; bottom: 20%; left: 10%;
  animation: orbFloat2 18s ease-in-out infinite;
}
.orb-3 {
  width: 360px; height: 360px;
  background: #e63946; top: 40%; left: 35%;
  animation: orbFloat1 22s ease-in-out infinite reverse;
}

/* Particle dots canvas overlay — JS fills this */
#hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 56px;
}

@keyframes heroLineIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content .label  { animation: heroLineIn .8s ease .3s both; }
.hero-content h1      { animation: heroLineIn .9s ease .5s both; }
.hero-content .hero-sub { animation: heroLineIn .9s ease .75s both; }
.hero-content .hero-actions { animation: heroLineIn .9s ease .95s both; }

.hero-sub {
  font-family: 'Roboto', sans-serif;
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,.55);
  max-width: 460px; line-height: 1.75; margin: 24px 0 40px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero-content { padding: 0 24px; }
  #hero-home { padding-bottom: var(--sp-sm); }
}

/* ── HERO SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute; bottom: 36px; left: 56px;
  display: flex; align-items: center; gap: 12px;
  animation: heroLineIn 1s ease 1.4s both;
}
.scroll-hint span {
  font-size: 10px; font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}
.scroll-line {
  width: 40px; height: 1px;
  background: linear-gradient(to right, rgba(255,255,255,.3), transparent);
}
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}
.scroll-arrow {
  width: 16px; height: 16px; position: absolute;
  bottom: 36px; right: 56px; opacity: .3;
  animation: scrollBounce 2s ease infinite;
}

@media (max-width: 768px) {
  .scroll-hint { left: 24px; }
  .scroll-arrow { right: 24px; }
}

/* ── HERO PAGE (inner pages) ── */
.page-hero {
  padding-top: calc(80px + 72px); padding-bottom: 72px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(114,9,183,.09) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(67,97,238,.07) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 18px;
}
.page-hero .hero-desc {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.55);
  max-width: 500px; line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: #fff; color: var(--ink);
  font-size: 14px; font-weight: 500; border-radius: 2px;
  letter-spacing: .02em; transition: opacity .2s, transform .15s;
}
.btn-white:hover { opacity: .88; }
.btn-white:active { transform: scale(.97); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: transparent;
  color: rgba(255,255,255,.75); font-size: 14px; font-weight: 400;
  border: 1px solid rgba(255,255,255,.22); border-radius: 2px;
  letter-spacing: .02em; transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-white:active { transform: scale(.97); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 400; border-radius: 2px;
  letter-spacing: .02em; transition: opacity .2s, transform .15s;
}
.btn-dark:hover { opacity: .8; }
.btn-dark:active { transform: scale(.97); }

.btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; background: transparent; color: var(--ink);
  font-size: 14px; font-weight: 400;
  border: 1px solid var(--hairline); border-radius: 2px;
  letter-spacing: .02em; transition: border-color .2s, transform .15s;
}
.btn-ghost-dark:hover { border-color: var(--ink); }
.btn-ghost-dark:active { transform: scale(.97); }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section { padding: var(--sp) 0; }
.section--dark     { background: var(--dark);    color: #fff; }
.section--parchment { background: var(--parchment); }
.section--parchment-2 { background: var(--parchment-2); }

.section-head { margin-bottom: 52px; }
.section-head h2 { color: inherit; margin-top: 6px; }
.section-head p {
  margin-top: 14px; font-size: 16px; font-weight: 300;
  color: var(--ink-2); max-width: 520px; line-height: 1.75;
}
.section--dark .section-head p { color: rgba(255,255,255,.55); }

/* underline text link */
.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 400; color: var(--ink-2);
  border-bottom: 1px solid var(--hairline); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }
.text-link--light { color: rgba(255,255,255,.6); border-color: rgba(255,255,255,.2); }
.text-link--light:hover { color: #fff; border-color: rgba(255,255,255,.6); }

/* ============================================================
   HOME OVERVIEW CARDS
   ============================================================ */
.overview-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; padding: 0px 20px 20px;
}
.overview-card {
  background: var(--parchment); padding: 14px 25px 40px;
  position: relative; overflow: hidden;
  transition: background .25s;
  display: flex; flex-direction: column;
}
.overview-card:hover { background: #ece9e4; }
.overview-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background .3s;
}
.overview-card:hover::before { background: var(--rainbow); }
.ov-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; color: var(--hairline);
  line-height: 1; margin-bottom: 10px;
}
.overview-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--ink);
  margin-bottom: 10px;
}
.overview-card p {
  font-size: 14px; font-weight: 300; color: var(--ink-2);
  line-height: 1.72; flex: 1; margin-bottom: 22px;
}
.ov-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink);
  transition: gap .2s;
}
.ov-link:hover { gap: 10px; }

@media (max-width: 900px) { .overview-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .overview-grid { grid-template-columns: 1fr; } }

/* ============================================================
   HOME ARTWORK TEASER (3 images strip)
   ============================================================ */
.teaser-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3px; overflow: hidden;
}
.teaser-img {
  aspect-ratio: 3/4; overflow: hidden; position: relative;
}
.teaser-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.teaser-img:hover img { transform: scale(1.04); }
.teaser-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  opacity: 0; transition: opacity .4s;
}
.teaser-img:hover .teaser-img-overlay { opacity: 1; }
.teaser-img-label {
  position: absolute; bottom: 16px; left: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: #fff;
  opacity: 0; transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.teaser-img:hover .teaser-img-label { opacity: 1; transform: translateY(0); }

@media (max-width: 640px) { .teaser-strip { grid-template-columns: 1fr; } }

/* ============================================================
   INSTALLATIONS PAGE
   ============================================================ */
.install-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.pattern-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 0px 20px 20px; }
@media (max-width: 900px) { .pattern-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .pattern-grid { grid-template-columns: 1fr; } }
.install-card {
  padding: 14px 25px 40px; background: var(--parchment);
  position: relative; overflow: hidden;
  transition: background .25s;
}
.install-card:hover { background: #ece9e4; }
.install-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: transparent; transition: background .3s;
}
.install-card:hover::after { background: var(--rainbow); }
.install-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 300; color: #e0dbd5; line-height: 1;
  margin-bottom: 10px;
}
.install-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; margin-bottom: 12px;
}
.install-card p { font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.75; }

@media (max-width: 900px) { .install-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .install-grid { grid-template-columns: 1fr; } }

/* Process timeline */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 28px; padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.process-step:first-child { border-top: 1px solid var(--hairline); }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; color: var(--hairline); line-height: 1;
}
.step-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; margin-bottom: 8px;
}
.step-body p { font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.75; }

/* ============================================================
   ARTWORKS PAGE
   ============================================================ */
.artwork-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.artwork-card {
  background: var(--dark-2); overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
  transition: transform .35s ease, border-color .3s;
}
.artwork-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.14); }
.artwork-thumb {
  width: 100%; aspect-ratio: 3/4; overflow: hidden; position: relative;
}
.artwork-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s ease;
}
.artwork-card:hover .artwork-thumb img { transform: scale(1.05); }
.artwork-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,.5) 100%);
  opacity: 0; transition: opacity .35s;
}
.artwork-card:hover .artwork-thumb-overlay { opacity: 1; }
.artwork-info { padding: 20px 22px 24px; }
.artwork-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 6px;
}
.artwork-medium { font-size: 12px; color: rgba(255,255,255,.38); font-weight: 300; line-height: 1.5; }
.artwork-dims   { font-size: 11px; color: rgba(255,255,255,.22); font-weight: 300; margin-top: 3px; }

.avail-notice {
  margin-top: 48px; padding: 24px 28px;
  background: rgba(255,255,255,.04);
  border-left: 2px solid;
  border-image: var(--rainbow) 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.avail-notice p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.55); max-width: 480px; }
.avail-links { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

@media (max-width: 900px) { .artwork-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .artwork-grid { grid-template-columns: 1fr; } }

/* ── Fullscreen video carousel (Installations — Works in Motion) ── */
.video-fullscreen { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; background: #000; }
.video-fullscreen-track { position: relative; aspect-ratio: 16/9;  }
.video-fullscreen-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease;
}
.video-fullscreen-slide.active { opacity: 1; }
.video-fullscreen-slide img { width: 100%; height: 100%; object-fit: cover; }
.video-fullscreen-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.05) 30%, rgba(0,0,0,.1) 60%, rgba(0,0,0,.7) 100%);
}
.video-fullscreen-label {
  position: absolute; z-index: 3; top: 15px; left: 56px;
  color: rgba(255,255,255,.8); font-size: clamp(8px, 4vw, 12px); font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
}
.video-fullscreen-content { position: absolute; z-index: 3; left: 56px; bottom: 64px; right: 56px; }
.video-fullscreen-title {
  font-family: 'Cormorant Garamond', serif; color: #fff;
  font-size: clamp(0px, 4vw, 48px); font-weight: 500; margin-bottom: 3px;
}
.video-fullscreen-play {
  width: 45px; height: 45px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,.92); cursor: pointer;
  display: flex; align-items: center; justify-content: center; 
  transition: transform .25s, background .25s;
}
.video-fullscreen-play:hover { transform: scale(1.08); background: #fff; }
.video-fullscreen-dots {
  position: absolute; z-index: 3; bottom: 30px; right: 56px;
  display: flex; gap: 9px;
}
.video-fullscreen-dot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0; border: none;
  background: rgba(255,255,255,.35); cursor: pointer;
  transition: background .2s, transform .2s;
}
.video-fullscreen-dot.active { background: #fff; transform: scale(1.3); }
.video-fullscreen-slide.playing img,
.video-fullscreen-slide.playing .video-fullscreen-slide-overlay,
.video-fullscreen-slide.playing .video-fullscreen-content { opacity: 0; }
.video-fullscreen-iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4;
}
.video-fullscreen-stop {
  position: absolute; z-index: 5; top: calc(80px + 24px); right: 24px;
  width: 38px; height: 38px; border-radius: 50%; border: none; padding: 0;
  background: rgba(0,0,0,.55); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.video-fullscreen-stop:hover { background: rgba(0,0,0,.8); }
@media (max-width: 768px) {
  .video-fullscreen-label, .video-fullscreen-content { left: 24px; right: 24px; }
  .video-fullscreen-dots { right: 24px; }
}

/* ── Series carousel (Artworks page) ── */
.series-block { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.series-block--reverse { grid-template-columns: 1fr 1.1fr; }
.series-block--reverse .series-carousel { order: 2; }
.series-block--reverse .series-text { order: 1; }
.series-carousel {
  position: relative; width: 100%; aspect-ratio: 4/3;
  overflow: hidden; background: var(--dark-2);
}
.series-carousel-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .6s ease;
}
.series-carousel-slide.active { opacity: 1; }
.series-carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.series-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: none; padding: 0;
  background: rgba(0,0,0,.45); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.series-carousel-arrow:hover { background: rgba(0,0,0,.75); }
.series-carousel-arrow--prev { left: 14px; }
.series-carousel-arrow--next { right: 14px; }
.series-carousel-dots {
  position: absolute; z-index: 3; bottom: 14px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 7px;
}
.series-carousel-dot {
  width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: background .2s, transform .2s;
}
.series-carousel-dot.active { background: #fff; transform: scale(1.3); }
.series-text p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.8; margin-top: 14px; }
@media (max-width: 860px) {
  .series-block, .series-block--reverse { grid-template-columns: 1fr; gap: 28px; }
  .series-block--reverse .series-carousel, .series-block--reverse .series-text { order: initial; }
}

/* ============================================================
   ART EXPERIENCES PAGE
   ============================================================ */
.exp-hero-img {
  width: 100%; aspect-ratio: 21/9; overflow: hidden;
  background: var(--dark);
}
.exp-hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: .72; }

.exp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  margin-top: 56px;
}
.exp-card {
  padding: 44px 38px; background: var(--parchment);
  position: relative; overflow: hidden;
  transition: background .25s;
}
.exp-card:hover { background: #ece9e4; }
.exp-card::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0;
  width: 2px; background: transparent; transition: background .3s;
}
.exp-card:hover::before { background: var(--rainbow); }
.exp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500; margin-bottom: 14px;
}
.exp-card p { font-size: 14px; font-weight: 300; color: var(--ink-2); line-height: 1.75; }

.exp-cta-band {
  margin-top: 2px; padding: 48px 38px;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.exp-cta-band h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400;
}
.exp-cta-band p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.55); max-width: 380px; margin-top: 6px; }

@media (max-width: 680px) { .exp-grid { grid-template-columns: 1fr; } }

/* ============================================================
   JOURNAL PAGE
   ============================================================ */
.journal-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.journal-card { display: flex; flex-direction: column; }
.journal-thumb {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: var(--dark);
  margin-bottom: 28px; position: relative;
}
.journal-thumb-bg {
  width: 100%; height: 100%; position: absolute;
}
/* article 1 illustration bg */
.jt-1 {
  background:
    radial-gradient(ellipse at 30% 60%, rgba(67,97,238,.35) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(82,183,136,.25) 0%, transparent 45%),
    linear-gradient(135deg, #0e0e1e 0%, #141428 100%);
}
/* article 2 illustration bg */
.jt-2 {
  background:
    radial-gradient(ellipse at 65% 55%, rgba(230,57,70,.28) 0%, transparent 50%),
    radial-gradient(ellipse at 25% 35%, rgba(249,199,79,.2) 0%, transparent 45%),
    linear-gradient(135deg, #1a0e0e 0%, #1e1010 100%);
}
.journal-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.journal-tag {
  font-size: 10px; font-weight: 500; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3);
  background: var(--parchment); padding: 4px 10px; border-radius: 2px;
}
.journal-date { font-size: 12px; color: var(--ink-3); font-weight: 300; }
.journal-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; line-height: 1.2;
  color: var(--ink); margin-bottom: 12px;
}
.journal-card p { font-size: 15px; font-weight: 300; color: var(--ink-2); line-height: 1.75; margin-bottom: 20px; flex: 1; }
.read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px; transition: gap .2s;
}
.read-more:hover { gap: 10px; }

/* Article full page */
.article-body { max-width: 720px; margin: 0 auto; padding: 0 56px; }
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 400; margin: 44px 0 16px;
}
.article-body p {
  font-size: 17px; font-weight: 300; color: var(--ink-2);
  line-height: 1.82; margin-bottom: 20px;
}
.article-body blockquote {
  margin: 36px 0; padding: 24px 28px;
  border-left: 2px solid; border-image: var(--rainbow) 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; font-style: italic; color: var(--ink);
  line-height: 1.45;
}
@media (max-width: 768px) { .article-body { padding: 0 24px; } }

@media (max-width: 680px) { .journal-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ENQUIRY PAGE
   ============================================================ */
.enq-layout { display: grid; grid-template-columns: 5fr 6fr; gap: 88px; align-items: start; }
.enq-left h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,4.5vw,58px); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 20px;
}
.enq-left > p {
  font-size: 15px; font-weight: 300; color: var(--ink-2);
  line-height: 1.75; margin-bottom: 32px;
}
.contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; }
.contact-item svg { flex-shrink: 0; margin-top: 1px; opacity: .38; }
.contact-item a { font-size: 14px; color: var(--ink-2); font-weight: 300; transition: color .2s; }
.contact-item a:hover { color: var(--ink); }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: var(--parchment);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--hairline);
  padding: 13px 14px;
  font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: 300;
  color: var(--ink); outline: none;
  border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--ink); background: #fff; }
.form-group input.err,
.form-group textarea.err { border-color: #c8293a !important; }
.form-group textarea { min-height: 130px; resize: vertical; }
.phone-row { display: flex; gap: 8px; }
.phone-prefix { flex: 0 0 118px; }
.phone-num { flex: 1; }
.field-err { font-size: 12px; color: #c8293a; margin-top: 5px; display: none; }
.field-err.show { display: block; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 400; border: none; border-radius: 2px;
  letter-spacing: .02em; transition: opacity .2s, transform .15s;
}
.btn-submit:hover { opacity: .8; }
.btn-submit:active { transform: scale(.97); }
.form-ok {
  display: none; margin-top: 16px; padding: 16px 20px;
  background: #f0faf4; border-left: 2px solid #52b788;
  font-size: 14px; color: #1e7a4a; font-weight: 300; line-height: 1.6;
}
.form-ok.show { display: block; }
@media (max-width: 860px) { .enq-layout { grid-template-columns: 1fr; gap: 44px; } }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 5fr 4fr; gap: 88px; align-items: start; }
.about-left h2 { color: #fff; margin-bottom: 28px; }
.about-left p {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.58);
  line-height: 1.82; margin-bottom: 18px;
}
.stat-list { list-style: none; }
.stat-item {
  padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.stat-item:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: #fff;
  line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.42); font-weight: 300; }
@media (max-width: 860px) { .about-layout { grid-template-columns: 1fr; gap: 44px; } }

/* Artist profile card */
.artist-card {
  display: flex; gap: 32px; align-items: flex-start;
  padding: 40px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  margin-top: 2px;
}
.artist-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: rgba(255,255,255,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.artist-card--stacked { flex-direction: column; margin-top: 0; }
.artist-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.artist-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .team-grid { grid-template-columns: 1fr; } }
.artist-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: #fff; margin-bottom: 4px;
}
.artist-card .artist-role { font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.artist-card p { font-size: 14px; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.72; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #EAE7DC; border-top: 1px solid var(--hairline); }
.footer-main {
  padding: 64px 0 52px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  border-bottom: 1px solid var(--hairline);
}
.footer-logo img { height: 56px; margin-bottom: 16px; mix-blend-mode: multiply; }
.footer-tagline {
  font-size: 14px; color: var(--ink-2); font-weight: 300;
  line-height: 1.7; max-width: 280px; margin-bottom: 24px;
}
.social-row { display: flex; gap: 10px; }
.soc-icon {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border: 1px solid var(--hairline);
  border-radius: 50%; color: var(--ink-2);
  transition: border-color .2s, color .2s;
}
.soc-icon:hover { border-color: var(--ink); color: var(--ink); }

.newsletter-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 8px;
}
.newsletter-sub { font-size: 14px; color: var(--ink-2); font-weight: 300; line-height: 1.65; margin-bottom: 20px; }
.newsletter-form { display: flex; flex-direction: column; max-width: 380px; }
.newsletter-form input {
  width: 100%; padding: 12px 0;
  font-family: 'Roboto', sans-serif; font-size: 15px; font-weight: 300;
  background: transparent; color: var(--ink); outline: none;
  border: none; border-bottom: 1px solid var(--hairline);
  border-radius: 0; -webkit-appearance: none; appearance: none;
  transition: border-color .25s;
  margin-bottom: 16px;
}
.newsletter-form input::placeholder { color: var(--ink-3); }
.newsletter-form input:focus { border-bottom-color: var(--ink); }
.newsletter-form button {
  margin-top: 6px; padding: 12px 28px;
  background: var(--ink); color: #fff;
  font-family: 'Roboto', sans-serif; font-size: 13px; font-weight: 400;
  letter-spacing: .04em; border: none; cursor: pointer;
  align-self: flex-start; transition: opacity .2s, transform .15s;
}
.newsletter-form button:hover { opacity: .8; }
.newsletter-form button:active { transform: scale(.97); }

.footer-bottom {
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--ink-3); font-weight: 300; }
.footer-nav { display: flex; gap: 22px; list-style: none; }
.footer-nav a { font-size: 12px; color: var(--ink-3); font-weight: 300; transition: color .2s; }
.footer-nav a:hover { color: var(--ink); }

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 40px; padding: 44px 0 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOTION — PARTICLES & CURSOR LINE
   ============================================================ */
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.float { animation: float-y 5s ease-in-out infinite; }
.float-delay { animation: float-y 5s ease-in-out 1.5s infinite; }

/* rainbow progress line at top (page load) */
@keyframes progressIn {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 300;
  background: var(--rainbow);
  transform-origin: left;
  animation: progressIn .8s ease forwards;
}

/* ============================================================
   V2 ADDITIONS — Auth, Events, RSVP Modal, Dashboard, Toast
   ============================================================ */

/* ── Nav auth state ── */
.nav-user-wrap { position: relative; }
.nav-user-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: none; border: 1px solid var(--hairline);
  padding: 6px 12px 6px 8px; border-radius: 2px; cursor: pointer;
  font-family: 'Roboto', sans-serif; font-size: 13px; font-weight: 400;
  color: var(--ink); transition: border-color .2s;
}
.nav-user-btn:hover { border-color: var(--ink); }
.nav-user-avatar {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500; flex-shrink: 0;
}
.nav-user-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nav-user-chevron { opacity: .5; transition: transform .2s; }
.nav-user-btn[aria-expanded="true"] .nav-user-chevron { transform: rotate(180deg); }

.nav-user-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 160px; background: #fff;
  border: 1px solid var(--hairline);
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  z-index: 300;
}
.nav-user-dropdown.open { display: block; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; font-size: 13px; font-weight: 400; color: var(--ink);
  background: none; border: none; width: 100%; text-align: left;
  cursor: pointer; font-family: 'Roboto', sans-serif;
  transition: background .15s;
}
.nav-dropdown-item:hover { background: var(--parchment); }
.nav-dropdown-signout { color: var(--ink-3); border-top: 1px solid var(--hairline); }

/* ── Event cards ── */
.event-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
}
.event-card {
  background: var(--parchment); display: flex; flex-direction: column;
  position: relative; overflow: hidden; transition: background .25s;
}
.event-card:hover { background: #ece9e4; }
.event-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: transparent; transition: background .3s;
}
.event-card:hover::before { background: var(--rainbow); }
.event-thumb {
  width: 100%; aspect-ratio: 16/9; overflow: hidden;
  background: var(--dark); flex-shrink: 0;
}
.event-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.event-card:hover .event-thumb img { transform: scale(1.04); }
.event-thumb-placeholder {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(114,9,183,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(67,97,238,.12) 0%, transparent 50%),
    var(--dark);
}
/* Open Studio card has a distinct warm/studio look */
.event-card--studio { background: var(--parchment-2); }
.event-card--studio:hover { background: #e5e1da; }
.event-thumb-studio {
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse at 35% 55%, rgba(249,199,79,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(230,57,70,.10) 0%, transparent 45%),
    linear-gradient(160deg, #1a1410 0%, #251d15 100%);
}
.event-body { padding: 28px 28px 24px; flex: 1; display: flex; flex-direction: column; }
.event-meta {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
  flex-wrap: wrap;
}
.event-date-tag {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
}
.event-spots {
  font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
}
.event-spots--open   { background: #edf7f0; color: #1e7a4a; }
.event-spots--few    { background: #fff8ed; color: #b45309; }
.event-spots--full   { background: #f5f5f5; color: var(--ink-3); }
.event-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; color: var(--ink);
  margin-bottom: 10px; line-height: 1.25;
}
.event-desc {
  font-size: 14px; font-weight: 300; color: var(--ink-2);
  line-height: 1.72; flex: 1; margin-bottom: 18px;
}
.event-location {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--ink-3); font-weight: 300; margin-bottom: 20px;
}
.event-location-link { color: var(--ink-3); border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; }
.event-location-link:hover { color: var(--ink); border-color: var(--ink-3); }
.event-rsvp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; background: var(--ink); color: #fff;
  font-size: 13px; font-weight: 400; border: none; border-radius: 2px;
  cursor: pointer; font-family: 'Roboto', sans-serif; letter-spacing: .03em;
  transition: opacity .2s, transform .15s; align-self: flex-start;
}
.event-rsvp-btn:hover { opacity: .8; }
.event-rsvp-btn:active { transform: scale(.97); }
.event-rsvp-btn--done {
  background: #edf7f0; color: #1e7a4a;
  border: 1px solid #b7dfc8;
}
.event-rsvp-btn--done:hover { opacity: 1; background: #e0f3e8; }
.event-rsvp-btn--full { background: var(--hairline); color: var(--ink-3); cursor: not-allowed; }
.event-rsvp-btn--full:hover { opacity: 1; }
.event-rsvp-btn--pending { background: #fff8ed; color: #b45309; border: 1px solid #f4d4a0; cursor: not-allowed; }
.event-rsvp-btn--pending:hover { opacity: 1; }
.event-cancel-link {
  font-size: 12px; color: var(--ink-3); font-weight: 300;
  border-bottom: 1px solid var(--hairline); padding-bottom: 1px;
  margin-left: 12px; cursor: pointer; background: none; border-top: none;
  border-left: none; border-right: none; font-family: 'Roboto', sans-serif;
  transition: color .2s;
}
.event-cancel-link:hover { color: #c8293a; border-color: #c8293a; }

@media (max-width: 900px) { .event-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .event-grid { grid-template-columns: 1fr; } }

/* ── RSVP Modal ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,.55);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
}
.modal-header {
  padding: 28px 32px 0; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 16px;
}
.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--ink); line-height: 1.2;
}
.modal-event-date { font-size: 12px; color: var(--ink-3); font-weight: 300; margin-top: 4px; }
.modal-close {
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--ink-3); flex-shrink: 0; transition: color .2s;
}
.modal-close:hover { color: var(--ink); }
.modal-body { padding: 20px 32px 32px; }
.modal-note {
  font-size: 13px; font-weight: 300; color: var(--ink-3);
  margin-bottom: 20px; line-height: 1.6;
  padding-bottom: 16px; border-bottom: 1px solid var(--hairline);
}

/* ── Dashboard ── */
.dashboard-header {
  padding: calc(80px + 48px) 0 48px;
  background: var(--dark); color: #fff;
  position: relative; overflow: hidden;
}
.dashboard-header-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(114,9,183,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(67,97,238,.07) 0%, transparent 50%);
}
.dashboard-header-inner { position: relative; z-index: 2; }
.dashboard-welcome {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 400; color: #fff;
  line-height: 1.1; margin-bottom: 12px;
}
.dashboard-email { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.45); }
.dashboard-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.rsvp-list { display: flex; flex-direction: column; gap: 2px; }
.rsvp-item {
  display: grid; grid-template-columns: 1fr auto;
  gap: 16px; align-items: start; padding: 28px 32px;
  background: var(--parchment); transition: background .2s;
}
.rsvp-item:hover { background: #ece9e4; }
.rsvp-event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 6px;
}
.rsvp-event-meta {
  font-size: 13px; font-weight: 300; color: var(--ink-3); line-height: 1.65;
}
.rsvp-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.badge {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.badge--confirmed  { background: #edf7f0; color: #1e7a4a; }
.badge--cancelled  { background: #f5f5f5; color: var(--ink-3); }
.badge--pending    { background: #fff8ed; color: #b45309; }
.badge--guests     { background: var(--parchment-2); color: var(--ink-2); }

.empty-state {
  text-align: center; padding: 72px 24px;
}
.empty-state-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  opacity: .18;
}
.empty-state h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400; color: var(--ink); margin-bottom: 10px;
}
.empty-state p {
  font-size: 15px; font-weight: 300; color: var(--ink-2);
  max-width: 340px; margin: 0 auto 28px; line-height: 1.7;
}

/* ── Login / Auth page ── */
.auth-tabs {
  display: flex; gap: 0; margin-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.auth-tab {
  padding: 10px 0; margin-right: 28px;
  font-size: 14px; font-weight: 400; color: var(--ink-3);
  background: none; border: none; cursor: pointer;
  font-family: 'Roboto', sans-serif;
  position: relative; transition: color .2s;
}
.auth-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--ink); transform: scaleX(0);
  transform-origin: left; transition: transform .25s;
}
.auth-tab.active { color: var(--ink); font-weight: 500; }
.auth-tab.active::after { transform: scaleX(1); }
.auth-panel { display: none; }
.auth-panel.active { display: block; }
.auth-or {
  text-align: center; position: relative; margin: 20px 0;
  font-size: 12px; color: var(--ink-3);
}
.auth-or::before {
  content: ''; position: absolute; left: 0; top: 50%; right: 0;
  height: 1px; background: var(--hairline);
}
.auth-or span { background: #fff; padding: 0 12px; position: relative; }
.auth-footer-note {
  font-size: 13px; font-weight: 300; color: var(--ink-3);
  margin-top: 16px; line-height: 1.6;
}
.auth-link {
  color: var(--ink); border-bottom: 1px solid var(--hairline);
  padding-bottom: 1px; cursor: pointer; background: none; border-top: none;
  border-left: none; border-right: none; font: inherit; font-size: 13px;
}
.auth-link:hover { border-color: var(--ink); }
.auth-error {
  padding: 12px 16px; background: #fdf2f2;
  border-left: 2px solid #c8293a;
  font-size: 14px; color: #c8293a; font-weight: 300;
  margin-bottom: 16px; display: none;
}
.auth-error.show { display: block; }
.forgot-link {
  font-size: 12px; color: var(--ink-3); font-weight: 300;
  border-bottom: 1px solid var(--hairline); padding-bottom: 1px;
  cursor: pointer; background: none; border-top: none;
  border-left: none; border-right: none; font-family: 'Roboto', sans-serif;
  transition: color .2s; float: right; margin-top: -14px; margin-bottom: 14px;
}
.forgot-link:hover { color: var(--ink); }
.reset-ok {
  padding: 12px 16px; background: #f0faf4;
  border-left: 2px solid #52b788;
  font-size: 14px; color: #1e7a4a; font-weight: 300;
  margin-bottom: 16px; display: none;
}
.reset-ok.show { display: block; }

/* ── Toast notification ── */
@keyframes toastIn  { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes toastOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(12px); } }
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  padding: 14px 20px; max-width: 320px;
  font-family: 'Roboto', sans-serif; font-size: 14px; font-weight: 400;
  line-height: 1.5; pointer-events: none; opacity: 0;
}
.toast--success { background: #1a1a1a; color: #fff; }
.toast--error   { background: #c8293a; color: #fff; }
.toast--show { animation: toastIn .3s ease forwards; }
.toast:not(.toast--show) { animation: toastOut .3s ease forwards; }
