:root {
  --bg: #09070d;
  --bg-soft: #13101a;
  --panel: rgba(18, 13, 24, 0.9);
  --panel-strong: rgba(26, 19, 35, 0.96);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f5efe9;
  --muted: #c7bcc6;
  --dim: #9c8d9d;
  --gold: #d7b37b;
  --gold-strong: #f0cd92;
  --rose: #a93a52;
  --rose-strong: #cf4d6d;
  --violet: #5d2a63;
  --ink: #06141d;
  --blue: #13314a;
  --success: #85c9a1;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --site-width: min(1180px, calc(100vw - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(169, 58, 82, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(19, 49, 74, 0.25), transparent 24%),
    linear-gradient(180deg, #0c0911 0%, #09070d 38%, #0c0913 100%);
  color: var(--text);
  line-height: 1.65;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 7, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  width: var(--site-width);
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-strong) 100%);
  box-shadow: 0 0 22px rgba(215, 179, 123, 0.45);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--panel-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
}

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

.nav-item > a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-item > a:hover,
.dropdown-toggle:hover,
.nav-item > a:focus-visible,
.dropdown-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 14px;
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background: rgba(18, 13, 24, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button,
.button-ghost,
.button-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  background: linear-gradient(135deg, var(--rose) 0%, #df6959 100%);
  color: #fff9f5;
  box-shadow: 0 16px 40px rgba(169, 58, 82, 0.35);
}

.button:hover,
.button-soft:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.button-soft {
  border: 1px solid rgba(215, 179, 123, 0.24);
  background: rgba(215, 179, 123, 0.08);
  color: var(--gold-strong);
}

.button-ghost {
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.page-main {
  overflow: clip;
}

.hero-section {
  padding: 0 0 36px;
}

.hero-section .site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-grid {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: #0f0c14;
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-media,
.surface-panel {
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 15, 27, 0.92), rgba(10, 9, 14, 0.96));
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(720px, 100%);
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 42px;
  padding-right: 42px;
  padding-bottom: 42px;
  padding-left: max(24px, calc((100vw - var(--site-width)) / 2 + 16px));
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(10, 8, 14, 0.92) 0%, rgba(10, 8, 14, 0.76) 46%, rgba(10, 8, 14, 0.28) 100%);
  box-shadow: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-strong);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: #fff5ee;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.lead {
  font-size: 1.08rem;
  color: #ddd1d8;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

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

.stat-chip {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.stat-chip strong {
  display: block;
  margin-bottom: 6px;
  color: #fff4ea;
  font-size: 1rem;
}

.stat-chip span {
  color: var(--dim);
  font-size: 0.95rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #0f0c14;
  box-shadow: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: auto;
  max-width: 340px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 7, 10, 0.34), rgba(8, 7, 10, 0.86));
  z-index: 2;
}

.hero-overlay p {
  margin: 0;
  color: #f7ebdf;
}

.home-hero-copy {
  max-width: min(1320px, 100%);
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding-right: max(28px, calc((100vw - var(--site-width)) / 2 + 32px));
  padding-left: max(28px, calc((100vw - var(--site-width)) / 2 + 32px));
  background:
    linear-gradient(180deg, rgba(10, 8, 14, 0.2) 0%, rgba(10, 8, 14, 0.42) 34%, rgba(10, 8, 14, 0.58) 62%, rgba(10, 8, 14, 0.72) 100%);
}

.home-hero-copy .eyebrow,
.home-hero-copy .lead,
.home-hero-copy p,
.home-hero-copy .site-note {
  text-align: center;
}

.home-hero-copy .eyebrow {
  justify-content: center;
}

.home-hero-copy h1 {
  max-width: 1160px;
  margin-bottom: 1.2rem;
  text-wrap: balance;
}

