:root {
  --ink: #1a1916;
  --ink-soft: #44423d;
  --ink-mute: #7a766e;
  --paper: #fbf9f4;
  --paper-soft: #f4f0e6;
  --paper-deep: #ecdfc4;
  --accent: #b89968;
  --accent-deep: #8c7345;
  --line: rgba(26, 25, 22, 0.12);
  --line-soft: rgba(26, 25, 22, 0.06);

  --sans: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --serif: "Klee One", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --display: "Cormorant Garamond", "Klee One", serif;

  --container: 1240px;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 32px;
}

/* =========================================================
   Intro splash (first visit only)
   ========================================================= */

.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--paper);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  animation: intro-curtain 900ms cubic-bezier(0.83, 0, 0.17, 1) 2100ms forwards;
}

.intro-splash::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 42%, rgba(184, 153, 104, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(140, 115, 69, 0.10) 0%, transparent 70%);
  opacity: 0;
  animation: intro-glow 2.6s ease-in-out 200ms 1 forwards;
}

.intro-splash::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -22px;
  height: 22px;
  background: linear-gradient(to top, transparent, rgba(0,0,0,0.18));
  pointer-events: none;
  z-index: 3;
}

.intro-splash-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.intro-splash-logo {
  display: block;
  width: clamp(280px, 56vw, 580px);
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.92);
  filter: blur(6px);
  animation: intro-logo-in 1100ms cubic-bezier(0.22, 0.61, 0.36, 1) 250ms forwards;
}

.intro-splash-sub {
  margin-top: 24px;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent-deep);
  opacity: 0;
  animation: intro-sub-in 700ms ease 1000ms forwards;
}

@keyframes intro-logo-in {
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes intro-sub-in {
  to { opacity: 1; }
}

@keyframes intro-glow {
  0% { opacity: 0; }
  35% { opacity: 1; }
  100% { opacity: 0.6; }
}

@keyframes intro-curtain {
  to { transform: translateY(-100%); }
}

body.intro-done .intro-splash { display: none; }
body.intro-locking { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .intro-splash { display: none; }
}

/* =========================================================
   Page transition / Splash
   ========================================================= */

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: #15140f;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 720ms cubic-bezier(0.7, 0, 0.2, 1), visibility 0s linear 720ms;
}

.page-transition::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184, 153, 104, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(140, 115, 69, 0.18) 0%, transparent 55%);
}

.page-transition-mark {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: clamp(3.6rem, 8vw, 5.6rem);
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.08em;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 600ms ease 100ms, transform 800ms cubic-bezier(0.22, 0.61, 0.36, 1) 100ms;
}

.page-transition-mark small {
  display: block;
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  color: rgba(251, 249, 244, 0.55);
}

body.pt-loading .page-transition {
  opacity: 1;
  visibility: visible;
  transition: opacity 0s, visibility 0s;
  pointer-events: auto;
}
body.pt-loading .page-transition-mark { opacity: 1; transform: scale(1); }

body.pt-leaving .page-transition {
  opacity: 1;
  visibility: visible;
  transition: opacity 540ms cubic-bezier(0.6, 0, 0.3, 1);
  pointer-events: auto;
}
body.pt-leaving .page-transition-mark {
  opacity: 1;
  transform: scale(1);
  transition: opacity 380ms ease 120ms, transform 540ms cubic-bezier(0.22, 0.61, 0.36, 1) 120ms;
}

@media (prefers-reduced-motion: reduce) {
  .page-transition { transition: none !important; }
  .page-transition-mark { transition: none !important; }
}

/* =========================================================
   Header morph on scroll
   ========================================================= */

.site-header {
  transition:
    height 320ms cubic-bezier(0.4, 0, 0.2, 1),
    background 320ms ease,
    backdrop-filter 320ms ease,
    box-shadow 320ms ease;
}

.site-header.is-scrolled {
  height: 64px;
  background: rgba(251, 249, 244, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(26, 25, 22, 0.05);
}

.site-header.is-scrolled .brand-mark { font-size: 1.5rem; }
.site-header.is-scrolled .brand-text { font-size: 1.3rem; }
.site-header.is-scrolled .brand-text small { opacity: 0; transition: opacity 200ms ease; }

/* =========================================================
   Character stagger reveal
   ========================================================= */

.char-split {
  display: inline-block;
}

.char-split .ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  transition:
    opacity 700ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.char-split.is-in .ch {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .char-split .ch { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Ken Burns (slow zoom on key images)
   ========================================================= */

@keyframes kb-zoom {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

.feature-image img,
.content-card-image img,
.philosophy-image img,
.member-thumb img {
  animation: kb-zoom 22s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .feature-image img,
  .content-card-image img,
  .philosophy-image img,
  .member-thumb img { animation: none; }
}

/* =========================================================
   Scroll progress bar
   ========================================================= */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line-soft);
  z-index: 200;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-deep) 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 60ms linear;
}

/* =========================================================
   Grain texture overlay
   ========================================================= */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.09  0 0 0 0 0.08  0 0 0 0.42 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  opacity: 0.35;
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
  body::before { opacity: 0.15; }
}

