/* ================================================================
   SIRAE MANAGEMENT — style.css (Design 1 inspired)
   Cream-forward editorial aesthetic. Bold display serif + cursive.
   Section rhythm: Cream hero → Black about → Cream services →
                   Black roster → Cream philosophy → Black contact
   ================================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Cream (primary surfaces) */
  --cream:       #F0EDEA;
  --cream-mid:   #E8E4E0;
  --cream-dark:  #DAD5D0;

  /* Black (contrast sections) */
  --black:       #0A0A09;
  --black-soft:  #111110;
  --black-mid:   #1A1917;

  /* Text */
  --on-cream:    #0D0C0A;
  --on-black:    #F2F0EA;
  --dim-cream:   #8A8070;
  --dim-black:   rgba(242,240,234,0.50);

  /* Borders */
  --bd-cream:    rgba(13,12,10,0.10);
  --bd-black:    rgba(242,240,234,0.08);

  /* Type */
  --display: 'Playfair Display', Georgia, serif;     /* bold editorial */
  --serif:   'Cormorant Garamond', Georgia, serif;   /* cursive/italic */
  --sans:    system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-h:  72px;
  --px:     clamp(24px, 5.5vw, 88px);
  --sy:     clamp(80px, 10vw, 140px);
  --mw:     1320px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--on-cream);
  font-family: var(--sans);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; cursor: none; }

/* ── LOGO SVG ───────────────────────────────────────────────── */
.splash__svg {
  width: clamp(220px, 34vw, 500px);
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* Nav logo: invert white→black on cream background */
.nav__svg {
  height: clamp(52px, 6vw, 84px);
  width: auto;
  display: block;
  filter: invert(1) brightness(0.05);
  transition: height 0.4s cubic-bezier(0.16,1,0.3,1), filter 0.4s ease;
}
.nav.scrolled .nav__svg {
  height: clamp(26px, 2.8vw, 38px);
}


/* ── GRAIN OVERLAY ───────────────────────────────────────────── */
.grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── TAGS / LABELS ───────────────────────────────────────────── */
.tag {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dim-cream);
  display: block;
  margin-bottom: 36px;
}
.tag--lt { color: rgba(242,240,234,0.38); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
/* Primary: dark fill on cream */
.btn-dark {
  background: var(--on-cream);
  color: var(--cream);
  border-color: var(--on-cream);
}
.btn-dark:hover { background: var(--black-mid); border-color: var(--black-mid); }
/* Ghost: outlined on cream */
.btn-outline {
  border-color: rgba(13,12,10,0.30);
  color: var(--dim-cream);
}
.btn-outline:hover { border-color: var(--on-cream); color: var(--on-cream); }

/* ── CURSOR ─────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 6px; height: 6px;
  background: var(--on-black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.22s, height 0.22s, opacity 0.2s, background 0.3s;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor.big { width: 44px; height: 44px; }

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(13,12,10,0.30);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.32s, height 0.32s, border-color 0.3s;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-ring.big { width: 52px; height: 52px; }
.cursor.no-blend, .cursor-ring.no-blend { mix-blend-mode: normal; }

@media (hover: none) { .cursor, .cursor-ring { display: none; } }

/* ─────────────────────────────────────────────────────────────
   SPLASH — dark intro, white logo
   ───────────────────────────────────────────────────────────── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
#splash.exit  { opacity: 0; pointer-events: none; }
#splash.gone  { display: none; }

.splash__slogan {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.8vw, 22px);
  color: rgba(242,240,234,0.85);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(10px);
  animation: rise 1.2s cubic-bezier(0.16,1,0.3,1) 1.1s forwards;
}

.splash__rule {
  width: 1px;
  height: 0;
  background: rgba(242,240,234,0.35);
  animation: grow 0.7s ease 1.5s forwards;
}

@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes grow { to { height: 56px; } }

/* ─────────────────────────────────────────────────────────────
   NAV — cream, dark text
   ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--px);
  background: var(--cream);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, height 0.4s ease, background 0.4s ease;
}
.nav.scrolled {
  border-bottom-color: var(--bd-cream);
  height: 58px;
}

/* Links */
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim-cream);
  transition: color 0.25s;
}
.nav__link:hover { color: var(--on-cream); }

