﻿:root {
  --bg: #0f1117;
  --bg-elevated: #151924;
  --bg-panel: rgba(18, 24, 35, 0.72);
  --bg-panel-strong: rgba(17, 22, 31, 0.92);
  --text: #edf2f7;
  --text-soft: #c2cbd7;
  --text-muted: #92a0b0;
  --gold: #d6ac6a;
  --gold-strong: #edc789;
  --accent: #84b8ff;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.18);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.28);
  --shadow-deep: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1240px, calc(100% - 40px));
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(214, 172, 106, 0.95);
  outline-offset: 4px;
}

main {
  position: relative;
  z-index: 1;
}

.page-bg,
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-bg {
  z-index: -3;
  background:
    radial-gradient(circle at top left, rgba(132, 184, 255, 0.12), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(214, 172, 106, 0.12), transparent 26%),
    linear-gradient(180deg, #0f1117 0%, #0d1119 42%, #0f131d 100%);
}

.noise {
  z-index: -2;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 12px 12px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 90%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 60;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  backdrop-filter: blur(18px);
  background: rgba(15, 17, 23, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(15, 17, 23, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 30% 26%, rgba(214, 172, 106, 0.18), transparent 48%),
    linear-gradient(180deg, rgba(24, 30, 42, 0.94), rgba(14, 18, 27, 0.88));
  box-shadow: var(--shadow-soft);
}

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

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-text small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.brand-logo--fallback {
  display: grid;
  place-items: center;
}

.brand-logo--fallback svg {
  width: 100%;
  height: 100%;
}

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

.nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.language-switcher__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-switcher__link:hover,
.language-switcher__link.is-active {
  color: #15110a;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn::after {
  content: '';
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -38%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: translateX(-180%) skewX(-24deg);
  opacity: 0;
  pointer-events: none;
  animation: buttonSheen 6.2s ease-in-out infinite;
}

.btn-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.92rem;
}

.btn-gold {
  color: #15110a;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 14px 36px rgba(214, 172, 106, 0.24);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  flex: 0 0 44px;
}

.burger span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.burger span:first-child {
  top: 16px;
}

.burger span:last-child {
  bottom: 16px;
}

body.nav-open .burger span:first-child {
  transform: translateY(5px) rotate(45deg);
}

body.nav-open .burger span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: clamp(760px, 92svh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: clip;
}

.hero::after {
  content: '';
  position: absolute;
  right: -10%;
  bottom: 14%;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 172, 106, 0.18) 0%, rgba(214, 172, 106, 0.03) 58%, transparent 74%);
  filter: blur(8px);
  pointer-events: none;
  animation: ambientDrift 16s ease-in-out infinite;
}

.hero-media-frame,
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media-frame {
  display: block;
  overflow: hidden;
}

.hero-media {
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.012);
  filter: saturate(1.05) contrast(1.02) brightness(0.97);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 12, 18, 0.58) 0%, rgba(9, 12, 18, 0.28) 42%, rgba(9, 12, 18, 0.1) 100%),
    linear-gradient(180deg, rgba(9, 12, 18, 0.02) 0%, rgba(9, 12, 18, 0.38) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 420px);
  gap: 40px;
  align-items: end;
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 42px;
}

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

.eyebrow,
.section-kicker,
.panel-label,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker,
.panel-label {
  color: #f5d6a4;
  background: rgba(214, 172, 106, 0.12);
  border: 1px solid rgba(214, 172, 106, 0.2);
}

.status-pill {
  color: #d8f0dd;
  background: rgba(53, 140, 83, 0.18);
  border: 1px solid rgba(90, 180, 117, 0.24);
}

.hero-copy h1,
.section-head h2,
.location-copy h2,
.hero-panel h2 {
  margin: 18px 0 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: none;
  width: 100%;
  font-size: clamp(2.55rem, 4.35vw, 4.95rem);
}

.hero-lead,
.section-head p,
.location-copy p,
.info-card p,
.use-card p,
.timeline p,
.faq-answer p,
.contact-box p {
  color: var(--text-soft);
}

