:root {
  --bg-top: #e5f2fc;
  --bg-bottom: #f6fbff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-stroke: rgba(15, 108, 189, 0.16);
  --hero-top: #0f6cbd;
  --hero-bottom: #0c4675;
  --hero-soft: #dceafb;
  --text: #123b60;
  --text-muted: #5b738d;
  --accent: #0f6cbd;
  --accent-deep: #0a4f90;
  --chip: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 48px rgba(11, 42, 72, 0.14);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1120px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Segoe UI", "SF Pro Display", "Helvetica Neue", sans-serif;
  background: linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  color: var(--text);
}

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

body {
  display: flex;
  flex-direction: column;
}

.site-shell {
  width: min(calc(100% - 24px), var(--max-width));
  margin: 16px auto 28px;
}

.toolbar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(231,241,251,0.96));
  border: 1px solid var(--surface-stroke);
  box-shadow: var(--shadow);
}

.toolbar__icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.12));
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  flex-shrink: 0;
}

.toolbar__icon {
  width: 48px;
  height: 48px;
}

.toolbar__copy {
  min-width: 0;
  flex: 1;
}

.toolbar__eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15,108,189,0.1);
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toolbar__title {
  margin: 10px 0 2px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.08;
  font-weight: 700;
}

.toolbar__subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.toolbar__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--hero-top), var(--hero-bottom));
  box-shadow: 0 14px 28px rgba(15,108,189,0.24);
}

.btn--ghost {
  background: rgba(255,255,255,0.74);
  border-color: var(--surface-stroke);
  color: var(--text);
}

.page-grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.page-grid--home {
  grid-template-columns: 1.2fr 0.8fr;
}

.hero-card,
.panel,
.nav-card,
.menu-card,
.contact-card,
.bullet-card {
  background: var(--surface);
  border: 1px solid var(--surface-stroke);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, var(--hero-top), var(--hero-bottom));
  color: #fff;
}

.hero-card__kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--chip);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h1 {
  margin: 14px 0 8px;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.05;
}

.hero-card p {
  margin: 0;
  max-width: 58ch;
  color: var(--hero-soft);
  line-height: 1.6;
}

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

.hero-metric {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

.hero-metric__label {
  color: var(--hero-soft);
  font-size: 12px;
}

.hero-metric__value {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 700;
}

.panel {
  padding: 22px;
}

.panel h2,
.bullet-card h2,
.contact-card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.panel p,
.bullet-card p,
.contact-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.nav-tabs,
.nav-tabs--inner {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.nav-card,
.menu-card {
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-card {
  min-width: 190px;
  flex: 0 0 auto;
}

.nav-card:hover,
.menu-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15,108,189,0.34);
}

.nav-card.active {
  background: linear-gradient(180deg, rgba(15,108,189,0.1), rgba(15,108,189,0.04));
  border-color: rgba(15,108,189,0.34);
}

.nav-card__title,
.menu-card__title {
  font-size: 17px;
  font-weight: 700;
}

.nav-card__subtitle,
.menu-card__subtitle {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

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

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

.bullet-card,
.contact-card {
  padding: 22px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.bullet-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  align-items: start;
}

.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(15,108,189,0.08);
}

.bullet-list strong {
  color: var(--text);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid rgba(15,108,189,0.12);
}

.contact-item__label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-item__value {
  font-size: 16px;
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
  padding: 0 4px;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 860px) {
  .toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar__actions {
    justify-content: stretch;
  }

  .toolbar__actions .btn {
    flex: 1 1 0;
  }

  .page-grid--home {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }
}
