/* ════════════════════════════════════════════════════════════
   THE PARKLAB.CO — Stylesheet
   Editorial cinema aesthetic with brand-blue accents
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --turquoise: #0399BC;
  --cobalt: #4162AC;
  --sky: #51AAEC;

  /* Atmosphere */
  --ink: #0a1628;
  --ink-soft: #142339;
  --ink-deep: #060e1c;
  --cream: #f5efe6;
  --cream-soft: #fbf6ec;
  --line: rgba(10, 22, 40, 0.12);
  --line-light: rgba(245, 239, 230, 0.18);

  /* Type */
  --serif: "Playfair Display", "Times New Roman", Georgia, serif;
  --sans: "Inter Tight", system-ui, -apple-system, sans-serif;

  /* Sizing */
  --pad-x: clamp(20px, 5vw, 88px);
  --pad-y: clamp(80px, 12vh, 180px);
  --max: 1480px;
  --gap: clamp(20px, 3vw, 48px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }
sup { font-feature-settings: "sups"; vertical-align: super; font-size: 0.5em; }

/* Selection */
::selection { background: var(--cobalt); color: var(--cream); }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--cobalt); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--turquoise); }

/* Skip link */
.skip {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 16px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip:focus { top: 0; }

/* ────────────────────────────────────────────────────────────
   NAV
   ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding: 18px var(--pad-x);
  color: var(--cream);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.nav.is-scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-light);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.nav__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(1.1);
}
.nav__wordmark {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-feature-settings: "ss01";
}
.nav__the {
  font-style: italic;
  font-weight: 500;
  font-size: 0.65em;
  letter-spacing: 0;
  margin-right: 2px;
  opacity: 0.85;
  transform: translateY(-3px);
}
.nav__park {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav__co {
  font-family: var(--sans);
  font-size: 0.45em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 2px;
  color: var(--sky);
}

.nav__menu {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 36px);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav__menu a {
  position: relative;
  padding: 6px 2px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav__menu a:hover { opacity: 1; }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav__menu a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.nav__cta:hover {
  background: var(--turquoise);
  border-color: var(--turquoise);
  color: var(--cream);
  transform: translateY(-1px);
}
.nav__cta svg { flex-shrink: 0; }

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav { grid-template-columns: 1fr auto; }
  .nav__cta span { display: none; }
  .nav__cta { padding: 10px 12px; }
}

/* ────────────────────────────────────────────────────────────
   BUTTONS
   ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--solid {
  background: var(--turquoise);
  color: var(--cream);
  box-shadow: 0 8px 24px -10px rgba(3, 153, 188, 0.5);
}
.btn--solid:hover {
  background: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(3, 153, 188, 0.6);
}
.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.4);
}
.btn--ghost-light:hover {
  background: rgba(245, 239, 230, 0.08);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn--big {
  padding: 22px 36px;
  font-size: 15px;
}

/* ────────────────────────────────────────────────────────────
   CHAPTERS
   ──────────────────────────────────────────────────────────── */
.chapter {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.chapter__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--turquoise);
  font-weight: 500;
}
.chapter__rule {
  flex: 0 0 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.chapter--light { color: var(--cream); }
.chapter--light .chapter__num { color: var(--sky); }

/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(120px, 18vh, 200px) var(--pad-x) clamp(48px, 8vh, 96px);
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: -8% -2% -2% -2%;
  z-index: -2;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__img.is-active {
  opacity: 1;
}

/* Rotator progress bars (sits inside hero__meta row, left-side) */
.hero__rotator {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.hero__rotator-bar {
  width: clamp(28px, 4vw, 48px);
  height: 2px;
  background: rgba(245, 239, 230, 0.22);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.hero__rotator-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.hero__rotator-bar.is-active::after {
  animation: barFill 6s linear forwards;
}
@keyframes barFill {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
.hero__rotator-bar.is-done::after {
  transform: translateX(0);
  animation: none;
}

@media (max-width: 720px) {
  .hero__rotator { display: none; }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(10, 22, 40, 0.35) 0%,
      rgba(10, 22, 40, 0.55) 40%,
      rgba(10, 22, 40, 0.92) 100%),
    radial-gradient(ellipse at 70% 40%,
      rgba(81, 170, 236, 0.18) 0%,
      transparent 60%);
}

.hero__grid {
  max-width: var(--max);
  width: 100%;
  margin-inline: auto;
  display: grid;
  gap: clamp(20px, 3vh, 36px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero__eyebrow .dot { color: var(--turquoise); font-size: 8px; }
.hero__eyebrow sup { font-size: 0.55em; color: var(--sky); }

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 9.5vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  max-width: 14ch;
}
.hero__title .line {
  display: block;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--sky);
}

.hero__sub {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 56ch;
  opacity: 0.92;
  margin-top: 8px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  padding-top: clamp(28px, 4vh, 44px);
  border-top: 1px solid var(--line-light);
  margin-top: clamp(28px, 4vh, 56px);
  max-width: var(--max);
  width: 100%;
  margin-inline: auto;
}
.hero__metalist {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  flex: 1;
}
.hero__metalist > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.meta__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}
.meta__value {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 400;
  letter-spacing: -0.005em;
}

.hero__scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: clamp(48px, 8vh, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.4s var(--ease);
  padding: 8px;
}
.hero__scroll:hover {
  opacity: 1;
  transform: translateY(2px);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--cream) 0%, transparent 100%);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--sky);
  animation: scrollDown 2s var(--ease-soft) infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

