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

:root {
  color-scheme: dark;
  --bg-1: #231106;
  --bg-2: #654014;
  --panel: rgba(40, 20, 10, 0.94);
  --panel-soft: rgba(72, 41, 17, 0.88);
  --line: rgba(255, 211, 123, 0.15);
  --text: #fff7ea;
  --muted: #e4d0b3;
  --accent: #f4c861;
  --accent-2: #ff9f43;
  --shadow: 0 24px 56px rgba(17, 7, 2, 0.34);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(244, 200, 97, 0.16), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 159, 67, 0.15), transparent 24%),
    linear-gradient(180deg, #6c4315 0%, #170803 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.58), transparent 85%);
}

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

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

.page-shell {
  width: min(1160px, calc(100% - 18px));
  margin: 8px auto 18px;
}

.topbar {
  position: sticky;
  top: 6px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 9px 13px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(24, 10, 6, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
}

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.8vw, 1.44rem);
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
}

.menu-button {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font: inherit;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.nav-link {
  min-height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.is-current {
  background: rgba(255,255,255,0.09);
  color: var(--text);
}

.cta-button,
.ghost-button,
.inline-cta {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #35180d;
  box-shadow: 0 16px 26px rgba(255, 159, 67, 0.22);
}

.ghost-button,
.inline-cta {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.content {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.hero,
.panel,
.cta-strip {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
  padding: 20px;
  align-items: start;
}

.hero-copy h1 {
  margin: 14px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy p,
.section-block p,
.faq-list p,
.route-card p,
.cta-strip p,
.footer p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.66;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.lead {
  color: var(--text) !important;
  font-size: 1.04rem !important;
}

.breadcrumbs,
.language-switcher,
.chip-row,
.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumbs {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.lang-pill,
.chip-row span {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--muted);
}

.lang-pill.is-current {
  background: rgba(244, 200, 97, 0.16);
  border-color: rgba(244, 200, 97, 0.24);
  color: var(--text);
}

.hero-media {
  display: grid;
  gap: 12px;
  align-content: start;
}

.hero-media > img,
.media-card > img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  object-fit: cover;
  background: rgba(255,255,255,0.04);
}

.hero-media > img {
  aspect-ratio: 16 / 11;
}

.media-card {
  padding: 12px;
  border-radius: 20px;
  background: var(--panel-soft);
  border: 1px solid rgba(255,255,255,0.08);
}

.media-card > img {
  aspect-ratio: 16 / 10;
}

.provider-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(0,0,0,0.16);
}

.provider-row img {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
}

.provider-row p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.provider-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
}

.panel {
  padding: 18px;
}

.section-block h2,
.cta-strip h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 2vw, 1.9rem);
}

.section-block h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.route-card,
.faq-list details {
  padding: 15px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(22, 10, 7, 0.56);
}

.route-card span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.route-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  line-height: 1.34;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list summary {
  list-style: none;
  font-weight: 700;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.table-wrap {
  overflow-x: auto;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  border-radius: 16px;
  overflow: hidden;
}

.content-table th,
.content-table td {
  padding: 13px 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.08);
}

.content-table th {
  background: rgba(244, 200, 97, 0.16);
  color: var(--text);
  font-size: 0.93rem;
}

.content-table td {
  color: var(--muted);
  background: rgba(18, 10, 7, 0.52);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(244,200,97,0.12), rgba(255,159,67,0.12)),
    rgba(28, 12, 8, 0.94);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 12px 4px 2px;
  color: var(--muted);
}

.footer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 9px 11px;
    border-radius: 18px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

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

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0 12px;
    border-radius: 14px;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero,
  .split-copy,
  .footer {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: calc(100% - 10px);
    margin: 5px auto 14px;
  }

  .topbar {
    top: 4px;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 16px;
  }

  .brand img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand strong {
    font-size: 0.94rem;
    line-height: 1.04;
  }

  .brand small {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .menu-button {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 12px;
  }

  .hero,
  .panel,
  .cta-strip {
    padding: 13px;
    border-radius: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(1.62rem, 9.6vw, 2.42rem);
    line-height: 1.02;
  }

  .hero-copy p,
  .section-block p,
  .faq-list p,
  .route-card p,
  .cta-strip p,
  .footer p {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .breadcrumbs,
  .language-switcher,
  .chip-row,
  .hero-actions,
  .footer-links {
    gap: 8px;
  }

  .hero-media > img {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .media-card {
    padding: 9px;
    border-radius: 16px;
  }

  .media-card > img {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .provider-row {
    gap: 8px;
    padding: 8px;
    border-radius: 12px;
  }

  .provider-row img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .section-block h2,
  .cta-strip h2 {
    margin-bottom: 10px;
    font-size: clamp(1.28rem, 6.8vw, 1.72rem);
  }

  .section-block h3 {
    font-size: 1rem;
  }

  .split-copy,
  .route-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-card,
  .faq-list details {
    padding: 13px;
    border-radius: 16px;
  }

  .table-wrap {
    overflow: visible;
  }

  .content-table {
    min-width: 0;
    font-size: 0.9rem;
    border-collapse: separate;
  }

  .content-table thead {
    display: none;
  }

  .content-table,
  .content-table tbody,
  .content-table tr,
  .content-table td {
    display: block;
    width: 100%;
  }

  .content-table tr {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(18, 10, 7, 0.52);
  }

  .content-table td {
    display: grid;
    grid-template-columns: minmax(104px, 42%) minmax(0, 1fr);
    gap: 8px;
    align-items: start;
    padding: 0;
    border: 0;
    background: transparent;
    word-break: break-word;
  }

  .content-table td + td {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .content-table td::before {
    content: attr(data-label);
    color: var(--text);
    font-weight: 700;
    line-height: 1.32;
  }

  .footer {
    gap: 10px;
    padding: 8px 2px 2px;
  }

  .cta-button,
  .ghost-button,
  .inline-cta,
  .lang-pill,
  .chip-row span {
    width: 100%;
  }

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

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.48rem, 10.6vw, 2.1rem);
  }

  .content-table td {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