/* =========================================================
   Reveal animations
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: 110ms; }
.reveal[data-delay="2"] { transition-delay: 220ms; }
.reveal[data-delay="3"] { transition-delay: 330ms; }
.reveal[data-delay="4"] { transition-delay: 440ms; }
.reveal[data-delay="5"] { transition-delay: 550ms; }

.reveal-fade {
  opacity: 0;
  transition: opacity 1200ms ease;
}
.reveal-fade.is-in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-fade { opacity: 1; transform: none; transition: none; }
  .cursor-ring { display: none; }
}

/* =========================================================
   Header
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(251, 249, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  z-index: 100;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  display: block;
  height: 62px;
  width: auto;
  max-width: 220px;
  transition: height 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled .brand-logo {
  height: 48px;
}

.brand-mark {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-style: italic;
  color: var(--accent-deep);
}

.brand-text {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
}

.brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--ink-mute);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 200ms ease;
}

.nav a small {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  margin-top: 2px;
  text-transform: none;
}

.nav a:hover, .nav a.is-active { color: var(--accent-deep); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 200ms ease, transform 200ms ease;
}

.header-cta:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  left: 10px;
  transition: transform 280ms ease, opacity 220ms ease, top 280ms ease, background 220ms ease;
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }

body.menu-open .nav-toggle span { background: var(--paper); }
body.menu-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 380px);
  height: 100vh;
  background: var(--ink);
  color: var(--paper);
  padding: calc(var(--header-h) + 24px) 32px 40px;
  transform: translateX(100%);
  transition: transform 480ms cubic-bezier(0.7, 0, 0.2, 1);
  z-index: 105;
  overflow-y: auto;
}

.mobile-nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(251, 249, 244, 0.14);
}

.mobile-nav-brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(184, 153, 104, 0.28);
}

.mobile-nav-brand-text {
  display: block;
  flex: 1;
}

.mobile-nav-brand-text strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.mobile-nav-brand-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: rgba(251, 249, 244, 0.55);
  text-transform: uppercase;
  margin-top: 4px;
}

body.menu-open .mobile-nav { transform: translateX(0); }

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid rgba(251, 249, 244, 0.12);
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--paper);
}

.mobile-nav a small {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  color: rgba(251, 249, 244, 0.55);
  margin-top: 4px;
}

.mobile-nav-cta {
  display: block;
  margin-top: 28px;
  padding: 18px;
  background: var(--accent);
  color: var(--ink);
  text-align: center;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 20, 15, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
  z-index: 104;
}

body.menu-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open { overflow: hidden; }

/* =========================================================
   Hero (full-bleed, BONTEC/MARLY style)
   ========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 120px) 56px 140px;
  display: grid;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(184, 153, 104, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(140, 115, 69, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 50%, var(--paper-soft) 100%);
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) brightness(0.55) saturate(0.85);
}

.hero-image {
  animation: hero-kb 24s ease-in-out infinite alternate;
  transform-origin: 55% 45%;
  z-index: 0;
}

.hero-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Inside logo stage, canvas takes the full stage area */
.hero-logo-stage .hero-3d {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* =========================================================
   Atelier hero — living artist studio
   ========================================================= */
.atelier {
  overflow: hidden;
}

/* --- Oversized watermark logo (depth layer) --- */
.hero-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(680px, 110vw, 1500px);
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.06;
  z-index: 1;
  pointer-events: none;
  filter: blur(2px) saturate(1.2);
  animation: hero-logo-watermark-drift 32s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes hero-logo-watermark-drift {
  0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); opacity: 0.05; }
  50%      { transform: translate(-50%, -50%) scale(1.08) rotate(2deg); opacity: 0.085; }
}

/* --- Logo stage (main logo + ornaments) --- */
.hero-logo-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(520px, 82vw, 1100px);
  max-width: 96vw;
  aspect-ratio: 4 / 3;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  animation: hero-stage-float 12s ease-in-out infinite;
  will-change: transform;
}

.hero-logo-frame,
.hero-logo-corner { display: none; }
@keyframes hero-stage-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50%      { transform: translate(-50%, -50%) translateY(-10px); }
}

/* --- Thin double-line frame --- */
.hero-logo-frame {
  position: absolute;
  inset: -6%;
  border: 1px solid rgba(184, 153, 104, 0.32);
  border-radius: 2px;
  pointer-events: none;
  animation: frame-pulse 9s ease-in-out infinite;
}
.hero-logo-frame::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(140, 115, 69, 0.14);
  border-radius: 1px;
}
@keyframes frame-pulse {
  0%, 100% { border-color: rgba(184, 153, 104, 0.22); }
  50%      { border-color: rgba(184, 153, 104, 0.48); }
}

/* --- Corner ornaments (4 marks like a museum frame) --- */
.hero-logo-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.hero-logo-corner::before,
.hero-logo-corner::after {
  content: '';
  position: absolute;
  background: var(--accent);
}
.hero-logo-corner::before { width: 100%; height: 1.2px; top: 0; }
.hero-logo-corner::after  { height: 100%; width: 1.2px; left: 0; }
.hero-logo-corner-tl { top: -6%; left: -6%; transform: translate(-12px, -12px); }
.hero-logo-corner-tr { top: -6%; right: -6%; transform: translate(12px, -12px) scaleX(-1); }
.hero-logo-corner-bl { bottom: -6%; left: -6%; transform: translate(-12px, 12px) scaleY(-1); }
.hero-logo-corner-br { bottom: -6%; right: -6%; transform: translate(12px, 12px) scale(-1, -1); }

