:root {
  --bg: #f4efe6;
  --paper: #fffdf9;
  --surface: #f8f3eb;
  --ink: #121212;
  --muted: #5f5a54;
  --line: #181818;
  --gold: #d8a948;
  --green: #4db56a;
  --navy: #1f355e;
  --coral: #e9724c;
  --sky: #70b7ff;
  --cream: #f8f1e4;
  --shadow: 0 18px 40px rgba(18, 18, 18, 0.12);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216,169,72,0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(112,183,255,0.12), transparent 20%),
    linear-gradient(180deg, #f8f4ec 0%, var(--bg) 100%);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.site-header, .site-footer { background: #111111; color: #ffffff; }
.nav, .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.brand-lockup { display: inline-flex; align-items: center; gap: 0.9rem; }
.brand-mark {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-block;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #2b2b2b, #111111);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 24px rgba(0,0,0,0.28);
}
.brand-mark-url {
  overflow: hidden;
}
.brand-url-bar {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  top: 0.58rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}
.brand-url-dot {
  position: absolute;
  top: 0.72rem;
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
}
.brand-url-dot.gold { left: 0.68rem; background: #f2c84f; }
.brand-url-dot.green { left: 1rem; background: #63d784; }
.brand-url-dot.blue { left: 1.32rem; background: #59a7ff; }
.brand-url-card {
  position: absolute;
  left: 0.62rem;
  right: 0.62rem;
  top: 1.26rem;
  bottom: 0.58rem;
  border-radius: 0.7rem;
  background: linear-gradient(180deg, #ffffff, #eef4ff);
}
.brand-url-card::before {
  content: '';
  position: absolute;
  left: 0.38rem;
  right: 0.38rem;
  top: 0.36rem;
  height: 0.18rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--sky));
}
.brand-url-card::after {
  content: '';
  position: absolute;
  left: 0.38rem;
  right: 0.7rem;
  top: 0.72rem;
  height: 0.18rem;
  border-radius: 999px;
  background: rgba(31,53,94,0.2);
}
.brand-stack {
  position: absolute;
  width: 1.08rem;
  height: 1.48rem;
  border-radius: 0.55rem;
  padding: 0.16rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
}
.brand-stack-top {
  display: block;
  width: 0.56rem;
  height: 0.12rem;
  margin-bottom: 0.13rem;
  border-radius: 999px;
  background: rgba(17,17,17,0.55);
}
.brand-stack-body {
  display: block;
  height: 0.9rem;
  border-radius: 0.34rem;
  background: rgba(255,255,255,0.92);
  position: relative;
}
.brand-stack-body::before,
.brand-stack-body::after {
  content: '';
  position: absolute;
  left: 0.16rem;
  right: 0.16rem;
  border-radius: 999px;
  background: rgba(17,17,17,0.18);
}
.brand-stack-body::before {
  top: 0.16rem;
  height: 0.1rem;
}
.brand-stack-body::after {
  top: 0.34rem;
  right: 0.32rem;
  height: 0.1rem;
}
.brand-stack-gold {
  left: 0.58rem;
  top: 1rem;
  background: linear-gradient(180deg, #f2c84f, #d8a948);
}
.brand-stack-green {
  left: 1.24rem;
  top: 0.72rem;
  z-index: 2;
  background: linear-gradient(180deg, #63d784, var(--green));
}
.brand-stack-blue {
  left: 1.92rem;
  top: 1rem;
  background: linear-gradient(180deg, #59a7ff, #2f7de1);
}
.brand-mark-grid {
  padding: 0.52rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.28rem;
}
.brand-grid-cell {
  border-radius: 0.48rem;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
}
.brand-grid-cell.gold { background: linear-gradient(180deg, #f2c84f, #d8a948); }
.brand-grid-cell.green { background: linear-gradient(180deg, #63d784, var(--green)); }
.brand-grid-cell.blue { background: linear-gradient(180deg, #59a7ff, #2f7de1); }
.brand-grid-cell.coral { background: linear-gradient(180deg, #ef835f, var(--coral)); }
.brand-grid-cell.wide {
  position: relative;
}
.brand-grid-cell.wide::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 18%;
  top: 50%;
  height: 0.12rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand-sub { font-size: 0.92rem; color: rgba(255,255,255,0.72); }
.nav-actions, .hero-actions, .contact-actions, .center-actions { display: flex; gap: 0.95rem; flex-wrap: wrap; }
.hero { padding: 4.6rem 0 3.8rem; }
.hero-grid, .contact-box, .path-grid {
  display: grid;
  gap: 1.35rem;
}
.hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
.contact-box, .path-grid { grid-template-columns: 1.1fr 0.9fr; }
.path-grid, .contact-box { align-items: start; }
.narrow-wrap { max-width: 820px; margin: 0 auto; }
.section { padding: 4rem 0; }
.section-alt {
  background: rgba(255,255,255,0.5);
  border-top: 1px solid rgba(24,24,24,0.08);
  border-bottom: 1px solid rgba(24,24,24,0.08);
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: rgba(31,53,94,0.08);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0 0 0.85rem;
  line-height: 0.98;
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -0.045em;
}
h1 { font-size: clamp(3rem, 8vw, 5.7rem); max-width: 8ch; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: 1.4rem; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 38rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 1rem 1.5rem;
  border-radius: 18px;
  border: 1px solid #111111;
  background: linear-gradient(135deg, var(--navy), #111111);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 22px 44px rgba(18,18,18,0.16); }
.button-large { min-height: 72px; padding: 1.2rem 1.95rem; font-size: 1.08rem; }
.button-secondary {
  background: linear-gradient(135deg, var(--coral), #c75532);
  color: #ffffff;
  border-color: rgba(231,114,76,0.7);
}
.button-secondary:hover { background: linear-gradient(135deg, #ef835f, #c75532); }
.card {
  background: var(--paper);
  border: 1px solid rgba(24,24,24,0.1);
  border-radius: var(--radius);
  padding: 1.55rem;
  box-shadow: var(--shadow);
}
.accent-card {
  background: linear-gradient(180deg, #fff8eb, #f4ebff);
  border-color: rgba(216,169,72,0.28);
  border-radius: var(--radius);
  overflow: hidden;
}
.card-kicker {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.9rem;
}
.hero-points, .feature-list {
  margin: 1.15rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-weight: 700;
}
.hero-points li, .feature-list li { padding: 0.18rem 0; }
.center-heading, .spotlight-card, .lookup-card, .request-card { text-align: center; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.logo-card {
  text-align: center;
}
.logo-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 7rem;
  margin-bottom: 1rem;
}
.logo-stage .brand-mark {
  transform: scale(1.8);
  transform-origin: center;
}
.badge {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(112,183,255,0.2);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}
.featured-card { background: linear-gradient(180deg, #fffdf9, #eef5ff); }
.info-card p:last-child, .spotlight-card p:last-child { color: var(--muted); }
.dark-card { background: linear-gradient(180deg, #1f355e, #111111); color: #ffffff; }
.dark-card a { color: #f3d38b; }
.mini-info-card h3 { margin-bottom: 0.5rem; }
.request-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  text-align: left;
}
.request-form label, .lookup-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}
.request-form input, .lookup-form input {
  width: 100%;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(24,24,24,0.16);
  background: #ffffff;
  font: inherit;
}
.form-note, .lookup-result { margin-top: 1rem; color: var(--muted); }
.lookup-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
  text-align: left;
}
.site-footer a { color: #f3d38b; }
.footer-inner { flex-wrap: wrap; }
@media (min-width: 861px) {
  .container {
    width: min(1220px, calc(100% - 4rem));
  }
  .nav {
    padding: 0.85rem 0;
  }
  .hero {
    padding: 3rem 0 2.25rem;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(420px, 0.72fr);
    gap: 2rem;
    align-items: start;
  }
  .section {
    padding: 2.35rem 0;
  }
  h1 {
    font-size: clamp(3.2rem, 4.4vw, 4.35rem);
    max-width: none;
    white-space: nowrap;
    margin-bottom: 0.7rem;
  }
  h2 {
    font-size: clamp(1.85rem, 2.6vw, 2.7rem);
  }
  .lead {
    max-width: 39rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .hero-actions {
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .hero-points {
    margin-top: 0.7rem;
  }
  .card {
    padding: 1.2rem;
  }
  .hero-card {
    padding: 1.4rem;
    min-height: 0;
  }
  .hero-card h2 {
    font-size: clamp(1.8rem, 2.4vw, 2.55rem);
    max-width: 12ch;
    margin-bottom: 0.65rem;
  }
  .card-kicker {
    margin-bottom: 0.65rem;
  }
  .spotlight-card,
  .mini-info-card,
  .request-card,
  .contact-card {
    padding: 1.25rem;
  }
  .spotlight-card,
  .mini-info-card,
  .contact-card,
  .request-card {
    text-align: left;
  }
  .request-card h2,
  .spotlight-card h2 {
    font-size: clamp(1.12rem, 1.02vw, 1.32rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    max-width: none;
    white-space: nowrap;
    margin-left: 0;
    margin-right: 0;
  }
  .button-large {
    min-height: 58px;
    padding: 0.9rem 1.4rem;
    font-size: 0.98rem;
  }
  .feature-list,
  .hero-points,
  .form-note,
  .card p {
    font-size: 0.95rem;
  }
  .request-card .eyebrow,
  .spotlight-card .eyebrow {
    margin-bottom: 0.7rem;
  }
  .request-card p,
  .spotlight-card p {
    max-width: 36rem;
  }
  .spotlight-card .hero-actions,
  .request-card .hero-actions {
    margin-top: 0.85rem;
  }
}
@media (max-width: 860px) {
  .hero-grid, .contact-box, .path-grid, .logo-grid {
    grid-template-columns: 1fr;
  }
  .nav, .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  h1 { max-width: none; }
}
@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 2.5rem));
  }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: 0.84rem; }
  .button { width: 100%; }
  .hero { padding-top: 3rem; }
  .section { padding: 3rem 0; }
}
