/* ============================================================
   ck.css — Colour Konnect shared stylesheet
   Design tokens: #0A0908 bg · #F2EFE8 ink · #C0813A amber
   ============================================================ */

/* --- Google Fonts loaded via HTML <head> --- */

/* ---- VARIABLES ---- */
:root {
  --bg: #050404;
  --bg2: #080706;
  --ink: #F2EFE8;
  --ink2: rgba(242,239,232,0.55);
  --acc: #C0813A;
  --rose: #C06070;
  --teal: #4A8B7F;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.10);
  --glass-blur: blur(20px);
  --r-card: 16px;
  --r-pill: 100px;
  --max: 1200px;
  --gap: 24px;
  --ease: cubic-bezier(0.22,1,0.36,1);
  --dur: 0.55s;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; line-height: 1.15; }
.mono, .label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

em { font-style: italic; color: var(--acc); }

/* ---- CUSTOM CURSOR ---- */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, border-radius 0.15s, background 0.2s, opacity 0.3s;
  will-change: transform;
  opacity: 0;
}
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(242,239,232,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s, border-color 0.25s;
  will-change: transform;
  opacity: 0;
}
.cursor-dot.active { opacity: 1; }
.cursor-ring.active { opacity: 1; }
.cursor-dot.is-text { width: 2px; height: 22px; border-radius: 1px; }
.cursor-ring.is-text { opacity: 0; }
.cursor-dot.is-hover { background: var(--acc); width: 12px; height: 12px; }
.cursor-ring.is-hover { border-color: rgba(192,129,58,0.5); }
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ---- TORCH TEXT EFFECT ---- */
:root {
  --torch-x: -999px;
  --torch-y: -999px;
}
.ck-torch {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(
    circle 260px at var(--torch-x) var(--torch-y),
    rgba(230, 185, 115, 0.82) 0%,
    rgba(215, 158,  82, 0.40) 42%,
    rgba(192, 129,  58, 0.14) 68%,
    transparent 100%
  );
  will-change: background;
}
.ck-torch.lit { opacity: 1; }

/* ---- FLIP CARDS — METHOD FRAMEWORK ---- */
.method-fc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; perspective: 1400px; margin-top: 44px; }
.method-fc { aspect-ratio: 1/1.15; position: relative; cursor: none; }
.method-fc-inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform 0.75s cubic-bezier(.16,1,.3,1); }
.method-fc:hover .method-fc-inner { transform: rotateY(180deg); }
.method-fc-front, .method-fc-back { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border: 1px solid var(--glass-border); border-radius: var(--r-card); padding: 36px; display: flex; flex-direction: column; overflow: hidden; }
.method-fc-front { justify-content: flex-end; }
.method-fc-back { transform: rotateY(180deg); justify-content: center; background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
/* Per-card colour tints */
.method-fc-1 .method-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(192,129,58,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(192,129,58,0.18); }
.method-fc-2 .method-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(74,139,127,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(74,139,127,0.18); }
.method-fc-3 .method-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(192,96,112,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(192,96,112,0.18); }
/* Bottom accent line on front */
.method-fc-1 .method-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--acc),transparent); }
.method-fc-2 .method-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--teal),transparent); }
.method-fc-3 .method-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--rose),transparent); }
/* Ghost number */
.method-fc-ghost { font-family:'Playfair Display',serif; font-size:clamp(120px,15vw,180px); color:rgba(242,239,232,0.04); position:absolute; top:-20px; right:-8px; line-height:1; pointer-events:none; user-select:none; }
/* Front content */
.method-fc-num { font-family:'Space Mono',monospace; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--acc); display:block; margin-bottom:14px; }
.method-fc-word { font-family:'Playfair Display',serif; font-style:italic; font-size:clamp(30px,3.5vw,50px); color:var(--ink); line-height:1.05; display:block; margin-bottom:20px; }
.method-fc-hint { font-family:'Space Mono',monospace; font-size:9px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(242,239,232,0.25); }
/* Back content */
.method-fc-back-num { font-family:'Space Mono',monospace; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--acc); display:block; margin-bottom:18px; opacity:0.8; }
.method-fc-back p { font-family:'DM Sans',sans-serif; font-weight:300; font-size:14px; color:var(--ink2); line-height:1.82; margin:0; }
.method-fc-quote { font-family:'Playfair Display',serif; font-style:italic; font-size:13px; color:rgba(192,129,58,0.75); margin-top:18px; display:block; border-top:1px solid var(--glass-border); padding-top:14px; }
@media (max-width:900px) { .method-fc-grid { grid-template-columns:1fr; } .method-fc { aspect-ratio:auto; min-height:260px; } }