/* --- Main logo img (kept for fallback / hidden when particles active) --- */
.hero-logo-img {
  position: relative;
  display: block;
  width: 92%;
  height: auto;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.97;
  filter: drop-shadow(0 18px 36px rgba(140, 115, 69, 0.14)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
  animation: hero-logo-breathe 7.5s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes hero-logo-breathe {
  0%, 100% { transform: translateY(-50%) scale(1) rotate(-0.4deg); opacity: 0.94; }
  50%      { transform: translateY(-50%) scale(1.035) rotate(0.4deg); opacity: 1; }
}

/* --- Spotlight sweep (slow museum lighting) --- */
.hero-logo-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%,
    transparent 100%
  );
  mix-blend-mode: overlay;
  opacity: 0.5;
  pointer-events: none;
  transform: translateX(-100%);
  animation: sweep-glide 8s ease-in-out infinite;
}
@keyframes sweep-glide {
  0%   { transform: translateX(-100%); opacity: 0; }
  20%  { opacity: 0.5; }
  60%  { transform: translateX(100%); opacity: 0.5; }
  80%  { opacity: 0; }
  100% { transform: translateX(100%); opacity: 0; }
}

/* --- Established 2024 caption --- */
.hero-logo-est {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent-deep);
  white-space: nowrap;
  opacity: 0.85;
}
.hero-logo-est::before,
.hero-logo-est::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.hero-logo-est strong {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--ink);
}

/* --- Ink wash blobs (soft watercolor background) --- */
.atelier-wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  will-change: transform, opacity;
}
.atelier-wash-1 {
  width: 52vw;
  height: 52vw;
  max-width: 720px;
  max-height: 720px;
  top: -10%;
  left: -8%;
  background: radial-gradient(circle, rgba(232, 142, 106, 0.32), transparent 70%);
  animation: wash-drift-1 22s ease-in-out infinite;
}
.atelier-wash-2 {
  width: 48vw;
  height: 48vw;
  max-width: 680px;
  max-height: 680px;
  top: 40%;
  right: -12%;
  background: radial-gradient(circle, rgba(95, 161, 217, 0.28), transparent 70%);
  animation: wash-drift-2 28s ease-in-out infinite;
}
.atelier-wash-3 {
  width: 40vw;
  height: 40vw;
  max-width: 560px;
  max-height: 560px;
  bottom: -10%;
  left: 28%;
  background: radial-gradient(circle, rgba(146, 104, 196, 0.22), transparent 70%);
  animation: wash-drift-3 26s ease-in-out infinite;
}
@keyframes wash-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  33%      { transform: translate(40px, 60px) scale(1.08); opacity: 0.68; }
  66%      { transform: translate(-20px, 30px) scale(0.96); opacity: 0.5; }
}
@keyframes wash-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50%      { transform: translate(-60px, -40px) scale(1.1); opacity: 0.65; }
}
@keyframes wash-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50%      { transform: translate(30px, -50px) scale(1.06); opacity: 0.58; }
}

/* --- Hand-drawn ink lines (SVG paths drawing in/out) --- */
.atelier-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.atelier-line {
  stroke: rgba(26, 25, 22, 0.18);
  stroke-width: 1.4;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: line-draw 14s ease-in-out infinite;
}
.atelier-line-1 { animation-delay: 0s; stroke: rgba(184, 153, 104, 0.42); }
.atelier-line-2 { animation-delay: 3.5s; stroke: rgba(26, 25, 22, 0.16); stroke-width: 1.2; }
.atelier-line-3 { animation-delay: 7s; stroke: rgba(140, 115, 69, 0.32); stroke-width: 1.1; }
.atelier-line-4 { animation-delay: 10s; stroke: rgba(26, 25, 22, 0.12); stroke-width: 1; }
@keyframes line-draw {
  0%   { stroke-dashoffset: 1400; opacity: 0; }
  10%  { opacity: 1; }
  45%  { stroke-dashoffset: 0; opacity: 1; }
  70%  { stroke-dashoffset: 0; opacity: 0.6; }
  90%  { stroke-dashoffset: -1400; opacity: 0; }
  100% { stroke-dashoffset: -1400; opacity: 0; }
}

/* --- Paint dots (floating accents) --- */
.atelier-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.atelier-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  background: var(--c);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.6px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: dot-drift 11s ease-in-out infinite;
  animation-delay: var(--d);
  will-change: transform, opacity;
}
.atelier-dot:nth-child(odd)  { animation-duration: 13s; }
.atelier-dot:nth-child(3n)   { animation-duration: 9.5s; animation-name: dot-drift-alt; }
.atelier-dot:nth-child(5n)   { animation-duration: 15s; animation-name: dot-drift-spin; }

