:root {
  --ink: #15181a;
  --ink-soft: #42484d;
  --paper: #f6f4ee;
  --white: #fffdf8;
  --line: #d8d2c6;
  --steel: #61717c;
  --blue: #0668ee;
  --blue-deep: #123a67;
  --blue-dark: #071b2a;
  --orange: #ff5a12;
  --orange-soft: #ff9b67;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 22, 28, 0.72);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0;
}

.brand-logo {
  width: min(360px, 46vw);
  height: 32px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a {
  padding: 28px 0;
}

.site-nav a:hover {
  color: var(--orange-soft);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  padding: 10px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 13, 18, 0.92) 0%, rgba(8, 23, 31, 0.66) 38%, rgba(10, 20, 25, 0.1) 78%),
    linear-gradient(0deg, rgba(8, 16, 19, 0.72) 0%, rgba(8, 16, 19, 0) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 168px clamp(22px, 6vw, 72px) 82px;
  color: var(--white);
}

.hero-logo {
  width: 92px;
  height: 92px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
}

.eyebrow,
.section-kicker,
.card-label,
.date {
  margin: 0 0 16px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.35rem, 8vw, 7.2rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.25rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.6rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 700;
  white-space: nowrap;
}

.button.primary {
  background: var(--orange);
  color: #ffffff;
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.5);
  color: var(--white);
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.market-strip div {
  min-height: 118px;
  padding: 24px clamp(18px, 3vw, 42px);
  border-right: 1px solid var(--line);
}

.market-strip div:last-child {
  border-right: 0;
}

.stat,
.label {
  display: block;
}

.stat {
  color: var(--blue);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.label {
  max-width: 260px;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 6vw, 72px);
}

.split,
.section-heading,
.insights-layout,
.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.intro-copy p,
.section-heading p,
.lead-insight p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  min-height: 640px;
  background: var(--blue-dark);
  color: var(--white);
}

.feature-image-wrap {
  min-height: 420px;
}

.feature-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-panel {
  align-self: center;
  padding: clamp(48px, 6vw, 82px);
}

.feature-panel h2 {
  max-width: 540px;
}

.process-list {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.process-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
}

.process-list span {
  color: var(--orange-soft);
  font-weight: 700;
}

.process-list p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.strategy-card {
  min-height: 286px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.strategy-card h3 {
  margin-bottom: 22px;
}

.strategy-card p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.insights {
  background: #e8e4da;
}

.lead-insight {
  padding-right: clamp(0px, 4vw, 80px);
}

.lead-insight p {
  margin-top: 24px;
}

.lead-insight a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.insight-list {
  border-top: 1px solid rgba(21, 24, 26, 0.18);
}

.insight-list a {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid rgba(21, 24, 26, 0.18);
  color: var(--ink);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.25rem;
}

.insight-list span {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-deep);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-band {
  padding: clamp(62px, 8vw, 108px) clamp(20px, 6vw, 72px);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.85rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 253, 248, 0.25);
  border-radius: 2px;
  background: rgba(255, 253, 248, 0.08);
  color: var(--white);
  font: inherit;
  padding: 0 14px;
}

.contact-form select option {
  color: var(--ink);
}

.site-footer {
  padding: 36px clamp(20px, 6vw, 72px);
  background: #111416;
  color: rgba(255, 253, 248, 0.72);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
}

.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.9rem;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  max-width: 940px;
  margin: 26px 0 0;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 76px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(12, 22, 28, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 13, 18, 0.88), rgba(8, 23, 31, 0.38)),
      linear-gradient(0deg, rgba(8, 16, 19, 0.82) 0%, rgba(8, 16, 19, 0.12) 58%);
  }

  .market-strip,
  .split,
  .section-heading,
  .insights-layout,
  .contact-band,
  .feature-band,
  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .market-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-panel {
    padding: 48px 22px 58px;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 68px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand {
    width: 190px;
  }

  .brand-logo {
    width: 100%;
    height: 28px;
  }

  .site-nav {
    inset: 68px 0 auto;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .button {
    width: 100%;
  }

  .strategy-card {
    min-height: 0;
  }
}