/* ---- AMBIENT ORBS ---- */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  will-change: transform;
}
.orb-amber {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(200,120,40,0.28) 0%, transparent 70%);
  top: -240px; left: -240px;
}
.orb-rose {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(210,60,110,0.22) 0%, transparent 70%);
  bottom: -180px; right: -180px;
}
.orb-teal {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(30,180,150,0.20) 0%, transparent 70%);
  top: calc(45% - 240px);
  left: calc(40% - 240px);
}
.orb-violet {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(110,60,240,0.26) 0%, transparent 70%);
  top: -5%; right: 5%;
}
.orb-blue {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(40,90,230,0.20) 0%, transparent 70%);
  top: 55%; right: -8%;
}
.orb-pink {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(190,50,180,0.18) 0%, transparent 70%);
  bottom: 20%; left: 5%;
}

/* ---- NAV ---- */
.ck-nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 900px;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(5,4,4,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(48px) saturate(220%) brightness(1.1);
  -webkit-backdrop-filter: blur(48px) saturate(220%) brightness(1.1);
  border-radius: var(--r-pill);
  padding: 10px 16px 10px 20px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 8px 48px rgba(0,0,0,0.8),
    0 1px 0 rgba(255,255,255,0.10) inset;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  mix-blend-mode: screen;
  border-radius: 4px;
}
.nav-wordmark {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink2);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.06); }
.nav-links .nav-cta a {
  background: var(--acc);
  color: var(--bg);
  padding: 8px 18px;
  font-weight: 700;
}
.nav-links .nav-cta a:hover { background: #d4923f; }
.nav-hamburger {
  display: none;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--ink);
  cursor: none;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: auto;
}
.ham-icon { display: flex; flex-direction: column; gap: 4px; width: 20px; }
.ham-icon span { display: block; height: 1px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.is-open .ham-label::after { content: 'Close'; }
.nav-hamburger.is-open .ham-label { font-size: 0; }
.nav-hamburger.is-open .ham-label::after { font-size: 11px; }
.nav-hamburger.is-open .ham-icon span:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
.nav-hamburger.is-open .ham-icon span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open .ham-icon span:nth-child(3) { transform: rotate(-45deg) translate(3px, -3px); }

/* ---- SECTIONS ---- */
.section { position: relative; z-index: 1; padding: 108px 0; }
.section > .container > .header-b,
.section > .container > .header-a { margin-bottom: 72px; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

.kicker {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 16px;
  display: block;
}
.section-header { margin-bottom: 60px; }
.section-header h2 { font-size: clamp(32px, 5vw, 52px); }
.section-header p { margin-top: 16px; color: var(--ink2); max-width: 560px; font-size: 17px; }

/* ---- GLASSMORPHISM CARD ---- */
.glass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.15);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.15);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 80px rgba(0,0,0,0.6),
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(255,255,255,0.04) inset;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}
.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192,129,58,0.45);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 80px rgba(0,0,0,0.6),
    0 1px 0 rgba(255,255,255,0.14) inset,
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(192,129,58,0.12);
}

/* ---- GRADIENT TEXT ---- */
.grad-text {
  background: linear-gradient(125deg, #D49A56 0%, #C06070 30%, #8B5CF6 60%, #3CB8A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  border: none;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }

/* Shine sweep — slides left-to-right on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.16) 50%,
    transparent 70%
  );
  background-size: 300% 100%;
  background-position: 150% 0;
  pointer-events: none;
  transition: background-position 0.55s ease;
}
.btn:hover::after {
  background-position: -50% 0;
}

.btn-amber {
  background: linear-gradient(120deg, #C0813A 0%, #C0813A 40%, #C06070 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: var(--bg);
  transition: background-position 0.5s ease, box-shadow 0.35s, transform 0.3s var(--ease);
}
.btn-amber:hover {
  background-position: 100% 50%;
  box-shadow: 0 6px 32px rgba(192,96,112,0.45), 0 0 0 1px rgba(192,96,112,0.22);
}

.btn-glass {
  background: linear-gradient(120deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.06) 100%);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  transition: background 0.5s ease, border-color 0.35s, box-shadow 0.35s, transform 0.3s var(--ease);
}
.btn-glass:hover {
  background: linear-gradient(120deg, rgba(192,129,58,0.26) 0%, rgba(74,139,127,0.20) 100%);
  border-color: rgba(192,129,58,0.6);
  box-shadow: 0 4px 28px rgba(192,129,58,0.22);
}

/* ---- SCROLL REVEAL ---- */
.r {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.r.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.05s; }
.d2 { transition-delay: 0.12s; }
.d3 { transition-delay: 0.19s; }
.d4 { transition-delay: 0.26s; }
.d5 { transition-delay: 0.33s; }
.d6 { transition-delay: 0.40s; }

/* ---- MARQUEE ---- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 16px 0;
  background: rgba(0,0,0,0.2);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink2);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}
.marquee-item::after {
  content: '◆';
  font-size: 7px;
  color: var(--acc);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity:1; transform:scale(1); }
  50%       { opacity:0.4; transform:scale(0.75); }
}

/* ---- FOOTER ---- */
.ck-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--glass-border);
  padding: 64px 0 32px;
  background: rgba(0,0,0,0.25);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 48px;
  align-items: start;
}
.footer-brand .nav-wordmark { font-size: 14px; margin-top: 12px; display: block; }
.footer-tagline { margin-top: 10px; color: var(--ink2); font-size: 14px; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--ink2);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-social { display: flex; flex-direction: column; gap: 12px; }
.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink2);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--ink); }
.footer-social svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding: 24px 40px 0;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--ink2);
  letter-spacing: 0.05em;
}
.heart { color: var(--acc); }