@keyframes dot-drift {
  0%   { transform: translate(0, 0) scale(0.6); opacity: 0; }
  20%  { opacity: 0.85; }
  50%  { transform: translate(24px, -36px) scale(1.1); opacity: 1; }
  80%  { opacity: 0.6; }
  100% { transform: translate(-12px, 28px) scale(0.7); opacity: 0; }
}
@keyframes dot-drift-alt {
  0%   { transform: translate(0, 0) scale(0.7); opacity: 0; }
  25%  { opacity: 0.9; }
  50%  { transform: translate(-30px, 20px) scale(1.15); opacity: 1; }
  100% { transform: translate(36px, -22px) scale(0.6); opacity: 0; }
}
@keyframes dot-drift-spin {
  0%   { transform: translate(0, 0) scale(0.5) rotate(0deg); opacity: 0; }
  30%  { opacity: 0.8; }
  100% { transform: translate(20px, -50px) scale(1.1) rotate(220deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-img,
  .atelier-wash,
  .atelier-line,
  .atelier-dot { animation: none !important; }
  .hero-logo-img { opacity: 0.92; }
  .atelier-dot { opacity: 0.7; }
}

@media (max-width: 768px) {
  .hero-logo-stage {
    width: clamp(340px, 96vw, 560px);
    top: 38%;
  }
  .hero-logo-est { font-size: 0.6rem; letter-spacing: 0.36em; bottom: -28px; gap: 10px; }
  .hero-logo-est::before, .hero-logo-est::after { width: 12px; }
  .hero-logo-est strong { font-size: 0.68rem; }
  .atelier-dot { animation-duration: 9s; }
  .atelier-wash { filter: blur(40px); }
  /* Hide some dots on mobile for performance */
  .atelier-dot:nth-child(n+10) { display: none; }
}

@keyframes hero-kb {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.06) translate(-1%, -0.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 50%, rgba(251, 249, 244, 0.55) 0%, transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%, rgba(244, 240, 230, 0.4) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

.hero-orb.a {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(184, 153, 104, 0.7), transparent 70%);
  top: -120px;
  right: -60px;
  animation: orb-drift-a 18s ease-in-out infinite alternate;
}

.hero-orb.b {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(236, 223, 196, 0.35), transparent 70%);
  bottom: -80px;
  left: 8%;
  animation: orb-drift-b 22s ease-in-out infinite alternate;
}

.hero-orb.c {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(140, 115, 69, 0.5), transparent 70%);
  top: 40%;
  left: -100px;
  animation: orb-drift-c 16s ease-in-out infinite alternate;
}

@keyframes orb-drift-a {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-60px, 40px) scale(1.08); }
}
@keyframes orb-drift-b {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, -40px) scale(1.12); }
}
@keyframes orb-drift-c {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.05); }
}

.hero-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 44px;
}

.hero-eyebrow::before {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 48px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-title.is-in .line:nth-child(1) > span { transition-delay: 100ms; transform: translateY(0); }
.hero-title.is-in .line:nth-child(2) > span { transition-delay: 280ms; transform: translateY(0); }
.hero-title.is-in .line:nth-child(3) > span { transition-delay: 460ms; transform: translateY(0); }

.hero-title em {
  font-style: italic;
  font-family: var(--display);
  font-weight: 500;
  color: var(--accent-deep);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 2.1;
  color: var(--ink-soft);
  margin-bottom: 52px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .btn.primary {
  background: var(--accent);
  color: var(--ink);
}

.hero .btn.primary:hover {
  background: var(--paper);
  box-shadow: 0 14px 32px rgba(184, 153, 104, 0.32);
}

.hero .btn.ghost {
  color: var(--ink);
  border-color: var(--line);
}

.hero .btn.ghost:hover {
  background: rgba(26, 25, 22, 0.04);
  border-color: var(--accent);
  color: var(--ink);
}

.hero-vertical {
  position: absolute;
  top: 50%;
  right: 36px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(26, 25, 22, 0.38);
  z-index: 3;
}

.hero-stats {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 50px;
  display: flex;
  gap: 40px;
  z-index: 3;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  width: calc(100% - 112px);
  max-width: var(--container);
  margin: 0 auto;
}

.hero-stat {
  flex: 1;
}

.hero-stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.hero-stat-value {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.scroll-cue {
  position: absolute;
  left: 56px;
  bottom: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  z-index: 4;
}

.scroll-cue-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.scroll-cue-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  animation: scroll-cue-fill 2.4s ease-in-out infinite;
}

@keyframes scroll-cue-fill {
  0% { transform: scaleX(0); transform-origin: left; }
  45% { transform: scaleX(1); transform-origin: left; }
  55% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--ink);
  color: var(--paper);
}

.btn.primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(140, 115, 69, 0.28);
}

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn.ghost:hover {
  background: var(--paper-soft);
  border-color: var(--accent-deep);
  color: var(--accent-deep);
  transform: translateY(-2px);
}

.btn::after {
  content: '→';
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: 0;
  transition: transform 200ms ease;
}

.btn:hover::after { transform: translateX(4px); }

/* Removed legacy hero split-layout styles */

/* =========================================================
   Sub Hero (for subpages)
   ========================================================= */

.sub-hero {
  position: relative;
  padding: calc(var(--header-h) + 80px) 56px 90px;
  background: #15140f;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(184, 153, 104, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(140, 115, 69, 0.3) 0%, transparent 55%),
    linear-gradient(180deg, #1c1a14 0%, #15140f 100%);
}

.sub-hero-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sub-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.sub-hero .eyebrow::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.sub-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--paper);
  margin-bottom: 24px;
  max-width: 800px;
}

.sub-hero p.lead {
  font-size: 1rem;
  line-height: 2;
  color: rgba(251, 249, 244, 0.78);
  max-width: 640px;
}

