:root {
  --bg: #eef3f8;
  --surface: #ffffff;
  --surface-muted: #f5f8fc;
  --text: #14233d;
  --muted: #5d6e85;
  --line: #d8e2ee;
  --accent: #0f5ea8;
  --accent-dark: #0a3f72;
  --accent-soft: #e8f2fc;
  --brand-red: #d61f33;
  --shadow: 0 18px 36px rgba(11, 33, 63, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(15, 94, 168, 0.08), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
}

a {
  color: inherit;
}

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

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

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

.site-header {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 253, 0.96)),
    linear-gradient(120deg, #eef5fc, #ffffff);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 94, 168, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(15, 94, 168, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 75%);
  pointer-events: none;
}

.topbar,
.hero,
.page-hero,
.site-footer,
.section {
  position: relative;
  z-index: 1;
}

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

.brand img {
  width: clamp(152px, 20vw, 240px);
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--muted);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}

.hero,
.page-hero {
  padding: 26px 0 56px;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.82fr);
  gap: 30px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.page-hero-copy,
.stat-panel,
.info-card,
.bullet-card,
.media-card,
.cta-banner,
.faq-card,
.contact-card,
.gallery-card,
.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.page-hero-copy,
.cta-banner,
.contact-card {
  border-radius: 24px;
}

.hero-copy,
.hero-panel,
.page-hero-copy,
.cta-banner,
.contact-card {
  padding: 36px;
}

.eyebrow,
.panel-kicker,
.summary-label,
.footer-brand {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3,
p,
strong {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 20px;
  max-width: none;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.lead,
.hero-panel p,
.info-card p,
.bullet-card p,
.faq-card p,
.contact-card p,
.product-copy p,
.gallery-card figcaption span,
.media-card figcaption span,
.footer-inner p,
.text-link,
.hero-metrics span,
.page-hero-copy p {
  color: var(--muted);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
}

.button-secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: var(--line);
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(15, 94, 168, 0.04), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.hero-panel h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}

.hero-metrics {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.hero-metrics div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
}

.section {
  padding: 28px 0;
}

.section-accent {
  background: linear-gradient(180deg, rgba(232, 242, 252, 0.55), rgba(232, 242, 252, 0.22));
  border-top: 1px solid rgba(15, 94, 168, 0.08);
  border-bottom: 1px solid rgba(15, 94, 168, 0.08);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.stats-grid,
.overview-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 20px;
}

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

.overview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.stat-panel,
.info-card,
.faq-card {
  border-radius: 22px;
  padding: 28px;
}

.info-card-large p + p {
  margin-top: 12px;
}

.text-link {
  font-weight: 700;
  text-decoration: none;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.bullet-stack {
  display: grid;
  gap: 16px;
}

.bullet-card {
  padding: 22px;
  border-radius: 20px;
}

.bullet-card strong {
  display: block;
  margin-bottom: 8px;
}

.media-card,
.gallery-card {
  border-radius: 22px;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-card img {
  object-fit: contain;
  aspect-ratio: 16 / 10;
  background: #ffffff;
}

.media-card figcaption,
.gallery-card figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 22px;
}

.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}

.category-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.category-jump a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #ffffff;
  text-decoration: none;
  font-weight: 700;
  color: var(--accent-dark);
}

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

.product-card {
  border-radius: 22px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #ffffff;
  padding: 18px;
}

.product-copy {
  padding: 20px 22px 22px;
}

.product-copy h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-copy p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  gap: 20px;
}

.gallery-grid-featured {
  grid-template-columns: 1.2fr 0.8fr;
}

.gallery-card {
  background: var(--surface);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card-large {
  grid-row: span 2;
}

.gallery-card-large img {
  aspect-ratio: 5 / 4;
}

.gallery-card:not(.gallery-card-large) img {
  aspect-ratio: 4 / 4;
}

.placeholder-card {
  display: grid;
  align-content: center;
  min-height: 280px;
  padding: 26px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(15, 94, 168, 0.05), rgba(255, 255, 255, 0.98)),
    #ffffff;
  border: 1px dashed #aac3de;
}

.placeholder-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.contact-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin-bottom: 12px;
  word-break: break-word;
}

.site-footer {
  padding: 20px 0 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  color: var(--brand-red);
  margin-bottom: 8px;
}

.footer-contact p {
  margin-bottom: 8px;
}

@media (max-width: 1080px) {
  .hero-home,
  .split-layout,
  .cta-banner,
  .gallery-grid-featured {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-copy,
  .cta-banner,
  .contact-card {
    padding: 24px;
  }

  .stats-grid,
  .overview-grid,
  .faq-grid,
  .contact-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