/* ---- FAQ ACCORDION ---- */
.faq-item {
  border-bottom: 1px solid var(--glass-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  cursor: none;
  text-align: left;
  gap: 16px;
}
.faq-icon {
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  color: var(--acc);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease);
}
.faq-answer p { padding-bottom: 24px; color: var(--ink2); line-height: 1.75; }

/* ---- PRICING ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-card);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: rgba(192,129,58,0.08);
  border-color: rgba(192,129,58,0.35);
  box-shadow: 0 0 60px rgba(192,129,58,0.08);
}
.pricing-tier { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--acc); margin-bottom: 8px; }
.pricing-name { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 6px; }
.pricing-from { font-size: 12px; color: var(--ink2); margin-bottom: 20px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 42px; margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink2); margin-bottom: 10px; line-height: 1.5; }
.pricing-features li::before { content: '→'; color: var(--acc); flex-shrink: 0; }
.pricing-note { font-size: 12px; color: var(--ink2); border-top: 1px solid var(--glass-border); padding-top: 16px; margin-top: 16px; }

/* ---- PROCESS STEPS ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--glass-border); }
.process-step {
  background: var(--bg);
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
}
.process-num {
  position: absolute;
  top: 20px; right: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(242,239,232,0.04);
  line-height: 1;
  pointer-events: none;
}
.process-step h3 { font-size: 20px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--ink2); line-height: 1.6; }

/* ---- CTA STRIP ---- */
.cta-strip {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}
.cta-strip h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 12px; }
.cta-strip p { color: var(--ink2); margin-bottom: 36px; font-size: 17px; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---- DIRECTION A HEADERS ---- */
.header-a {
  position: relative;
  overflow: hidden;
}
.header-a .ghost-num {
  position: absolute;
  right: -10px;
  top: -20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(100px, 16vw, 200px);
  font-weight: 700;
  font-style: italic;
  color: rgba(242,239,232,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.header-a .kicker {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(192,129,58,0.9);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.header-a .kicker::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(192,129,58,0.9), rgba(192,96,112,0.5));
  flex-shrink: 0;
  border-radius: 2px;
}
.header-a .headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 128px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.042em;
  color: #F2EFE8;
  position: relative;
  z-index: 1;
}
.header-a .headline em {
  font-style: italic;
  background: linear-gradient(125deg, #D49A56 0%, #C06070 35%, #8B5CF6 70%, #3CB8A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-a .ln { display: block; }

/* ---- DIRECTION B HEADERS ---- */
.header-b {
  position: relative;
}
.header-b .kicker {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(192,129,58,0.9);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.header-b .kicker::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(192,129,58,0.9), rgba(192,96,112,0.5));
  flex-shrink: 0;
  border-radius: 2px;
}
.header-b .headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.038em;
  color: #F2EFE8;
  margin-bottom: 0;
}
.header-b .headline-stroke {
  display: block;
  height: 2px;
  width: 72px;
  background: linear-gradient(90deg, #C0813A 0%, #8B5CF6 70%, transparent 100%);
  margin-top: 26px;
  border-radius: 2px;
}
.header-b .sub-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 300;
  color: rgba(242,239,232,0.5);
  margin-top: 28px;
  line-height: 1.6;
  letter-spacing: -0.005em;
}
.header-b .sub-headline em {
  font-style: italic;
  color: rgba(192,129,58,0.9);
  font-weight: 400;
}

/* ---- COLOUR SPECTRUM STRIPE ---- */
.colour-stripe { height: 3px; background: linear-gradient(90deg, var(--acc) 0%, var(--teal) 40%, var(--rose) 70%, rgba(130,100,200,0.85) 100%); opacity: 0.65; margin: 0; }
.colour-stripe + .section { padding-top: 108px !important; }

/* ---- SCROLL CAROUSEL ARROWS ---- */
.scroll-carousel { position: relative; }
.scroll-carousel .scroll-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); color: var(--ink); font-family: 'Playfair Display', serif; font-size: 22px; line-height: 1; cursor: none; display: flex; align-items: center; justify-content: center; transition: background 0.25s, border-color 0.25s, transform 0.25s; }
.scroll-carousel .scroll-btn:hover { background: rgba(192,129,58,0.15); border-color: rgba(192,129,58,0.4); transform: translateY(-50%) scale(1.08); }
.scroll-carousel .scroll-btn-prev { left: 8px; }
.scroll-carousel .scroll-btn-next { right: 8px; }
.scroll-carousel .scroll-btn:disabled { opacity: 0.25; pointer-events: none; }

