/* ============================================================
   YOSUN STUDIOS — Main Stylesheet v2
   Palette: Warm Cream & Charcoal — cohesive with logo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&family=DM+Mono:wght@300;400&display=swap');

/* ─── TOKENS ────────────────────────────────────────────────── */
:root {
  /* Cream & charcoal palette */
  --cream:        #F5F0E8;   /* Primary background */
  --cream-off:    #EDE8DF;   /* Subtle section contrast */
  --cream-mid:    #E0D9CE;   /* Borders, dividers */
  --charcoal:     #1E1F24;   /* Main text, logo color */
  --dark:         #111214;   /* Hero, CTA, footer backgrounds */
  --dark-mid:     #191A1F;   /* Dark section mid variant */
  --gold:         #C9A96E;   /* Accent — unchanged */
  --gold-dark:    #A8844A;   /* Hover gold */
  --gold-tint:    #F0E8D5;   /* Very light gold wash */
  --warm-grey:    #7A7269;   /* Supporting text */
  --warm-grey-lt: #B0A89E;   /* Captions, borders */
  --white:        #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --radius:          2px;
  --transition:      0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --max-width:       1280px;
  --section-pad:     clamp(80px, 10vw, 136px);
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: var(--font-body); }
ul, ol { list-style: none; }

/* ─── PROGRESS BAR ───────────────────────────────────────────── */
#progress-bar {
  position: fixed; top: 0; left: 0;
  height: 1.5px; background: var(--gold);
  width: 0; z-index: 9999; transition: width 0.1s linear;
}

/* ─── CUSTOM CURSOR ──────────────────────────────────────────── */
#cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--charcoal); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, background 0.25s ease;
}
#cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(42,37,32,0.25); border-radius: 50%;
  pointer-events: none; z-index: 9997;
  transform: translate(-50%,-50%);
  transition: transform 0.42s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
body.cursor-hover #cursor-dot { transform: translate(-50%,-50%) scale(2.5); background: var(--gold); }
body.cursor-hover #cursor-ring { width: 54px; height: 54px; border-color: rgba(201,169,110,0.5); }
/* Adjust cursor for dark sections */
.hero #cursor-dot, .dark-section #cursor-dot { background: var(--cream); }

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px clamp(24px, 5vw, 72px);
  display: flex; align-items: center; justify-content: space-between;
  transition: background var(--transition), padding var(--transition),
              box-shadow var(--transition), border-color var(--transition);
}
/* On dark hero — transparent with light text */
.nav          { --nav-text: rgba(245,240,232,0.8); --nav-logo-c: var(--cream); }
/* Scrolled onto cream — cream background, dark text */
.nav.on-cream {
  background: rgba(245,240,232,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 18px clamp(24px, 5vw, 72px);
  box-shadow: 0 1px 0 rgba(42,37,32,0.08);
  --nav-text: rgba(42,37,32,0.65);
  --nav-logo-c: var(--charcoal);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--nav-logo-c);
  transition: color var(--transition);
}
.nav-logo-waves {
  width: 36px; height: 16px;
  color: var(--nav-logo-c);
  transition: color var(--transition);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--nav-logo-c);
  transition: color var(--transition);
}
.nav-links { display: flex; align-items: center; gap: clamp(20px, 3vw, 44px); }
.nav-link {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--nav-text);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--nav-logo-c); }
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; }
.nav.on-cream .nav-link.active { color: var(--charcoal); }
.nav-cta {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  padding: 10px 22px;
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--gold-dark); color: var(--cream); }
/* On dark sections (transparent nav) — ghost button style for CTA */
.nav:not(.on-cream) .nav-cta {
  background: transparent;
  border: 1px solid rgba(245,240,232,0.3);
  color: var(--cream);
}
.nav:not(.on-cream) .nav-cta:hover {
  background: var(--gold); border-color: var(--gold); color: var(--dark);
}

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--nav-text); transition: all var(--transition); }
.nav:not(.on-cream) .nav-toggle span { background: rgba(245,240,232,0.8); }
.nav.on-cream .nav-toggle span { background: var(--charcoal); }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile fullscreen menu */
.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--dark); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition-slow);
}
.nav-mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav-mobile .nav-link {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 56px); font-weight: 300;
  text-transform: none; letter-spacing: 0.02em;
  color: var(--cream);
}
.nav-mobile .nav-cta { padding: 16px 48px; font-size: 12px; margin-top: 12px; }
.nav-mobile .nav-cta:not(.on-cream) { background: var(--gold); color: var(--dark); border: none; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 0 clamp(24px,6vw,96px) clamp(60px,8vw,96px);
  overflow-x: hidden;
  overflow-y: visible;
}
/* Warm grain overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 25%, rgba(201,169,110,0.07) 0%, transparent 100%),
    radial-gradient(ellipse 40% 60% at 20% 75%, rgba(201,169,110,0.04) 0%, transparent 100%);
  pointer-events: none;
}
/* Subtle warm noise texture */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.7;
}
/* Large decorative wave mark behind headline */
.hero-bg-mark {
  position: absolute;
  right: -2%;  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 45vw, 560px);
  opacity: 0.04;
  pointer-events: none;
  color: var(--cream);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-width); width: 100%; margin: 0 auto;
}
.hero-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}
.hero-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(54px, 8.5vw, 118px);
  font-weight: 300; line-height: 1.0;
  color: var(--cream);
  letter-spacing: -0.025em;
  margin-bottom: 44px;
  max-width: 15ch;
  opacity: 0; transform: translateY(28px);
  animation: fadeUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
