:root {
  --profile-bg: #08080b;
  --profile-bg-soft: #121217;
  --profile-panel: rgba(17, 18, 23, 0.92);
  --profile-panel-strong: rgba(24, 25, 31, 0.96);
  --profile-line: rgba(255, 255, 255, 0.08);
  --profile-text: #f4efe9;
  --profile-muted: rgba(244, 239, 233, 0.72);
  --profile-accent: #4d2327;
  --profile-accent-soft: #c4787e;
  --profile-gold: #d3ae6a;
  --profile-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --profile-radius: 28px;
  --profile-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--profile-text);
  background:
    radial-gradient(circle at 0% 0%, rgba(196, 120, 126, 0.2), transparent 28%),
    radial-gradient(circle at 100% 8%, rgba(211, 174, 106, 0.13), transparent 24%),
    linear-gradient(180deg, #060608 0%, #0d0d11 44%, #151117 100%);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--profile-width));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
}

.site-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(8, 8, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brandmark img {
  height: 68px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(100%) contrast(1.02);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topnav a {
  text-decoration: none;
  color: var(--profile-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topnav a:hover {
  color: #fff;
}

.profile-main {
  padding: 0 0 6rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.25rem 0 3rem;
}

.hero-cover,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-cover {
  background: linear-gradient(135deg, #1c1116 0%, #4d2327 52%, #b26b71 100%);
}

.hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(8, 8, 11, 0.22) 0%, rgba(8, 8, 11, 0.68) 56%, rgba(8, 8, 11, 0.96) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.84fr);
  gap: 1.5rem;
  align-items: end;
}

.hero-copy,
.hero-panel,
.content-section {
  border: 1px solid var(--profile-line);
  border-radius: var(--profile-radius);
  box-shadow: var(--profile-shadow);
}

.hero-copy {
  padding: 3.5rem;
  background: linear-gradient(150deg, rgba(17, 18, 23, 0.9) 0%, rgba(35, 20, 25, 0.86) 100%);
}

.hero-panel {
  padding: 2rem;
  background: linear-gradient(180deg, rgba(17, 18, 23, 0.94) 0%, rgba(12, 13, 18, 0.96) 100%);
}

.eyebrow,
.section-kicker,
.listing-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(196, 120, 126, 0.22);
  background: rgba(196, 120, 126, 0.1);
  color: #f0c4c7;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.content-section h2,
.profile-card h2,
.listing-card h3,
.info-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero h1 {
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  max-width: 12ch;
}

.hero-lead,
.section-copy p,
.cta-copy,
.footer-inner p,
.listing-description,
.review-body,
.profile-title,
.contact-list dd,
.empty-state,
.empty-card {
  color: var(--profile-muted);
  line-height: 1.85;
}

.hero-lead {
  margin: 1.4rem 0 0;
  max-width: 58ch;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(165deg, #4d2327 0%, #36161d 100%);
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.stats-grid,
.info-grid,
.listing-grid,
.review-grid,
.pill-list {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 2rem;
}

.stat-card,
.info-card,
.listing-card,
.review-card,
.quote-card,
.empty-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.stat-card {
  padding: 1.15rem 1.2rem;
}

.stat-card span,
.contact-list dt {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  color: rgba(244, 239, 233, 0.5);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-card strong {
  font-size: 1.1rem;
  color: #fff;
}

.profile-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
}

.profile-photo {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f7dde0 0%, #f3e9eb 100%);
  color: var(--profile-accent);
  font-size: 1.35rem;
  font-weight: 700;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-label {
  margin: 0 0 0.3rem;
  color: rgba(244, 239, 233, 0.46);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-card h2 {
  margin: 0;
  font-size: 2rem;
}

.profile-title {
  margin: 0.45rem 0 0;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.contact-list div {
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-list dd {
  margin: 0;
}

.contact-list a {
  color: #fff;
  text-decoration: none;
}

.content-stack {
  display: grid;
  gap: 2rem;
  margin-top: 1rem;
}

.content-section {
  padding: 3rem 3.25rem;
  background: linear-gradient(180deg, rgba(17, 18, 23, 0.94) 0%, rgba(12, 13, 18, 0.97) 100%);
}

.section-head h2 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.section-copy {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.quote-card {
  margin: 0;
  padding: 1.5rem 1.6rem;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.65;
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 1.8rem;
}

.info-card {
  padding: 1.5rem;
}

.info-card h3 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.pill-list {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.pill {
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(244, 239, 233, 0.82);
  font-size: 0.92rem;
}

.listing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1.8rem;
}

.listing-card {
  overflow: hidden;
}

.listing-media {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #2c191d 0%, #4d2327 100%);
}

.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-price {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: rgba(8, 8, 11, 0.86);
  color: #fff;
  font-weight: 700;
}

.listing-body {
  padding: 1.5rem;
}

.listing-card h3 {
  margin: 0.8rem 0 0;
  font-size: 1.3rem;
}

.listing-address,
.listing-meta {
  margin: 0.55rem 0 0;
  color: rgba(244, 239, 233, 0.56);
}

.listing-description {
  margin: 0.95rem 0 0;
}

.review-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1.8rem;
}

.review-card {
  padding: 1.6rem;
}

.review-stars {
  margin: 0;
  color: var(--profile-gold);
  letter-spacing: 0.18em;
  font-size: 0.86rem;
}

.review-body {
  margin: 1rem 0 0;
  font-style: italic;
}

.review-meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta span {
  color: rgba(244, 239, 233, 0.5);
  font-size: 0.86rem;
}

.cta-section {
  background: linear-gradient(145deg, rgba(47, 17, 24, 0.98), rgba(77, 35, 39, 0.9));
}

.site-footer {
  padding: 0 0 4rem;
}

.footer-inner {
  padding: 2.5rem 3rem;
  border: 1px solid var(--profile-line);
  border-radius: var(--profile-radius);
  background: linear-gradient(180deg, rgba(12, 13, 18, 0.92), rgba(9, 10, 13, 0.96));
}

.site-footer--main {
  padding-top: 1rem;
}

.footer-main-shell {
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main-grid,
.footer-policy-grid,
.footer-payments,
.footer-bottom-bar {
  display: grid;
  gap: 1.5rem;
}

.footer-main-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-logo {
  height: 112px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(100%) contrast(1.02);
}

.footer-brand-copy,
.footer-microcopy,
.footer-policy-grid p,
.footer-copyright,
.footer-contact-list a,
.footer-link-list a,
.footer-bottom-links a,
.footer-housing {
  color: rgba(244, 239, 233, 0.6);
}

.footer-brand-copy {
  margin: 1rem 0 1.5rem;
  line-height: 1.8;
}

.footer-socials,
.footer-payment-icons,
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(244, 239, 233, 0.6);
  text-decoration: none;
}

.footer-socials a:hover,
.footer-link-list a:hover,
.footer-contact-list a:hover,
.footer-bottom-links a:hover {
  color: #c4787e;
}

.footer-heading {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-link-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-list li + li,
.footer-contact-list li + li {
  margin-top: 0.85rem;
}

.footer-link-list a,
.footer-contact-list a,
.footer-bottom-links a {
  text-decoration: none;
}

.footer-contact-list li,
.footer-housing,
.footer-secure-copy,
.footer-policy-grid h5 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact-list i,
.footer-secure-copy i,
.footer-policy-grid h5 i {
  color: rgba(255, 255, 255, 0.4);
}

.footer-divider-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-payments,
.footer-bottom-bar {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.footer-label {
  margin: 0 0 0.35rem;
  color: rgba(244, 239, 233, 0.35);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-microcopy {
  margin: 0;
  font-size: 0.72rem;
}

.footer-payment-icons i {
  color: #c4787e;
  font-size: 2rem;
}

.footer-secure-copy {
  justify-self: end;
  color: rgba(244, 239, 233, 0.35);
  font-size: 0.82rem;
}

.footer-policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-policy-grid h5 {
  margin: 0 0 0.75rem;
  color: rgba(244, 239, 233, 0.65);
  font-size: 0.95rem;
}

.footer-policy-grid p {
  margin: 0;
  line-height: 1.8;
}

.footer-bottom-bar {
  align-items: center;
}

.footer-copyright {
  text-align: left;
}

.footer-bottom-links {
  justify-content: flex-end;
  gap: 1.5rem;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .footer-main-grid,
  .footer-payments,
  .footer-policy-grid,
  .footer-bottom-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-secure-copy,
  .footer-bottom-links {
    justify-self: start;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--profile-width));
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brandmark img {
    height: 56px;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-copy,
  .hero-panel,
  .content-section,
  .footer-inner {
    padding: 1.8rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .profile-card {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: 84px;
    height: 84px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-main-grid,
  .footer-payments,
  .footer-policy-grid,
  .footer-bottom-bar {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    height: 92px;
  }
}