/* ---- PROCESS FLIP CARDS (Studio) ---- */
.proc-fc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; perspective: 1400px; margin-top: 44px; }
.proc-fc { height: 300px; position: relative; }
.proc-fc-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 0.7s cubic-bezier(.16,1,.3,1); }
.proc-fc:hover .proc-fc-inner { transform: rotateY(180deg); }
.proc-fc-front, .proc-fc-back { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border: 1px solid var(--glass-border); border-radius: var(--r-card); padding: 32px 28px; display: flex; flex-direction: column; overflow: hidden; }
.proc-fc-front { justify-content: flex-end; }
.proc-fc-back { transform: rotateY(180deg); justify-content: center; background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.proc-fc-1 .proc-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(192,129,58,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(192,129,58,0.18); }
.proc-fc-2 .proc-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(74,139,127,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(74,139,127,0.18); }
.proc-fc-3 .proc-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(192,96,112,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(192,96,112,0.18); }
.proc-fc-4 .proc-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(130,100,200,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(130,100,200,0.18); }
.proc-fc-1 .proc-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--acc),transparent); }
.proc-fc-2 .proc-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--teal),transparent); }
.proc-fc-3 .proc-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--rose),transparent); }
.proc-fc-4 .proc-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,rgba(130,100,200,0.85),transparent); }
.proc-fc-ghost { font-family:'Playfair Display',serif; font-size:clamp(100px,12vw,160px); color:rgba(242,239,232,0.04); position:absolute; top:-20px; right:-8px; line-height:1; pointer-events:none; user-select:none; }
.proc-fc-num { font-family:'Space Mono',monospace; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--acc); display:block; margin-bottom:12px; }
.proc-fc-word { font-family:'Playfair Display',serif; font-style:italic; font-size:clamp(24px,2.5vw,38px); color:var(--ink); line-height:1.1; display:block; margin-bottom:16px; }
.proc-fc-hint { font-family:'Space Mono',monospace; font-size:9px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(242,239,232,0.25); }
.proc-fc-back-num { font-family:'Space Mono',monospace; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--acc); display:block; margin-bottom:16px; opacity:0.8; }
.proc-fc-back p { font-family:'DM Sans',sans-serif; font-weight:300; font-size:13px; color:var(--ink2); line-height:1.82; margin:0; }
.proc-fc-quote { font-family:'Playfair Display',serif; font-style:italic; font-size:12px; color:rgba(192,129,58,0.75); margin-top:16px; display:block; border-top:1px solid var(--glass-border); padding-top:12px; }
@media (max-width:900px) { .proc-fc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:600px) { .proc-fc-grid { grid-template-columns: 1fr; } .proc-fc { height: 260px; } }

/* ---- WORKSHOP FLIP CARDS (Art) ---- */
.wk-fc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; perspective: 1400px; margin-top: 48px; }
.wk-fc { height: 320px; position: relative; }
.wk-fc-inner { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform 0.7s cubic-bezier(.16,1,.3,1); }
.wk-fc:hover .wk-fc-inner { transform: rotateY(180deg); }
.wk-fc-front, .wk-fc-back { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border: 1px solid var(--glass-border); border-radius: var(--r-card); padding: 32px 28px; display: flex; flex-direction: column; overflow: hidden; }
.wk-fc-front { justify-content: flex-end; }
.wk-fc-back { transform: rotateY(180deg); justify-content: center; background: var(--glass-bg); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
.wk-fc-1 .wk-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(192,129,58,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(192,129,58,0.18); }
.wk-fc-2 .wk-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(74,139,127,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(74,139,127,0.18); }
.wk-fc-3 .wk-fc-front { background: radial-gradient(ellipse 80% 60% at 10% 100%, rgba(192,96,112,0.18) 0%, rgba(5,4,4,0.88) 65%); border-color: rgba(192,96,112,0.18); }
.wk-fc-1 .wk-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--acc),transparent); }
.wk-fc-2 .wk-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--teal),transparent); }
.wk-fc-3 .wk-fc-front::after { content:''; position:absolute; bottom:0;left:0;right:0;height:2px; background:linear-gradient(90deg,var(--rose),transparent); }
.wk-fc-ghost { font-family:'Playfair Display',serif; font-size:clamp(90px,10vw,130px); color:rgba(242,239,232,0.04); position:absolute; top:-10px; right:-8px; line-height:1; pointer-events:none; user-select:none; }
.wk-fc-num { font-family:'Space Mono',monospace; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--acc); display:block; margin-bottom:12px; }
.wk-fc-word { font-family:'Playfair Display',serif; font-style:italic; font-size:clamp(22px,2.2vw,34px); color:var(--ink); line-height:1.1; display:block; margin-bottom:8px; }
.wk-fc-sub { font-family:'Space Mono',monospace; font-size:10px; color:var(--acc); letter-spacing:0.06em; display:block; margin-bottom:16px; }
.wk-fc-hint { font-family:'Space Mono',monospace; font-size:9px; letter-spacing:0.12em; text-transform:uppercase; color:rgba(242,239,232,0.25); }
.wk-fc-back-num { font-family:'Space Mono',monospace; font-size:10px; letter-spacing:0.14em; text-transform:uppercase; color:var(--acc); display:block; margin-bottom:14px; opacity:0.8; }
.wk-fc-back p { font-family:'DM Sans',sans-serif; font-weight:300; font-size:13px; color:var(--ink2); line-height:1.82; margin:0 0 10px; }
.wk-fc-meta { font-family:'Space Mono',monospace; font-size:11px; color:var(--acc); display:block; margin-top:12px; border-top:1px solid var(--glass-border); padding-top:12px; }
@media (max-width:900px) { .wk-fc-grid { grid-template-columns: 1fr; } .wk-fc { height: 280px; } }

