:root {
  --bg-main: #121110;
  --bg-surface: #1a1516;
  --bg-elevated: #231d1e;
  --bg-card: rgba(26, 21, 22, 0.85);
  --glass-panel: rgba(24, 19, 20, 0.92);
  --glass-border: rgba(217, 59, 76, 0.35);
  --glass-border-subtle: rgba(217, 59, 76, 0.15);
  --theme-primary: #d93b4c;
  --theme-light: #f9c8ce;
  --theme-glow: rgba(217, 59, 76, 0.32);
  --gold-primary: var(--theme-primary);
  --gold-light: var(--theme-light);
  --gold-glow: var(--theme-glow);
  --text-main: #f7f3f0;
  --text-muted: #bdafad;
  --text-dim: #887a7c;
  --stone-line: #36292b;
  --error: #e05244;
  --success: #88b76e;
  --font-heading: "Cinzel", "Playfair Display", Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: var(--theme-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #ffffff;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 24px;
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  margin-bottom: 16px;
}

p {
  margin-bottom: 24px;
  color: var(--text-muted);
}

p:last-child {
  margin-bottom: 0;
}

/* Accessibility Focus */
:focus-visible {
  outline: 2px solid var(--theme-primary);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Header - Slim, Proper, and Refined */
.site-header {
  height: 50px;
  background-color: rgba(18, 17, 16, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stone-line);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--theme-primary);
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.nav-desktop a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: #ffffff;
}

.nav-desktop a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--theme-primary);
}

.header-cta {
  background-color: transparent;
  border: 1px solid var(--theme-primary);
  color: var(--theme-light);
  padding: 5px 14px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: var(--radius-sm);
  transition: background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background-color: var(--theme-primary);
  color: var(--bg-main);
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--text-main);
  line-height: 0;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 17, 16, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  padding: 28px 24px;
  border-top: 1px solid var(--stone-line);
}

.mobile-menu-overlay.is-visible {
  display: flex;
}

.nav-mobile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-mobile-list a {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
  color: var(--text-main);
}

.nav-mobile-list a:hover {
  color: var(--theme-primary);
}

/* Page Hero */
.page-hero {
  padding: 56px 0 44px;
  background: radial-gradient(circle at 50% 15%, #2a1618 0%, #121110 75%);
  border-bottom: 1px solid var(--stone-line);
  position: relative;
}

.page-hero-kicker {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-primary);
  margin-bottom: 12px;
  display: block;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 780px;
  color: #ded7d8;
  margin-bottom: 32px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(217, 59, 76, 0.25);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--theme-light);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* Page Section */
.page-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--stone-line);
}

.section-title-wrap {
  margin-bottom: 44px;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--theme-primary);
  margin-bottom: 8px;
  display: block;
}

/* Glass Overlay Card Design */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.glass-card {
  position: relative;
  background-color: var(--bg-surface);
  border: 1px solid var(--glass-border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.glass-card:hover {
  border-color: var(--glass-border);
  transform: translateY(-4px);
}

.card-media-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #241c1e;
}

.card-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.glass-card:hover .card-media-wrap img {
  transform: scale(1.05);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(18, 17, 16, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--theme-light);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.card-glass-content {
  padding: 24px;
  background: var(--glass-panel);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border-subtle);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.card-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 22px;
}

.card-meta-list {
  list-style: none;
  margin-bottom: 22px;
  border-top: 1px solid var(--stone-line);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-meta-list li {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  justify-content: space-between;
}

.card-meta-list strong {
  color: var(--text-main);
  font-weight: 500;
}

.btn-card {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--theme-primary);
  border: 1px solid var(--theme-primary);
  padding: 9px 18px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.btn-card:hover {
  background-color: var(--theme-primary);
  color: var(--bg-main);
}

/* Editorial Layout / Sub-pages */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #ded7d8;
}

.article-body h2 {
  margin-top: 44px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--stone-line);
}

.article-body h3 {
  margin-top: 30px;
  color: var(--theme-light);
}

