:root {
  --bg: #15060a;
  --panel: rgba(54, 2, 25, 0.82);
  --text: #fff5ea;
  --muted: #f2d7ce;
  --gold: #f3cf5b;
  --gold-deep: #7b5c12;
  --rose: #b80f4f;
  --rose-deep: #6f0428;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 25% 30%, rgba(0, 0, 0, 0.22), transparent 24%),
    radial-gradient(circle at 70% 20%, rgba(255, 75, 129, 0.24), transparent 22%),
    radial-gradient(circle at 60% 60%, rgba(255, 38, 121, 0), transparent 28%),
    linear-gradient(135deg, #22050d 0%, #560420 38%, #9a0e44 58%, #76072d 75%, #22050d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.035) 0 18px, transparent 18px 44px),
    repeating-linear-gradient(65deg, rgba(255, 255, 255, 0.02) 0 14px, transparent 14px 36px);
  opacity: 0.6;
  pointer-events: none;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto;
  padding: 24px 32px 40px;
  border: 1px solid rgba(255, 219, 124, 0.25);
  background: linear-gradient(180deg, rgba(44, 5, 18, 0.58), rgba(28, 4, 13, 0.72));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.topbar,
.hero,
.section-grid,
.split-section,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 210, 93, 0.5);
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.04);
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 620px;
  padding: 30px 0 24px;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.hero h1,
.split-section h2,
.showroom h2,
.footer h2,
.info-card h2,
.info-card h3 {
  margin: 0;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(3.3rem, 6vw, 5.6rem);
  max-width: 520px;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--gold);
}

.intro {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 14px 24px;
  border: 1px solid rgba(255, 211, 106, 0.7);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--text);
}

.btn-solid {
  background: linear-gradient(90deg, #f5d767 0%, #daa82c 100%);
  color: #42150b;
  font-weight: 700;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #ffe7c4;
  font-size: 0.9rem;
}

.highlights li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 215, 122, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.hero-stage {
  position: relative;
  min-height: 560px;
}

.silk-glow {
  position: absolute;
  inset: 5% 2% 0;
  border-radius: 38px;
  background:
    radial-gradient(circle at 48% 36%, rgba(255, 255, 255, 0.17), transparent 14%),
    radial-gradient(circle at 54% 34%, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(circle at 55% 52%, rgba(0, 0, 0, 0.26), transparent 28%),
    linear-gradient(150deg, rgba(250, 62, 133, 0.2), rgba(255, 255, 255, 0.02) 40%, rgba(161, 4, 61, 0.25));
  filter: blur(2px);
}

.hero-photo-card {
  position: absolute;
  right: 18px;
  left: 70px;
  top: 28px;
  bottom: 16px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 213, 110, 0.24);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.info-card,
.detail-box,
.mini-panel,
.footer,
.showroom {
  border: 1px solid rgba(255, 213, 110, 0.18);
  background: rgba(24, 2, 10, 0.45);
}

.info-card {
  padding: 26px;
}

.info-card h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.info-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.info-card p,
.split-section p,
.showroom p,
.footer p,
.contact-list a {
  color: var(--muted);
  line-height: 1.7;
}

.accent-card {
  background: linear-gradient(180deg, rgba(194, 17, 89, 0.25), rgba(31, 2, 13, 0.6));
}

.split-section,
.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 22px;
  margin-top: 22px;
  padding: 28px;
}

.split-section h2,
.showroom h2,
.footer h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.detail-box {
  padding: 22px;
}

.showroom {
  margin-top: 22px;
  padding: 28px;
}

.gallery-section {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 213, 110, 0.18);
  background: rgba(24, 2, 10, 0.45);
}

.gallery-section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.showroom-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 213, 110, 0.18);
  background: rgba(33, 3, 13, 0.74);
}

.gallery-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.gallery-card-large img {
  height: 620px;
}

.gallery-copy {
  padding: 20px;
}

.gallery-copy h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.gallery-copy p {
  margin: 0;
}

.line-gallery-section {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 213, 110, 0.18);
  background: rgba(24, 2, 10, 0.45);
}

.line-gallery-section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.line-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.line-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 213, 110, 0.18);
  background: rgba(33, 3, 13, 0.74);
  width: min(100%, 560px);
  margin: 0 auto;
  min-height: 320px;
  border-radius: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.line-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 380px;
  object-fit: contain;
  display: block;
  background: #fff8ea;
}

.line-gallery-copy {
  padding: 16px 18px 18px;
}

.line-gallery-copy h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.line-gallery-copy p {
  margin: 0;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.line-gallery-tag {
  margin: 18px 0 0;
  text-align: center;
  color: var(--gold);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.owner-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 213, 110, 0.18);
  background: rgba(24, 2, 10, 0.45);
}

.owner-photo-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 110, 0.18);
  background:
    radial-gradient(circle at top, rgba(255, 211, 106, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(20, 3, 9, 0.7));
  color: #ffe7c4;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.owner-photo-placeholder img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.owner-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.owner-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.owner-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
}

.owner-gallery {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 213, 110, 0.18);
  border-radius: 18px;
}

.owner-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.mini-panel {
  padding: 20px;
  text-align: center;
  color: #fff3d2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background:
    radial-gradient(circle at top, rgba(255, 211, 106, 0.18), transparent 42%),
    rgba(33, 3, 13, 0.74);
}

.contact-list {
  display: grid;
  gap: 12px;
  align-content: center;
}

.contact-area {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
  align-items: stretch;
}

.contact-visuals {
  display: grid;
  gap: 18px;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  word-break: break-word;
}

.address-text {
  margin: 0;
  color: var(--text);
}

.map-card {
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(255, 213, 110, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.owner-mini-card {
  overflow: hidden;
  border: 1px solid rgba(255, 213, 110, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.owner-mini-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.owner-mini-copy {
  padding: 14px 18px 16px;
}

.owner-mini-label,
.owner-mini-name {
  margin: 0;
}

.owner-mini-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.owner-mini-name {
  margin-top: 8px;
  color: var(--text);
  font-size: 1.1rem;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, #29d466, #128c45);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero,
  .section-grid,
  .split-section,
  .footer,
  .showroom-strip,
  .owner-section,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-area {
    grid-template-columns: 1fr;
  }

  .owner-mini-card img {
    height: 220px;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 500px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 100%);
    margin: 10px auto;
    padding: 18px 16px 24px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-logo {
    width: 78px;
    height: 78px;
  }

  .nav {
    justify-content: flex-start;
    gap: 12px;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .intro {
    font-size: 0.96rem;
  }

  .hero-stage {
    min-height: 390px;
  }

  .hero-photo-card {
    left: 0;
    right: 0;
    top: 10px;
    bottom: 0;
  }

  .gallery-card img,
  .gallery-card-large img {
    height: 320px;
  }

  .line-gallery-card,
  .line-gallery-card img {
    min-height: 260px;
  }

  .line-gallery-card img {
    max-height: 300px;
  }

  .owner-photo-placeholder img {
    min-height: 320px;
  }

  .owner-gallery img {
    height: 220px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 11px 15px;
  }
}
