:root {
  --red: #a52339;
  --red-dark: #8b1e30;
  --cream: #e7dac6;
  --sand: #e2d6c1;
  --green: #c3d1bc;
  --text: #1a1a1a;
  --muted: #5d5d5d;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(26, 26, 26, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf8f2 0%, #fff 28%, #f7f1e8 100%);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(231, 218, 198, 0.95);
  outline-offset: 3px;
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand span,
.eyebrow,
.text-link,
.inline-nav a:hover,
.inline-nav a:focus-visible {
  color: var(--red);
}

.topbar-actions,
.lang-switch,
.hero-cta-row,
.hero-trust,
.gallery-thumbs,
.form-actions,
.footer-links,
.inline-nav,
.metric-list,
.meta-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.inline-nav {
  margin-right: 8px;
}

.inline-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.lang {
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  min-width: 42px;
  text-align: center;
}

.lang.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.button {
  background: var(--red);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  box-shadow: 0 12px 24px rgba(165, 35, 57, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.button-sm {
  padding: 11px 16px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: center / cover no-repeat url('../images/hero-exterior.jpg');
  transform: scale(1.05);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.38), rgba(10, 12, 16, 0.72));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 88px 0 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero h1,
h2 {
  line-height: 1.05;
  margin: 0 0 16px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.hero-copy,
.section-lead {
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.18rem);
  opacity: 0.97;
}

.currency-note {
  font-weight: 700;
  color: var(--cream);
}

.hero-trust {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.hero-trust li,
.metrics article,
.proof-stat,
.info-card,
.unit-card,
.gallery-card,
.video-card,
.lead-card,
.faq-list details,
.trust-visuals img,
.timeline-card,
.location-card,
.contact-card,
.legal-card {
  border-radius: var(--radius);
}

.hero-trust li {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 12px;
}

.metrics {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.metrics article,
.proof-stat,
.timeline-card,
.location-card,
.contact-card,
.legal-card {
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: var(--shadow);
}

.metrics strong,
.proof-stat strong {
  display: block;
  font-size: 1.3rem;
  color: var(--red);
}

section {
  padding: 72px 0;
}

.section-grid,
.unit-grid,
.lifestyle-grid,
.proof-grid,
.timeline-grid,
.footer-columns,
.contact-grid {
  display: grid;
  gap: 18px;
}

.gallery-card,
.video-card,
.lead-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 18px;
  box-shadow: var(--shadow);
}

.gallery-stage img,
.unit-card img,
.video-thumb img,
.feature-image img,
.trust-visuals img {
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.gallery-stage img,
.video-thumb img,
.feature-image img {
  min-height: 260px;
}

.thumb {
  border: none;
  background: var(--sand);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.thumb.active {
  background: var(--red);
  color: var(--white);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 800;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.unit-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.unit-copy,
.info-card,
.timeline-card,
.location-card,
.contact-card,
.legal-card {
  padding: 20px;
}

.unit-copy ul,
.metric-list {
  padding-left: 20px;
}

.metric-list {
  margin: 0;
}

.video-card,
.lead-card,
.trust-grid {
  display: grid;
  gap: 24px;
}

.video-thumb {
  position: relative;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  min-width: 84px;
  min-height: 84px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: rgba(165, 35, 57, 0.92);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.info-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.feature-image {
  overflow: hidden;
  padding: 0;
}

.feature-image div {
  padding: 20px;
}

.proof-grid,
.timeline-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

.todo-note {
  color: var(--muted);
  font-weight: 500;
}

.trust-visuals {
  display: grid;
  gap: 16px;
}

.meta-badge {
  background: rgba(165, 35, 57, 0.08);
  border: 1px solid rgba(165, 35, 57, 0.14);
  color: var(--red-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 0.92rem;
}

.lead {
  padding-bottom: 120px;
}

.lead-card {
  background: linear-gradient(135deg, rgba(139, 30, 48, 0.98), rgba(165, 35, 57, 0.92));
  color: var(--white);
}

.compact {
  margin-bottom: 0;
}

.form-shell {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 18px;
}

.progress {
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.progress-bar span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--cream);
  transition: width 0.25s ease;
}

.form-step {
  display: none;
  gap: 14px;
}

.form-step.active {
  display: grid;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 14px 16px;
  min-height: 48px;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.form-error {
  min-height: 24px;
  color: #ffe3e3;
  font-weight: 600;
}

.form-success {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
}

.footer {
  display: grid;
  gap: 12px;
  padding: 0 0 88px;
}

.footer p {
  margin: 0;
}

.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  text-align: center;
  background: var(--red);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(165, 35, 57, 0.34);
}

.legal-page {
  padding: 56px 0 72px;
}

.legal-page main {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

@media (min-width: 760px) {
  .section-grid,
  .video-card,
  .lead-card,
  .trust-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

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

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

  .lifestyle-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .footer {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .unit-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mobile-sticky-cta {
    display: none;
  }
}

@media (max-width: 899px) {
  .inline-nav {
    display: none;
  }
}

@media (max-width: 759px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .button-secondary {
    background: rgba(255, 255, 255, 0.08);
  }

  .proof-grid,
  .timeline-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
