/* ============================================================
   THIR COLLECTIVE — style.css
   Cinematic · Minimal · Premium · Editorial
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #1C1916;
  --bg-mid:      #211e1a;
  --bg-light:    #272320;
  --gold:        #B8966A;
  --gold-bright: #d4af6a;
  --cream:       #F5EFE4;
  --warm:        #E8D5B8;
  --stone:       #6b6259;
  --stone-light: #8a7e74;
  --text:        #E8D5B8;
  --text-muted:  #7a6f66;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, blockquote {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
}

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

strong {
  font-weight: 500;
  color: var(--cream);
}

/* ── Scroll Reveal ── */
.reveal-fade,
.reveal-up {
  opacity: 0;
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal-up {
  transform: translateY(32px);
}

.reveal-fade.visible,
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.container.narrow {
  max-width: 780px;
}

.container.center {
  text-align: center;
}

.section {
  padding: 140px 0;
  position: relative;
}

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 48px;
}

.section-title.large {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
}

/* ── Grain Overlay ── */
.grain-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.35;
  z-index: 1;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  padding: 14px 38px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
  z-index: 0;
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-primary:hover {
  color: var(--bg);
}

.btn-primary span,
.btn-primary {
  position: relative;
  z-index: 1;
}

.btn-primary.large {
  padding: 18px 52px;
  font-size: 13px;
}

.btn-ghost {
  display: inline-block;
  padding: 14px 38px;
  background: transparent;
  border: 1px solid rgba(184, 150, 106, 0.25);
  color: var(--stone-light);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.4s, color 0.4s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Tags ── */
.tag {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(184, 150, 106, 0.2);
  color: var(--stone-light);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag.small {
  padding: 5px 12px;
  font-size: 10px;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s;
}

.navbar.scrolled {
  background: rgba(28, 25, 22, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  gap: 24px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone-light);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--cream); }

.nav-links a.nav-cta {
  color: var(--gold);
  border: 1px solid rgba(184, 150, 106, 0.35);
  padding: 8px 20px;
  transition: color 0.3s, background 0.3s;
}

.nav-links a.nav-cta:hover {
  background: rgba(184, 150, 106, 0.1);
  color: var(--gold-bright);
}

.nav-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone-light);
  transition: color 0.3s;
}

.social-icon:hover { color: var(--gold); }

.social-icon svg {
  width: 20px;
  height: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
}

.hamburger span {
  display: block;
  height: 1px;
  background: var(--cream);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #1C1916;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out);
}

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

.mobile-overlay-inner {
  text-align: center;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 48px;
}

.mobile-nav-links li {
  overflow: hidden;
}

.mobile-link {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--gold); }

.mobile-social {
  display: flex;
  gap: 24px;
  justify-content: center;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 120px 40px 80px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: blur(1px) brightness(0.65);
  z-index: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70vmax;
  height: 70vmax;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 150, 106, 0.08) 0%,
    rgba(184, 150, 106, 0.03) 40%,
    transparent 70%
  );
  animation: breathe 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-logo-wrap {
  margin-bottom: 1px;
}

.hero-logo {
  height: 240px;
  width: auto;
  filter: brightness(0.95);
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #f2d06b;
  line-height: 0.9;
}

.hero-title-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.35em;
  color: #f2d06b;
}

.hero-title-line {
  width: 52px;
  height: 2px;
  background: #f2d06b;
  margin-top: 18px;
  border-radius: 999px;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: normal;
  color: var(--warm);
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-sub em {
  color: var(--gold);
  font-style: italic;
}

.hero-body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--stone-light);
  letter-spacing: 0.04em;
  max-width: 400px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollFade 2.5s ease-in-out infinite;
}

@keyframes scrollFade {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ===========================
   WHAT IS THIR
=========================== */
.what-is-thir {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.what-is-thir-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: blur(2px) brightness(0.45);
  z-index: 0;
  pointer-events: none;
}

.what-is-thir .container {
  position: relative;
  z-index: 2;
}

.what-body {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--warm);
}

/* ===========================
   BRAND STORY
=========================== */
.brand-story {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.brand-story-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.05;
  filter: blur(2px) brightness(0.45);
  z-index: 0;
  pointer-events: none;
}

.brand-story .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  
}

.story-block {
  padding: 28px 0;
}

.story-line {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.2;
}

.story-line.large {
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--cream);
}

.what-is-thir .story-line.large {
  margin-bottom: 28px;
}

