:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --line: #e8e8e8;
  --pad: clamp(24px, 5vw, 72px);
  --header-h: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity .7s ease, visibility .7s ease;
}
.page-loader span {
  font-size: clamp(34px, 7vw, 88px);
  letter-spacing: -.06em;
  font-weight: 600;
  animation: loaderPulse 1s ease both;
}
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes loaderPulse { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: height .3s ease, border-color .3s ease;
}
.site-header.is-scrolled { height: 68px; border-color: var(--line); }
.brand { font-size: 22px; font-weight: 600; letter-spacing: -.04em; }
.site-nav { display: flex; gap: clamp(22px, 4vw, 48px); }
.site-nav a, .menu-toggle { font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px 0; }

.section-line { border-bottom: 1px solid var(--line); }
.hero {
  min-height: 100svh;
  position: relative;
  padding: calc(var(--header-h) + 74px) var(--pad) 54px;
  display: flex;
  align-items: flex-end;
}
.hero-inner { max-width: 980px; }
.eyebrow { margin: 0 0 22px; font-size: 14px; color: var(--muted); }
.hero-title {
  margin: 0;
  font-weight: 400;
  font-size: clamp(74px, 12vw, 168px);
  line-height: .83;
  letter-spacing: -.075em;
}
.hero-title span { display: block; }
.hero-copy {
  max-width: 680px;
  margin: 46px 0 0;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.25;
  letter-spacing: -.035em;
}
.locations { margin: 46px 0 0; font-size: 16px; }
.locations span, .contact-block span { padding: 0 10px; }
.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .08em;
}
.scroll-cue i { display: block; width: 1px; height: 80px; background: var(--text); }

.editorial-section {
  min-height: 46vh;
  padding: 70px var(--pad);
  display: grid;
  grid-template-columns: 56px minmax(220px, 1fr) minmax(320px, 1.1fr);
  column-gap: clamp(20px, 4vw, 80px);
  align-items: start;
}
.section-index { font-size: 11px; padding-top: 8px; text-decoration: underline; text-underline-offset: 4px; }
.editorial-section h2 {
  margin: 0;
  font-size: clamp(40px, 4vw, 72px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: 1;
}
.section-copy { max-width: 620px; font-size: clamp(18px, 1.5vw, 24px); letter-spacing: -.025em; }
.section-copy p { margin: 0 0 28px; }

.list-panel { width: 100%; }
.list-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: clamp(17px, 1.45vw, 22px);
  transition: padding .3s ease;
}
.list-row:first-child { border-top: 1px solid var(--line); }
.list-row .arrow { transition: transform .3s ease; font-size: 24px; }
.list-row:hover { padding-left: 10px; }
.list-row:hover .arrow { transform: translateX(8px); }

.contact-section { min-height: 34vh; }
.contact-block { display: grid; gap: 14px; font-size: clamp(18px, 1.4vw, 22px); }
.contact-block a { width: max-content; border-bottom: 1px solid transparent; }
.contact-block a:hover { border-color: currentColor; }
.contact-block p { margin: 28px 0 0; }


.activity-section {
  padding: 0 var(--pad);
}
.activity-list {
  margin-left: calc(56px + clamp(20px, 4vw, 80px));
}
.activity-row {
  min-height: 112px;
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(280px, 1.1fr) 32px;
  gap: clamp(22px, 4vw, 76px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding .35s ease;
}
.activity-row:first-child { border-top: 1px solid var(--line); }
.activity-row h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: -.04em;
}
.activity-row p {
  margin: 0;
  max-width: 480px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 18px);
  transition: color .35s ease, transform .35s ease;
}
.activity-row .arrow {
  justify-self: end;
  font-size: 24px;
  transition: transform .35s ease;
}
.activity-row:hover { padding-left: 10px; }
.activity-row:hover p { color: var(--text); transform: translateX(4px); }
.activity-row:hover .arrow { transform: translateX(8px); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  padding: 52px var(--pad) 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: clamp(36px, 6vw, 100px);
  row-gap: 48px;
  align-items: start;
  font-size: 12px;
}
.footer-brand { display: grid; gap: 8px; }
.footer-brand strong { font-size: 18px; letter-spacing: -.03em; }
.footer-statement {
  margin: 0;
  max-width: 460px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.3;
  letter-spacing: -.025em;
}
.footer-contact { display: grid; gap: 10px; justify-items: start; }
.footer-contact a { border-bottom: 1px solid transparent; }
.footer-contact a:hover { border-color: currentColor; }
.site-footer  grid-column: 1 / -1; color: var(--muted); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .85s cubic-bezier(.2,.75,.2,1), transform .85s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 26px var(--pad);
    flex-direction: column;
    gap: 18px;
  }
  .site-nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .hero { padding-top: calc(var(--header-h) + 58px); }
  .hero-title { font-size: clamp(68px, 19vw, 120px); }
  .hero-copy { max-width: 90%; }
  .scroll-cue { display: none; }
  .editorial-section {
    grid-template-columns: 42px 1fr;
    row-gap: 42px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .section-copy, .list-panel, .contact-block { grid-column: 2; }
  .activity-list { margin-left: 0; }
  .activity-row { grid-template-columns: minmax(220px, .9fr) minmax(240px, 1.1fr) 28px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 2; }
  .site-footer  grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .brand { font-size: 19px; }
  .hero { min-height: 92svh; padding-bottom: 38px; }
  .eyebrow { margin-bottom: 16px; }
  .hero-title { font-size: clamp(60px, 20vw, 88px); }
  .hero-copy { margin-top: 32px; font-size: 22px; max-width: 100%; }
  .locations { margin-top: 34px; }
  .editorial-section { grid-template-columns: 30px 1fr; column-gap: 16px; }
  .editorial-section h2 { font-size: 42px; }
  .section-copy { font-size: 18px; }
  .list-row { min-height: 54px; font-size: 17px; }
  .activity-section { padding-top: 0; padding-bottom: 0; }
  .activity-row {
    min-height: 0;
    padding: 28px 0;
    grid-template-columns: 1fr 24px;
    gap: 12px 18px;
  }
  .activity-row h3 { font-size: 24px; }
  .activity-row p { grid-column: 1; font-size: 15px; }
  .activity-row .arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; }
  .activity-row:hover { padding-left: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-contact, .site-footer  grid-column: 1; }
  .footer-statement { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .page-loader { display: none; }
}
