:root {
  --navy: #2d4f95;
  --navy-dark: #213c74;
  --gold: #e9a52d;
  --gold-soft: #f7dca2;
  --bg: #f5f7fb;
  --card: rgba(255, 255, 255, 0.9);
  --text: #1d2840;
  --muted: #5b6783;
  --line: rgba(45, 79, 149, 0.12);
  --shadow: 0 20px 60px rgba(28, 44, 84, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(233, 165, 45, 0.18), transparent 22%),
    radial-gradient(circle at left top, rgba(45, 79, 149, 0.12), transparent 30%),
    var(--bg);
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-dark); }
img { max-width: 100%; display: block; }

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 24px;
}

.brand-logo {
  width: min(420px, 100%);
  height: auto;
}

.top-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.card, .mini-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.card { padding: 34px; }
.mini-card { padding: 24px; }

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 1.02;
  margin: 10px 0 18px;
  letter-spacing: -0.03em;
}
.hero-copy h1 span { color: var(--navy); }
.lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(233, 165, 45, 0.12);
  color: #9a6100;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 28px;
}
.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-dark);
  font-weight: 600;
  font-size: 0.94rem;
}
.hero-actions, .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 18px 50px rgba(37, 52, 97, 0.22);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  box-shadow: 0 12px 24px rgba(45, 79, 149, 0.25);
}
.btn-outline {
  color: var(--navy);
  border: 1px solid rgba(45, 79, 149, 0.2);
  background: rgba(255,255,255,0.8);
}
.btn-full { width: 100%; }

.stats-grid,
.content-grid,
.map-grid {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.content-grid { grid-template-columns: 1.25fr 0.75fr; }
.map-grid { grid-template-columns: 1fr 0.9fr; }

.mini-card h3, .section-head h2 {
  margin: 0 0 12px;
}
.mini-card h3 { color: var(--navy-dark); font-size: 1.04rem; }
.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-head { margin-bottom: 22px; }
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.steps { display: grid; gap: 18px; }
.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(248,250,255,0.9));
  border: 1px solid var(--line);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #f6bf58);
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(233, 165, 45, 0.3);
}
.step-item h3 {
  margin: 2px 0 8px;
  color: var(--navy-dark);
}
.step-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248, 250, 255, 0.98));
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.65;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(233, 165, 45, 0.16);
  color: #a56a05;
  font-weight: 800;
}
.cta-box {
  padding: 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--line);
}
.cta-box p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.65;
}

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.two-col-text p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.02rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(28, 44, 84, 0.12);
  transition: transform .28s ease, box-shadow .28s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(28, 44, 84, 0.2);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.locations {
  display: grid;
  gap: 16px;
}
.location-link {
  display: block;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,255,1));
  border: 1px solid var(--line);
}
.location-link strong,
.location-link span,
.location-link em {
  display: block;
}
.location-link strong {
  color: var(--navy-dark);
  margin-bottom: 6px;
}
.location-link span,
.location-link em {
  color: var(--muted);
  line-height: 1.6;
}
.location-link em { font-style: normal; margin-top: 6px; }

.callout-card {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(45,79,149,0.98), rgba(33,60,116,0.98));
  color: white;
}
.callout-inner { text-align: center; max-width: 420px; }
.callout-icon {
  width: 82px;
  margin: 0 auto 14px;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.2));
}
.callout-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.callout-card p {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}
.callout-card .btn-primary {
  background: linear-gradient(135deg, #f1b847, #df9620);
  color: white;
}

.site-footer {
  text-align: center;
  padding: 28px 10px 0;
  color: var(--muted);
}
.site-footer p { margin: 0; }

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 18, 35, 0.82);
  z-index: 1000;
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
  margin: 0;
  max-width: min(1000px, 100%);
  max-height: 100%;
}
.lightbox-figure img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
}
.lightbox-figure figcaption {
  color: white;
  text-align: center;
  margin-top: 12px;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .8s ease forwards;
}
.fade-in-up:nth-child(2) { animation-delay: .06s; }
.fade-in-up:nth-child(3) { animation-delay: .12s; }
.fade-in-up:nth-child(4) { animation-delay: .18s; }
.fade-in-up:nth-child(5) { animation-delay: .24s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid, .map-grid, .hero, .two-col-text { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .page-shell { width: min(100% - 18px, 100%); }
  .topbar { flex-direction: column; align-items: flex-start; }
  .top-actions { width: 100%; justify-content: stretch; }
  .top-actions .btn { flex: 1 1 100%; }
  .card, .mini-card { padding: 22px; border-radius: 22px; }
  .hero-copy h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .stats-grid, .gallery-grid { grid-template-columns: 1fr; }
  .step-item { grid-template-columns: 1fr; }
  .step-number { width: 48px; height: 48px; }
}