@media (max-width: 720px) {
  .hero__scroll { display: none; }
  .hero__meta { gap: 16px 32px; }
}

/* ────────────────────────────────────────────────────────────
   MARQUEE
   ──────────────────────────────────────────────────────────── */
.marquee {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  animation: scroll-x 38s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 32px);
  letter-spacing: -0.01em;
  width: max-content;
}
.marquee__track .dot {
  color: var(--turquoise);
  font-style: normal;
  font-size: 0.6em;
}
@keyframes scroll-x {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ────────────────────────────────────────────────────────────
   ABOUT
   ──────────────────────────────────────────────────────────── */
.about {
  background: var(--cream);
  color: var(--ink);
  padding: var(--pad-y) var(--pad-x);
}
.about__grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(60px, 8vw, 120px);
}
@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
}

.about__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.about__title em {
  color: var(--cobalt);
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: rgba(10, 22, 40, 0.78);
  padding-top: clamp(8px, 1vw, 16px);
}
.about__body em {
  color: var(--turquoise);
  font-style: italic;
  font-weight: 500;
}

.about__feature {
  position: relative;
  max-width: var(--max);
  margin-inline: auto;
}
.about__feature img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 2px;
}
.about__feature figcaption {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(10, 22, 40, 0.6);
}
.cap__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  font-weight: 500;
  color: var(--turquoise);
  letter-spacing: 0.04em;
}
.cap__text {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 11px;
}

/* ────────────────────────────────────────────────────────────
   VALUE
   ──────────────────────────────────────────────────────────── */
.value {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
  isolation: isolate;
}
.value__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.value__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: blur(1px) saturate(0.7);
}
.value__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10, 22, 40, 0.85) 0%,
    rgba(10, 22, 40, 0.95) 100%);
}
.value__inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  gap: clamp(48px, 6vh, 80px);
}
.value__statement {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.2vw, 60px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.value__statement em {
  color: var(--sky);
}
.value__purpose {
  font-family: var(--sans);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  max-width: 64ch;
  opacity: 0.82;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}
.value__purpose span:first-child {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--sky);
  margin-right: 4px;
}

/* ────────────────────────────────────────────────────────────
   SERVICES
   ──────────────────────────────────────────────────────────── */
.services {
  background: var(--cream);
  color: var(--ink);
  padding: var(--pad-y) var(--pad-x);
}
.services__header {
  max-width: var(--max);
  margin-inline: auto;
  margin-bottom: clamp(60px, 8vh, 120px);
}
.services__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 7vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 14ch;
}
.services__title em {
  color: var(--cobalt);
}
.services__lead {
  font-family: var(--serif);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  max-width: 56ch;
  color: rgba(10, 22, 40, 0.7);
  font-weight: 300;
}

.service {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 6vh, 80px) 0;
  border-top: 1px solid var(--line);
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service[data-side="right"] .service__media { order: 2; }
.service[data-side="right"] .service__body { order: 1; }

@media (max-width: 880px) {
  .service { grid-template-columns: 1fr; gap: 32px; }
  .service[data-side="right"] .service__media,
  .service[data-side="right"] .service__body { order: unset; }
}

.service__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink);
}
.service__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service:hover .service__media img {
  transform: scale(1.04);
}
.service__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
}

.service__body { padding: 16px 0; }

.service__num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  color: var(--turquoise);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.service__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 22ch;
}

.service__lead {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: rgba(10, 22, 40, 0.7);
  margin-bottom: 24px;
  max-width: 48ch;
}

.service__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.service__list li {
  display: flex;
  gap: 14px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
}
.service__list li span {
  color: var(--turquoise);
  font-family: var(--serif);
  font-style: italic;
  flex-shrink: 0;
}

.service__share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  padding: 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(10, 22, 40, 0.5);
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.service__share:hover {
  color: var(--turquoise);
  border-color: var(--turquoise);
}
.service__share svg { flex-shrink: 0; opacity: 0.7; }
.service__share:hover svg { opacity: 1; }
.service__share.is-copied {
  color: var(--turquoise);
  border-color: var(--turquoise);
}

/* ────────────────────────────────────────────────────────────
   STRIP (gallery)
   ──────────────────────────────────────────────────────────── */
.strip {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 0;
}
.strip__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scroll-x 60s linear infinite;
}
.strip__track:hover { animation-play-state: paused; }
.strip__track figure {
  position: relative;
  flex-shrink: 0;
  width: clamp(280px, 28vw, 480px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
}
.strip__track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
  transition: filter 0.4s var(--ease);
}
.strip__track figure:hover img {
  filter: saturate(1.1) brightness(1.05);
}

/* ────────────────────────────────────────────────────────────
   TALK (Conferencia)
   ──────────────────────────────────────────────────────────── */