.story-line.medium {
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--warm);
}

.story-line.muted {
  color: var(--stone-light);
}

.story-line.body-text {
  text-align: center;
  font-size: 2.5rem;
  font-style: bold;
  color: var(--stone-light);
  margin-bottom: 60px;
}

.story-line.gold {
  color: var(--gold);
  font-style: italic;
  text-align: center;
}

.story-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 150, 106, 0.2), transparent);
  margin: 16px 0;
}

.story-etymology {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--stone-light);
  letter-spacing: 0.06em;
  border-left: 1px solid var(--gold);
  padding-left: 24px;
  line-height: 1.8;
}

.story-etymology strong { color: var(--gold); }
.story-etymology em { color: var(--warm); font-style: italic; }

/* ===========================
   ECOSYSTEM
=========================== */
.ecosystem {
  position: relative;
  background: var(--bg-mid);
  overflow: hidden;
}

.ecosystem-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  filter: blur(2px) brightness(0.45);
  z-index: 0;
  pointer-events: none;
}

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

/* ── SVG Network container ── */
.eco-svg-container {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.eco-svg-map {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* ── Connector lines ── */
.eco-line {
  stroke: rgba(184, 150, 106, 0.22);
  stroke-width: 1;
  stroke-dasharray: 5 14;
  stroke-linecap: round;
  animation: ecoLinePulse 3s linear infinite;
  transition: stroke 0.4s, stroke-width 0.4s, filter 0.4s;
}

.eco-line--web {
  stroke: rgba(184, 150, 106, 0.12);
  stroke-dasharray: 3 16;
  animation-duration: 5s;
}

/* stagger so lines don't all pulse in lockstep */
.eco-line:nth-child(2)  { animation-delay: -0.3s; }
.eco-line:nth-child(3)  { animation-delay: -0.9s; }
.eco-line:nth-child(4)  { animation-delay: -1.5s; }
.eco-line:nth-child(5)  { animation-delay: -2.1s; }
.eco-line:nth-child(6)  { animation-delay: -0.6s; }
.eco-line:nth-child(7)  { animation-delay: -1.2s; }
.eco-line:nth-child(8)  { animation-delay: -1.8s; }
.eco-line:nth-child(9)  { animation-delay: -2.4s; }
.eco-line:nth-child(10) { animation-delay: -3.0s; }

@keyframes ecoLinePulse {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -57; }
}

/* ── Center hub ── */
.eco-hub-ring {
  fill: none;
  stroke: rgba(184, 150, 106, 0.18);
  stroke-width: 1;
  animation: hubRingPulse 3.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes hubRingPulse {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.15); opacity: 1;   }
}

.eco-hub-circle {
  fill: rgba(184, 150, 106, 0.10);
  stroke: rgba(184, 150, 106, 0.45);
  stroke-width: 1;
}

.eco-hub-label {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.26em;
  fill: var(--gold);
  text-anchor: middle;
}

.eco-hub-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  fill: rgba(184, 150, 106, 0.55);
  text-anchor: middle;
}

/* ── Nodes ── */
.eco-node-group {
  cursor: pointer;
}

.eco-node-rect {
  fill: rgba(28, 25, 22, 0.90);
  stroke: rgba(184, 150, 106, 0.28);
  stroke-width: 1;
  transition: fill 0.35s, stroke 0.35s;
}

.eco-node-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.13em;
  fill: rgba(245, 239, 228, 0.62);
  text-anchor: middle;
  dominant-baseline: middle;
  transition: fill 0.35s;
  pointer-events: none;
}

/* ── Hover: node ── */
.eco-node-group:hover .eco-node-rect {
  fill: rgba(184, 150, 106, 0.10);
  stroke: var(--gold);
}

.eco-node-group:hover .eco-node-text {
  fill: rgba(245, 239, 228, 0.95);
}

/* ── Hover: connected lines glow via :has() ── */
.eco-svg-map:has([data-node="workshops"]:hover) [data-line*="workshops"],
.eco-svg-map:has([data-node="ai"]:hover)        [data-line*="ai"],
.eco-svg-map:has([data-node="guided"]:hover)    [data-line*="guided"],
.eco-svg-map:has([data-node="group"]:hover)     [data-line*="group"],
.eco-svg-map:has([data-node="community"]:hover) [data-line*="community"] {
  stroke: rgba(184, 150, 106, 0.75);
  stroke-width: 1.5;
  filter: url(#eco-glow);
  animation-duration: 1.2s;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .eco-line, .eco-hub-ring { animation: none; }
}

/* ===========================
   WORKSHOPS
=========================== */
.workshops {
  background: var(--bg);
}
.workshops-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.workshop-heading-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.workshop-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1240px;
  margin: 60px auto 0;
  padding: 0 56px;
}