.hero-lead {
  max-width: 62ch;
  margin: 0 0 24px;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card,
.signal-pill,
.info-card,
.map-card,
.use-card,
.timeline article,
.faq-item,
.contact-box,
.hero-panel,
.calculator-card {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.metric-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.metric-card span,
.signal-pill span,
.info-card span,
.calculator-result span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.metric-card strong,
.signal-pill strong,
.calculator-result strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.05;
}

.metric-card small {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
}

.hero-panel {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 420px;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 24, 33, 0.88), rgba(15, 19, 28, 0.78));
  animation: heroPanelFloat 11s ease-in-out infinite;
}

.hero-panel__top,
.hero-panel__actions,
.signal-bar__grid,
.offer-grid,
.cards-4,
.calculator-layout,
.location-layout,
.timeline,
.contact-actions {
  display: flex;
}

.hero-panel__top {
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel h2 {
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
  margin: 0;
}

.deal-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.deal-points li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.deal-points li::before,
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
}

.hero-panel__actions {
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.signal-bar {
  padding: 12px 0 0;
}

.signal-bar__grid,
.offer-grid,
.cards-4,
.timeline {
  gap: 16px;
}

.signal-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-pill,
.info-card,
.use-card,
.timeline article {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section[data-observe] {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-head {
  max-width: none;
  display: block;
  margin-bottom: 28px;
}

.section-head h2,
.location-copy h2 {
  max-width: none;
  width: 100%;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
}

.section-head .section-kicker {
  display: inline-flex;
}

.section-head p {
  max-width: 64ch;
}

.offer-grid,
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card strong,
.use-card h3,
.timeline h3,
.faq-trigger span:first-child {
  display: block;
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.journey-step {
  display: inline-flex;
  margin-bottom: 12px;
  color: #f5d6a4;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.location-layout,
.calculator-layout,
.contact-box {
  display: grid;
  gap: 28px;
}

.location-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.map-card {
  padding: 18px;
  border-radius: var(--radius-xl);
}

.map-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

.map-card__note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-card__note strong {
  display: block;
  margin-bottom: 6px;
}

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

.feature-list li {
  position: relative;
  padding-left: 18px;
}

.metric-card,
.signal-pill,
.info-card,
.use-card,
.timeline article,
.post-card,
.hero-panel {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .metric-card:hover,
  .signal-pill:hover,
  .info-card:hover,
  .use-card:hover,
  .timeline article:hover,
  .post-card:hover,
  .hero-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 172, 106, 0.18);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  }
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
}

.calculator-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.calculator-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.calculator-controls {
  display: grid;
  gap: 20px;
}

.calculator-controls label {
  display: grid;
  gap: 12px;
}

.calculator-controls span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.calculator-controls strong {
  font-size: 1.05rem;
}

input[type='range'] {
  width: 100%;
  accent-color: var(--gold);
}

.calculator-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.calculator-result div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.gallery-card {
  position: relative;
  min-height: 360px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #0b0d12;
  text-align: left;
}

.gallery-card.tall {
  grid-row: auto;
}

.gallery-card.wide {
  min-height: 360px;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.7));
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 14, 20, 0.48);
  backdrop-filter: blur(16px);
}

.gallery-copy strong {
  font-size: 1.18rem;
}

.gallery-copy small {
  color: var(--text-soft);
}

.gallery-copy em {
  display: block;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.55;
}

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

.faq-item {
  overflow: clip;
  border-radius: var(--radius-lg);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold-strong);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 220ms ease;
}

.js .faq-answer {
  display: none;
  grid-template-rows: 0fr;
}

.faq-answer > div,
.faq-answer > p {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  padding: 0 24px 24px;
  margin: 0;
}

.js .faq-item.is-open .faq-answer {
  display: grid;
  grid-template-rows: 1fr;
}

.js .faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.no-js .faq-trigger {
  cursor: default;
}

.no-js .faq-icon {
  display: none;
}

.contact-section {
  padding-bottom: 120px;
}

.contact-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 32px;
}

.contact-box__content {
  display: grid;
  gap: 16px;
}

.contact-box__content h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.85rem, 2.35vw, 2.7rem);
  line-height: 1.06;
}

.contact-box__content p {
  max-width: 62ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.58;
}

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

