:root {
  --ink: #1d1a17;
  --graphite: #34302b;
  --muted: #766f65;
  --paper: #fffdf8;
  --cream: #fff4df;
  --butter: #fdcf57;
  --butter-soft: #ffe9a6;
  --coral: #fe8674;
  --clay: #b66a52;
  --sage: #b8c8b4;
  --line: rgba(29, 26, 23, 0.15);
  --shadow: 0 26px 80px rgba(54, 42, 30, 0.16);
  --soft-shadow: 0 16px 45px rgba(54, 42, 30, 0.11);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --ease: 220ms ease;
  --site-max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(253, 207, 87, 0.17), transparent 30rem),
    radial-gradient(circle at 100% 18%, rgba(254, 134, 116, 0.08), transparent 26rem),
    linear-gradient(180deg, #fffdf8 0%, #fff8ed 54%, #fffdf8 100%);
  line-height: 1.58;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 0;
  background: rgba(255, 248, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: background var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 248, 237, 0.97);
  box-shadow: 0 12px 34px rgba(29, 26, 23, 0.08);
}

.nav-shell {
  width: min(100%, var(--site-max));
  min-height: 4.6rem;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 2.65rem;
  height: 2.2rem;
  border-radius: 0.38rem;
  display: grid;
  place-items: center;
  background: var(--butter);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(29, 26, 23, 0.1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.3vw, 1.8rem);
}

.nav-links a {
  padding: 0.55rem 0;
  border-bottom: 2px solid transparent;
  color: var(--graphite);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color var(--ease), color var(--ease);
}

.nav-links a:hover {
  border-color: var(--butter);
  color: var(--ink);
}

.nav-links .nav-cta {
  margin-left: 0.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 0.45rem;
  background: var(--butter);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 0.45rem;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.08rem;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  width: min(100%, var(--site-max));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(6.6rem, 9vw, 8rem) clamp(1rem, 3vw, 2rem) 3.5rem;
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1.4rem;
  width: 5.5rem;
  height: 0.32rem;
  background: var(--butter);
}

.eyebrow,
.chapter-kicker {
  margin: 0 0 0.85rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--sans);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.9rem, 4.4vw, 4.75rem);
}

h2 {
  font-size: clamp(2.45rem, 4.8vw, 4.8rem);
}

h3 {
  font-size: 1.18rem;
  font-weight: 760;
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-lede {
  max-width: 42rem;
  color: var(--graphite);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.btn {
  min-height: 3.2rem;
  padding: 0.9rem 1.18rem;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 900;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-ghost {
  border-color: rgba(29, 26, 23, 0.2);
  background: rgba(255, 248, 237, 0.55);
  color: var(--ink);
}

.hero-stage {
  position: relative;
  min-height: 36rem;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  background: var(--butter-soft);
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.chapter {
  position: relative;
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1rem, 3vw, 2rem);
}

main > section {
  position: relative;
}

main > section::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  bottom: 0;
  height: 5px;
  border-radius: 999px;
  background: var(--butter);
}

.chapter-heading {
  display: block;
  margin-bottom: 1.4rem;
}

.chapter-heading h2 {
  margin-bottom: 0.85rem;
}

.chapter-heading p:last-child,
.chapter-heading.compact p {
  color: var(--graphite);
  font-size: 1.08rem;
}

.org-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.82fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: stretch;
}

.org-section .chapter-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 3.35vw, 3.25rem);
}

.org-section .chapter-heading p:last-child {
  max-width: 43rem;
}

.service-lines {
  border-block: 1px solid var(--line);
}

.service-lines article,
.split-services article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.split-services article h3,
.split-services article p {
  grid-column: 2;
}

.split-services article h3 {
  grid-row: 1;
}

.split-services article p {
  grid-row: 2;
}

.service-lines article:last-child {
  border-bottom: 0;
}

.line-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(29, 26, 23, 0.08);
  background: var(--butter);
  color: var(--ink);
  flex: 0 0 auto;
}

