:root {
  --ink: #111313;
  --muted: rgba(17, 19, 19, 0.70);
  --line: rgba(17, 19, 19, 0.14);
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

main { min-height: 100vh; }

.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.topbar {
  width: 100%;
  padding: 34px max(20px, calc((100vw - 1180px) / 2)) 22px;
  position: relative;
  z-index: 4;
  background: #fff;
  box-shadow: 0 10px 32px rgba(255,255,255,0.82);
}

.brand,
.contact-links a {
  color: var(--ink);
  text-decoration: none;
}

.brand {
  display: inline-block;
  font-size: clamp(25px, 2.3vw, 38px);
  line-height: 1;
  letter-spacing: -0.012em;
  font-weight: 500;
  opacity: 0;
  animation: textIn 560ms ease-out 180ms forwards;
}

.kicker {
  margin: 18px 0 0;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(17, 19, 19, 0.88);
  font-weight: 700;
  opacity: 0;
  animation: textIn 560ms ease-out 360ms forwards;
}

.hero-stage {
  position: relative;
  min-height: calc(100svh - 144px);
  overflow: hidden;
  background: #fff;
}

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

.hero-content {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(82px, 8vw, 122px) 0 72px;
  position: relative;
  z-index: 2;
}

h1 {
  max-width: 890px;
  margin: 0;
  position: relative;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.91;
  letter-spacing: -0.045em;
  font-weight: 400;
  font-kerning: normal;
  text-shadow:
    0 0 8px rgba(255,255,255,0.68),
    0 0 18px rgba(255,255,255,0.54),
    0 0 34px rgba(255,255,255,0.38),
    0 0 58px rgba(255,255,255,0.26);
  opacity: 0;
  animation: textIn 760ms ease-out 620ms forwards;
}

.h-line {
  display: block;
}

h1::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -4%;
  top: -8%;
  width: 74%;
  height: 118%;
  pointer-events: none;
  background: radial-gradient(ellipse at 34% 46%, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.32) 42%, rgba(255,255,255,0.14) 66%, rgba(255,255,255,0) 100%);
  filter: blur(18px);
}

.rf-pair { white-space: nowrap; }
.rf-space { display: inline-block; width: 0.055em; }
.desktop-subhead-break { display: block; }

.hero-copy {
  max-width: 890px;
  margin: clamp(70px, 7vw, 108px) 0 0;
  position: relative;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.25;
  color: var(--muted);
  text-shadow:
    0 0 8px rgba(255,255,255,0.74),
    0 0 18px rgba(255,255,255,0.58),
    0 0 34px rgba(255,255,255,0.40),
    0 0 56px rgba(255,255,255,0.28);
  opacity: 0;
  animation: textIn 720ms ease-out 1260ms forwards;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -5%;
  top: -28%;
  width: 112%;
  height: 150%;
  pointer-events: none;
  background: radial-gradient(ellipse at 34% 48%, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.28) 48%, rgba(255,255,255,0) 100%);
  filter: blur(16px);
}

.highlights,
.contact {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.highlights .kicker {
  margin: 0 0 28px;
}

.highlights h2,
.contact h2 {
  max-width: 820px;
  margin: 0 0 44px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

article {
  background: var(--white);
  padding: 30px;
  min-height: 270px;
}

article h3 {
  margin: 0 0 18px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 400;
}

article p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  color: var(--muted);
}

.contact {
  border-top: 1px solid var(--line);
  padding-bottom: 120px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-links a,
.email-text {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 18px;
}

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

@keyframes textIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  h1 {
    max-width: 890px;
    font-size: clamp(58px, 8.2vw, 88px);
    letter-spacing: -0.045em;
  }

  .hero-copy { max-width: 890px; }
}

@media (max-width: 900px) {
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stage { min-height: calc(100svh - 138px); }
}

@media (max-width: 760px) {
  .hero { background: #f8f5f0; }

  .topbar {
    padding: 24px 20px 20px;
    background: #fff;
  }

  .hero-stage {
    min-height: 114vw;
    overflow: hidden;
    background: #f8f5f0;
    padding-bottom: 0;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: 90% center;
    opacity: 1;
  }

  .hero-content {
    width: calc(100% - 40px);
    min-height: 114vw;
    padding: clamp(42px, 13vw, 82px) 0 0;
    display: flex;
    flex-direction: column;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(40px, 9.4vw, 56px);
    line-height: .96;
  }

  .desktop-subhead-break { display: none; }

  .hero-copy {
    max-width: 92%;
    margin-top: auto;
    padding-bottom: clamp(48px, 12vw, 84px);
    font-size: clamp(20px, 4.8vw, 24px);
    line-height: 1.25;
  }

  .highlight-grid { grid-template-columns: 1fr; }
  article { min-height: auto; }
}

@media (max-width: 430px) {
  .hero-stage { min-height: 114vw; }

  .hero-content {
    width: calc(100% - 36px);
    min-height: 114vw;
    padding-top: clamp(40px, 13vw, 58px);
  }

  h1 { font-size: clamp(38px, 13.2vw, 50px); }

  .hero-copy {
    max-width: 92%;
    padding-bottom: clamp(44px, 11vw, 60px);
    font-size: clamp(19px, 5.4vw, 22px);
  }
}