.breadcrumb {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 24px 56px;
  display: flex;
  gap: 12px;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line-soft);
}

.breadcrumb a:hover { color: var(--accent-deep); }
.breadcrumb-sep { color: var(--line); }
.breadcrumb [aria-current="page"] { color: var(--ink); }

/* =========================================================
   Content cards (used in sub-pages)
   ========================================================= */

.content-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.content-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 980px) {
  .content-grid.cols-3 { grid-template-columns: 1fr; }
}

.content-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
  display: flex;
  flex-direction: column;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(26, 25, 22, 0.06);
}

.content-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-deep);
}

.content-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
  filter: contrast(1.02);
}

.content-card:hover .content-card-image img {
  filter: contrast(1.04) saturate(1.05);
}

.content-card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(184, 153, 104, 0.1) 0%, transparent 45%, rgba(21, 20, 15, 0.18) 100%);
  z-index: 2;
  pointer-events: none;
}

.content-card-image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
  pointer-events: none;
  transition: inset 300ms ease, border-color 300ms ease;
}

.content-card:hover .content-card-image::after {
  inset: 10px;
  border-color: rgba(255, 255, 255, 0.32);
}

.content-card:hover .content-card-image img {
  transform: scale(1.04);
}

.content-card-body {
  padding: 36px 32px;
  flex: 1;
}

.content-card .num {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.content-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.content-card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.95;
}

/* =========================================================
   Info list (about / company info)
   ========================================================= */

.info-list {
  width: min(100%, 880px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.info-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  gap: 24px;
  align-items: baseline;
}

.info-row dt {
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.info-row dd {
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.85;
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  width: min(100%, 880px);
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent-deep);
  transition: transform 240ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 28px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 2;
}

/* =========================================================
   Contact form
   ========================================================= */

.contact-wrap {
  width: min(100%, 720px);
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.field label {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: border-color 200ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-deep);
}

.field textarea { resize: vertical; min-height: 160px; }

.contact-tel-block {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.contact-tel-block p {
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-tel-block a {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--ink);
}

.contact-tel-block small {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--ink-mute);
}

/* =========================================================
   Marquee
   ========================================================= */

.marquee {
  background: var(--ink);
  color: var(--paper-deep);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(184, 153, 104, 0.18);
  border-bottom: 1px solid rgba(184, 153, 104, 0.18);
}

.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee-scroll 38s linear infinite;
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: 0.08em;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}

.marquee-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================================
   Sections
   ========================================================= */

.section {
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}

.section.alt { background: var(--paper-soft); }
.section.dark { background: var(--ink); color: var(--paper); }

.section > * { position: relative; z-index: 1; }

/* Huge editorial background watermark — magazine "chapter" feel */
.section-watermark {
  position: absolute;
  top: 40px;
  left: -2vw;
  right: -2vw;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(6.5rem, 16vw, 17rem);
  color: var(--ink);
  opacity: 0.045;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 0.85;
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.section.dark .section-watermark { color: var(--accent); opacity: 0.06; }
.section.alt .section-watermark { color: var(--accent-deep); opacity: 0.06; }
.section-watermark.right { text-align: right; padding-right: 6vw; }
.section-watermark.left { text-align: left; padding-left: 6vw; }
.section-watermark.bottom { top: auto; bottom: 40px; }

@media (max-width: 980px) {
  .section-watermark { font-size: clamp(4rem, 18vw, 9rem); top: 24px; opacity: 0.05; }
}

.section-head {
  text-align: center;
  margin-bottom: 80px;
}

.section-head .eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 20px;
}

.section.dark .eyebrow { color: var(--paper-deep); }

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
}

.section-head p {
  margin: 24px auto 0;
  max-width: 640px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.section.dark .section-head p { color: rgba(251, 249, 244, 0.78); }

/* =========================================================
   Philosophy (pinned image)
   ========================================================= */

.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  width: min(100%, var(--container));
  margin: 0 auto;
}

.philosophy-image-wrapper {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

.philosophy-image {
  aspect-ratio: 3/2;
  background: var(--paper-deep);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.philosophy-image::after {
  content: '';
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  z-index: -1;
}

.philosophy-image-wrapper {
  position: relative;
  padding: 20px 20px 0 0;
}

.philosophy-body .eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 20px;
}

.philosophy-logo {
  display: block;
  width: clamp(220px, 32vw, 320px);
  height: auto;
  margin: 8px 0 28px;
}

@media (max-width: 980px) {
  .philosophy-logo { width: clamp(180px, 60vw, 260px); margin: 4px auto 24px; }
}

.philosophy-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.philosophy-body p {
  font-size: 0.96rem;
  line-height: 2;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* =========================================================
   Features (3 strengths)
   ========================================================= */

.features {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
  transition: transform 300ms ease, box-shadow 300ms ease;
  display: flex;
  flex-direction: column;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 25, 22, 0.06);
}

.feature-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--paper-deep);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
  filter: contrast(1.02);
}

.feature:hover .feature-image img {
  filter: contrast(1.04) saturate(1.05);
}

.feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(184, 153, 104, 0.12) 0%, transparent 45%, rgba(21, 20, 15, 0.18) 100%);
  z-index: 2;
  pointer-events: none;
}