.line-icon svg,
.social-icon svg,
.footer-socials svg,
.whatsapp-float svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-lines h3,
.split-services h3 {
  margin: 0 0 0.28rem;
}

.service-lines p,
.split-services p {
  margin: 0;
  color: var(--muted);
}

.org-portrait {
  align-self: center;
  height: 35.6rem;
  min-height: 0;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.org-portrait img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.org-portrait p {
  display: none;
}

.reel-block {
  margin-top: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border-radius: 2rem;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.reel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.reel-heading h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  font-weight: 760;
  text-transform: uppercase;
  line-height: 1;
}

.reel-heading a {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 999px;
  color: var(--butter);
  font-weight: 900;
  white-space: nowrap;
}

.reel-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.reel-card {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 1.55rem;
  overflow: hidden;
  background: #000;
  color: var(--paper);
  cursor: pointer;
  aspect-ratio: 9 / 16;
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-pill {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--butter);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  transition: opacity var(--ease), transform var(--ease);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 0.18rem;
  border-top: 0.42rem solid transparent;
  border-bottom: 0.42rem solid transparent;
  border-left: 0.68rem solid currentColor;
}

.pause-icon {
  display: none;
  width: 0.82rem;
  height: 0.9rem;
  border-left: 0.24rem solid currentColor;
  border-right: 0.24rem solid currentColor;
}

.reel-card.is-playing .play-icon {
  display: none;
}

.reel-card.is-playing .pause-icon {
  display: block;
}

.people-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.56fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.people-copy .chapter-heading {
  position: static;
  margin-bottom: 1.25rem;
}

.people-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5.75;
  border-radius: 1.4rem;
  object-fit: cover;
  object-position: 38% center;
  box-shadow: var(--soft-shadow);
}

.chapter-heading.compact {
  display: block;
  margin-bottom: 0;
  position: sticky;
  top: 7rem;
}

.chapter-heading.compact h2 {
  margin-bottom: 0.35rem;
}

.split-services {
  border-top: 1px solid var(--line);
}

.split-services article {
  row-gap: 0;
}

.split-services article p {
  margin-top: 0.28rem;
}

.workshops-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.56fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.workshops-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 2rem;
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.workshops-copy h2 {
  margin-bottom: 0.55rem;
}

.workshops-copy > p {
  color: var(--graphite);
  font-size: 1rem;
}

