:root {
  --seo-bg: #09090b;
  --seo-bg-alt: #121015;
  --seo-surface: rgba(16, 16, 20, 0.9);
  --seo-surface-strong: rgba(255, 255, 255, 0.08);
  --seo-ink: #f5efe9;
  --seo-muted: rgba(245, 239, 233, 0.74);
  --seo-line: rgba(255, 255, 255, 0.08);
  --seo-brand: #4d2327;
  --seo-brand-deep: #2b1017;
  --seo-brand-soft: #c4787e;
  --seo-gold: #d3ae6a;
  --seo-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
  --seo-radius: 28px;
  --seo-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--seo-ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 120, 126, 0.18), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(211, 174, 106, 0.12), transparent 22%),
    linear-gradient(180deg, #070709 0%, #0b0b0f 36%, #120f14 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.07;
  pointer-events: none;
  z-index: -2;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.seo-shell {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  isolation: isolate;
}

.seo-shell::before,
.seo-shell::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

.seo-shell::before {
  top: -120px;
  right: -120px;
  background: rgba(155, 90, 96, 0.22);
}

.seo-shell::after {
  bottom: 5rem;
  left: -140px;
  background: rgba(211, 174, 106, 0.16);
}

.seo-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(8, 8, 11, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.3);
}

.seo-topbar__inner,
.seo-container {
  width: min(calc(100% - 2rem), var(--seo-width));
  margin: 0 auto;
}

.seo-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.seo-brandmark {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex: none;
}

.seo-brandmark img {
  height: 82px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(100%) contrast(1.04);
  opacity: 0.96;
}

.seo-brandmark__text {
  display: none;
}

.seo-brandmark__title {
  font-family: ivypresto-display, 'Times New Roman', serif;
  font-size: 1.08rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}

.seo-brandmark__caption {
  display: none;
}

.seo-topnav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  flex-wrap: wrap;
}

.seo-topnav a,
.seo-breadcrumbs,
.seo-small,
.seo-meta {
  color: var(--seo-muted);
}

.seo-topnav a {
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.seo-topnav a:hover {
  color: #ffffff;
}

.seo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.seo-btn:hover {
  transform: translateY(-2px);
}

.seo-btn--primary {
  background: linear-gradient(168deg, #4d2327 0%, #36161d 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(77, 35, 39, 0.34);
}

.seo-btn--primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 18px 40px rgba(77, 35, 39, 0.42);
}

.seo-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.seo-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.seo-main {
  padding: 3.5rem 0 8rem;
}

.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.74rem;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.seo-breadcrumbs a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.seo-breadcrumbs a:hover {
  color: var(--seo-gold);
}

.seo-breadcrumbs span {
  color: rgba(211, 174, 106, 0.5);
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.92fr);
  gap: 1.4rem;
  align-items: stretch;
}

.seo-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(16, 16, 20, 0.92) 0%, rgba(12, 12, 15, 0.95) 100%);
  border: 1px solid var(--seo-line);
  box-shadow: var(--seo-shadow);
  border-radius: var(--seo-radius);
  backdrop-filter: blur(18px);
}

.seo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}

.seo-hero__copy,
.seo-section,
.seo-links,
.seo-cta,
.seo-footer__panel {
  position: relative;
  z-index: 1;
}

.seo-hero__copy {
  padding: 3.75rem;
  background: linear-gradient(148deg, rgba(18, 18, 22, 0.94) 0%, rgba(43, 21, 28, 0.86) 100%);
}

.seo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(196, 120, 126, 0.28);
  background: rgba(196, 120, 126, 0.12);
  color: #f0c4c7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
}

.seo-hero h1,
.seo-section h2,
.seo-cta h2,
.seo-links h2,
.seo-footer__title {
  font-family: ivypresto-display, 'Times New Roman', serif;
  font-weight: 600;
  color: #ffffff;
  text-wrap: balance;
}