.hero-headline em { font-style: italic; }
.hero-sub-row {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 48px; flex-wrap: wrap;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards;
}
.hero-sub {
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(245,240,232,0.55);
  max-width: 44ch; line-height: 1.75; font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
.hero-scroll {
  position: absolute; bottom: clamp(28px,4vw,52px); right: clamp(24px,6vw,96px);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s ease 1.5s forwards;
}
.hero-scroll span {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245,240,232,0.3); writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.4s ease-in-out infinite;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 15px 30px;
  transition: all var(--transition);
}
.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-dark); color: var(--cream); }

.btn-ghost { border: 1px solid rgba(245,240,232,0.3); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline { border: 1px solid rgba(42,37,32,0.25); color: var(--charcoal); }
.btn-outline:hover { border-color: var(--charcoal); background: var(--charcoal); color: var(--cream); }

.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: var(--dark); }

/* ─── SECTIONS ───────────────────────────────────────────────── */
.section { padding: var(--section-pad) clamp(24px,6vw,96px); }
.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-label.dark-label { color: rgba(201,169,110,0.7); }
.section-label.dark-label::before { background: rgba(201,169,110,0.7); }

/* Cream section on dark — labels need lighter treatment */
.dark-section .section-label { color: rgba(201,169,110,0.75); }
.dark-section .section-label::before { background: rgba(201,169,110,0.75); }

/* ─── POSITIONING (cream) ────────────────────────────────────── */
.positioning { background: var(--cream); border-top: 1px solid var(--cream-mid); }
.positioning-inner { max-width: 820px; margin: 0 auto; }
.positioning-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 42px); font-weight: 300;
  line-height: 1.35; color: var(--charcoal); letter-spacing: -0.01em;
}
.positioning-text strong { font-weight: 500; }
.positioning-footer {
  margin-top: 48px; padding-top: 48px;
  border-top: 1px solid var(--cream-mid);
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.positioning-note { font-size: 14px; color: var(--warm-grey); max-width: 42ch; }

/* ─── SERVICES (cream-off) ───────────────────────────────────── */
.services-section { background: var(--cream-off); }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; margin-bottom: clamp(48px,6vw,72px); flex-wrap: wrap;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,60px); font-weight: 300;
  line-height: 1.1; color: var(--charcoal); letter-spacing: -0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--cream-mid);
}
.service-card {
  background: var(--cream-off);
  padding: clamp(32px,4vw,48px) clamp(24px,3vw,36px);
  display: flex; flex-direction: column; gap: 18px;
  transition: background var(--transition);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-slow);
}
.service-card:hover { background: var(--cream); }
.service-card:hover::after { width: 100%; }
.service-num {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; color: var(--gold); font-weight: 300;
}
.service-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-grey);
  transition: border-color var(--transition), color var(--transition);
}
.service-card:hover .service-icon { border-color: var(--gold); color: var(--gold); }
.service-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px); font-weight: 400;
  color: var(--charcoal); letter-spacing: -0.01em; line-height: 1.2;
}
.service-desc {
  font-size: 13.5px; color: var(--warm-grey);
  line-height: 1.75; font-weight: 300;
}
.service-link {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-grey-lt);
  display: flex; align-items: center; gap: 10px;
  transition: color var(--transition), gap var(--transition);
}
.service-card:hover .service-link { color: var(--gold); gap: 14px; }
.service-card.future { opacity: 0.65; }
.service-card.future:hover { opacity: 0.9; }
.future-badge {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35); padding: 3px 8px;
  display: inline-block; align-self: flex-start;
}

