:root {
  --bg: #fffdfa;
  --surface: #ffffff;
  --surface-soft: #f7f0fb;
  --surface-dark: #2c1e3c;
  --text: #23192e;
  --text-soft: #6c5d7b;
  --text-inverse: #ffffff;
  --primary: #7f36c3;
  --primary-deep: #55267f;
  --accent: #db4cc7;
  --border: #eadff2;
  --success: #187a5b;
  --danger: #c53d5e;
  --shadow: 0 18px 60px rgba(68, 34, 103, 0.14);
  --shadow-soft: 0 12px 30px rgba(68, 34, 103, 0.09);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.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;
}

.container {
  width: min(calc(100% - 2.4rem), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 58rem;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(234, 223, 242, 0.72);
  background: rgba(255, 253, 250, 0.86);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 5.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Fraunces", serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__icon {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--primary);
  color: var(--text-inverse);
  box-shadow: var(--shadow-soft);
}

.site-nav,
.menu {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 1rem;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.35rem;
}

.menu__link,
.mobile-menu__link {
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.menu__link {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
}

.menu__link:hover,
.menu__link.is-current {
  background: var(--surface-soft);
  color: var(--primary-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.92rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.button--primary {
  background: var(--primary);
  color: var(--text-inverse);
}

.button--small {
  padding: 0.78rem 1.2rem;
  font-size: 0.92rem;
}

.button--light {
  background: #ffffff;
  color: var(--primary-deep);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-inverse);
}

.button--block {
  width: 100%;
}

.menu-toggle {
  display: none;
  padding: 0.4rem;
  border: 0;
  background: transparent;
  color: var(--text);
}

.menu-toggle__close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
  display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
  display: inline-flex;
}

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(234, 223, 242, 0.8);
  background: rgba(255, 253, 250, 0.98);
}

.mobile-menu__list,
.footer-links,
.footer-contact,
.contact-list,
.value-list,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__list {
  display: grid;
  gap: 0.6rem;
  padding: 1rem 0 1rem;
}

.mobile-menu__link {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  background: transparent;
}

.mobile-menu__link.is-current,
.mobile-menu__link:hover {
  background: var(--surface-soft);
  color: var(--primary-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 96vh;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

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

.hero__overlay {
  background:
    linear-gradient(115deg, rgba(34, 16, 56, 0.94) 0%, rgba(76, 39, 118, 0.78) 42%, rgba(76, 39, 118, 0.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 30rem);
  align-items: center;
  gap: 2rem;
  padding: 7rem 0 4rem;
}

.hero__copy {
  max-width: 44rem;
  color: var(--text-inverse);
}

.hero__copy h1,
.page-hero h1,
.section-heading h2,
.contact-copy h2,
.about-grid h1,
.cta-panel h2,
.property-hero__overlay-card h1,
.detail-panel h2,
.panel h1,
.panel h2,
.legal-item h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero__copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-hero h1,
.section-heading h2,
.contact-copy h2,
.about-grid h1,
.cta-panel h2,
.panel h1,
.panel h2,
.detail-panel h2 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.property-hero__overlay-card h1 {
  font-size: clamp(2rem, 3.7vw, 3.3rem);
}

.hero__copy p,
.page-hero p,
.section-heading p,
.contact-copy p,
.service-card p,
.cta-panel p,
.lead-copy,
.panel p,
.legal-item p,
.footer-brand p {
  color: var(--text-soft);
}

.hero__copy p {
  max-width: 39rem;
  margin: 1.3rem 0 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero-badge {
  padding: 0.68rem 1rem;
  margin-bottom: 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-featured {
  display: grid;
  gap: 1rem;
}

.hero-property,
.property-card,
.service-card,
.panel,
.detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-property {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.8rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text-inverse);
  backdrop-filter: blur(14px);
}

.hero-property img {
  width: 100%;
  height: 100%;
  min-height: 6.5rem;
  border-radius: 1rem;
  object-fit: cover;
}

.hero-property__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-property__price {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-property strong {
  line-height: 1.2;
}

.hero-property span:last-child {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.section {
  padding: 5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(127, 54, 195, 0.06), rgba(127, 54, 195, 0.02));
}

.stats-grid,
.property-grid,
.service-grid,
.footer-grid,
.contact-section,
.about-grid,
.about-cards,
.detail-grid,
.detail-cards {
  display: grid;
  gap: 1.5rem;
}

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

.stat-card {
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary);
}

.stat-card span {
  color: var(--text-soft);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.6rem;
}

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

.property-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.property-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.property-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19, 10, 32, 0.08) 10%, rgba(19, 10, 32, 0.78) 100%);
}

.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.property-card:hover .property-card__media img {
  transform: scale(1.05);
}

.property-card__overlay {
  position: absolute;
  inset: auto 1.2rem 1.2rem 1.2rem;
  z-index: 1;
  color: var(--text-inverse);
}

.property-card__overlay h3 {
  margin: 0.7rem 0 0.2rem;
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.property-card__overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.price-pill {
  display: inline-flex;
  padding: 0.44rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.property-card__body {
  padding: 1.45rem;
}

.property-card__summary {
  margin: 0;
  color: var(--text-soft);
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1rem;
  color: var(--text);
  font-weight: 700;
}

.property-meta--light {
  color: rgba(255, 255, 255, 0.92);
}

.property-meta span,
.footer-contact li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.property-card__link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--primary);
  font-weight: 800;
}

.property-card__link {
  margin-top: 1rem;
}

.page-hero {
  padding: 4.8rem 0 3.7rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(127, 54, 195, 0.08), rgba(127, 54, 195, 0));
}

.page-hero--dark {
  background: var(--surface-dark);
  border-bottom: 0;
}

.page-hero--dark h1,
.page-hero--dark p,
.page-hero--dark .eyebrow {
  color: var(--text-inverse);
}

.page-hero--dark p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
}