.workshop-cards {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1px;
  width: 100%;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: rgba(184, 150, 106, 0.08);
}

.workshop-cards::-webkit-scrollbar {
  display: none;
}

.workshop-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: none;
  border: 1px solid rgba(184, 150, 106, 0.4);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}

.workshop-arrow:hover {
  background: rgba(184, 150, 106, 0.12);
  border-color: var(--gold);
}

.workshop-arrow--prev { left: 0; }
.workshop-arrow--next { right: 0; }

.workshop-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.workshop-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(184, 150, 106, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.workshop-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

.workshop-card {
  min-width: min(420px, 80vw);
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--bg);
  transition: background 0.4s;
  cursor: pointer;
}

.workshop-card:hover {
  background: var(--bg-light);
}

.workshop-card-inner {
  padding: 60px 48px 52px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.workshop-num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--stone);
}

.workshop-name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--cream);
  margin: 0;
}

.workshop-tagline {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--stone-light);
  letter-spacing: 0.06em;
  flex: 1;
}

.workshop-btn {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.workshop-btn::after {
  content: '→';
  transition: transform 0.3s;
}

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

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 15, 0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
  padding: 24px;
  backdrop-filter: blur(8px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-mid);
  border: 1px solid rgba(184, 150, 106, 0.12);
  max-width: 620px;
  width: 100%;
  padding: 64px 56px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.5s var(--ease-out);
  max-height: 90svh;
  overflow-y: auto;
}

.modal-overlay.open .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--stone-light);
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px;
}

.modal-close:hover { color: var(--cream); }

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-content .modal-num {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 12px;
}

.modal-content .modal-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
}

.modal-content .modal-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.8;
  margin-bottom: 24px;
}

.modal-content .modal-outcome-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-content .modal-outcome {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--warm);
  line-height: 1.5;
}

/* ===========================
   GUIDED SESSIONS
=========================== */
.guided {
  background: var(--bg-mid);
}

.guided .section-label,
.guided .section-title {
  text-align: center;
}

.guided-body {
  color: var(--stone-light);
  font-size: 15px;
  line-height: 1.85;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.guided-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

/* ===========================
   AI COMPANION
=========================== */
.ai-companion {
  background: var(--bg);
  overflow: hidden;
  position: relative;
}

.ai-companion .section-label,
.ai-companion .section-title {
  text-align: center;
}

.ai-companion::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184, 150, 106, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.ai-badge {
  display: inline-block;
  border: 1px solid rgba(184, 150, 106, 0.3);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { border-color: rgba(184, 150, 106, 0.3); }
  50% { border-color: rgba(184, 150, 106, 0.7); }
}

.ai-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px auto;
  max-width: 760px;
}

.ai-card {
  padding: 40px 36px;
  background: var(--bg);
  position: relative;
}

.ai-card:nth-child(1),
.ai-card:nth-child(2) {
  border-bottom: 1px solid rgba(184, 150, 106, 0.18);
}

.ai-card:nth-child(1),
.ai-card:nth-child(3) {
  border-right: 1px solid rgba(184, 150, 106, 0.18);
}

.ai-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.ai-card-num {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.65;
}

.ai-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 150, 106, 0.07);
  border: 1px solid rgba(184, 150, 106, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}

.ai-card-heading {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 18px;
}

.ai-card-desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.8;
  border-left: 2px solid rgba(184, 150, 106, 0.4);
  padding-left: 16px;
}

@media (max-width: 640px) {
  .ai-cards {
    grid-template-columns: 1fr;
  }
  .ai-card:nth-child(1),
  .ai-card:nth-child(3) {
    border-right: none;
  }
  .ai-card:nth-child(1),
  .ai-card:nth-child(2),
  .ai-card:nth-child(3) {
    border-bottom: 1px solid rgba(184, 150, 106, 0.18);
  }
  .ai-card:nth-child(2) {
    border-bottom: 1px solid rgba(184, 150, 106, 0.18);
  }
  .ai-card {
    padding: 32px 24px;
  }
}