/* ─── WORK (cream) ───────────────────────────────────────────── */
.work-section { background: var(--cream); }
.work-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 28px; margin-bottom: clamp(44px,6vw,68px); flex-wrap: wrap;
}
.work-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,60px); font-weight: 300;
  color: var(--charcoal); letter-spacing: -0.02em; line-height: 1.1;
}
.work-grid { display: flex; flex-direction: column; gap: clamp(20px,3vw,32px); }
.work-card {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; background: var(--dark);
  transition: transform var(--transition-slow);
}
.work-card:hover { transform: translateY(-3px); }
.work-card:nth-child(even) { grid-template-columns: 1fr 1fr; direction: rtl; }
.work-card:nth-child(even) > * { direction: ltr; }
.work-card-image { position: relative; overflow: hidden; min-height: 280px; background: #120E0B; }
.work-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.work-placeholder-text {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245,240,232,0.18);
}
.work-placeholder-line { width: 36px; height: 1px; background: rgba(201,169,110,0.25); }
.work-card-content {
  padding: clamp(32px,4vw,52px);
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--dark-mid);
}
.work-card-type {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
}
.work-card-title {
  font-family: var(--font-display);
  font-size: clamp(26px,3vw,40px); font-weight: 300;
  color: var(--cream); letter-spacing: -0.01em; line-height: 1.15; margin-top: 12px;
}
.work-card-desc {
  font-size: 13.5px; color: rgba(245,240,232,0.65);
  line-height: 1.75; font-weight: 300; margin-top: 16px; max-width: 40ch;
}
.work-card-outcome {
  font-family: var(--font-display); font-size: 16px; font-style: italic;
  color: var(--gold); border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 22px; margin-top: 28px;
}
.work-card-link {
  margin-top: 20px;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  transition: color var(--transition), gap var(--transition);
}
.work-card:hover .work-card-link { color: var(--gold); gap: 18px; }

/* ─── DIFFERENTIATOR (cream-off) ─────────────────────────────── */
.diff-section { background: var(--cream-off); }
.diff-headline {
  font-family: var(--font-display);
  font-size: clamp(30px,4.5vw,56px); font-weight: 300;
  line-height: 1.15; color: var(--charcoal); letter-spacing: -0.02em;
  max-width: 20ch; margin-bottom: clamp(48px,6vw,80px);
}
.diff-headline em { font-style: italic; color: var(--charcoal); }
.diff-headline .gold-word { color: var(--gold-dark); font-style: italic; }
.diff-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(36px,5vw,56px);
  padding-top: clamp(36px,5vw,56px);
  border-top: 1px solid var(--cream-mid);
}
.diff-item {
  display: flex; flex-direction: column; gap: 14px;
  padding-left: 16px;
  border-left: 1.5px solid transparent;
  transition: border-color var(--transition);
}
.diff-item:hover { border-color: var(--gold); }
.diff-num {
  font-family: var(--font-mono); font-size: 28px; font-weight: 300;
  color: rgba(42,37,32,0.1); line-height: 1;
}
.diff-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--charcoal);
}
.diff-body { font-size: 13.5px; color: var(--warm-grey); line-height: 1.75; font-weight: 300; }