.nav__link--cta {
  padding: 8px 18px;
  border: 1px solid var(--bd-cream);
  color: var(--dim-cream);
  transition: all 0.3s;
}
.nav__link--cta:hover {
  background: var(--on-cream);
  border-color: var(--on-cream);
  color: var(--cream);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--on-cream);
  transition: transform 0.35s, opacity 0.25s;
}
.nav__burger.open span:first-child  { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:last-child   { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────────────
   MOBILE MENU
   ───────────────────────────────────────────────────────────── */
.mob {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mob.open { opacity: 1; pointer-events: all; }
.mob__link {
  font-family: var(--serif);
  font-size: clamp(36px, 9vw, 58px);
  font-weight: 400;
  color: var(--on-black);
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.2s;
  display: block;
}
.mob__link:hover { opacity: 0.60; transform: translateX(6px); }

/* ─────────────────────────────────────────────────────────────
   HERO — cream split: text left, editorial photo right
   ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--cream);
  color: var(--on-cream);
  display: grid;
  grid-template-columns: 54% 46%;
  grid-template-rows: 1fr auto;
  overflow: hidden;
}
.hero .grain { mix-blend-mode: multiply; opacity: 0.06; }

/* Text column */
.hero__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 52px) var(--px) 64px;
  position: relative;
  z-index: 2;
}

/* Photo column */
.hero__photos {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  overflow: visible;
}

.hero__photo-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* picture defaults to display:inline in Safari — make it a block so img
   percentage heights resolve correctly against the positioned container */
.hero__photo-main picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* filter removed — show original image color */
}


/* Hero text elements */
.hero__geo {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim-cream);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s 0.05s, transform 0.7s 0.05s;
}

.hero__hl {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  line-height: 1;
}

/* "Building" — Cormorant italic, the cursive element */
.hl-serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1.15;
  color: var(--on-cream);
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s 0.10s cubic-bezier(0.16,1,0.3,1),
              transform 0.9s 0.10s cubic-bezier(0.16,1,0.3,1);
}

/* "CULTURAL CAPITAL." — Playfair Display Black */
.hl-display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(52px, 8.5vw, 126px);
  line-height: 0.90;
  letter-spacing: -0.015em;
  color: var(--on-cream);
  display: block;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s calc(var(--i) * 0.13s + 0.22s) cubic-bezier(0.16,1,0.3,1),
              transform 0.9s calc(var(--i) * 0.13s + 0.22s) cubic-bezier(0.16,1,0.3,1);
}

.hero__sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.80;
  color: var(--on-cream);
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s 0.58s, transform 0.7s 0.58s;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s 0.76s, transform 0.6s 0.76s;
}

body.loaded .hero__geo,
body.loaded .hl-serif,
body.loaded .hl-display,
body.loaded .hero__sub,
body.loaded .hero__ctas { opacity: 1; transform: translateY(0); }

/* Text ticker — above footer */
.ticker {
  background: var(--black);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  white-space: nowrap;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  animation: tickRoll 28s linear infinite;
}
@-webkit-keyframes tickRoll {
  from { -webkit-transform: translate3d(0, 0, 0); }
  to   { -webkit-transform: translate3d(-50%, 0, 0); }
}
@keyframes tickRoll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Logo ticker — spans full width in Hero grid */
.logo-ticker {
  grid-column: 1 / -1;
  grid-row: 2;
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 4;
  /* translateZ(0) promotes this container to its own GPU layer so overflow:hidden
     clips the animated child correctly on iOS Safari — do NOT add will-change to the track */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.logo-ticker__track {
  display: flex;
  align-items: center;
  gap: 52px;
  width: -webkit-max-content;
  width: max-content;
  /* animation applied via .ready class after JS injects content — fixes Safari empty-width bug */
}
.logo-ticker__track.ready {
  -webkit-animation: tickRoll 55s linear infinite;
  animation: tickRoll 55s linear infinite;
}
.logo-ticker__logo {
  height: 20px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.75;
}
.logo-ticker__logo--louboutin {
  height: 28px;
}

/* ─────────────────────────────────────────────────────────────
   ABOUT — black, editorial impact headline
   ───────────────────────────────────────────────────────────── */
.about {
  background: var(--black);
  color: var(--on-black);
  padding: var(--sy) 0;
  position: relative;
  overflow: hidden;
}

.about__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.about__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}

.about__impact {
  margin-bottom: 72px;
}
.about__impact-serif {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 58px);
  color: var(--on-black);
  line-height: 1.2;
  opacity: 0.80;
}
.about__impact-display {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 152px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  color: var(--on-black);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__quote {
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 22px);
  font-style: italic;
  line-height: 1.65;
  color: var(--dim-black);
  border-left: 1px solid rgba(242,240,234,0.15);
  padding-left: 28px;
}