.contact-method {
  display: grid;
  gap: 6px;
  min-height: 82px;
  padding: 15px 16px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 172, 106, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.contact-method span {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.contact-method strong {
  align-self: end;
  font-size: 1.05rem;
}

.contact-method--primary {
  grid-column: 1 / -1;
  color: #15110a;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 16px 38px rgba(214, 172, 106, 0.2);
}

.contact-method--primary span {
  color: rgba(21, 17, 10, 0.64);
}

.contact-method--primary strong {
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
}

.contact-checklist {
  display: grid;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-checklist h3 {
  margin: 0;
  font-size: 1rem;
}

.contact-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
  line-height: 1.45;
}

.contact-checklist li::before {
  content: '';
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-cta.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 80;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.76);
  backdrop-filter: blur(18px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 32px));
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 30px;
  background: var(--bg-panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-deep);
}

.lightbox-dialog img {
  width: 100%;
  max-height: 68vh;
  object-fit: cover;
  border-radius: 20px;
}

.lightbox-copy h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.lightbox-copy p {
  margin: 0;
  color: var(--text-soft);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-delay-1 { transition-delay: 70ms; }
.reveal-delay-2 { transition-delay: 140ms; }
.reveal-delay-3 { transition-delay: 210ms; }

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.no-js .scroll-progress {
  display: none;
}

@media (max-width: 1180px) {
  .hero-grid,
  .location-layout,
  .calculator-layout,
  .contact-box,
  .offer-grid,
  .cards-4,
  .signal-bar__grid,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .hero-stats,
  .calculator-result {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    display: block;
  }
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.wide {
    min-height: 280px;
  }
}

@media (max-width: 1120px) {
  .nav,
  .header-actions {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .nav.is-open {
    position: absolute;
    top: calc(var(--header-height) - 6px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(16, 20, 29, 0.96);
    box-shadow: var(--shadow-deep);
  }

  .nav.is-open a {
    padding: 10px 4px;
  }

  .hero-grid {
    padding-top: calc(var(--header-height) + 26px);
  }

  .section-head {
    display: block;
  }

  .no-js .site-header {
    position: relative;
  }

  .no-js .header-inner {
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 12px 0;
  }

  .no-js .nav {
    order: 10;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 10px 0 2px;
  }

  .no-js .nav a {
    padding: 8px 0;
  }

  .no-js .header-actions {
    display: flex;
    margin-left: auto;
  }

  .no-js .burger {
    display: none;
  }
}

@media (max-width: 700px) {
  :root {
    --container: min(100% - 28px, 1240px);
    --header-height: 78px;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.05rem, 9.2vw, 3rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-stats,
  .calculator-result {
    grid-template-columns: 1fr;
  }

  .metric-card,
  .signal-pill,
  .info-card,
  .use-card,
  .timeline article,
  .calculator-card,
  .contact-box,
  .hero-panel {
    padding: 22px;
  }

  .section {
    padding: 76px 0;
  }

  .object-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .header-inner {
    gap: 10px;
  }

  .no-js .header-actions {
    display: none;
  }

  .no-js .nav-mobile-actions {
    display: grid;
    width: 100%;
    gap: 10px;
    margin-top: 6px;
  }

  .brand {
    gap: 10px;
    max-width: min(50vw, 230px);
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    padding: 7px;
    border-radius: 16px;
  }

  .brand-text strong {
    font-size: 1rem;
  }

  .brand-text small {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.72rem;
  }

  .hero-media {
    transform: none;
    object-position: center 52%;
    filter: saturate(1.04) contrast(1.02) brightness(0.99);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(9, 12, 18, 0.12) 0%, rgba(9, 12, 18, 0.32) 62%, rgba(9, 12, 18, 0.48) 100%),
      linear-gradient(90deg, rgba(9, 12, 18, 0.28) 0%, rgba(9, 12, 18, 0.1) 54%, rgba(9, 12, 18, 0.16) 100%);
  }

  .hero-grid {
    gap: 16px;
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: 26px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-sublead {
    display: none;
  }

  .lightbox-dialog {
    width: calc(100% - 20px);
    padding: 14px;
  }

  .floating-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.hero-sublead {
  max-width: 62ch;
  margin: -2px 0 28px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

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

.object-summary-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.object-facts {
  display: grid;
  gap: 12px;
  margin: 0;
}

.object-facts div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.object-facts div:last-child {
  border-bottom: 0;
}

.object-facts dt {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.object-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.5;
}

.quick-answer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.quick-answer-card h3 {
  margin-bottom: 10px;
}

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

.route-layout,
.contact-layout,
.dual-column-grid,
.archive-grid,
.legal-grid,
.single-layout,
.footer-grid {
  display: grid;
  gap: 24px;
}

.route-layout,
.contact-layout,
.dual-column-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.route-card,
.contact-form-card,
.content-card,
.notice-card,
.prose-card,
.post-card {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
}

.route-card,
.contact-form-card,
.content-card,
.notice-card {
  padding: 24px;
}

.route-card {
  position: relative;
  overflow: hidden;
}

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

.presentation-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    var(--bg-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.presentation-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.presentation-card__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 172, 106, 0.28);
  background: rgba(214, 172, 106, 0.08);
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.presentation-card strong {
  font-size: 1.05rem;
}

.presentation-card p,
.presentation-card small {
  color: var(--text-soft);
}

.route-card img,
.post-card__thumb img,
.single-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-card img,
.single-cover img {
  border-radius: 22px;
}

.route-card__metrics {
  position: absolute;
  left: calc(24px + 1.1%);
  bottom: calc(24px + 3.6%);
  z-index: 2;
  width: min(270px, calc((100% - 48px) * 0.42));
  min-width: 188px;
  padding: 11px 13px 12px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(214, 172, 106, 0.18);
  border-radius: 12px 12px 24px 12px;
  background:
    linear-gradient(145deg, rgba(13, 22, 31, 0.98), rgba(9, 15, 23, 0.96)),
    #0b111a;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
  pointer-events: none;
}

.route-card__metrics span {
  display: block;
  margin-bottom: 2px;
  color: rgba(238, 212, 169, 0.82);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.route-card__metrics strong {
  display: block;
  color: #f4efe5;
  font-size: clamp(0.66rem, 0.88vw, 0.82rem);
  font-weight: 800;
  line-height: 1.12;
}

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

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

.timeline-value {
  display: inline-flex;
  margin-top: 10px;
  color: #f5d6a4;
  font-weight: 800;
}

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

.section-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.contact-form-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
}

.contact-form-card h3,
.content-card h2,
.notice-card strong,
.page-hero__content h1,
.post-card h2,
.single-aside h2 {
  margin: 14px 0 16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1.04;
  text-wrap: balance;
}

.content-card h2,
.post-card h2,
.single-aside h2 {
  font-size: clamp(1.3rem, 1.8vw, 1.85rem);
}

.contact-form-card > p {
  max-width: 62ch;
  margin: -4px 0 24px;
  color: var(--text-soft);
  line-height: 1.6;
}

.contact-form-card .lead-form {
  margin-top: auto;
}

.lead-form {
  display: grid;
  gap: 16px;
}

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

.lead-form label {
  display: grid;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.lead-form textarea {
  min-height: 140px;
  resize: vertical;
}

.lead-form__trap {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.inner-page {
  padding-bottom: 120px;
}

.page-hero {
  position: relative;
  padding: 24px 0 34px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(132, 184, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 16%, rgba(214, 172, 106, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(14, 18, 27, 0.88) 0%, rgba(14, 18, 27, 0.56) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero__content h1 {
  max-width: none;
  width: 100%;
}

.page-hero__content p {
  max-width: 760px;
  color: var(--text-soft);
}

.page-hero__meta {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 10px;
}

.page-hero--editorial {
  padding-bottom: 40px;
}

.page-hero--article {
  padding-top: 18px;
  padding-bottom: 28px;
}

.page-hero--article::before {
  background:
    linear-gradient(90deg, rgba(10, 13, 19, 0.76) 0%, rgba(10, 13, 19, 0.38) 48%, rgba(10, 13, 19, 0.72) 100%),
    linear-gradient(180deg, rgba(10, 13, 19, 0.12) 0%, rgba(10, 13, 19, 0.72) 100%),
    var(--article-cover) center / cover no-repeat;
}

.editorial-hero,
.article-hero {
  position: relative;
  z-index: 1;
}

.editorial-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: 36px;
  align-items: center;
}

.editorial-hero__copy h1,
.article-hero h1 {
  margin: 10px 0 0;
  max-width: none;
  width: 100%;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.95rem, 3vw, 3.05rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.content-card h2,
.post-card h2,
.post-card h3,
.featured-story__body h2,
.single-aside h2,
.contact-form-card h3,
.notice-card strong,
.use-card h3,
.timeline h3,
.faq-trigger span:first-child,
.hero-panel h2 {
  max-width: none;
  width: 100%;
  text-wrap: balance;
}

.editorial-hero__copy p,
.article-deck {
  max-width: 54ch;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.68;
}

.editorial-pills,
.article-hero__meta,
.featured-story__meta,
.post-card__meta-row,
.post-card__footer,
.single-aside__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.editorial-pills {
  margin-top: 22px;
}

.editorial-pill,
.article-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.article-hero {
  min-height: 220px;
  max-width: 820px;
  display: grid;
  align-content: end;
  gap: 14px;
}

.article-hero__meta,
.featured-story__meta {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.page-hero--compact {
  padding-bottom: 28px;
}

.breadcrumbs {
  position: relative;
  z-index: 5;
  padding-top: calc(var(--header-height) + 12px);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  opacity: 0.45;
}

.site-footer {
  padding: 56px 0 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 19, 0.88);
}

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

.footer-brand h2 {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.3rem;
}

.footer-brand p,
.footer-links {
  color: var(--text-soft);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--text);
}

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

.archive-grid--home {
  margin-top: 8px;
}

.post-card {
  overflow: hidden;
}

.post-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.post-card__content {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.post-card__meta {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.post-card h2 {
  margin: 10px 0 8px;
}

.post-card h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.12;
}

.post-card h2 a,
.post-card h3 a,
.featured-story__body h2 a {
  text-decoration: none;
}

.post-card h2 a:hover,
.post-card h3 a:hover,
.featured-story__body h2 a:hover {
  color: var(--gold-strong);
}

.post-card__eyebrow,
.story-read-time,
.post-card__meta {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.story-link {
  color: var(--gold-strong);
  font-weight: 800;
}

.story-link:hover {
  color: var(--text);
}

.featured-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(18, 23, 32, 0.92), rgba(14, 18, 27, 0.82));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.featured-story__media {
  display: block;
  min-height: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.featured-story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-story__body {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(20, 24, 35, 0.88), rgba(16, 20, 29, 0.68));
}

.featured-story__body h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
  line-height: 1.04;
}

.featured-story__body p {
  margin: 0;
  color: var(--text-soft);
}

.featured-story__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.post-card--placeholder {
  min-height: 100%;
}

.prose-card {
  padding: 32px;
}

.prose-card--editorial {
  padding: 30px;
}

.section-editorial-copy {
  padding-top: 28px;
}

.section-editorial-copy--inner {
  padding-top: 18px;
}

.prose-card > *:first-child {
  margin-top: 0;
}

.prose-card h2,
.prose-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.03em;
}

.prose-card p,
.prose-card li {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.74;
}

.prose-card a {
  color: #f5d6a4;
}

.prose-card--page-builder .wp-block-image img {
  border-radius: 22px;
}

.prose-card--page-builder .wp-block-columns {
  gap: 22px;
}

.prose-card--page-builder .wp-block-separator {
  border-color: rgba(255, 255, 255, 0.08);
}

.prose-card--page-builder .wp-block-quote {
  margin: 28px 0;
  padding-left: 20px;
  border-left: 2px solid rgba(214, 172, 106, 0.42);
}

.prose-card--page-builder .wp-block-button__link {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 800;
}

.article-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.article-summary__item {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.article-summary__item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-summary__item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.45;
}

.single-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  align-items: start;
}

.single-cover {
  margin-bottom: 24px;
}

.single-aside {
  position: sticky;
  top: calc(var(--header-height) + 20px);
}

.single-aside__divider {
  height: 1px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.08);
}

.single-aside__actions {
  gap: 10px;
}

.single-aside__actions .btn {
  width: 100%;
}

.notice-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1180px) {
  .editorial-hero {
    grid-template-columns: 1fr;
  }

  .offer-grid--expanded,
  .cards-4--three,
  .object-summary-grid,
  .quick-answer-grid,
  .timeline--capitalization,
  .legal-grid,
  .archive-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-layout,
  .contact-layout,
  .dual-column-grid,
  .single-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .hero-grid {
    gap: 20px;
    padding-top: calc(var(--header-height) + 18px);
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .route-stats,
  .lead-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .route-card__metrics {
    width: min(250px, calc((100% - 48px) * 0.48));
  }

  .language-switcher {
    margin-left: auto;
  }

  .single-aside {
    position: static;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 78px;
  }

  .offer-grid--expanded,
  .cards-4--three,
  .object-summary-grid,
  .quick-answer-grid,
  .timeline--capitalization,
  .legal-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-bottom: 30px;
  }

  .page-hero {
    padding: 18px 0 26px;
  }

  .object-facts div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .route-card {
    padding: 16px;
  }

  .route-card__metrics {
    left: calc(16px + 1%);
    bottom: calc(16px + 3.3%);
    width: min(188px, calc((100% - 32px) * 0.55));
    min-width: 148px;
    padding: 8px 9px;
    gap: 5px;
    border-radius: 10px 10px 18px 10px;
  }

  .route-card__metrics span {
    font-size: 0.4rem;
  }

  .route-card__metrics strong {
    font-size: 0.58rem;
  }

  .editorial-hero__copy h1,
  .article-hero h1 {
    max-width: none;
    font-size: clamp(1.78rem, 8.7vw, 2.55rem);
  }

  .article-summary {
    grid-template-columns: 1fr;
  }

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

  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 17, 23, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-deep);
  }

  .mobile-contact-bar a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 700;
  }

  .presentation-grid {
    grid-template-columns: 1fr;
  }

  .featured-story__body {
    padding: 20px;
  }

  .language-switcher {
    gap: 6px;
    padding: 4px;
  }

  .language-switcher__link {
    min-width: 38px;
    min-height: 34px;
    padding: 0 10px;
  }

  .floating-cta {
    display: none;
  }
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.68;
  }
  50% {
    transform: translate3d(-3%, 2%, 0) scale(1.06);
    opacity: 0.94;
  }
}

@keyframes heroPanelFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes buttonSheen {
  0%,
  68%,
  100% {
    transform: translateX(-180%) skewX(-24deg);
    opacity: 0;
  }
  72% {
    opacity: 0.42;
  }
  86% {
    transform: translateX(420%) skewX(-24deg);
    opacity: 0;
  }
}

.page-hero__actions {
  margin-top: 24px;
}

.section-interest {
  padding-top: 72px;
}

.interest-grid,
.related-links-grid,
.checklist-grid,
.faq-groups {
  display: grid;
  gap: 18px;
}

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

.interest-card,
.link-card,
.scenario-card,
.faq-group {
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

.interest-card,
.link-card {
  padding: 24px;
}

.interest-card h3,
.link-card h3,
.scenario-card h3,
.faq-group h2 {
  margin: 0 0 12px;
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
}

.interest-card p,
.link-card p,
.scenario-card p,
.scenario-meta li,
.faq-group__heading p {
  color: var(--text-soft);
}

.interest-card .btn,
.scenario-card .btn {
  margin-top: 18px;
}

.comparison-table {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(9, 12, 18, 0.76);
  box-shadow: var(--shadow-soft);
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table thead {
  background: rgba(255, 255, 255, 0.03);
}

.comparison-table th {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.comparison-table td {
  color: var(--text-soft);
}

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

.scenario-card {
  padding: 24px;
}

.scenario-card > p {
  margin-bottom: 16px;
}

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

.scenario-meta strong {
  color: var(--text);
}

.related-links-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.link-card .story-link {
  display: inline-flex;
  margin-top: 18px;
}

.faq-groups {
  grid-template-columns: 1fr;
}

.faq-group {
  padding: 24px;
}

.faq-group__heading {
  margin-bottom: 18px;
}

.faq-group__items {
  gap: 14px;
}

.faq-group .faq-item {
  border-radius: 20px;
}

.seo-copy-grid {
  align-items: stretch;
}

.seo-copy-grid .content-card p {
  margin: 0;
}

.nav-mobile-actions {
  display: none;
}

.sitemap-grid {
  align-items: start;
}

@media (max-width: 1180px) {
  .interest-grid,
  .related-links-grid,
  .checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .comparison-table {
    border: 0;
    background: transparent;
    box-shadow: none;
  }

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

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody {
    display: grid;
    gap: 16px;
  }

  .comparison-table tr {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background: var(--bg-panel);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
  }

  .comparison-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 18px;
  }

  .comparison-table td:last-child {
    border-bottom: 0;
  }

  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .nav.is-open {
    padding-bottom: 14px;
  }

  .nav.is-open .nav-mobile-actions {
    display: grid;
    gap: 10px;
    margin-top: 8px;
  }

  .nav.is-open .nav-mobile-actions .btn {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .interest-grid,
  .related-links-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .faq-group,
  .interest-card,
  .link-card,
  .scenario-card {
    padding: 20px;
  }

  .contact-box,
  .contact-form-card {
    border-radius: 24px;
  }

  .contact-methods,
  .contact-checklist ul {
    grid-template-columns: 1fr;
  }

  .contact-method--primary {
    grid-column: auto;
  }
}


/* Static clean-site refinements */
.btn.btn-gold,
.btn.btn-gold:visited,
.mobile-contact-bar .btn-gold,
.header-actions .btn-gold {
  color: #15110a;
}

.quick-answers-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

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

.quick-answer-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 35, 0.72);
  box-shadow: var(--shadow-soft);
}

.quick-answer-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.quick-answer-card p {
  margin: 0;
  color: var(--text-soft);
}

.seo-intent-section {
  background:
    radial-gradient(circle at top right, rgba(230, 183, 109, 0.10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

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

.seo-intent-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 35, 0.74);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-soft);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.seo-intent-card:hover,
.seo-intent-card:focus-visible {
  border-color: rgba(230, 183, 109, 0.58);
  background: rgba(24, 31, 44, 0.88);
  transform: translateY(-2px);
}

.seo-intent-card strong {
  font-size: 1rem;
  line-height: 1.28;
}

.seo-intent-card span {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.expert-deepening {
  background:
    radial-gradient(circle at 12% 14%, rgba(132, 184, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0));
}

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

.expert-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 35, 0.74);
  box-shadow: var(--shadow-soft);
}

.expert-card h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
  line-height: 1.32;
}

.expert-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.58;
}

.visual-story-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(132, 184, 255, 0.09), transparent 34%),
    radial-gradient(ellipse at 82% 42%, rgba(230, 183, 109, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0));
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 28px;
  align-items: center;
}