/* ─── PROCESS (cream) ────────────────────────────────────────── */
.process-section { background: var(--cream); border-top: 1px solid var(--cream-mid); }
.process-header { margin-bottom: clamp(48px,6vw,72px); }
.process-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,60px); font-weight: 300;
  color: var(--charcoal); letter-spacing: -0.02em; line-height: 1.1;
  margin-top: 20px; margin-bottom: 16px;
}
.process-sub { font-size: 15px; color: var(--warm-grey); max-width: 50ch; font-weight: 300; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 27px; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--cream-mid), transparent);
}
.process-step {
  padding: 64px 24px 0;
  border-left: 1px solid var(--cream-mid);
  display: flex; flex-direction: column; gap: 12px; position: relative;
}
.process-step:first-child { border-left: none; padding-left: 0; }
.process-step-num {
  position: absolute; top: 0;
  width: 54px; height: 54px;
  border: 1px solid var(--cream-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; color: var(--gold);
  background: var(--cream); font-weight: 300;
}
.process-step-title {
  font-family: var(--font-display); font-size: 20px; font-weight: 500; color: var(--charcoal);
}
.process-step-body { font-size: 13.5px; color: var(--warm-grey); line-height: 1.7; font-weight: 300; }

/* ─── ABOUT — HOMEPAGE (dark) ────────────────────────────────── */
.about-section { background: var(--dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(44px,7vw,96px); align-items: center;
}
.about-image-wrap {
  position: relative; aspect-ratio: 4/5;
  background: #100E0C; overflow: hidden;
}
.about-image-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
}
.about-image-placeholder-text {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(245,240,232,0.18);
}
.about-gold-border {
  position: absolute; bottom: -14px; right: -14px;
  width: 55%; height: 55%;
  border-right: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
}
.about-content { display: flex; flex-direction: column; gap: 26px; }
.about-title {
  font-family: var(--font-display);
  font-size: clamp(30px,4vw,50px); font-weight: 300;
  color: var(--cream); letter-spacing: -0.02em; line-height: 1.15;
}
.about-title em { font-style: italic; color: var(--gold); }
.about-body { font-size: 14px; color: rgba(245,240,232,0.55); line-height: 1.8; font-weight: 300; }
.about-values {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 24px; border-top: 1px solid rgba(245,240,232,0.08);
}
.about-value {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: rgba(245,240,232,0.45);
}
.about-value::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ─── TESTIMONIALS (cream) ───────────────────────────────────── */
.testimonials-section { background: var(--cream); border-top: 1px solid var(--cream-mid); }
.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,60px); font-weight: 300;
  color: var(--charcoal); letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: clamp(44px,6vw,68px);
}
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2px; background: var(--cream-mid); }
.testimonial-card {
  background: var(--cream);
  padding: clamp(32px,4vw,44px);
  display: flex; flex-direction: column; gap: 24px;
  transition: background var(--transition);
}
.testimonial-card:hover { background: var(--cream-off); }
.testimonial-quote-mark {
  font-family: var(--font-display); font-size: 72px;
  color: rgba(201,169,110,0.2); line-height: 0.6; font-weight: 300;
}
.testimonial-text {
  font-family: var(--font-display); font-size: 17px; font-style: italic;
  color: var(--charcoal); line-height: 1.6; font-weight: 400;
}
.testimonial-author { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--cream-mid); }
.testimonial-name { font-size: 13px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; }
.testimonial-role { font-family: var(--font-mono); font-size: 10px; color: var(--warm-grey); margin-top: 3px; letter-spacing: 0.1em; }

