* { box-sizing: border-box; }

:root{
  --navy:#0f172a;
  --navy-2:#12233f;
  --gold:#d8b25a;
  --gold-dark:#b89038;
  --text:#1e293b;
  --muted:#64748b;
  --soft:#f5f7fb;
  --white:#ffffff;
  --border:#e5e7eb;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

body { line-height: 1.6; }

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #0b1020;
  color: #fff;
  font-size: 14px;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar a:hover,
.nav a:hover,
.footer-links a:hover {
  color: var(--gold);
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}

.header-cta,
.btn-gold {
  background: var(--gold);
  color: #111827;
}

.header-cta:hover,
.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.hero {
  padding: 78px 0;
}

.split-hero {
  background:
    linear-gradient(90deg, rgba(15,23,42,.92), rgba(15,23,42,.82)),
    linear-gradient(135deg, #0f172a, #1f3a68);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 780px;
}

.lead {
  font-size: 18px;
  color: inherit;
  opacity: .95;
  max-width: 680px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--gold-dark);
  margin: 0 0 12px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f0d28a;
}

.section {
  padding: 82px 0;
}

.section.white { background: #fff; }
.section.soft { background: var(--soft); }
.section.dark { background: var(--navy); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--navy);
}

h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 14px;
  color: var(--navy);
}

.subhead {
  font-size: 22px;
  color: var(--muted);
  font-weight: 600;
}

p {
  margin: 0 0 16px;
  color: var(--text);
}

.center { text-align: center; }
.light { color: #fff; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.image-placeholder {
  min-height: 320px;
  border-radius: 28px;
  border: 2px dashed rgba(255,255,255,.25);
  background: linear-gradient(135deg, #dbe4f0, #f2f5fa);
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.image-placeholder.tall {
  min-height: 520px;
  background: linear-gradient(135deg, #ead8aa, #c7a558);
  color: #0f172a;
  border: none;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 26px;
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.cta-side {
  display: flex;
  justify-content: flex-end;
}

.feature-grid,
.services-grid {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.service-card {
  border-radius: 24px;
  padding: 28px;
}

.dark-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
}

.dark-card h3,
.dark-card p {
  color: #fff;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.service-card a {
  color: var(--navy-2);
  font-weight: 700;
}

.service-img {
  min-height: 180px;
  margin-bottom: 20px;
  border-radius: 20px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  font-weight: 800;
  color: var(--gold-dark);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.area-pill {
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--border);
  font-weight: 700;
  color: var(--navy);
}

.final-cta {
  padding-top: 94px;
  padding-bottom: 94px;
}

.site-footer {
  background: #0b1020;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr .8fr;
  gap: 28px;
  padding: 70px 0 36px;
}

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a {
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .feature-grid,
  .services-grid,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-side {
    justify-content: flex-start;
  }

  .nav-wrap {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .header-cta {
    align-self: flex-start;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 56px 0;
  }

  .section {
    padding: 60px 0;
  }

  .topbar-inner {
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
    gap: 6px;
  }

  .logo {
    font-size: 24px;
  }

  .nav {
    gap: 14px;
  }
}

.hero-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.section-img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  display: block;
}

.max-text{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro-block{
  text-align: center;
}

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

.hero-visual{
  position: relative;
}

.hero-img{
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.feature-split{
  gap: 56px;
}

.media-panel,
.text-panel{
  align-self: center;
}

.section-img{
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 14px 40px rgba(15,23,42,.12);
}

.guide-panel{
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 28px;
  align-items: center;
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
}

.guide-action{
  display: flex;
  justify-content: flex-end;
}

.insight-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card,
.quote-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 22px;
  color: #fff;
}

.insight-card h3,
.insight-card p,
.quote-card p{
  color: #fff;
}

.quote-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}

.avatar{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--gold);
  color: #111827;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.quote{
  font-style: italic;
  margin-bottom: 14px;
}

.quote-name{
  opacity: .85;
  font-weight: 700;
  margin: 0;
}

.service-card.polished{
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(15,23,42,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.service-card.polished:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(15,23,42,.14);
}

.service-card.polished a{
  font-weight: 800;
  color: var(--navy);
}

@media (max-width: 1024px){
  .guide-panel,
  .insight-grid{
    grid-template-columns: 1fr;
  }

  .guide-action{
    justify-content: flex-start;
  }
}

.hero-kicker{
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f0d28a;
  margin: 0 0 14px;
}

.city-hero{
  padding-top: 92px;
  padding-bottom: 92px;
}

.city-img{
  min-height: 560px;
  object-fit: cover;
}

.hero-copy h1{
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1.02;
  margin-bottom: 18px;
}

.hero-copy .lead{
  font-size: 20px;
  max-width: 560px;
}

.intro-block h2{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.intro-block p{
  font-size: 17px;
}

.guide-panel{
  box-shadow: 0 12px 34px rgba(15,23,42,.06);
}

.insight-card .service-img{
  height: 240px;
}

@media (max-width: 768px){
  .city-img{
    min-height: 340px;
  }

  .hero-copy h1{
    font-size: 42px;
  }
}