.visual-story-copy > p {
  max-width: 700px;
  color: var(--text-soft);
}

.visual-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.visual-icon-card {
  min-height: 180px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    rgba(18, 24, 35, 0.70);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.visual-icon-card:hover,
.visual-icon-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(230, 183, 109, 0.46);
  background:
    linear-gradient(180deg, rgba(230, 183, 109, 0.10), rgba(255,255,255,0.025)),
    rgba(20, 27, 39, 0.82);
}

.visual-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: 14px;
  color: var(--gold-strong);
  border: 1px solid rgba(230, 183, 109, 0.26);
  background: rgba(230, 183, 109, 0.10);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-icon-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.visual-icon-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.visual-concept-card {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl);
  background: rgba(18, 24, 35, 0.78);
  box-shadow: var(--shadow-deep);
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.visual-concept-card:hover {
  border-color: rgba(230, 183, 109, 0.44);
}

.visual-concept-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
}

.visual-concept-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 40%, rgba(7, 10, 16, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 10, 16, 0.18), transparent 38%);
}

.visual-concept-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  color: rgba(237, 242, 247, 0.86);
  background: rgba(11, 14, 21, 0.74);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
}

.visual-route-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 88px;
  z-index: 2;
  width: 84%;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
}

.visual-route-line__base,
.visual-route-line__active {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-route-line__base {
  stroke: rgba(255,255,255,0.28);
  stroke-width: 5;
}

.visual-route-line__active {
  stroke: var(--gold-strong);
  stroke-width: 4;
  stroke-dasharray: 96 34;
  animation: visualRouteDash 7s linear infinite;
}

.visual-route-line__point {
  fill: var(--gold-strong);
  stroke: rgba(15,17,23,0.88);
  stroke-width: 4;
  animation: visualRoutePoint 2.8s ease-in-out infinite;
}

.visual-route-line__point.point-b {
  animation-delay: 1.4s;
}

@keyframes visualRouteDash {
  to { stroke-dashoffset: -260; }
}

@keyframes visualRoutePoint {
  0%, 100% { transform: scale(1); opacity: 0.86; }
  50% { transform: scale(1.35); opacity: 1; }
}

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

.gallery-card {
  cursor: default;
}

.gallery-card.tall {
  grid-row: span 2;
  min-height: 740px;
}

.gallery-card.wide,
.gallery-card:not(.tall) {
  min-height: 360px;
}

.gallery-card:hover img {
  transform: none;
}

.js .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  visibility: hidden;
}