/* ─── CLOSING CTA (dark) ─────────────────────────────────────── */
.cta-section { background: var(--dark); text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(38px,6vw,76px); font-weight: 300;
  color: var(--cream); letter-spacing: -0.025em; line-height: 1.1;
  margin-bottom: 22px; max-width: 22ch; margin-left: auto; margin-right: auto;
}
.cta-sub {
  font-size: 15px; color: rgba(245,240,232,0.45);
  margin-bottom: 44px; max-width: 46ch;
  margin-left: auto; margin-right: auto; font-weight: 300;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-note {
  margin-top: 28px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245,240,232,0.18);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: #100E0C;
  padding: clamp(52px,7vw,76px) clamp(24px,6vw,96px);
  border-top: 1px solid rgba(201,169,110,0.12);
}
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 44px; align-items: start;
}
.footer-logo-img { height: 52px; width: auto; opacity: 0.9; display: block; margin: 0 auto; }
.footer-tagline { font-family: var(--font-display); font-size: 13px; font-style: italic; color: var(--gold); margin-top: 10px; text-align: center; }
.footer-nav { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.footer-nav a { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.35); transition: color var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-email { font-size: 13.5px; color: rgba(245,240,232,0.5); transition: color var(--transition); }
.footer-email:hover { color: var(--gold); }
.footer-location { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,240,232,0.18); text-align: right; }
.footer-bottom {
  max-width: var(--max-width); margin: 44px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(245,240,232,0.05);
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer-copy { font-size: 11px; color: rgba(245,240,232,0.18); }

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 160px clamp(24px,6vw,96px) clamp(56px,7vw,80px);
  position: relative; overflow: hidden;
}
/* Decorative wave mark — shared */
.ph-wave {
  position: absolute; pointer-events: none;
  color: var(--cream);
}
.ph-wave path:nth-child(1) { animation: waveFloat 9s  ease-in-out infinite; }
.ph-wave path:nth-child(2) { animation: waveFloat 12s ease-in-out 2.5s infinite; }
.ph-wave path:nth-child(3) { animation: waveFloat 10s ease-in-out 5s   infinite; }
/* Work — bottom-right, tilted clockwise */
.ph-wave--work     { bottom: -10%; right: -5%;  width: clamp(220px,35vw,440px); opacity: 0.04;  transform: rotate(15deg); }
/* Services — top-right, tilted anti-clockwise, larger */
.ph-wave--services { top: -15%;   right: -8%;  width: clamp(280px,42vw,520px); opacity: 0.035; transform: rotate(-10deg); }
/* About — left side, horizontally mirrored */
.ph-wave--about    { top: 50%;    left: -5%;   width: clamp(240px,38vw,460px); opacity: 0.04;  transform: translateY(-50%) scaleX(-1); }
/* Contact — bottom-left, steeper tilt */
.ph-wave--contact  { bottom: -5%; left: -8%;   width: clamp(200px,30vw,380px); opacity: 0.03;  transform: rotate(20deg); }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 50%, rgba(201,169,110,0.05) 0%, transparent 65%);
}
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px,7vw,92px); font-weight: 300;
  color: var(--cream); letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 22px;
}
.page-hero-sub { font-size: 15px; color: rgba(245,240,232,0.45); max-width: 52ch; line-height: 1.75; font-weight: 300; }

/* ─── WORK PAGE ──────────────────────────────────────────────── */
.case-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px; background: var(--cream-mid);
}
.case-card {
  background: var(--cream); overflow: hidden;
  display: flex; flex-direction: column;
  transition: background var(--transition);
}
.case-card:hover { background: var(--cream-off); }
.case-card-image { aspect-ratio: 4/3; background: var(--dark-mid); position: relative; overflow: hidden; }
.case-card-body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case-card-type { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.case-card-title { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--charcoal); line-height: 1.2; }
.case-card-desc { font-size: 13.5px; color: var(--warm-grey); line-height: 1.7; font-weight: 300; }
.case-card-link {
  margin-top: auto; padding-top: 18px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--warm-grey-lt);
  display: flex; align-items: center; gap: 10px;
  transition: color var(--transition), gap var(--transition);
}
.case-card:hover .case-card-link { color: var(--gold); gap: 16px; }
.case-card-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-grey-lt); margin-top: auto; padding-top: 20px; }

/* ─── SERVICES PAGE ──────────────────────────────────────────── */
.service-detail {
  display: grid; grid-template-columns: 200px 1fr;
  gap: clamp(40px,7vw,96px);
  padding: var(--section-pad) clamp(24px,6vw,96px);
  max-width: var(--max-width); margin: 0 auto;
  border-bottom: 1px solid var(--cream-mid);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold);
  padding-top: 4px; line-height: 1.6;
}
.service-detail-content { display: flex; flex-direction: column; gap: 20px; }
.service-detail-title {
  font-family: var(--font-display);
  font-size: clamp(28px,3.5vw,48px); font-weight: 300;
  color: var(--charcoal); letter-spacing: -0.02em; line-height: 1.15;
}
.service-detail-body { font-size: 14.5px; color: var(--warm-grey); line-height: 1.8; font-weight: 300; max-width: 60ch; }
.service-detail-includes { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.service-detail-includes h4 { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 4px; }
.include-item { display: flex; align-items: center; gap: 14px; font-size: 13.5px; color: var(--warm-grey); }
.include-item::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* Dark variant for AI section */
.service-detail-dark {
  background: var(--dark);
  max-width: 100%;
  padding: var(--section-pad) clamp(24px,6vw,96px);
}
.service-detail-dark .service-detail {
  max-width: var(--max-width); border: none;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(44px,7vw,100px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-title { font-family: var(--font-display); font-size: clamp(32px,4.5vw,56px); font-weight: 300; color: var(--charcoal); letter-spacing: -0.02em; line-height: 1.15; }
.contact-body { font-size: 14.5px; color: var(--warm-grey); line-height: 1.8; font-weight: 300; }
.contact-email { font-family: var(--font-display); font-size: 20px; font-weight: 400; color: var(--charcoal); transition: color var(--transition); display: inline-block; position: relative; }
.contact-email::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--transition-slow); }
.contact-email:hover { color: var(--gold-dark); }
.contact-email:hover::after { width: 100%; }
.contact-note { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-grey); }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--charcoal); opacity: 0.55; }
.form-input, .form-select, .form-textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--charcoal);
  background: transparent; border: none;
  border-bottom: 1px solid var(--warm-grey-lt);
  padding: 12px 0; outline: none; transition: border-color var(--transition); width: 100%;
  -webkit-appearance: none;
}
.form-select { cursor: none; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--warm-grey-lt); font-size: 14px; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: none; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-submit { align-self: flex-start; margin-top: 4px; }