.seo-hero h1 {
  margin: 0;
  font-size: clamp(3.1rem, 5vw, 5.4rem);
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.seo-hero__lead {
  margin: 1.4rem 0 0;
  font-size: 1.1rem;
  line-height: 1.88;
  max-width: 58ch;
  color: rgba(245, 239, 233, 0.8);
}

.seo-chiprow,
.seo-hero__actions,
.seo-fact-grid,
.seo-link-grid,
.seo-gallery,
.seo-city-grid,
.seo-market-grid {
  display: grid;
  gap: 0.9rem;
}

.seo-chiprow {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 2.2rem;
}

.seo-chip {
  padding: 1.2rem 1.3rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 4px 16px rgba(0,0,0,0.14);
}

.seo-chip strong,
.seo-fact strong,
.seo-link-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-chip span,
.seo-fact span,
.seo-link-card span,
.seo-city-card span,
.seo-market-card span {
  color: rgba(245, 239, 233, 0.72);
  line-height: 1.65;
}

.seo-hero__actions {
  grid-template-columns: repeat(auto-fit, minmax(210px, max-content));
  margin-top: 2.5rem;
}

.seo-hero__visual {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: linear-gradient(180deg, rgba(42, 20, 27, 0.94) 0%, rgba(12, 12, 15, 0.98) 100%);
  color: #fff;
}

.seo-visual-card {
  position: relative;
  padding: 1.5rem 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
  box-shadow: 0 4px 18px rgba(0,0,0,0.16);
}

.seo-visual-card strong {
  display: block;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-placeholder {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 220px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(150deg, rgba(196, 120, 126, 0.3), rgba(17, 17, 21, 0.42)),
    radial-gradient(circle at top right, rgba(211, 174, 106, 0.34), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  text-align: left;
  padding: 1.35rem;
  overflow: hidden;
}

.seo-placeholder::before {
  content: '';
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 68%);
}

.seo-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 22ch;
  line-height: 1.65;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.seo-stack {
  display: grid;
  gap: 2.2rem;
  margin-top: 3rem;
}

.seo-section,
.seo-links,
.seo-cta {
  padding: 3.25rem 3.75rem;
}

.seo-section h2,
.seo-links h2,
.seo-cta h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(2rem, 2.8vw, 3rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.seo-section h2::after,
.seo-links h2::after,
.seo-cta h2::after {
  content: '';
  display: block;
  width: 96px;
  height: 1.5px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--seo-gold), rgba(211, 174, 106, 0));
}

.seo-section p,
.seo-links p,
.seo-cta p,
.seo-link-card,
.seo-footer p {
  color: rgba(245, 239, 233, 0.8);
  line-height: 1.9;
  font-size: 1.04rem;
}

.seo-section p,
.seo-links p,
.seo-cta p,
.seo-footer p {
  margin: 0;
}

.seo-section p + p,
.seo-links p + p,
.seo-cta p + p,
.seo-footer p + p {
  margin-top: 0.95rem;
}

.seo-fact-grid,
.seo-city-grid,
.seo-market-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.seo-fact,
.seo-city-card,
.seo-market-card,
.seo-link-card {
  display: block;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.16);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.seo-link-card:hover,
.seo-city-card:hover,
.seo-market-card:hover,
.seo-fact:hover {
  transform: translateY(-4px);
  border-color: rgba(196, 120, 126, 0.42);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
}

.seo-link-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.75rem;
  gap: 1.1rem;
}

.seo-gallery {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1rem;
}

.seo-gallery figure {
  margin: 0;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.seo-gallery figcaption {
  margin-top: 0.85rem;
  color: rgba(245, 239, 233, 0.7);
  line-height: 1.65;
}

.seo-cta {
  display: grid;
  gap: 1.4rem;
  background: linear-gradient(145deg, rgba(47, 17, 24, 0.98), rgba(77, 35, 39, 0.88));
  border: 1px solid rgba(196, 120, 126, 0.3);
  box-shadow: 0 0 0 1px rgba(196, 120, 126, 0.08), 0 32px 64px rgba(77, 35, 39, 0.28);
  color: #fff;
}

.seo-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.seo-footer {
  padding: 0 0 6rem;
}

.seo-footer__panel {
  padding: 3.5rem 4rem;
  background: linear-gradient(180deg, rgba(12, 12, 15, 0.92), rgba(10, 10, 13, 0.96));
}

.seo-footer__title {
  font-family: ivypresto-display, 'Times New Roman', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.seo-footer p {
  margin-top: 0.75rem;
  max-width: 52ch;
}

@media (max-width: 980px) {
  .seo-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .seo-topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .seo-topnav {
    width: 100%;
    gap: 0.75rem;
  }

  .seo-brandmark img {
    height: 60px;
  }

  .seo-main {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }

  .seo-hero__copy {
    padding: 2rem;
  }

  .seo-section,
  .seo-links,
  .seo-cta {
    padding: 2rem 1.75rem;
  }

  .seo-footer__panel {
    padding: 2.5rem 2rem;
  }

  .seo-hero__actions {
    grid-template-columns: 1fr;
  }

  .seo-btn {
    width: 100%;
  }

  .seo-hero h1 {
    font-size: 2.55rem;
  }

  .seo-topbar__inner,
  .seo-container {
    width: min(calc(100% - 1.25rem), var(--seo-width));
  }
}