.js .faq-answer p {
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
}

.js .faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  visibility: visible;
}

.js .faq-item.is-open .faq-answer p {
  padding: 0 24px 24px;
}

.no-js .faq-answer {
  display: grid;
  grid-template-rows: 1fr;
  visibility: visible;
}

.faq-icon {
  flex: 0 0 auto;
}

.marketplace-positioning {
  background:
    radial-gradient(circle at 18% 10%, rgba(230, 183, 109, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.marketplace-positioning__grid,
.marketplace-layout,
.checklist-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

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

.positioning-card,
.project-showcase-card,
.project-map-panel,
.trust-grid article,
.due-grid article,
.disclaimer-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 35, 0.74);
  box-shadow: var(--shadow-soft);
}

.positioning-card h3,
.project-showcase-card h2,
.trust-grid h2,
.trust-grid h3,
.due-grid h2,
.disclaimer-panel h2 {
  margin-top: 0;
}

.positioning-card p,
.project-showcase-card p,
.project-map-panel p,
.trust-grid p,
.due-grid p,
.disclaimer-panel p,
.verification-list {
  color: var(--text-soft);
}

.positioning-card a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.compact-section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.trust-grid,
.due-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

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

.project-showcase-card.featured-object {
  min-height: 100%;
}

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

.object-facts div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.035);
}