.ai-note {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--stone-light);
  max-width: 520px;
  line-height: 1.85;
  border-left: 1px solid rgba(184, 150, 106, 0.2);
  padding-left: 24px;
  margin: 0 auto;
}

/* ===========================
   PHILOSOPHY
=========================== */
.philosophy {
  background: var(--bg-mid);
  overflow: hidden;
}

.philosophy .section-label,
.philosophy .phil-text {
  text-align: center;
}

.philosophy .section-label {
  margin-bottom: 0;
}

.philosophy-lines {
  margin-top: 0;
}

.phil-line {
  padding: 24px 0;
}

.phil-text {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
}

.phil-text.large {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: var(--cream);
}

.phil-text.medium {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  color: var(--warm);
}

.phil-text.gold-italic {
  color: var(--gold);
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.phil-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 150, 106, 0.15), transparent);
  margin: 8px 0;
}

/* ===========================
   FOUNDERS
=========================== */
.founders {
  background: var(--bg);
}

.founders .section-label,
.founders .section-title {
  text-align: center;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.founder-img-wrap {
  position: relative;
  overflow: hidden;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(184, 150, 106, 0.2);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(10%) brightness(0.92);
  transition: filter 0.6s var(--ease-out), transform 0.8s var(--ease-out);
}

.founder-card:hover .founder-img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

.founder-img-overlay {
  display: none;
}

.founder-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.founder-name-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.founder-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
}

.founder-role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.founder-bg {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--stone-light);
}

.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.7;
  border: none;
  padding: 0;
}

.founder-quote::before {
  content: '"';
  color: var(--gold);
  font-size: 1.4em;
  line-height: 0;
  vertical-align: -0.2em;
  margin-right: 2px;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.founder-responsibilities {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--stone);
  text-transform: uppercase;
}

/* ===========================
   INQUIRY / CTA
=========================== */
.inquiry {
  background: var(--bg-mid);
  overflow: hidden;
}

.inquiry-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184, 150, 106, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.inquiry-sub {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--stone-light);
  margin-bottom: 48px;
}

/* Inquiry Modal */
.inquiry-modal {
  max-width: 680px;
  height: 85vh;
  max-height: none;
  overflow: hidden;
  padding: 48px 52px 40px;
  display: flex;
  flex-direction: column;
}

.inquiry-modal-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.inquiry-modal-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  flex-shrink: 0;
}

.inquiry-form-note {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--stone);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.inquiry-iframe-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 106, 0.15);
  box-shadow: inset 0 8px 16px rgba(28, 25, 22, 0.4),
              inset 0 -8px 16px rgba(28, 25, 22, 0.4);
  flex: 1;
  min-height: 0;
}

.inquiry-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

.inquiry-iframe-fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(to bottom, #211e1a, transparent);
  pointer-events: none;
  z-index: 1;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--bg);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo-block {
  flex-shrink: 0;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 8px;
  display: block;
  filter: brightness(0.7);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 300;
  font-style: italic;
  color: var(--stone);
  line-height: 1.4;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer-nav a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover { color: var(--gold); }

.footer-dot {
  color: rgba(184, 150, 106, 0.35);
  font-size: 14px;
  margin: 0 10px;
  line-height: 1;
}

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 150, 106, 0.1);
  padding: 14px 40px;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: var(--stone);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .nav-social { display: none; }
  .workshop-card-inner { padding: 44px 40px; }
  .founders-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 100px 0; }

  .nav-inner { padding: 18px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .container { padding: 0 24px; }

  
    padding: 100px 24px 80px; }
  .hero-logo { height: 180px; }
  .hero-title { letter-spacing: 0.12em; }

  .workshop-slider-wrap { padding: 0 44px; }

  .workshop-card-inner { padding: 40px 32px; }

  .modal-box { padding: 40px 28px; }

  .founders-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .founder-img-wrap {
    width: 160px;
    height: 160px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 24px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bottom { padding: 14px 24px; }

  .eco-svg-container { padding: 0 16px; }

  .eco-node-pill { padding: 8px 14px; }
  .eco-node-pill span { font-size: 9px; letter-spacing: 0.10em; }

  .phil-text.large { font-size: clamp(2rem, 6vw, 3rem); }
  .phil-text.gold-italic { font-size: clamp(2.2rem, 7vw, 3.5rem); }

  .inquiry-modal { padding: 40px 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .story-line.large { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .section-title { font-size: clamp(2.2rem, 7vw, 3rem); }
}