.feature-image::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 2;
  pointer-events: none;
  transition: inset 300ms ease, border-color 300ms ease;
}

.feature:hover .feature-image::after {
  inset: 10px;
  border-color: rgba(255, 255, 255, 0.32);
}

.feature-image-label {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 3;
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.feature:hover .feature-image img {
  transform: scale(1.04);
}

.feature-body {
  padding: 36px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-num {
  font-family: var(--display);
  font-size: 0.78rem;
  font-style: italic;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 18px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.feature p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.95;
}

/* Editorial / alternating-row features (one item per row, left↔right) */
.features.editorial {
  grid-template-columns: 1fr;
  gap: 100px;
}
.features.editorial .feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  background: transparent;
  border: none;
  overflow: visible;
  align-items: center;
  padding: 0;
}
.features.editorial .feature:hover {
  transform: none;
  box-shadow: none;
}
.features.editorial .feature:nth-child(even) {
  grid-template-columns: 1fr 1.05fr;
}
.features.editorial .feature:nth-child(even) .feature-image { order: 2; }
.features.editorial .feature:nth-child(even) .feature-body  { order: 1; }
.features.editorial .feature-image {
  aspect-ratio: 4/3;
  border-radius: 4px;
}
.features.editorial .feature-body {
  padding: 8px 0;
  position: relative;
}
.features.editorial .feature-num {
  font-size: 0.88rem;
  letter-spacing: 0.32em;
  margin-bottom: 22px;
}
.features.editorial .feature-num::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 16px;
}
.features.editorial .feature h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.5;
  margin-bottom: 26px;
}
.features.editorial .feature p {
  font-size: 1rem;
  line-height: 2.1;
  max-width: 480px;
}

@media (max-width: 980px) {
  .features.editorial { gap: 60px; }
  .features.editorial .feature,
  .features.editorial .feature:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .features.editorial .feature:nth-child(even) .feature-image { order: 0; }
  .features.editorial .feature:nth-child(even) .feature-body  { order: 0; }
}

/* Belong band — full-bleed community-vibe photo with overlay quote */
.belong {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: grid;
  place-items: center;
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
  padding: 120px 40px;
}

.belong-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #15140f;
}

.belong-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.22) saturate(0.85) contrast(1.05) brightness(0.62);
}

.belong-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 20, 15, 0.55) 0%, rgba(21, 20, 15, 0.4) 50%, rgba(21, 20, 15, 0.75) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(21, 20, 15, 0.55) 100%);
  z-index: 1;
}

.belong-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(100%, 880px);
}

.belong-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 0.86rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.belong-eyebrow::before,
.belong-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.belong h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.06em;
  color: var(--paper);
  margin-bottom: 28px;
}

.belong h2 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--paper-deep);
}

.belong p {
  font-size: 1rem;
  line-height: 2.1;
  color: rgba(251, 249, 244, 0.82);
  max-width: 620px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .belong { min-height: 56vh; padding: 80px 22px; }
}

/* Dual marquee — two opposing tracks */
.marquee.dual { padding: 18px 0; }
.marquee.dual .marquee-track {
  font-size: 1.25rem;
}
.marquee.dual .marquee-track + .marquee-track {
  margin-top: 12px;
  animation-direction: reverse;
  animation-duration: 46s;
  color: var(--accent);
  opacity: 0.78;
  font-size: 1.1rem;
}
.marquee.dual .marquee-track + .marquee-track .marquee-dot {
  background: var(--paper-deep);
}

/* =========================================================
   Numbers
   ========================================================= */

.numbers {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  text-align: center;
}

.number-item .eyebrow {
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  margin-bottom: 16px;
}

.number-item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.8vw, 3.4rem);
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.section.dark .number-item strong { color: var(--paper); }
.section.dark .number-item .eyebrow { color: var(--accent); }

.number-item small {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

.section.dark .number-item small { color: rgba(251, 249, 244, 0.5); }

/* =========================================================
   Members gallery (about page)
   ========================================================= */

.members-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.member-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-deep);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.member-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
  transition: transform 600ms ease;
}

.member-thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(26, 25, 22, 0.1);
}

.member-thumb:hover img { transform: scale(1.05); }

.member-thumb-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 14px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 25, 22, 0.78) 100%);
  color: #fff;
}

.member-thumb-label .name {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: block;
}

.member-thumb-label .role {
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
  display: block;
  margin-top: 2px;
}

@media (max-width: 980px) {
  .members-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  .members-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Uniform members layout — 5 members in a clean 5-column row */
.members-grid.editorial {
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.members-grid.editorial > .member-thumb { aspect-ratio: 3/4; }

@media (max-width: 980px) {
  .members-grid.editorial {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }
  .members-grid.editorial > * {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 3/4 !important;
  }
}

/* =========================================================
   Voice / Testimonials
   ========================================================= */

.voice-grid {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.voice-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(26, 25, 22, 0.08);
}

.voice-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-deep);
}

.voice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02);
  transition: transform 600ms ease;
}

.voice-card:hover .voice-img img { transform: scale(1.03); }

.voice-body {
  padding: 32px 28px;
}

.voice-meta {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.voice-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 4px;
}

.voice-role {
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

.voice-quote {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--ink-soft);
  font-style: italic;
}