.home-hero-copy .lead,
.home-hero-copy p {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero-copy .lead {
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.home-hero-copy .hero-actions,
.home-hero-copy .stats-row {
  justify-content: center;
  width: 100%;
}

.home-hero-copy .stats-row {
  max-width: 1180px;
}

.hero-copy.hero-copy-wide {
  max-width: min(1320px, 100%);
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding-right: max(28px, calc((100vw - var(--site-width)) / 2 + 32px));
  padding-left: max(28px, calc((100vw - var(--site-width)) / 2 + 32px));
  background:
    linear-gradient(180deg, rgba(10, 8, 14, 0.22) 0%, rgba(10, 8, 14, 0.44) 34%, rgba(10, 8, 14, 0.62) 62%, rgba(10, 8, 14, 0.78) 100%);
}

.hero-copy.hero-copy-wide h1 {
  max-width: 1100px;
  margin-bottom: 1.15rem;
  text-wrap: balance;
}

.hero-copy.hero-copy-wide .eyebrow,
.hero-copy.hero-copy-wide .lead,
.hero-copy.hero-copy-wide p,
.hero-copy.hero-copy-wide .breadcrumb {
  text-align: center;
}

.hero-copy.hero-copy-wide .eyebrow {
  justify-content: center;
}

.hero-copy.hero-copy-wide .lead,
.hero-copy.hero-copy-wide p {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy.hero-copy-wide .hero-actions,
.hero-copy.hero-copy-wide .cta-row {
  justify-content: center;
  width: 100%;
}

.hero-overlay strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section {
  padding: 36px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-header p:last-child {
  margin-bottom: 0;
}

.section-grid {
  display: grid;
  gap: 22px;
}

.surface-panel {
  padding: 28px;
}

.trust-grid,
.city-grid,
.category-grid,
.model-grid,
.feature-grid,
.faq-grid,
.link-grid,
.profile-grid {
  display: grid;
  gap: 18px;
}

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

.city-grid,
.category-grid,
.feature-grid,
.faq-grid,
.link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.card,
.model-card,
.trust-card,
.city-card,
.category-card,
.feature-card,
.faq-card,
.link-card,
.profile-card {
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border);
  background: linear-gradient(180deg, rgba(19, 14, 26, 0.9), rgba(12, 10, 16, 0.96));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.card h3,
.model-card h3,
.trust-card h3,
.city-card h3,
.category-card h3,
.feature-card h3,
.profile-card h3 {
  margin-bottom: 0.65rem;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(215, 179, 123, 0.18), rgba(93, 42, 99, 0.22));
  color: var(--gold-strong);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-card {
  padding: 0;
  overflow: hidden;
}

.model-card img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
}

.model-body {
  padding: 22px;
}

.tag-row,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.tag,
.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.8rem;
  line-height: 1;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.badge {
  background: rgba(215, 179, 123, 0.12);
  color: var(--gold-strong);
}

.content-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 24px;
}

.info-stack {
  display: grid;
  gap: 18px;
}

.figure-card {
  overflow: hidden;
  padding: 0;
}

.figure-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.figure-card figcaption {
  padding: 20px 22px 22px;
  color: var(--dim);
}

.check-list,
.bullet-list {
  display: grid;
  gap: 12px;
}

.check-list li,
.bullet-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--rose-strong) 100%);
  box-shadow: 0 0 18px rgba(215, 179, 123, 0.24);
}

.data-table {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.02);
}

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

.data-table th {
  color: #fff6ee;
  font-weight: 700;
}

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

.faq-card {
  padding: 0;
}

.faq-card details {
  padding: 22px 24px;
}

.faq-card details + details {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

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

.faq-card summary::after {
  content: "+";
  float: right;
  color: var(--gold-strong);
}

.faq-card details[open] summary::after {
  content: "−";
}

.cta-banner {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(215, 179, 123, 0.16);
  background:
    radial-gradient(circle at 80% 20%, rgba(215, 179, 123, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(169, 58, 82, 0.16), rgba(19, 49, 74, 0.22));
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--dim);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--gold-strong);
}

.footer {
  margin-top: 40px;
  padding: 42px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 5, 9, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer h3 {
  margin-bottom: 0.7rem;
  font-size: 1.45rem;
}

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

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

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

.footer-note {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--dim);
  font-size: 0.94rem;
}

.site-note {
  margin-top: 10px;
  color: var(--dim);
  font-size: 0.94rem;
}

.kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 0;
}

.divider {
  height: 1px;
  margin: 10px 0 0;
  background: linear-gradient(90deg, rgba(215, 179, 123, 0.22), rgba(255, 255, 255, 0.04), transparent);
}

@media (max-width: 1080px) {
  .trust-grid,
  .city-grid,
  .category-grid,
  .feature-grid,
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    padding: 16px;
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    background: rgba(10, 8, 15, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item > a,
  .dropdown-toggle,
  .header-actions a {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown.is-open .dropdown-menu {
    display: block;
  }

  .stats-row,
  .trust-grid,
  .city-grid,
  .category-grid,
  .feature-grid,
  .model-grid,
  .profile-grid,
  .faq-grid,
  .link-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .surface-panel,
  .hero-overlay {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-grid,
  .hero-copy {
    min-height: 560px;
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 24px;
    justify-content: flex-end;
    background:
      linear-gradient(180deg, rgba(10, 8, 14, 0.2) 0%, rgba(10, 8, 14, 0.62) 44%, rgba(10, 8, 14, 0.94) 100%);
  }

  .home-hero-copy {
    padding-right: 24px;
    background:
      linear-gradient(180deg, rgba(10, 8, 14, 0.16) 0%, rgba(10, 8, 14, 0.54) 42%, rgba(10, 8, 14, 0.9) 100%);
  }

  .hero-copy.hero-copy-wide {
    padding-right: 24px;
    padding-left: 24px;
    background:
      linear-gradient(180deg, rgba(10, 8, 14, 0.14) 0%, rgba(10, 8, 14, 0.48) 40%, rgba(10, 8, 14, 0.9) 100%);
  }

  .hero-copy.hero-copy-wide h1,
  .hero-copy.hero-copy-wide .lead,
  .hero-copy.hero-copy-wide p {
    max-width: 100%;
  }

  .hero-overlay {
    right: 18px;
    left: 18px;
    bottom: 18px;
    max-width: none;
  }
}

@media (max-width: 560px) {
  .hero-copy,
  .surface-panel {
    padding: 22px;
  }

  .cta-banner {
    padding: 24px;
  }

  .hero-grid,
  .hero-copy {
    min-height: 520px;
  }

  h1 {
    font-size: 2.55rem;
  }
}