.about__body {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.90;
  color: var(--dim-black);
  margin-bottom: 52px;
}

.about__stats { display: flex; gap: 48px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat__n {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  color: var(--on-black);
  letter-spacing: -0.01em;
}
.stat__l {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--dim-black);
  padding-top: 6px;
}

/* ─────────────────────────────────────────────────────────────
   STORY — cream, founder portrait + bio
   ───────────────────────────────────────────────────────────── */
.story {
  background: var(--black-soft);
  color: var(--on-black);
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.story__tag {
  position: absolute;
  top: var(--sy);
  left: var(--px);
  z-index: 2;
}

.story__photo {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.story__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.story__photo-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--black-soft) 100%);
}

.story__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sy) var(--px) var(--sy) clamp(16px, 2vw, 32px);
}

.story__impact {
  margin-bottom: 36px;
  margin-left: clamp(-72px, -6vw, -40px);
}

.story__impact-serif {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 48px);
  color: var(--on-black);
  line-height: 1.2;
  opacity: 0.70;
  margin-left: clamp(-32px, -3vw, -16px);
}

.story__impact-display {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(52px, 8.5vw, 130px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  color: var(--on-black);
}

.story__title {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dim-black);
  margin-top: 28px;
  margin-bottom: 28px;
}

.story__body {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.90;
  color: var(--on-black);
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES — cream, editorial numbered cards
   ───────────────────────────────────────────────────────────── */
.services {
  position: relative;
  background: var(--cream);
  color: var(--on-cream);
  padding: var(--sy) 0;
  overflow: hidden;
}
.services .grain { mix-blend-mode: multiply; }

.services__bg-wrap {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.services__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.services .container {
  position: relative;
  z-index: 1;
}
.services__top {
  margin-bottom: 0;
}
.services__hl {
  margin-bottom: 72px;
}
.services__hl-serif {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 58px);
  color: var(--on-cream);
  line-height: 1.2;
  opacity: 0.80;
}
.services__hl-display {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 152px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  color: var(--on-cream);
}

.services__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--bd-cream);
}

.svc {
  padding: 36px 40px;
  border-right: 1px solid var(--bd-cream);
  position: relative;
  z-index: 1;
  background: rgba(240, 237, 234, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--sd, 0s) ease,
              transform 0.75s var(--sd, 0s) ease,
              background 0.3s ease;
}
.svc.visible { opacity: 1; transform: translateY(0); }
.svc:last-child { border-right: none; }
.svc:hover { background: var(--cream-mid); }

.svc-carousel-wrap { position: relative; }
.svc-arrow { display: none; }
.svc-dots { display: none; }

/* Large editorial number */
.svc__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--on-cream);
  margin-bottom: 20px;
}
.svc__text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.88;
  color: var(--on-cream);
}

/* ─────────────────────────────────────────────────────────────
   ROSTER / MARQUEE — black, editorial headline + marquee
   ───────────────────────────────────────────────────────────── */
.roster {
  position: relative;
  background: var(--black-soft);
  padding: var(--sy) 0;
  padding-bottom: 0;
  overflow: hidden;
}

.roster__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.roster__top .tag { margin-bottom: 0; }

/* Editorial "Our ROSTER" heading */
.roster__headline {
  margin-bottom: 60px;
  line-height: 1;
}
.roster__hl-serif {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 58px);
  color: rgba(242,240,234,0.55);
  margin-bottom: 4px;
}
.roster__hl-display {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(56px, 10vw, 152px);
  letter-spacing: -0.02em;
  color: var(--on-black);
  line-height: 0.88;
}

/* Marquee */
.marquee {
  overflow: hidden;
  position: relative;
  padding-top: 56px;
  padding-bottom: var(--sy);
  /* translateZ(0) promotes container to GPU layer so overflow:hidden clips
     the animated child correctly on iOS Safari */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(40px, 6vw, 96px);
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--black-soft), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--black-soft), transparent); }

.marquee__track {
  display: flex;
  width: max-content;
  /* animation applied via .ready class after JS injects content — fixes Safari empty-width bug */
}
.marquee__track.ready {
  animation: mroll 62s linear infinite;
}
@media (hover: hover) {
  .marquee:hover .marquee__track.ready { animation-play-state: paused; }
}

@keyframes mroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Talent card */
.tc {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 36px 8px;
  gap: 12px;
  transition: opacity 0.3s;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}
.tc:hover { opacity: 0.80; }

