@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --surface: #f4f7fb;
  --surface-strong: #e7edf4;
  --border: #d8e0e9;
  --text: #233241;
  --muted: #5f6f7d;
  --heading: #12253a;
  --accent: #1c5f92;
  --accent-dark: #15476e;
  --accent-soft: #d7e7f4;
  --cta: #e2872f;
  --cta-dark: #c66f1d;
  --shadow: 0 16px 36px rgba(18, 37, 58, 0.08);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1200px;
  --section-space: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-tight {
  padding: 54px 0;
}

.section-surface {
  background: var(--surface);
}

.section-header {
  max-width: 720px;
  margin-bottom: 34px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--heading);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

ul,
ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 37, 58, 0.08);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.brand__title {
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__subtitle {
  color: var(--muted);
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--heading);
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.lang-switcher {
  position: relative;
}

.lang-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--heading);
  font-weight: 600;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: none;
}

.lang-switcher.is-open .lang-switcher__menu {
  display: block;
}

.lang-switcher__menu button {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  color: var(--muted);
}

.lang-switcher__menu button:hover {
  background: var(--surface);
  color: var(--heading);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-main,
.btn-secondary,
.btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn-main {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 12px 24px rgba(226, 135, 47, 0.24);
}

.btn-main:hover {
  background: var(--cta-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--heading);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-text {
  min-height: auto;
  padding: 0;
  color: var(--accent);
}

.hero,
.page-hero {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero {
  padding: 92px 0 82px;
  border-bottom: 1px solid rgba(18, 37, 58, 0.08);
}

.hero--image,
.page-hero--image {
  color: #fff;
  background-color: #12253a;
}

.hero--image::before,
.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 37, 58, 0.62);
}

.hero--image > .site-container,
.page-hero--image > .site-container {
  position: relative;
  z-index: 1;
}

.hero--image h1,
.hero--image h2,
.hero--image h3,
.hero--image p,
.hero--image .hero-stat strong,
.hero--image .hero-stat span,
.page-hero--image h1,
.page-hero--image h2,
.page-hero--image h3,
.page-hero--image p {
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.hero-copy p {
  max-width: 660px;
  font-size: 1.12rem;
}

.hero-panel,
.page-hero__card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel p,
.hero-panel li,
.hero-panel strong,
.hero-panel h3,
.page-hero__card p,
.page-hero__card li,
.page-hero__card strong,
.page-hero__card h3 {
  color: var(--text);
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
  display: block;
  margin-bottom: 4px;
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-size: 1.5rem;
}

.hero-stat span {
  font-size: 0.94rem;
}

.page-hero {
  padding: 82px 0 64px;
  border-bottom: 1px solid rgba(18, 37, 58, 0.08);
}

.page-hero--image .eyebrow,
.hero--image .eyebrow {
  color: #084c85;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 38px;
  align-items: end;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.feature-card,
.contact-card,
.mini-card,
.category-card,
.gallery-card,
.cta-band,
.timeline-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.info-card,
.feature-card,
.contact-card,
.mini-card,
.timeline-card {
  padding: 28px;
}

.category-card {
  padding: 24px;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card__body {
  padding: 18px 20px 20px;
}

.info-card__icon,
.feature-card__icon,
.contact-card__icon,
.mini-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.2rem;
}

.kicker-list,
.check-list,
.detail-list,
.contact-list {
  list-style: none;
  padding: 0;
}

.kicker-list li,
.check-list li,
.detail-list li,
.contact-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.kicker-list li::before,
.check-list li::before,
.detail-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cta);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.split-layout--reverse {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.media-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Barlow", "Segoe UI", sans-serif;
  color: var(--heading);
  font-size: 1.8rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.filter-button {
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.filter-button.is-active,
.filter-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.category-grid {
  display: grid;
  gap: 24px;
}

.category-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.category-count {
  color: var(--cta);
  font-weight: 700;
  font-size: 0.95rem;
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.category-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.preview-grid [data-filter-group] {
  display: block;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.process-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: "Barlow", "Segoe UI", sans-serif;
  font-weight: 700;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: #12253a;
}

.cta-band h2,
.cta-band p,
.cta-band li {
  color: #fff;
}

.cta-band .eyebrow {
  color: #d7e7f4;
}

.cta-band .btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.cta-band .btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  padding: 62px 0 24px;
  background: #0d1a28;
  color: rgba(255, 255, 255, 0.84);
}

.footer h3,
.footer h4,
.footer p,
.footer a,
.footer li {
  color: inherit;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr 1fr;
  gap: 28px;
}

.footer-brand__logo {
  width: 180px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.note-box {
  padding: 20px 22px;
  border-left: 4px solid var(--cta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: #fff7ee;
  color: #6d542f;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-line i {
  margin-top: 4px;
  color: var(--accent);
}

.utility-hide {
  display: none !important;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero__layout,
  .split-layout,
  .split-layout--reverse,
  .cta-band,
  .footer-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .card-grid--three,
  .category-grid--three,
  .preview-grid,
  .process-grid,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
  }

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

  .site-nav a {
    border-radius: 14px;
  }

  .hero {
    padding: 74px 0 64px;
  }

  .hero-stat-grid,
  .card-grid--two,
  .card-grid--three,
  .category-grid--three,
  .preview-grid,
  .process-grid,
  .stats-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --section-space: 64px;
  }

  .site-container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-panel,
  .info-card,
  .feature-card,
  .contact-card,
  .mini-card,
  .category-card,
  .process-step,
  .timeline-card,
  .page-hero__card,
  .cta-band {
    padding: 22px;
  }

  .footer-bar {
    flex-direction: column;
  }

  .button-row {
    flex-direction: column;
  }

  .btn-main,
  .btn-secondary {
    width: 100%;
  }
}
