:root {
  --ink: #09152d;
  --paper: #f2f4f8;
  --line: rgba(9, 21, 45, 0.24);
  --mono: 'Fira Mono', 'Courier New', monospace;
  --display: Inter, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
.section-light { background: var(--paper); }

.header-inner {
  min-height: 122px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 12px 56px;
}

.logo img { width: 166px; }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(32px, 5vw, 76px);
  font-size: 16px;
}

.desktop-nav a,
.mobile-panel a { text-decoration: none; }

.desktop-nav a:hover,
.mobile-panel a:hover { text-decoration: underline; }
.menu-button { display: none; }

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

h1 { font-size: clamp(64px, 7.2vw, 150px); }
h2 { font-size: clamp(42px, 5vw, 86px); }
p { line-height: 1.55; }

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  padding: 0;
}

.home-hero-image {
  width: 100%;
  height: 760px;
  min-height: 0;
  object-fit: cover;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: none;
  background: var(--ink);
  color: var(--paper);
  padding: 0 clamp(38px, 4vw, 70px) 84px;
}

.home-hero-copy p {
  max-width: 560px;
  margin: 42px 0 0;
  font-size: 18px;
}

.location-band {
  padding: 38px 36px 88px;
  font-size: 20px;
}

.location-band p { margin: 0; }

.location-band strong {
  display: block;
  margin-top: 56px;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(40px, 4.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  padding: 0;
}

.split-feature img {
  width: 100%;
  height: 950px;
  object-fit: cover;
}

.split-copy {
  min-height: 950px;
  display: flex;
  flex-direction: column;
  background: #fed55b;
  padding: 92px clamp(38px, 4vw, 72px) 78px;
}

.split-copy h2 { font-size: clamp(58px, 7.3vw, 138px); }

.split-copy p {
  max-width: 720px;
  margin: 74px 0 0;
  font-size: 22px;
}

.text-button {
  display: inline-flex;
  gap: 14px;
  margin-top: auto;
  align-items: center;
  font-size: 22px;
}

.text-button span {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.testimonials { padding: 110px 40px 90px; }

.testimonials h2 { font-size: clamp(58px, 7.3vw, 138px); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 76px;
}

.testimonial-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  background: #e3e3e3;
  padding: 44px 40px 38px;
}

.testimonial-card blockquote {
  margin: 54px 0 42px;
  font-size: 22px;
  line-height: 1.4;
}

.testimonial-card p { margin: 0; }

.text-page,
.page-body {
  padding: 76px 8vw 118px;
  min-height: 560px;
}

.text-page h1 { margin-bottom: 70px; }

.halo-page-content {
  font-size: 18px;
  line-height: 1.65;
}

.halo-page-content h1,
.halo-page-content h2,
.halo-page-content h3,
.halo-page-content h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.halo-page-content h2 { margin: 64px 0 24px; font-size: clamp(34px, 4.4vw, 72px); }
.halo-page-content h3 { margin: 42px 0 18px; font-size: clamp(26px, 3vw, 42px); }
.halo-page-content a { text-underline-offset: 0.16em; }

.halo-page-content img {
  width: 100%;
  height: auto;
  margin: 40px 0;
}

.halo-page-content blockquote {
  margin: 42px 0;
  padding: 24px 30px;
  border-left: 1px solid var(--ink);
  background: rgba(9, 21, 45, 0.04);
}

.halo-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.halo-page-content th,
.halo-page-content td {
  border: 1px solid var(--line);
  padding: 14px 16px;
  text-align: left;
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 40px;
}

.footer-primary {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.8fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 92px;
}

.footer-kicker {
  margin: 0 0 26px;
  color: rgba(242, 244, 248, 0.72);
  font-size: 18px;
}

.footer-primary h2 {
  font-family: var(--display);
  font-size: clamp(50px, 7vw, 118px);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.footer-contact-list {
  display: grid;
  gap: 26px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: baseline;
  border-top: 1px solid rgba(242, 244, 248, 0.28);
  padding-top: 20px;
}

.footer-contact-item span {
  color: rgba(242, 244, 248, 0.62);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-contact-item a {
  font-size: clamp(20px, 2.1vw, 34px);
  line-height: 1.15;
  text-decoration: none;
  word-break: break-word;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr;
  gap: 54px;
  border-top: 1px solid rgba(242, 244, 248, 0.18);
  padding-top: 34px;
  font-size: 17px;
}

.footer-links { display: grid; gap: 8px; }

@media (max-width: 860px) {
  .header-inner {
    min-height: 59px;
    grid-template-columns: 1fr auto;
    padding: 9px 28px;
  }

  .logo img { width: 108px; }
  .desktop-nav { display: none; }

  .menu-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-content: center;
    gap: 7px;
    background: transparent;
    border: 0;
  }

  .menu-button span {
    width: 28px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-panel {
    display: grid;
    gap: 18px;
    padding: 24px 28px 32px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  h1 { font-size: 46px; }
  h2 { font-size: 36px; }

  .home-hero,
  .split-feature,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .home-hero { min-height: 0; }
  .home-hero-image { height: 430px; }
  .home-hero-copy { padding: 52px 24px 62px; }
  .location-band { padding: 28px 24px 56px; }
  .location-band strong { text-align: left; font-size: 34px; line-height: 1.25; }
  .split-copy { min-height: auto; padding: 54px 24px; }
  .split-copy h2,
  .testimonials h2 { font-size: 42px; }
  .split-copy p { margin-top: 28px; font-size: 18px; }
  .text-button { margin-top: 56px; }
  .split-feature img { height: auto; }
  .testimonials { padding: 64px 24px; }

  .text-page,
  .page-body { padding: 54px 24px 76px; }
  .text-page h1 { margin-bottom: 42px; }

  .site-footer { padding: 54px 24px 58px; }
  .footer-primary,
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-primary { gap: 42px; margin-bottom: 54px; }
  .footer-contact-item { grid-template-columns: 1fr; gap: 10px; }
  .footer-bottom { gap: 20px; }
}