/* ---- SERVICE SECTION HEADER (index) ---- */
.svc-section { position: relative; }
.svc-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(192,129,58,0.04) 0%, transparent 70%); pointer-events: none; }
.svc-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; padding-bottom: 8px; border-bottom: 1px solid var(--glass-border); }
.svc-header-left { flex: 1; }
.svc-header-right { flex: 1; max-width: 420px; display: flex; flex-direction: column; gap: 16px; padding-bottom: 6px; }
.svc-header-count { font-family: 'Playfair Display', serif; font-size: 72px; line-height: 0.9; color: var(--acc); letter-spacing: -0.04em; }
.svc-header-count span { font-style: italic; }
.svc-header-para { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 15px; color: rgba(242,239,232,0.58); line-height: 1.72; margin: 0; }
@media (max-width: 860px) { .svc-header { flex-direction: column; align-items: flex-start; gap: 24px; } .svc-header-right { max-width: 100%; } }

/* ---- SERVICE TILE GRID (index) ---- */
.svc-tile-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-tile-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--ink); position: relative; overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; border-top: 2px solid transparent; }
.svc-tile-card::after { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.svc-amber::after { background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(192,129,58,0.09) 0%, transparent 70%); }
.svc-teal::after  { background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(74,139,127,0.09) 0%, transparent 70%); }
.svc-rose::after  { background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(192,96,112,0.09) 0%, transparent 70%); }
.svc-tile-card:hover { transform: translateY(-4px); border-color: rgba(192,129,58,0.35); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.svc-teal.svc-tile-card:hover  { border-color: rgba(74,139,127,0.35); }
.svc-rose.svc-tile-card:hover  { border-color: rgba(192,96,112,0.35); }
.svc-tile-card:hover::after { opacity: 1; }
.svc-amber { border-top-color: var(--acc); }
.svc-teal  { border-top-color: var(--teal); }
.svc-rose  { border-top-color: var(--rose); }
.svc-tile-n { position: absolute; top: 16px; right: 20px; font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 500; color: rgba(192,129,58,0.06); line-height: 1; letter-spacing: -0.04em; pointer-events: none; }
.svc-teal .svc-tile-n { color: rgba(74,139,127,0.08); }
.svc-rose .svc-tile-n { color: rgba(192,96,112,0.08); }
.svc-tile-label { font-family: 'Playfair Display', serif; font-size: 21px; line-height: 1.25; margin-bottom: 4px; }
.svc-tile-sub { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tile-sub-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink2); border: 1px solid var(--glass-border); border-radius: var(--r-pill); padding: 4px 10px; }
.svc-tile-reveal { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 14px; color: var(--ink2); line-height: 1.65; flex: 1; }
.svc-tile-arr { font-size: 16px; color: var(--acc); transition: transform 0.25s; align-self: flex-end; }
.svc-teal .svc-tile-arr { color: var(--teal); }
.svc-rose .svc-tile-arr { color: var(--rose); }
.svc-tile-card:hover .svc-tile-arr { transform: translate(3px, -3px); }
@media (max-width: 900px) { .svc-tile-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px)  { .svc-tile-grid { grid-template-columns: 1fr; } }

/* ---- ART INTRO ROW (index) ---- */
.art-intro-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; padding-bottom: 40px; }
.art-intro-facts { display: flex; gap: 40px; flex-shrink: 0; }
.art-fact { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.art-fact-num { font-family: 'Playfair Display', serif; font-size: 28px; line-height: 1; }
.art-fact-label { font-family: 'Space Mono', monospace; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,239,232,0.38); }
@media (max-width: 680px) { .art-intro-row { flex-direction: column; align-items: flex-start; } .art-intro-facts { align-self: flex-start; } }

