:root {
  --blue: #15365f;
  --blue-dark: #0d2544;
  --yellow: #f2c94c;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #1f2933;
  --muted: #637083;
  --border: #d9e1ec;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  background: var(--blue-dark);
  color: #fff;
  border-bottom: 4px solid var(--yellow);
}

.header-inner,
.section,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  font-size: 0.95rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}

.nav-toggle {
  display: none;
}

.hero {
  background: var(--blue);
  color: #fff;
  padding: 44px 0;
}

.hero-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: 36px;
}

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

.photo-placeholder {
  min-height: 260px;
  border: 2px dashed rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  color: var(--blue-dark);
}

.hero h1,
.hero h2 {
  color: #fff;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

p {
  margin: 0 0 14px;
}

.lead {
  font-size: 1.15rem;
  color: inherit;
  max-width: 680px;
}

.hero-subtitle {
  margin-bottom: 12px;
  font-size: 1.35rem;
  font-weight: 700;
}

.hero-meta {
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--yellow);
  font-weight: 700;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-block;
  padding: 11px 18px;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
}

.button.secondary {
  background: transparent;
  color: var(--blue);
}

.hero .button {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--blue-dark);
}

.hero .button.secondary {
  background: transparent;
  color: #fff;
}

.section {
  padding: 48px 0;
}

.section.compact {
  padding-top: 24px;
}

.section-title {
  max-width: 720px;
  margin-bottom: 24px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 22px;
}

.category-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.category-card:hover .card-link,
.category-card:focus .card-link {
  text-decoration: underline;
}

.card-link {
  color: var(--blue);
  font-weight: 700;
}

.card p:last-child,
.text-block p:last-child {
  margin-bottom: 0;
}

.above-standard {
  display: grid;
  gap: 18px;
}

.feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  align-items: stretch;
  gap: 24px;
  padding: 26px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.media-placeholder {
  min-height: 220px;
  border: 2px dashed rgba(21, 54, 95, 0.35);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(21, 54, 95, 0.08), rgba(242, 201, 76, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--blue-dark);
  font-weight: 700;
  text-align: center;
}

.button.small {
  padding: 8px 13px;
  font-size: 0.9rem;
  margin-top: 4px;
}

.compact-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compact-feature {
  min-height: 100%;
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.review-card .card-link {
  margin-top: auto;
}

.reviews-actions {
  margin-top: 20px;
}

.gallery-card {
  display: block;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.gallery-card h3 {
  margin: 0;
  padding: 16px 18px 8px;
}

.gallery-card p {
  padding: 0 18px 18px;
}

.gallery-placeholder {
  min-height: 160px;
  background: linear-gradient(135deg, rgba(21, 54, 95, 0.12), rgba(242, 201, 76, 0.24));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--blue-dark);
  font-weight: 700;
  text-align: center;
}

.text-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

.detail-stack {
  display: grid;
  gap: 18px;
}

.detail-block h2 {
  margin-bottom: 14px;
}

.detail-points {
  display: grid;
  gap: 16px;
}

.detail-points h3 {
  margin-bottom: 8px;
}

.grid.two.category-info-grid,
.category-page-list {
  grid-template-columns: 1fr;
}

.category-page-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.category-page-list .card {
  width: 100%;
}

.info-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.info-card h2 {
  margin-bottom: 12px;
}

.info-card .card-link {
  margin-top: auto;
}

.card-details {
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 36%);
  gap: 18px;
  align-items: start;
}

.detail-visuals {
  display: grid;
  gap: 12px;
}

.detail-visual {
  min-height: 150px;
  border: 2px dashed rgba(21, 54, 95, 0.35);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(21, 54, 95, 0.08), rgba(242, 201, 76, 0.2));
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  font-weight: 700;
}

.card-details p:last-child {
  margin-bottom: 0;
}

.source-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
}

.table-card {
  grid-column: auto;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 4px 0 16px;
}

.info-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.info-table th,
.info-table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.info-table th {
  background: #eaf0f7;
  color: var(--blue-dark);
}

.cta-block {
  background: var(--blue-dark);
  color: #fff;
  border-radius: 8px;
  padding: 28px;
  margin-top: 28px;
}

.cta-block h2,
.cta-block h3 {
  color: #fff;
}

.cta-block p {
  max-width: 640px;
}

.cta-block .button {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--blue-dark);
}

.cta-block .button.secondary {
  background: transparent;
  color: #fff;
}

.list {
  padding-left: 20px;
  margin: 0;
}

.list li {
  margin-bottom: 8px;
}

.band {
  background: #eaf0f7;
}

.page-title {
  background: var(--blue);
  color: #fff;
  padding: 26px 0;
}

.page-title .section {
  padding: 0;
}

.page-title h1 {
  color: #fff;
}

.page-title p {
  max-width: 680px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--blue-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  font: inherit;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}

.faq-question:hover,
.faq-question:focus {
  color: var(--blue);
}

.faq-question:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

.faq-indicator {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
}

.faq-answer {
  padding-top: 12px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.site-footer {
  background: var(--blue-dark);
  color: #fff;
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .grid.five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .grid,
  .grid.two,
  .grid.five,
  .contact-box,
  .feature-block,
  .compact-feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-block {
    gap: 18px;
    padding: 22px;
  }

  .media-placeholder {
    min-height: 180px;
  }

  .table-card {
    grid-column: auto;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 36px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .photo-placeholder {
    min-height: 180px;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid rgba(242, 201, 76, 0.8);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    font: inherit;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(242, 201, 76, 0.12);
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(242, 201, 76, 0.45);
    font-size: 1rem;
  }

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

  .nav a {
    width: 100%;
    padding: 10px 0;
  }
}

@media (max-width: 520px) {
  .header-inner,
  .section,
  .footer-inner,
  .hero-content {
    width: min(100% - 24px, 1120px);
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .button.small {
    width: auto;
  }
}