.talk {
  position: relative;
  padding: var(--pad-y) var(--pad-x);
  color: var(--cream);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.talk__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 75% 30%,
      rgba(81, 170, 236, 0.18) 0%,
      transparent 55%),
    radial-gradient(ellipse at 15% 80%,
      rgba(65, 98, 172, 0.15) 0%,
      transparent 50%);
  pointer-events: none;
}

.talk__grid {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) {
  .talk__grid { grid-template-columns: 1fr; gap: 48px; }
}

.talk__content {
  display: grid;
  gap: clamp(20px, 2.4vh, 32px);
  max-width: 56ch;
}

.talk__photo {
  position: relative;
}
.talk__photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 60% center;
  border-radius: 4px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}
.talk__photo figcaption {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 230, 0.55);
}
.talk__photo .cap__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sky);
  letter-spacing: 0.04em;
}
.talk__photo .cap__text {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.18em;
  font-size: 11px;
}
@media (max-width: 980px) {
  .talk__photo img { aspect-ratio: 16 / 10; object-position: center; }
}

.talk__kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  opacity: 0.9;
}

.talk__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.talk__title em {
  color: var(--sky);
}

.talk__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--cream);
  opacity: 0.92;
}

.talk__body {
  font-family: var(--sans);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.7;
  max-width: 56ch;
  opacity: 0.85;
}
.talk__body em {
  font-style: italic;
  color: var(--sky);
  font-weight: 500;
}

.talk__cta-hint {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: var(--sky);
  opacity: 0.85;
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  border-left: 2px solid var(--turquoise);
}


/* ────────────────────────────────────────────────────────────
   CONTACT
   ──────────────────────────────────────────────────────────── */
.contact {
  background: var(--cream-soft);
  color: var(--ink);
  padding: var(--pad-y) var(--pad-x);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(81, 170, 236, 0.12) 0%,
    transparent 70%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.contact__title em {
  color: var(--cobalt);
}

.contact__lead {
  font-family: var(--serif);
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.55;
  font-weight: 300;
  max-width: 50ch;
  margin-bottom: 48px;
  color: rgba(10, 22, 40, 0.72);
}

.contact__cta {
  display: block;
  background: var(--ink);
  color: var(--cream);
  border-radius: 4px;
  padding: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(48px, 6vh, 80px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.contact__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cobalt) 0%, var(--turquoise) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: 0;
}
.contact__cta:hover { transform: translateY(-4px); }
.contact__cta:hover::before { opacity: 1; }

.contact__cta-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
}
.contact__cta-row svg { color: var(--turquoise); transition: color 0.3s; }
.contact__cta:hover .contact__cta-row svg { color: var(--cream); }

.contact__cta-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 4px;
}
.contact__cta-value {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 3.4vw, 44px);
  letter-spacing: -0.02em;
}

.contact__cta-arrow {
  font-size: clamp(28px, 3vw, 44px);
  font-family: var(--serif);
  font-weight: 200;
  transition: transform 0.3s var(--ease);
}
.contact__cta:hover .contact__cta-arrow { transform: translateX(8px); }

.contact__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 48px);
  padding-top: clamp(36px, 5vh, 56px);
  border-top: 1px solid var(--line);
}
.contact__meta .meta__label { color: rgba(10, 22, 40, 0.5); }
.contact__meta .meta__value { color: var(--ink); }

@media (max-width: 720px) {
  .contact__meta { grid-template-columns: 1fr; }
  .contact__cta-row { grid-template-columns: auto 1fr; }
  .contact__cta-arrow { display: none; }
}

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink-deep);
  color: var(--cream);
  padding: clamp(64px, 8vh, 120px) var(--pad-x) 32px;
  border-top: 1px solid var(--line-light);
}
.footer__inner {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 96px);
  padding-bottom: clamp(48px, 6vh, 80px);
  border-bottom: 1px solid var(--line-light);
}
@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
}

.footer__mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.footer__isologo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(1.15);
}
.footer__wordmark {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.footer__the {
  font-style: italic;
  font-weight: 500;
  font-size: 0.6em;
  margin-right: 2px;
  opacity: 0.85;
  transform: translateY(-3px);
}
.footer__park {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer__co {
  font-family: var(--sans);
  font-size: 0.4em;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 2px;
  color: var(--sky);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
@media (max-width: 600px) {
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  opacity: 0.85;
}
.footer__col a:hover { color: var(--sky); }
.footer__head {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
  opacity: 1;
}

.footer__base {
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.footer__sub { font-style: italic; font-family: var(--serif); }

/* ────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
   ──────────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hero reveal — slightly different (pre-loaded after a tick) */
.hero [data-reveal] {
  transform: translateY(36px);
}

/* ────────────────────────────────────────────────────────────
   TOAST
   ──────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 32px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.toast::before {
  content: "✓";
  color: var(--turquoise);
  font-weight: 700;
}
.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ────────────────────────────────────────────────────────────
   FOCUS
   ──────────────────────────────────────────────────────────── */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 4px;
  border-radius: 2px;
}