/* ---- ROTATING GALLERY (index) ---- */
.gal-wrap { display: flex; align-items: center; justify-content: center; gap: 24px; padding: 0 40px; max-width: var(--max); margin: 0 auto; }
.gal-stage { position: relative; width: 320px; height: 380px; flex-shrink: 0; perspective: 1000px; }
.gal-item { position: absolute; inset: 0; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--glass-border); cursor: pointer; transition: transform 0.55s cubic-bezier(0.22,1,0.36,1), opacity 0.55s, box-shadow 0.55s; will-change: transform, opacity; }
.gal-img { width: 100%; height: 100%; }
.gal-item[data-pos="0"] { transform: translateX(0) scale(1) rotateY(0); opacity: 1; z-index: 5; box-shadow: 0 24px 64px rgba(0,0,0,0.6); }
.gal-item[data-pos="1"] { transform: translateX(280px) scale(0.84) rotateY(-10deg); opacity: 0.55; z-index: 4; }
.gal-item[data-pos="2"] { transform: translateX(480px) scale(0.72) rotateY(-16deg); opacity: 0.28; z-index: 3; }
.gal-item[data-pos="-1"] { transform: translateX(-280px) scale(0.84) rotateY(10deg); opacity: 0.55; z-index: 4; }
.gal-item[data-pos="-2"] { transform: translateX(-480px) scale(0.72) rotateY(16deg); opacity: 0.28; z-index: 3; }
.gal-item[data-pos="hidden"] { opacity: 0; z-index: 0; pointer-events: none; transform: scale(0.6); }
.gal-arrow { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50%; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 22px; color: var(--ink); transition: background 0.2s, border-color 0.2s; flex-shrink: 0; }
.gal-arrow:hover { background: rgba(192,129,58,0.15); border-color: var(--acc); }
.gal-caption-bar { display: flex; align-items: center; gap: 20px; justify-content: center; padding-top: 20px; }
.gal-cap-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--acc); }
.gal-cap-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; }
.gal-cap-link { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(242,239,232,0.5); border-bottom: 1px solid rgba(242,239,232,0.2); padding-bottom: 2px; transition: color 0.2s; }
.gal-cap-link:hover { color: var(--acc); border-color: var(--acc); }
@media (max-width: 700px) { .gal-wrap { padding: 0 24px; gap: 16px; } .gal-stage { width: 260px; height: 300px; } .gal-item[data-pos="1"] { transform: translateX(220px) scale(0.82) rotateY(-10deg); } .gal-item[data-pos="-1"] { transform: translateX(-220px) scale(0.82) rotateY(10deg); } .gal-item[data-pos="2"], .gal-item[data-pos="-2"] { opacity: 0; } }

/* ---- OFFERINGS VISIBLE GRID (art page) ---- */
.ofr-visible-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.ofr-tile { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-card); padding: 32px; display: flex; flex-direction: column; gap: 12px; text-decoration: none; color: var(--ink); position: relative; overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s; border-top: 2px solid transparent; }
.ofr-tile::after { content:''; position:absolute; inset:0; opacity:0; transition:opacity 0.3s; pointer-events:none; }
.ofr-amber::after { background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(192,129,58,0.09) 0%, transparent 70%); }
.ofr-teal::after  { background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(74,139,127,0.09) 0%, transparent 70%); }
.ofr-rose::after  { background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(192,96,112,0.09) 0%, transparent 70%); }
.ofr-tile:hover { transform: translateY(-4px); border-color: rgba(192,129,58,0.35); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.ofr-teal.ofr-tile:hover  { border-color: rgba(74,139,127,0.35); }
.ofr-rose.ofr-tile:hover  { border-color: rgba(192,96,112,0.35); }
.ofr-tile:hover::after { opacity: 1; }
.ofr-amber { border-top-color: var(--acc); }
.ofr-teal  { border-top-color: var(--teal); }
.ofr-rose  { border-top-color: var(--rose); }
.ofr-tile-wide { grid-column: span 3; flex-direction: row; align-items: center; gap: 40px; }
.ofr-tile-wide .ofr-tile-desc { margin: 0; flex: 1; }
.ofr-tile-wide .ofr-tile-reveal { flex: 1; }
.ofr-tile-num { position: absolute; top: 16px; right: 20px; font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 500; color: rgba(192,129,58,0.06); line-height: 1; letter-spacing: -0.04em; pointer-events: none; }
.ofr-teal .ofr-tile-num  { color: rgba(74,139,127,0.08); }
.ofr-rose .ofr-tile-num  { color: rgba(192,96,112,0.08); }
.ofr-tile-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--acc); border: 1px solid rgba(192,129,58,0.25); border-radius: var(--r-pill); padding: 4px 10px; display: inline-block; align-self: flex-start; }
.ofr-teal .ofr-tile-tag  { color: var(--teal); border-color: rgba(74,139,127,0.25); }
.ofr-rose .ofr-tile-tag  { color: var(--rose); border-color: rgba(192,96,112,0.25); }
.ofr-tile-name { font-family: 'Playfair Display', serif; font-size: 21px; line-height: 1.2; margin-bottom: 4px; }
.ofr-tile-desc { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 14px; color: var(--ink2); line-height: 1.65; flex: 1; }
.ofr-tile-reveal { display: none; }
.ofr-tile-arrow { font-size: 16px; color: var(--acc); transition: transform 0.25s; align-self: flex-end; }
.ofr-teal .ofr-tile-arrow  { color: var(--teal); }
.ofr-rose .ofr-tile-arrow  { color: var(--rose); }
.ofr-tile:hover .ofr-tile-arrow { transform: translate(3px, -3px); }
@media (max-width: 900px) { .ofr-visible-grid { grid-template-columns: repeat(2,1fr); } .ofr-tile-wide { grid-column: span 2; } }
@media (max-width: 540px)  { .ofr-visible-grid { grid-template-columns: 1fr; } .ofr-tile-wide { grid-column: 1; flex-direction: column; } }

