*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0d2438;
  color: #eef7fb;
}
a { color: inherit; }
.page-hero {
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 120px 7vw 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(13,36,56,.2), rgba(13,36,56,.9)), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  z-index: 1;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; max-width: 980px; }
.eyebrow {
  color: #e4c47a;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 300;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .95;
  margin: 20px 0 22px;
  max-width: 980px;
}
.hero-copy {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.75;
  max-width: 740px;
  color: rgba(255,255,255,.78);
}
.nav {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 7vw;
  right: 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: .04em;
}
.nav a:not(.brand) {
  text-decoration: none;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .15em;
  color: rgba(255,255,255,.72);
}
.content {
  padding: 86px 7vw;
  max-width: 1240px;
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: start;
}
.panel {
  border-top: 1px solid rgba(228,196,122,.38);
  padding-top: 28px;
}
.panel h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  margin: 0 0 22px;
}
.panel p, .panel li {
  color: rgba(255,255,255,.72);
  line-height: 1.82;
  font-size: 1rem;
}
.panel strong { color: white; }
.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}
.visual-grid figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255,255,255,.06);
}
.visual-grid img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.visual-grid figcaption {
  min-height: 82px;
  padding: 18px 20px;
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  font-size: .96rem;
}
.answer-list {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}
.answer-list h3 {
  color: #e4c47a;
  margin: 0 0 8px;
  font-size: 1.35rem;
}
.geo-answer-block {
  margin-top: 54px;
  padding: 32px;
  border: 1px solid rgba(228,196,122,.28);
  background: rgba(255,255,255,.045);
}
.geo-answer-block h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
}
.geo-answer-block p {
  color: rgba(255,255,255,.72);
  line-height: 1.76;
  margin: 14px 0 0;
}
.geo-answer-block strong {
  color: #e4c47a;
}
.cta {
  margin-top: 62px;
  padding: 38px;
  background: #f2efe8;
  color: #0d2438;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1; }
.cta p { color: #2a4a64; line-height: 1.7; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  background: #c89b3c;
  color: #0d2438;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 800;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.link-grid a {
  text-decoration: none;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
}
footer {
  padding: 44px 7vw;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.55);
  font-size: .84rem;
}
@media (max-width: 820px) {
  .grid, .cta, .visual-grid { grid-template-columns: 1fr; }
  .visual-grid img { height: 280px; }
  .link-grid { grid-template-columns: 1fr; }
  .nav { left: 24px; right: 24px; }
  .page-hero, .content { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 520px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .page-hero {
    min-height: 100svh;
    padding: 104px 18px 58px;
    align-items: end;
  }
  .page-hero::before,
  .hero-bg-img {
    transform: scale(1.01);
  }
  .nav {
    top: max(18px, env(safe-area-inset-top));
    left: 18px;
    right: 18px;
    gap: 18px;
  }
  .brand {
    font-size: 1.12rem;
  }
  .nav a:not(.brand) {
    font-size: .62rem;
    letter-spacing: .1em;
    text-align: right;
  }
  .eyebrow {
    font-size: .64rem;
    letter-spacing: .15em;
    line-height: 1.5;
  }
  h1 {
    font-size: clamp(2.65rem, 14vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: 0;
    margin: 16px 0 18px;
  }
  .hero-copy {
    font-size: .98rem;
    line-height: 1.68;
    max-width: 100%;
  }
  .content {
    padding: 56px 18px;
  }
  .grid,
  .visual-grid,
  .cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .panel {
    padding-top: 22px;
  }
  .panel h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }
  .panel p,
  .panel li,
  .geo-answer-block p {
    font-size: .97rem;
    line-height: 1.72;
  }
  .visual-grid {
    margin-top: 38px;
  }
  .visual-grid img {
    height: 240px;
  }
  .visual-grid figcaption {
    min-height: 0;
    padding: 16px 18px;
  }
  .geo-answer-block {
    margin-top: 42px;
    padding: 24px 20px;
  }
  .geo-answer-block h2 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
  }
  .cta {
    margin-top: 44px;
    padding: 28px 22px;
  }
  .cta h2 {
    font-size: clamp(2.1rem, 11vw, 2.9rem);
  }
  .btn {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    text-align: center;
  }
  footer {
    padding: 34px 18px;
  }
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 520px) {
    .page-hero {
      min-height: -webkit-fill-available;
    }
  }
}