/* ─── SERVICE QUESTIONS ──────────────────────────────────────── */
#service-questions {
  animation: fadeUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.sq-set .form-group { margin-top: 28px; }
.sq-set .form-group:first-child { margin-top: 0; }
.sq-radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.sq-radio {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--charcoal); cursor: pointer;
  line-height: 1.4;
}
.sq-radio input[type="radio"],
.sq-radio input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1px solid var(--warm-grey-lt);
  background: transparent;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer; margin: 0;
}
.sq-radio input[type="radio"] { border-radius: 50%; }
.sq-radio input[type="checkbox"] { border-radius: 0; }
.sq-radio input:checked {
  background: var(--gold);
  border-color: var(--gold);
}
.sq-radio:hover input { border-color: var(--gold); }

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px,7vw,96px); align-items: start; }
.manifesto { font-family: var(--font-display); font-size: clamp(18px,2.2vw,26px); font-weight: 300; line-height: 1.55; color: var(--charcoal); letter-spacing: -0.01em; }
.manifesto strong { font-weight: 500; }
.values-grid { display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; gap: 22px; padding-bottom: 24px; border-bottom: 1px solid var(--cream-mid); }
.value-item:last-child { border-bottom: none; }
.value-num { font-family: var(--font-mono); font-size: 11px; color: var(--gold); flex-shrink: 0; padding-top: 2px; }
.value-content { display: flex; flex-direction: column; gap: 6px; }
.value-title { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.value-body { font-size: 13.5px; color: var(--warm-grey); line-height: 1.7; font-weight: 300; }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
@keyframes waveFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.hero-bg-mark { opacity: 0.055; }
.hero-bg-mark path:nth-child(1) { animation: waveFloat 9s  ease-in-out infinite; }
.hero-bg-mark path:nth-child(2) { animation: waveFloat 12s ease-in-out 2.5s infinite; }
.hero-bg-mark path:nth-child(3) { animation: waveFloat 10s ease-in-out 5s   infinite; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── BACK TO TOP ────────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--charcoal); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 50;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { transform: translateY(-3px); background: var(--gold); color: var(--dark); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
/* Hide hero label on desktop — nav logo already shows studio name */
@media (min-width: 769px) {
  .hero-label { display: none; }
}

@media (max-width: 1024px) {
  .work-card { grid-template-columns: 1fr; }
  .work-card:nth-child(even) { direction: ltr; }
  .work-card-image { min-height: 240px; }
  .process-steps { grid-template-columns: repeat(2,1fr); gap: 48px 36px; }
  .process-steps::before { display: none; }
  .process-step { border-left: none; padding-left: 0; border-top: 1px solid var(--cream-mid); padding-top: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-nav { align-items: flex-start; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .about-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta  { display: none; }
  .nav-toggle { display: flex; }
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-logo-img { margin: 0 auto; }
  .footer-tagline { text-align: center; }
  .footer-right { align-items: center; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }
  .services-header, .work-header { flex-direction: column; align-items: flex-start; }
  .process-steps { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .testimonials-grid, .case-grid, .diff-grid { grid-template-columns: 1fr; }
}