/* ---- CONVICTION CAROUSEL (index) ---- */
.cv-carousel { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.cv-stage { position: relative; width: 100%; height: 340px; display: flex; align-items: center; justify-content: center; }
.cv-card { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 56px 80px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-card); backdrop-filter: var(--glass-blur); opacity: 0; pointer-events: none; transform: translateX(60px) scale(0.97); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.cv-card.cv-card-active { opacity: 1; pointer-events: auto; transform: translateX(0) scale(1); }
.cv-card.cv-card-exit-left { opacity: 0; transform: translateX(-60px) scale(0.97); }
.cv-ghost-char { font-family: 'Playfair Display', serif; font-size: clamp(80px, 14vw, 160px); font-weight: 500; color: rgba(192,129,58,0.06); line-height: 1; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; user-select: none; letter-spacing: -0.04em; }
.cv-quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(20px, 2.8vw, 36px); line-height: 1.5; color: var(--ink); max-width: 720px; position: relative; z-index: 1; margin: 0; }
.cv-nav { display: flex; align-items: center; gap: 20px; }
.cv-btn { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; color: var(--ink); transition: background 0.2s, border-color 0.2s; }
.cv-btn:hover { background: rgba(192,129,58,0.15); border-color: var(--acc); }
.cv-dots { display: flex; gap: 8px; }
.cv-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(242,239,232,0.25); transition: background 0.3s, transform 0.3s; }
.cv-dot.cv-dot-active { background: var(--acc); transform: scale(1.4); }
.cv-count { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: rgba(242,239,232,0.4); margin-left: 8px; }
@media (max-width: 700px) { .cv-card { padding: 40px 28px; } .cv-quote { font-size: 20px; } }

/* ---- OFFERINGS CAROUSEL (art page) ---- */
.ofr-carousel { display: flex; flex-direction: column; align-items: stretch; gap: 28px; }
.ofr-track-wrap { overflow: hidden; border-radius: var(--r-card); }
.ofr-track { display: flex; transition: transform 0.5s var(--ease); will-change: transform; }
.ofr-slide { flex: 0 0 100%; padding: 52px 60px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-card); backdrop-filter: var(--glass-blur); display: flex; flex-direction: column; align-items: flex-start; gap: 16px; min-height: 320px; }
.ofr-num { font-family: 'Playfair Display', serif; font-size: clamp(64px, 10vw, 120px); font-weight: 500; color: rgba(192,129,58,0.08); line-height: 0.9; letter-spacing: -0.04em; margin-bottom: -8px; }
.ofr-title { font-family: 'Playfair Display', serif; font-size: clamp(28px, 3.5vw, 48px); line-height: 1.1; margin: 0; }
.ofr-body { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 15px; color: var(--ink2); line-height: 1.75; max-width: 640px; margin: 0; }
.ofr-controls { display: flex; align-items: center; justify-content: center; gap: 16px; }
.ofr-btn { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; color: var(--ink); transition: background 0.2s, border-color 0.2s; }
.ofr-btn:hover { background: rgba(192,129,58,0.15); border-color: var(--acc); }
.ofr-dots { display: flex; gap: 8px; }
.ofr-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(242,239,232,0.22); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.ofr-dot.ofr-dot-active { background: var(--acc); transform: scale(1.5); }
.ofr-counter { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.12em; color: rgba(242,239,232,0.35); text-align: center; }
@media (max-width: 700px) { .ofr-slide { padding: 36px 28px; } }