.contact-section,
.about-grid,
.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-list strong {
  display: block;
}

.contact-icon,
.service-icon,
.feature-check,
.detail-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(127, 54, 195, 0.12);
  color: var(--primary);
}

.contact-icon,
.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.panel {
  padding: 2rem;
  border-radius: var(--radius-md);
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.95rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(127, 54, 195, 0.13);
}

.form-status {
  margin: 1rem 0 0;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

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

.service-card {
  padding: 1.8rem;
  border-radius: var(--radius-md);
}

.service-card h2,
.about-cards h2,
.detail-card strong,
.legal-item h2,
.sidebar-panel h2 {
  margin: 1rem 0 0;
  font-family: "Fraunces", serif;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.cta-panel {
  margin-top: 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-inverse);
}

.cta-panel p {
  max-width: 38rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.84);
}

.about-grid {
  gap: 2.5rem;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.value-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

.value-list li,
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.feature-check {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  flex: 0 0 auto;
}

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

.property-hero {
  padding: 3rem 0 2rem;
}

.back-link {
  margin-bottom: 1.3rem;
}

.property-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.85fr);
  gap: 1.5rem;
  align-items: start;
}

.property-hero__main {
  display: grid;
  gap: 1rem;
}

.property-hero__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.property-hero__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 9, 33, 0.12) 12%, rgba(20, 9, 33, 0.8) 100%);
}

.property-hero__image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.property-hero__overlay-card {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  color: var(--text-inverse);
}

.property-hero__overlay-card p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.84);
}

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

.thumb-button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 1rem;
  overflow: hidden;
  background: transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.thumb-button:hover,
.thumb-button.is-active {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.sidebar-panel {
  position: sticky;
  top: 6.7rem;
}

.detail-grid {
  gap: 2rem;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.detail-panel {
  align-self: start;
}

.detail-cards {
  margin-top: 1.5rem;
}

.detail-card {
  padding: 1.4rem 1rem;
  border-radius: 1.2rem;
  text-align: center;
}

.detail-card span {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 1rem;
  margin: 0 auto;
}

.detail-card strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.22rem;
}

.detail-card small {
  color: var(--text-soft);
}

.legal-stack {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

.legal-item p,
.contact-copy a,
.contact-copy span {
  color: var(--text-soft);
}

.footer-brand p,
.footer-links a,
.footer-contact {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  margin-top: 5rem;
  background: var(--surface-dark);
  color: var(--text-inverse);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  padding: 4rem 0 3rem;
}

.footer-brand {
  max-width: 20rem;
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  transition: color 0.2s ease;
}

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

.footer-contact {
  display: grid;
  gap: 0.8rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0 1.6rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
}

.icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.icon--small {
  width: 0.9rem;
  height: 0.9rem;
}

@media (max-width: 1100px) {
  .property-grid,
  .service-grid,
  .about-cards,
  .detail-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-section,
  .about-grid,
  .detail-grid,
  .property-hero__layout,
  .hero__content,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-panel {
    position: static;
  }
}

@media (max-width: 860px) {
  .menu,
  .desktop-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-menu {
    display: block;
  }

  .stats-grid,
  .property-grid,
  .service-grid,
  .about-cards,
  .detail-cards,
  .thumb-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 1.3rem), var(--container));
  }

  .section,
  .property-hero {
    padding: 4rem 0;
  }

  .page-hero {
    padding: 4rem 0 3rem;
  }

  .panel {
    padding: 1.4rem;
  }

  .form-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-property {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