.tc__ring {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  padding: 2px;
  background: rgba(242,240,234,0.10);
  flex-shrink: 0;
  transition: background 0.4s;
}
.tc:hover .tc__ring { background: rgba(242,240,234,0.30); }
.tc__img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.tc__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(80%) contrast(1.05);
  transition: filter 0.6s ease;
}
.tc:hover .tc__img { filter: grayscale(0%) contrast(1); }

.tc__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--on-black);
  letter-spacing: 0.02em;
}
.tc__handle {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(242,240,234,0.35);
  margin-top: -4px;
}
.tc__count {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,240,234,0.25);
}

/* ─────────────────────────────────────────────────────────────
   PHILOSOPHY — cream, massive editorial type
   ───────────────────────────────────────────────────────────── */
.philo {
  background: var(--cream);
  color: var(--on-cream);
  padding: var(--sy) 0;
}

.philo__lines { margin: 48px 0 40px; }

/* Line 1: bold display */
.philo__l--display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(44px, 7.5vw, 110px);
  line-height: 0.92;
  color: var(--on-cream);
  letter-spacing: -0.015em;
  display: block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s calc(var(--pi) * 0.15s) cubic-bezier(0.16,1,0.3,1),
              transform 0.95s calc(var(--pi) * 0.15s) cubic-bezier(0.16,1,0.3,1);
}
.philo__l--display.vis { opacity: 1; transform: translateY(0); }

/* Lines 2–3: Cormorant italic */
.philo__l {
  font-family: var(--serif);
  font-size: clamp(36px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--on-cream);
  display: block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s calc(var(--pi) * 0.15s) cubic-bezier(0.16,1,0.3,1),
              transform 0.95s calc(var(--pi) * 0.15s) cubic-bezier(0.16,1,0.3,1);
}
.philo__l.vis { opacity: 1; transform: translateY(0); }
.philo__l--in  { padding-left: clamp(32px, 7vw, 128px); }
.philo__l--it  { font-style: italic; }
.philo__l--dim { color: var(--dim-cream); }
.philo__l--disp-font { font-family: var(--display); font-weight: 900; }

.philo__sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.88;
  color: var(--on-cream);
  max-width: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s 0.5s, transform 0.7s 0.5s;
}
.philo__sub.vis { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────────
   EVENTS — two-column layout with film reel scrollers
   ───────────────────────────────────────────────────────────── */
.events {
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  height: 100vh;
}

.events__quote {
  flex: 0 0 50%;
  padding: var(--sy) clamp(16px, 3vw, 52px) var(--sy) var(--px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.events__reels {
  flex: 1;
  display: flex;
  gap: 0;
  overflow: hidden;
}

.events__reel {
  flex: 1;
  overflow: hidden;
  height: 112%;
  align-self: flex-start;
}

.events__reel--a {
  transform: rotate(-3deg) translateY(-3%);
}

.events__reel--b {
  transform: rotate(3deg) translateY(-3%);
  margin-left: -18px;
  z-index: 1;
}

.events__reel-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
}

.events__reel--a .events__reel-track {
  animation: reelUp 110s linear infinite;
}

.events__reel--b .events__reel-track {
  animation: reelDown 135s linear infinite;
}

.events__photo {
  width: 92%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  align-self: center;
}

@keyframes reelUp {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -50%, 0); }
}