.article-sidebar {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-panel {
  background: var(--bg-surface);
  border: 1px solid var(--glass-border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-panel h4 {
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--theme-primary);
  border-bottom: 1px solid var(--stone-line);
  padding-bottom: 12px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-list li {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
}

.feature-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-list strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

/* Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 32px 0;
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-md);
}

.luxury-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 580px;
}

.luxury-table th,
.luxury-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--stone-line);
}

.luxury-table th {
  background-color: var(--bg-elevated);
  font-family: var(--font-heading);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-light);
}

.luxury-table tr:hover td {
  background-color: rgba(255, 255, 255, 0.02);
}

/* Callout / Quote */
.quote-highlight {
  margin: 38px 0;
  padding: 22px 30px;
  background-color: rgba(217, 59, 76, 0.08);
  border-left: 3px solid var(--theme-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-highlight p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 8px;
}

.quote-author {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--theme-primary);
}

/* Form Styles */
.form-wrap {
  background-color: var(--bg-surface);
  border: 1px solid var(--glass-border-subtle);
  border-radius: var(--radius-md);
  padding: 30px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #ffffff;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  background-color: var(--bg-main);
  border: 1px solid var(--stone-line);
  color: var(--text-main);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.form-control:focus {
  border-color: var(--theme-primary);
  outline: none;
}

.form-control.is-invalid {
  border-color: var(--error);
}

.error-message {
  font-size: 0.8rem;
  color: var(--error);
  margin-top: 6px;
  display: none;
}

.error-message.is-visible {
  display: block;
}

.form-success-banner {
  display: none;
  background-color: rgba(136, 183, 110, 0.15);
  border: 1px solid var(--success);
  color: var(--success);
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.form-success-banner.is-visible {
  display: block;
}

.btn-submit {
  background-color: var(--theme-primary);
  color: var(--bg-main);
  border: none;
  padding: 13px 26px;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.btn-submit:hover {
  background-color: var(--theme-light);
  color: #121110;
}

/* Map Simulation Block */
.static-map-box {
  background-color: var(--bg-surface);
  border: 1px solid var(--stone-line);
  border-radius: var(--radius-md);
  padding: 24px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(var(--stone-line) 1px, transparent 1px);
  background-size: 20px 20px;
}

.map-pin {
  width: 44px;
  height: 44px;
  color: var(--theme-primary);
  margin-bottom: 14px;
}

.map-coords {
  font-family: monospace;
  font-size: 0.84rem;
  color: var(--theme-light);
  background: var(--bg-main);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stone-line);
  margin-top: 12px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(18, 16, 14, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--theme-primary);
  padding: 18px 24px;
  z-index: 1000;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.cookie-text {
  font-size: 0.88rem;
  color: #ded7d8;
  max-width: 760px;
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 8px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid var(--stone-line);
  background: transparent;
  color: #ffffff;
  transition: all 0.2s ease;
}

.btn-cookie[data-cookie-choice="accept"] {
  background-color: var(--theme-primary);
  border-color: var(--theme-primary);
  color: var(--bg-main);
  font-weight: 600;
}

.btn-cookie[data-cookie-choice="accept"]:hover {
  background-color: var(--theme-light);
  color: #121110;
}

.btn-cookie:hover {
  background-color: var(--bg-elevated);
}

/* Footer */
.site-footer {
  margin-top: auto;
  background-color: #0d0c0a;
  border-top: 1px solid var(--stone-line);
  padding: 56px 0 30px;
  color: var(--text-dim);
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.86rem;
}

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

.footer-legal-copy {
  line-height: 1.6;
  font-size: 0.84rem;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(217, 59, 76, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 46px;
  }
  .nav-desktop,
  .header-cta {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .mobile-menu-overlay {
    top: 46px;
  }
  .page-section {
    padding: 44px 0;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-stats-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 399px) {
  .site-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero-stats-row {
    grid-template-columns: 1fr;
  }
  .card-glass-content {
    padding: 16px;
  }
  .btn-cookie {
    width: 100%;
    text-align: center;
  }
}

/* Motion Preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}