.accordion-list {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.accordion-list details {
  border-bottom: 1px solid var(--line);
}

.accordion-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.78rem 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.accordion-list summary::after {
  content: "+";
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 248, 237, 0.85);
  font-size: 1.1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.accordion-list details[open] summary::after {
  content: "-";
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list p {
  margin: 0;
  padding: 0 0 0.78rem;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(17rem, 0.5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-copy p {
  color: var(--graphite);
  font-size: calc(1.04rem + 1pt);
  text-align: justify;
}

.about-copy h2 {
  margin-bottom: 0.65rem;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.75;
  border-radius: 1.4rem;
  object-fit: cover;
  object-position: center 73%;
  box-shadow: var(--shadow);
}

.timeline-kicker {
  grid-column: 1 / -1;
  margin: 0.8rem 0 -3rem;
}

.timeline {
  grid-column: 1 / -1;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 1.8rem;
  row-gap: 1.75rem;
  margin-top: 0;
  padding: 0.5rem 0 0;
  overflow: visible;
}

.timeline::before {
  content: none;
}

.timeline article {
  position: relative;
  min-height: 7.8rem;
  padding: 0 0.65rem 0;
}

.timeline article::before {
  content: none;
}

.timeline span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline span::before {
  content: "";
  width: 1.05rem;
  height: 1.05rem;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 0 0 1px var(--line);
  flex: 0 0 auto;
}

.timeline span::after {
  content: ">";
  color: var(--butter);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1;
}

.timeline strong {
  display: block;
  margin: 0.45rem 0 0.25rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.companies-section {
  border-block: 1px solid var(--line);
}

.section-strip {
  display: block;
  text-align: center;
  margin-bottom: 1.6rem;
}

.section-strip h2 {
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(2rem, 3.35vw, 3.4rem);
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-track {
  width: max-content;
  display: flex;
  gap: 1rem;
  animation: marquee 22s linear infinite;
}

.logo-track span {
  width: 13rem;
  height: 7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
}

.logo-track img {
  max-width: 100%;
  max-height: 4.4rem;
  object-fit: contain;
  filter: saturate(0.78) contrast(1.03);
}

.social-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.social-copy h2 {
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  margin-bottom: 0.75rem;
}

.social-copy p {
  color: var(--graphite);
  font-size: 1.08rem;
}

.social-actions {
  display: grid;
  gap: 1rem;
}

.social-card {
  min-height: 12rem;
  padding: 1.35rem;
  border-radius: 2rem;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.social-card::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.28);
}

.instagram-card {
  background: linear-gradient(135deg, var(--coral), #f7ad8a);
}

.spotify-card {
  background: linear-gradient(135deg, #1db954, #1ed760);
  color: #092414;
}

.social-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 248, 237, 0.7);
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.social-card strong,
.social-card p {
  position: relative;
  z-index: 1;
}

.social-card strong {
  margin-top: 1.3rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0;
}

.social-card p {
  margin: 0;
  color: rgba(29, 26, 23, 0.78);
}

.footer {
  width: min(100%, var(--site-max));
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2rem) 2.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-socials a {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 248, 237, 0.72);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 25;
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
}

.whatsapp-float svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: currentColor;
  stroke: none;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .nav-links a {
    padding-inline: 0.64rem;
    font-size: 0.82rem;
  }

  .hero,
  .chapter-heading,
  .org-layout,
  .people-section,
  .workshops-section,
  .about-section,
  .social-section {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-stage {
    order: 2;
    min-height: 34rem;
  }

  .org-section .chapter-heading h2 {
    max-width: none;
    font-size: clamp(2rem, 7vw, 3.15rem);
  }

  .org-portrait {
    height: 32.2rem;
    min-height: 0;
  }

  .chapter-heading.compact {
    position: static;
  }

  .reel-row {
    overflow-x: auto;
    display: flex;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.4rem;
  }

  .reel-card {
    flex: 0 0 min(18rem, 78vw);
    scroll-snap-align: start;
  }

}

@media (max-width: 760px) {
  .site-header {
    padding: 0.65rem;
  }

  .nav-shell {
    position: relative;
    min-height: 3.7rem;
    padding: 0 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    padding: 0.55rem;
    border-radius: 1.5rem;
    background: var(--ink);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    text-align: center;
    color: rgba(255, 248, 237, 0.9);
  }

  .nav-links .nav-cta {
    margin: 0.25rem 0 0;
    color: var(--ink);
  }

  .hero {
    min-height: auto;
    padding: 7rem 1.15rem 3rem;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.85rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.35rem);
    line-height: 1.02;
  }

  .chapter {
    padding: clamp(3.2rem, 12vw, 4.2rem) 1.15rem;
  }

  .hero-stage {
    min-height: 27rem;
  }

  .hero-photo {
    inset: 0;
  }

  .service-lines article,
  .split-services article {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.85rem;
    row-gap: 0;
  }

  .org-portrait img {
    min-height: 100%;
  }

  .reel-heading,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 1.4rem;
    padding: 0 0 0 1.2rem;
    overflow: visible;
    border-left: 2px solid var(--butter);
    scroll-snap-type: none;
    mask-image: none;
  }

  .timeline::before {
    content: none;
  }

  .timeline article {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0;
    flex: initial;
    padding: 0 0 1.45rem 1rem;
  }

  .timeline article::after {
    content: none;
  }

  .timeline article::before {
    content: none;
  }

  .timeline span::before {
    position: absolute;
    left: -1.78rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .logo-marquee {
    mask-image: none;
  }
}
