@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/onest-400.ttf") format("truetype");
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/onest-700.ttf") format("truetype");
}

:root {
  --bg: #eff1f5;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #132238;
  --muted: #516173;
  --line: rgba(19, 34, 56, 0.12);
  --brand: #123a63;
  --brand-soft: #1d5a96;
  --accent: #d98c2b;
  --accent-soft: #f4e4c8;
  --shadow: 0 18px 42px rgba(18, 58, 99, 0.1);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Onest", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 140, 43, 0.18), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(29, 90, 150, 0.12), transparent 20%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f7 48%, #e6ebf2 100%);
}

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

a {
  color: inherit;
}

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

.narrow-container {
  width: min(calc(100% - 32px), 860px);
}

.company-address {
  white-space: pre-line;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(239, 241, 245, 0.82);
  border-bottom: 1px solid rgba(19, 34, 56, 0.08);
}

.site-header.compact {
  position: relative;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.brand {
  text-decoration: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-text strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--brand);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  padding: 10px 16px;
}

.hero-section {
  padding: 54px 0 84px;
}

.hero-grid,
.split-grid,
.intro-grid,
.address-grid,
.pros-cons-grid,
.footer-grid,
.score-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.copy-block h2,
.showcase-copy h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.section-heading.narrow {
  max-width: 760px;
}

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

.lead,
.copy-block p,
.editorial-notes li,
.address-item p,
.faq-row p,
.list-block li,
.legal-content p,
.legal-content li,
.site-footer p {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.stat-card,
.score-card,
.legal-content {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card,
.score-card,
.legal-content {
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.stat-card {
  min-width: 155px;
  padding: 16px 18px;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.stat-card strong {
  font-size: 1.18rem;
}

.hero-media,
.visual-frame {
  position: relative;
}

.hero-media img,
.visual-frame img,
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-media img {
  min-height: 680px;
}

.info-panel {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: min(340px, calc(100% - 40px));
  padding: 24px;
  border-radius: 24px;
  background: rgba(16, 35, 57, 0.9);
  color: #fff;
  box-shadow: var(--shadow);
}

.info-panel h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
}

.panel-label {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.info-panel ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 84px 0;
}

.section-soft,
.legal-content {
  background: rgba(255, 255, 255, 0.58);
}

.section-heading {
  margin-bottom: 32px;
}

.intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  align-items: start;
}

.copy-block,
.legal-content,
.editorial-notes,
.showcase-panel {
  padding: 32px;
}

.copy-block p:first-of-type,
.legal-content p:first-of-type {
  margin-top: 0;
}

.copy-block p:last-of-type {
  margin-bottom: 0;
}

.editorial-notes {
  align-self: stretch;
  border-left: 2px solid rgba(19, 34, 56, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.editorial-notes h3,
.address-item h3,
.room-row h3,
.faq-row h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.editorial-notes ul,
.list-block ul {
  margin: 0;
  padding-left: 20px;
}

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

.address-strip {
  gap: 36px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(19, 34, 56, 0.12);
}

.address-item h3,
.address-item p,
.faq-row p,
.room-row p {
  margin: 0;
}

.split-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

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

.visual-frame img {
  min-height: 560px;
}

.elevated {
  padding: 0;
  background: transparent;
}

.bullet-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.bullet-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(217, 140, 43, 0.14);
  color: var(--brand);
  font-weight: 700;
}

.room-list,
.faq-list {
  display: grid;
  gap: 0;
}

.room-row,
.faq-row,
.list-block {
  padding: 22px 0;
  border-top: 1px solid rgba(19, 34, 56, 0.12);
}

.room-row:last-child,
.faq-row:last-child,
.list-block:last-child {
  border-bottom: 1px solid rgba(19, 34, 56, 0.12);
}

.showcase-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
  border-top: 1px solid rgba(19, 34, 56, 0.12);
  border-bottom: 1px solid rgba(19, 34, 56, 0.12);
}

.showcase-image img {
  min-height: 100%;
  border-radius: var(--radius-xl);
}

.showcase-copy {
  padding: 0;
}

.score-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 24px;
}

.score-strip {
  gap: 0;
  border-top: 1px solid rgba(19, 34, 56, 0.12);
  border-bottom: 1px solid rgba(19, 34, 56, 0.12);
}

.score-card {
  text-align: center;
  padding: 24px 16px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(19, 34, 56, 0.12);
  box-shadow: none;
  border-radius: 0;
}

.score-card:first-child {
  border-left: 0;
}

.score-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
}

.score-card p {
  margin: 0;
}

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

.editorial-columns {
  gap: 44px;
}

.legal-page .legal-main {
  padding-bottom: 48px;
}

.legal-hero {
  padding: 64px 0 24px;
}

.legal-content {
  border-radius: var(--radius-xl);
}

.legal-content h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.legal-content ul {
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 20px;
}

.back-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 34px 0 42px;
  background: #102339;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer p,
.site-footer a,
.site-footer h2 {
  color: inherit;
}

.footer-grid {
  grid-template-columns: 1.15fr 1fr 0.9fr 0.95fr;
  align-items: start;
}

.footer-grid h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.footer-kicker {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.small-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .split-grid,
  .showcase-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-media img,
  .visual-frame img {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .topbar {
    min-height: 78px;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 18px;
  }

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

  .stats-row,
  .hero-actions,
  .bullet-chips {
    flex-direction: column;
  }

  .highlights-grid,
  .address-grid,
  .score-grid,
  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .score-card {
    border-left: 0;
    border-top: 1px solid rgba(19, 34, 56, 0.12);
  }

  .score-card:first-child {
    border-top: 0;
  }

  .hero-section,
  .section {
    padding: 64px 0;
  }

  .copy-block,
  .showcase-panel,
  .legal-content {
    padding: 24px;
  }

  .hero-media img {
    min-height: 420px;
  }

  .info-panel {
    position: static;
    width: 100%;
    margin-top: 18px;
  }
}
