:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #1f2733;
  --muted: #5e6977;
  --brand: #ef7c18;
  --brand-dark: #cf6610;
  --accent: #005f8f;
  --border: #e2e8f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

img {
  max-width: 100%;
}

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

.hero {
  position: relative;
  color: #fff;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-image: url("https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(10, 18, 30, 0.85), rgba(20, 38, 58, 0.65));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 5rem 0;
}

.tag {
  display: inline-block;
  background: rgba(239, 124, 24, 0.2);
  border: 1px solid rgba(239, 124, 24, 0.5);
  color: #ffd8bb;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
}

.lead {
  margin: 1rem 0 2rem;
  color: #d9e6f4;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.cta {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.2rem;
  border-radius: 0.6rem;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.highlights {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-item {
  background: var(--surface);
  border-radius: 0.85rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(13, 25, 43, 0.08);
}

.highlight-item p:last-child {
  margin-bottom: 0;
}

.highlight-number {
  margin: 0;
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--accent);
}

.section {
  margin: 2.4rem auto;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 1.2rem;
}

.section-heading h2 {
  margin-bottom: 0.35rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
}

.gallery-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22, 35, 52, 0.08);
}

.gallery-card-wide {
  grid-column: span 7;
}

.gallery-card-tall {
  grid-column: span 5;
}

.gallery-card-half {
  grid-column: span 6;
}

.gallery-media {
  overflow: hidden;
  background: #dbe4ef;
  aspect-ratio: 4 / 3;
}

.gallery-card-wide .gallery-media {
  aspect-ratio: 16 / 10;
}

.gallery-card-tall .gallery-media {
  aspect-ratio: 4 / 5;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.focus-top {
  object-position: center top;
}

.focus-center {
  object-position: center center;
}

.focus-right {
  object-position: 75% center;
}

.gallery-card figcaption {
  padding: 1rem 1rem 1.1rem;
}

.gallery-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.gallery-card figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

h2 {
  margin-top: 0;
  font-size: 1.7rem;
}

a {
  color: #006fa6;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0 2rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 900px) {
  .gallery-card-wide {
    grid-column: span 12;
  }

  .gallery-card-tall,
  .gallery-card-half {
    grid-column: span 6;
  }

  .gallery-card-tall .gallery-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 4rem 0;
  }

  .gallery-card-wide,
  .gallery-card-tall,
  .gallery-card-half {
    grid-column: span 12;
  }
}