@keyframes reelDown {
  from { transform: translate3d(0, -50%, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

@keyframes reelLeft {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ─────────────────────────────────────────────────────────────
   CONTACT — black, mixed type headline
   ───────────────────────────────────────────────────────────── */
.contact {
  position: relative;
  background: var(--black);
  color: var(--on-black);
  padding: var(--sy) 0 clamp(40px, 5vw, 64px);
  overflow: hidden;
}

.contact__hl {
  display: flex;
  flex-direction: column;
  margin-bottom: 44px;
  line-height: 1;
}
.contact__hl-serif {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 88px);
  color: rgba(242,240,234,0.65);
  line-height: 1.15;
}
.contact__hl-display {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(72px, 14vw, 200px);
  letter-spacing: -0.02em;
  color: var(--on-black);
  line-height: 0.88;
}

.contact__body {
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.88;
  color: var(--dim-black);
  max-width: 560px;
  margin-bottom: 48px;
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-black);
  padding: 18px 32px;
  border: 1px solid rgba(242,240,234,0.18);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.contact__btn:hover {
  background: var(--on-black);
  color: var(--black);
  border-color: var(--on-black);
}
.contact__btn svg { transition: transform 0.3s; flex-shrink: 0; }
.contact__btn:hover svg { transform: translateX(6px); }

.contact__meta {
  position: absolute;
  /* align top with bottom of TALK.: padding + tag(45px) + "Let's" + TALK height */
  top: calc(var(--sy) + 45px + clamp(46px, 6.9vw, 101px) + clamp(63px, 12.3vw, 176px));
  right: var(--px);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact__meta-name {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: var(--on-black);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.contact__meta-addr {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,240,234,0.45);
  line-height: 1.9;
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--bd-black);
  padding: 20px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,240,234,0.4);
}
.footer__ig {
  color: rgba(242,240,234,0.55);
  transition: color 0.25s;
  display: flex;
  align-items: center;
}
.footer__ig:hover { color: var(--on-black); }

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: 100svh;
  }
  .hero__content {
    grid-column: 1;
    grid-row: 1;
    padding-bottom: 40px;
    min-height: 100svh;
    position: relative;
    z-index: 2;
  }
  .hero__photos {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: auto;
    max-height: none;
  }
  .hero__photos::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
      rgba(240,237,234,0.92) 30%,
      rgba(240,237,234,0.5) 65%,
      rgba(240,237,234,0.05) 100%
    );
    z-index: 1;
  }
  .hero__sub { max-width: 55%; }
  .hero__photo-main img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-43%);
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: initial;
  }
  .logo-ticker { grid-row: 2; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .story { flex-direction: column; }
  .story__photo { flex: none; height: 80vw; width: 100%; background: var(--black-soft); }
  .story__photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(2) translateY(-25%); transform-origin: top center; }
  .story__photo-fade { background: linear-gradient(to bottom, transparent 55%, var(--black-soft) 100%); }
  .story__panel { padding: 40px var(--px) var(--sy); margin-top: -120px; position: relative; z-index: 2; }
  .story__tag { top: var(--sy); }
  .story__impact { margin-left: 0; margin-bottom: 36px; }
  .story__impact-serif { margin-left: 0; }
  .story__title { margin-top: 8px; margin-bottom: 16px; }
  .services__bg-wrap {
    display: block;
    width: 65%;
    height: 100%;
    top: 0;
    right: 0;
  }
  .services__bg-img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: initial;
    opacity: 0.50;
  }
  .svc-carousel-wrap { position: relative; }
  .services__row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services__row::-webkit-scrollbar { display: none; }
  .svc {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: none;
    scroll-snap-align: start;
    opacity: 1;
    transform: none;
    transition: background 0.3s ease;
    padding-left: 60px;
    padding-right: 60px;
  }
  .svc-arrow {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(240, 237, 234, 0.88);
    border: 1px solid rgba(0, 0, 0, 0.10);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 17px;
    color: var(--on-cream);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0;
    line-height: 1;
  }
  .svc-arrow--prev { left: 10px; }
  .svc-arrow--next { right: 10px; }
  .svc-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 0 8px;
  }
  .svc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cream-dark);
    transition: background 0.3s;
    display: block;
  }
  .svc-dot--active { background: var(--on-cream); }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  /* Events — stack quote above a horizontal photo strip */
  .events { flex-direction: column; height: auto; }
  .events__quote {
    flex: none;
    width: 100%;
    padding: var(--sy) var(--px) 48px;
  }
  .events__reels { height: 140px; max-height: 140px; overflow: hidden; margin-bottom: clamp(48px, 10vw, 80px); }
  .events__reel { height: 140px; align-self: stretch; }
  .events__reel--b { display: none; }
  .events__reel--a {
    flex: none;
    width: 100%;
    transform: none;
    overflow: hidden;
  }
  .events__reel--a .events__reel-track {
    flex-direction: row;
    height: 140px;
    width: max-content;
    animation: reelLeft 40s linear infinite;
  }
  .events__photo {
    width: auto;
    height: 140px;
    max-width: none;
    aspect-ratio: 2 / 3;
    align-self: auto;
  }

}

@media (max-width: 600px) {
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .about__stats { gap: 28px; }
  .tc { padding: 8px 24px; }
  .tc__ring { width: 112px; height: 112px; }
  .contact__meta { position: static; text-align: left; margin-top: 40px; padding: 0 var(--px); }
  .ticker__track { font-size: 7px; animation-duration: 16s; }
}

/* ─────────────────────────────────────────────────────────────
   SCROLL REVEAL — generic fade + rise, toggled by JS
   ───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--rd, 0s) cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s var(--rd, 0s) cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