.object-facts dt {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.object-facts dd {
  margin: 6px 0 0;
  color: var(--text);
  font-weight: 700;
}

.project-map-panel img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
}

.verification-list {
  margin: 0;
  padding-left: 22px;
  line-height: 1.75;
}

.custom-page-form {
  margin-top: 24px;
}

@media (max-width: 1100px) {
  .quick-answer-grid,
  .seo-intent-grid,
  .expert-grid,
  .trust-grid,
  .trust-grid.wide,
  .due-grid,
  .marketplace-positioning__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .marketplace-positioning__grid,
  .marketplace-layout,
  .visual-story-grid,
  .checklist-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .quick-answer-grid,
  .seo-intent-grid,
  .expert-grid,
  .visual-proof-grid,
  .gallery-grid,
  .trust-grid,
  .trust-grid.wide,
  .due-grid,
  .marketplace-positioning__cards,
  .object-facts {
    grid-template-columns: 1fr;
  }

  .seo-intent-card {
    min-height: 0;
  }

  .gallery-card.tall,
  .gallery-card.wide,
  .gallery-card:not(.tall) {
    grid-row: auto;
    min-height: 300px;
  }

  .visual-story-grid {
    gap: 22px;
  }

  .visual-proof-grid {
    gap: 12px;
    margin-top: 18px;
  }

  .visual-icon-card {
    min-height: 0;
    padding: 16px;
  }

  .visual-concept-card,
  .visual-concept-card img {
    min-height: 280px;
  }

  .visual-concept-card figcaption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }

  .visual-route-line {
    bottom: 86px;
    width: 92%;
    left: 4%;
    right: 4%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-route-line__active,
  .visual-route-line__point {
    animation: none;
  }

  .visual-icon-card,
  .visual-concept-card {
    transition: none;
  }
}
