:root {
  --ink: #111111;
  --muted: #5b5358;
  --soft: #fbf8f9;
  --paper: #ffffff;
  --line: rgba(17, 17, 17, 0.1);
  --accent: #8b1e3f;
  --accent-hover: #63142c;
  --focus: #8b1e3f;
  --night: #0f0b0e;
  --night-soft: #1a1118;
  --white: #ffffff;
  --shadow: 0 14px 44px rgba(15, 11, 14, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

a:hover {
  color: var(--focus);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 11, 14, 0.82);
  color: var(--white);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(100% - 32px, var(--max));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: #ffffff url("logo-mark.png") center / 88% auto no-repeat;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.brand span:last-child {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.93rem;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.language-switch a {
  padding: 8px 9px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
}

.language-switch a[aria-current="true"] {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 72svh;
  color: var(--white);
  background: var(--night);
  display: flex;
  align-items: end;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.hero::before {
  z-index: -2;
  background-image: url("hero-real.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.62) contrast(1.08) brightness(0.76);
  transform: scale(1.01);
}

.hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 11, 14, 0.82) 0%, rgba(15, 11, 14, 0.56) 48%, rgba(139, 30, 63, 0.24) 100%),
    linear-gradient(180deg, rgba(139, 30, 63, 0.14), rgba(15, 11, 14, 0.4));
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 82px 0 58px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
}

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

.section-actions.center-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 650;
  white-space: nowrap;
}

.button.primary {
  color: var(--white);
  background: var(--accent);
}

.button.primary:hover {
  color: var(--white);
  background: var(--accent-hover);
  box-shadow: 0 10px 32px rgba(139, 30, 63, 0.24);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.button.secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
}

.button.light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.hero-strip {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.hero-strip div {
  min-height: 84px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.hero-strip div:last-child {
  border-right: 0;
}

.metric-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-value {
  display: block;
  margin-top: 8px;
  font-size: 1.18rem;
  font-weight: 680;
}

main {
  overflow: hidden;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 78px 0;
}

.section.compact {
  padding: 58px 0;
}

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

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--focus);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

.lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.quick-section {
  padding-top: 48px;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.quick-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.quick-card-main {
  color: var(--white);
  border-color: var(--night);
  background: var(--night);
}

.quick-label {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-card-main .quick-label,
.quick-card-main p {
  color: rgba(255, 255, 255, 0.72);
}

.quick-card h2 {
  margin: 0 0 16px;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1.08;
}

.quick-card p {
  color: var(--muted);
}

.mini-schedule {
  display: grid;
  gap: 0;
}

.mini-schedule div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.mini-schedule div:first-child {
  border-top: 0;
  padding-top: 0;
}

.mini-schedule span,
.quick-lines p {
  color: var(--muted);
}

.quick-lines {
  display: grid;
  gap: 8px;
}

.feature,
.price-card,
.info-panel,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
}

.feature,
.price-card,
.info-panel {
  padding: 28px;
}

.feature.compact-feature {
  padding: 24px;
}

.feature p,
.price-card p,
.info-panel p,
.legal-panel p,
.legal-panel li {
  color: var(--muted);
}

.feature-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--ink);
  font-weight: 700;
}

.feature-link:hover {
  color: var(--focus);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--night);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.68) contrast(1.05) brightness(0.98);
}

.soft-band {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dark-band {
  color: var(--white);
  background:
    radial-gradient(circle at 78% 22%, rgba(139, 30, 63, 0.3), transparent 32%),
    linear-gradient(135deg, var(--night), var(--night-soft));
}

.dark-band .lead,
.dark-band .feature p,
.dark-band .price-card p,
.dark-band .info-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.dark-band .feature,
.dark-band .price-card,
.dark-band .info-panel {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.page-hero {
  background:
    radial-gradient(circle at 74% 18%, rgba(139, 30, 63, 0.28), transparent 34%),
    linear-gradient(135deg, var(--night), var(--night-soft));
  color: var(--white);
}

.page-hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 82px 0 64px;
}

.page-hero p {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.14rem;
}

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

.data-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.8fr) 1.2fr;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.data-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.data-row strong {
  font-size: 0.98rem;
}

.data-row span,
.data-row a {
  color: var(--muted);
}

.data-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #fbf8f9;
}

tr:last-child td {
  border-bottom: 0;
}

.notice {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-block {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
}

.map-placeholder {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(139, 30, 63, 0.13), rgba(139, 30, 63, 0.04)),
    #fbf8f9;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.map-placeholder strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.legal-panel {
  padding: 34px;
}

.legal-panel + .legal-panel {
  margin-top: 18px;
}

.legal-panel h2 {
  font-size: 1.7rem;
  line-height: 1.15;
}

.legal-panel p,
.legal-panel ul {
  margin-top: 14px;
}

.legal-panel ul {
  padding-left: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--night);
  color: var(--white);
}

.footer-shell {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer-shell p,
.footer-shell a {
  color: rgba(255, 255, 255, 0.68);
}

.footer-title {
  margin-bottom: 14px;
  color: var(--white);
  font-weight: 720;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.copyright {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 18px 0 30px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-shell {
    min-height: 62px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: 62px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(17, 17, 17, 0.96);
    box-shadow: var(--shadow);
  }

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

  .language-switch {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding-top: 10px;
    margin-top: 6px;
  }

  .hero {
    min-height: 68svh;
  }

  .hero-strip,
  .grid-3,
  .grid-2,
  .split,
  .contact-block,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-strip {
    margin-top: 0;
    border-radius: 0;
    width: 100%;
    box-shadow: none;
  }

  .section {
    padding: 58px 0;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 180px;
  }

  .hero-inner {
    padding: 64px 0 44px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-copy,
  .page-hero p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: 0;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .feature,
  .price-card,
  .quick-card,
  .info-panel,
  .legal-panel {
    padding: 22px;
  }
}