.voice-quote::before {
  content: '"';
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 0;
  margin-right: 4px;
  vertical-align: -0.4em;
}

.voice-dots { display: none; }

/* =========================================================
   CTA Block
   ========================================================= */

.cta {
  text-align: center;
  padding: 120px 40px;
  background:
    radial-gradient(ellipse at center, rgba(184, 153, 104, 0.14), transparent 70%),
    var(--paper-soft);
}

.cta-inner {
  width: min(100%, 720px);
  margin: 0 auto;
}

.cta .eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-size: 0.84rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 20px;
}

.cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.65;
  margin-bottom: 24px;
}

.cta p {
  color: var(--ink-soft);
  margin-bottom: 40px;
  font-size: 0.98rem;
  line-height: 2;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: var(--ink);
  color: rgba(251, 249, 244, 0.7);
  padding: 80px 40px 40px;
}

.footer-inner {
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251, 249, 244, 0.1);
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 4px;
}

.footer-brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: rgba(251, 249, 244, 0.5);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.9;
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-deep);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.86rem;
  color: rgba(251, 249, 244, 0.7);
  transition: color 200ms ease;
}

.footer-col a:hover { color: var(--paper); }

.footer-copyright {
  text-align: center;
  padding-top: 40px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  color: rgba(251, 249, 244, 0.4);
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 980px) {
  .philosophy { grid-template-columns: 1fr; gap: 50px; }
  .philosophy-image-wrapper { position: static; }
  .features { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .voice-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav { display: none; }
  .nav-toggle { display: block; }
  .site-header { padding: 0 16px; }
  .header-cta { padding: 10px 16px; font-size: 0.78rem; letter-spacing: 0.14em; }
  .brand-logo { height: 48px; max-width: 160px; }
  .site-header.is-scrolled .brand-logo { height: 38px; }
  .section { padding: 84px 20px; }
  .section-head { margin-bottom: 48px; }

  /* --- Hero: full-bleed --- */
  .hero {
    padding: calc(var(--header-h) + 50px) 20px 64px;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-title {
    font-size: clamp(1.55rem, 6.4vw, 2.3rem);
    line-height: 1.36;
    margin-bottom: 28px;
    white-space: nowrap;
  }
  .hero-title .line { white-space: nowrap; }
  .hero-vertical { display: none; }
  .hero-eyebrow { font-size: 0.78rem; margin-bottom: 28px; }
  .hero-eyebrow::before { width: 36px; }
  .hero-sub { font-size: 0.96rem; line-height: 2; margin-bottom: 36px; }
  .hero-actions { gap: 10px; margin-bottom: 40px; }
  .hero-actions .btn { padding: 13px 22px; font-size: 0.8rem; letter-spacing: 0.14em; }

  /* --- Hero stats: 3+2 layout, less cramped --- */
  .hero-stats {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin: 40px 0 0;
    padding-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 14px;
  }
  .hero-stat { min-width: 0; flex: none; }
  .hero-stat-label { font-size: 0.66rem; letter-spacing: 0.14em; }
  .hero-stat-value { font-size: clamp(1.05rem, 4.4vw, 1.4rem); }
  .hero-stat:nth-child(4) { grid-column: 1 / 3; }
  .hero-stat:nth-child(5) { grid-column: 3 / 4; }

  .scroll-cue { display: none; }

  /* --- Sub-hero --- */
  .sub-hero { padding: calc(var(--header-h) + 44px) 20px 56px; }
  .sub-hero h1 { font-size: clamp(1.7rem, 6.4vw, 2.3rem); }
  .sub-hero p.lead { font-size: 0.92rem; }
  .breadcrumb { padding: 16px 20px; font-size: 0.72rem; }

  .info-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }

  /* --- Section watermark: lighter on mobile --- */
  .section-watermark { opacity: 0.035; }

  /* --- Mobile body padding for sticky bottom bar --- */
  body { padding-bottom: 68px; }

  /* --- Intro splash: optimized --- */
  .intro-splash-logo { width: clamp(220px, 70vw, 360px); }
  .intro-splash-sub { font-size: 0.7rem; letter-spacing: 0.4em; margin-top: 18px; }

  /* --- Hide 3D canvas on mobile by default (performance) --- */
  .hero-3d { opacity: 0.85; }
}

@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: left; }
  .header-cta { padding: 9px 14px; font-size: 0.72rem; letter-spacing: 0.12em; }
  .section { padding: 56px 18px; }
  .section-head { margin-bottom: 30px; }
  .section-head h2 { font-size: clamp(1.55rem, 5.5vw, 2rem); line-height: 1.7; }
  .section-head p { font-size: 0.9rem; }
  .sub-hero { padding: calc(var(--header-h) + 36px) 18px 44px; }

  /* --- Numbers: vertical, slightly smaller --- */
  .numbers {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 340px;
  }
  .number-item { text-align: center; }
  .number-item strong { font-size: clamp(2.2rem, 10vw, 3rem); }
  .number-item .eyebrow { letter-spacing: 0.22em; font-size: 0.78rem; }
  .number-item small { font-size: 0.74rem; }

  /* --- Members grid: single column, smaller aspect, max 270px --- */
  .members-grid,
  .members-grid.editorial {
    grid-template-columns: 1fr !important;
    grid-template-rows: none;
    gap: 18px;
    max-width: 270px;
  }
  .members-grid > *,
  .members-grid.editorial > * {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 3/4 !important;
    box-shadow: 0 14px 30px rgba(26, 25, 22, 0.1);
    border-radius: 6px;
  }
  .member-thumb-label { padding: 18px 16px 14px; }
  .member-thumb-label .name { font-size: 0.92rem; }
  .member-thumb-label .role { font-size: 0.68rem; }

  /* --- Voice cards: horizontal scroll w/ swipe hint --- */
  .voice-grid {
    grid-template-columns: none;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 18px 18px;
    margin: 0 -18px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .voice-grid::-webkit-scrollbar { display: none; }
  .voice-card {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: center;
  }
  .voice-img { aspect-ratio: 1/1; }
  .voice-body { padding: 22px 20px; }
  .voice-name { font-size: 0.95rem; }
  .voice-quote { font-size: 0.85rem; line-height: 1.9; }

  /* Carousel dots indicator (positioned below voice-grid) */
  .voice-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 0 18px;
  }
  .voice-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--line);
    transition: background 280ms ease, transform 280ms ease, width 280ms ease;
  }
  .voice-dot.is-active {
    background: var(--accent-deep);
    width: 22px;
    border-radius: 4px;
  }

  /* --- Hero stats: 2-col with last spanning --- */
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  .hero-stat:nth-child(4) { grid-column: auto; }
  .hero-stat:nth-child(5) { grid-column: 1 / 3; }
  .hero-stat-label { font-size: 0.62rem; }
  .hero-stat-value { font-size: clamp(0.95rem, 4vw, 1.25rem); }

  /* --- Hero copy --- */
  .hero-eyebrow { font-size: 0.72rem; margin-bottom: 22px; letter-spacing: 0.26em; }
  .hero-sub { font-size: 0.88rem; line-height: 1.95; margin-bottom: 30px; }

  /* --- Typography: tighter mobile scale --- */
  .feature h3 { font-size: 1.08rem; line-height: 1.55; }
  .content-card h3 { font-size: 1.1rem; line-height: 1.55; }
  .content-card-body { padding: 22px 20px; }
  .feature-body { padding: 22px 20px; }
  .content-card p, .feature p { font-size: 0.85rem; line-height: 1.85; }
  .content-card-image { aspect-ratio: 16/11; }
  .feature-image { aspect-ratio: 3/2; }
  .philosophy-body h2 { font-size: clamp(1.3rem, 5vw, 1.55rem); line-height: 1.7; }
  .philosophy-body p { font-size: 0.88rem; line-height: 1.9; }
  .philosophy-image { aspect-ratio: 3/2; max-width: 100%; margin: 0 auto; }
  .philosophy-logo { width: clamp(180px, 50vw, 240px); margin-bottom: 18px; }
  .belong h2 { font-size: clamp(1.4rem, 6vw, 1.9rem); }

  /* --- Belong section: more compact on mobile --- */
  .belong { min-height: 44svh; padding: 56px 18px; }
  .belong-eyebrow { font-size: 0.7rem; letter-spacing: 0.26em; margin-bottom: 18px; }
  .belong p { font-size: 0.88rem; line-height: 1.95; }

  /* --- Marquee: thinner --- */
  .marquee { padding: 14px 0; }
  .marquee-track { font-size: 0.9rem; }
  .marquee.dual .marquee-track + .marquee-track { font-size: 0.78rem; }

  /* --- CTA section --- */
  .cta { padding: 64px 18px; }
  .cta h2 { font-size: clamp(1.35rem, 5.2vw, 1.7rem); line-height: 1.7; }
  .cta p { font-size: 0.88rem; }

  /* --- FAQ summary tighter --- */
  .faq-item summary { font-size: 0.92rem; padding: 20px 0; }
  .faq-item p { font-size: 0.86rem; line-height: 1.9; padding-bottom: 22px; }

  /* --- Achievements 3-col → 1-col --- */
  .content-grid.cols-3 { grid-template-columns: 1fr; gap: 22px; max-width: 320px; margin: 0 auto; }

  /* --- Editorial features: more breathing room --- */
  .features.editorial { gap: 36px; }
  .features.editorial .feature h3 { font-size: 1.25rem; }
  .features.editorial .feature p { font-size: 0.88rem; }
}

/* =========================================================
   Sticky bottom CTA bar (mobile only)
   ========================================================= */

.mobile-cta-bar { display: none; }

@media (max-width: 980px) {
  .mobile-cta-bar {
    display: flex;
    align-items: stretch;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(21, 20, 15, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(184, 153, 104, 0.28);
    z-index: 50;
    box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.18);
  }
  .mobile-cta-bar a {
    flex: 1;
    padding: 16px 18px;
    color: var(--paper);
    font-family: var(--display);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-align: center;
    text-transform: uppercase;
    transition: background 200ms ease, color 200ms ease;
  }
  .mobile-cta-bar a + a {
    border-left: 1px solid rgba(251, 249, 244, 0.16);
  }
  .mobile-cta-bar a.primary {
    background: var(--accent);
    color: var(--ink);
  }
  .mobile-cta-bar a:active { background: var(--accent-deep); color: var(--paper); }
  body.menu-open .mobile-cta-bar,
  body.intro-locking .mobile-cta-bar { display: none; }
}