/* ---- WORKSHOP BOOKING CARDS ---- */
.wk-book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.wk-book-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: var(--r-card); padding: 0; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.35s var(--ease), box-shadow 0.35s; }
.wk-book-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.wk-book-amber { border-top: 3px solid var(--acc); }
.wk-book-teal  { border-top: 3px solid var(--teal); }
.wk-book-rose  { border-top: 3px solid var(--rose); }
.wk-book-top { display: flex; justify-content: space-between; align-items: center; padding: 18px 24px 0; }
.wk-book-format { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--acc); }
.wk-book-teal .wk-book-format { color: var(--teal); }
.wk-book-rose .wk-book-format { color: var(--rose); }
.wk-book-seats { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(242,239,232,0.35); }
.wk-book-title { font-family: 'Playfair Display', serif; font-size: clamp(20px, 2vw, 28px); padding: 14px 24px 0; line-height: 1.15; }
.wk-book-meta-row { display: flex; flex-wrap: wrap; gap: 6px 14px; padding: 14px 24px; border-bottom: 1px solid var(--glass-border); }
.wk-book-meta-item { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.06em; color: rgba(242,239,232,0.55); }
.wk-book-desc { font-family: 'DM Sans', sans-serif; font-weight: 300; font-size: 14px; color: var(--ink2); line-height: 1.72; padding: 18px 24px; flex: 1; }
.wk-book-footer { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px 20px; border-top: 1px solid var(--glass-border); }
.wk-book-price { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: rgba(242,239,232,0.40); }
.btn-sm { padding: 10px 20px !important; font-size: 10px !important; letter-spacing: 0.08em; }
@media (max-width: 900px) { .wk-book-grid { grid-template-columns: 1fr; } }

/* ---- CURSOR ORBS FALLBACK — positions preserved for JS ---- */
/* JS moves orbs via transform; base position set in HTML classes */

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .ck-nav { top: 12px; width: calc(100% - 24px); }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: rgba(10,9,8,0.97); backdrop-filter: blur(20px); justify-content: center; align-items: center; gap: 8px; z-index: 1100; }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { font-size: 14px; padding: 16px; display: block; }
  .nav-hamburger { display: flex; z-index: 1101; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .container { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .footer-bottom { padding: 24px 24px 0; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* ---- MOBILE NAV CLOSE BUTTON ---- */
.nav-close-btn {
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 1200;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-close-btn.is-open { display: flex; }
.nav-close-btn:active { background: rgba(255,255,255,0.20); }
@media (min-width: 769px) {
  .nav-close-btn { display: none !important; }
}
@media (max-width: 900px) {
  .marquee-wrap { opacity: 0.55; }
  .marquee-item { color: rgba(242,239,232,0.5); }
}

/* ---- SCROLL FLOATING TYPOGRAPHY (index page, injected by ck.js) ---- */
/* Elements are created in JS — no CSS needed beyond what's inlined */

/* ---- HERO DARK OVERLAY (50% opacity, all pages) ---- */
.hero-above::before,
.page-hero::before,
.art-hero-full::before,
.philosophy-hero::before,
.journal-hero::before,
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  pointer-events: none;
  z-index: 1;
}

/* ── Breathing Space Pass ─────────────────────── */

section {
  scroll-margin-top: 80px;
}

.sh,
.sec-head,
.svc-head,
.art-head {
  padding-top: 64px;
  padding-bottom: 48px;
}

.svc-row,
.svr {
  padding-top: 32px;
  padding-bottom: 32px;
  min-height: 80px;
}

.glass-card,
.svc-card,
.ws-card,
.kit-card,
.price-card {
  padding: 48px 40px;
}

.a-meta,
.art-meta {
  padding-top: 18px;
  padding-bottom: 10px;
}

.mq-wrap {
  padding: 20px 0;
}

.hero-bar,
.hbar {
  padding-top: 22px;
  padding-bottom: 22px;
}

.about-l,
.abl,
.about-r,
.abr {
  padding: 96px 52px;
}

.ctl,
.contact-l,
.ctr,
.contact-r {
  padding: 96px 52px;
}

#footer {
  padding-top: 80px;
  padding-bottom: 56px;
}

.about-stats,
.abst {
  margin-top: 40px;
  padding-top: 32px;
}

.art-pull-quote,
.about-quote,
.abnote {
  padding: 28px 32px;
}

.visual-break {
  width: 100%;
  height: clamp(120px, 18vh, 240px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(242,239,232,0.06);
  border-bottom: 1px solid rgba(242,239,232,0.06);
}

#services + #art {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.journal-card,
.post-card {
  padding: 36px 32px;
}

.fg,
.form-group {
  margin-bottom: 28px;
}

.fi,
.fta,
.fse,
.form-input,
.form-textarea {
  padding-top: 12px;
  padding-bottom: 12px;
}

#cta-strip,
.ctas {
  padding: 100px 52px;
}

@media (max-width: 900px) {
  .about-l, .abl,
  .about-r, .abr,
  .ctl, .ctr,
  .contact-l, .contact-r {
    padding: 56px 24px;
  }

  .glass-card,
  .svc-card,
  .ws-card,
  .kit-card,
  .price-card {
    padding: 32px 24px;
  }

  #cta-strip, .ctas {
    padding: 64px 24px;
  }

  .sh, .sec-head, .svc-head, .art-head {
    padding-top: 44px;
    padding-bottom: 32px;
  }

  .svc-row, .svr {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  #footer {
    padding-top: 56px;
    padding-bottom: 40px;
  }
}
