@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --blue-strong: #0b4bd6;
  --blue-deep: #001e74;
  --blue-soft: #dce8ff;
  --orange: #ff7b2c;
  --sand: #fff5ea;
  --surface: #ffffff;
  --surface-alt: #f5f8ff;
  --ink: #13203a;
  --muted: #62708a;
  --border: rgba(19, 32, 58, 0.08);
  --shadow: 0 24px 60px rgba(12, 52, 153, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 44, 0.16), transparent 28%),
    linear-gradient(180deg, #eef4ff 0%, #f8fbff 38%, #ffffff 100%);
}

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

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

.site-shell {
  width: min(1200px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(16, 35, 88, 0.08);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-mark strong {
  display: block;
  font-size: 1rem;
}

.brand-mark small {
  display: block;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a.is-active {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.site-nav .nav-cta {
  margin-left: auto;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9554);
}

.hero {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy,
.hero-card,
.section,
.site-footer {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 38px;
}

.hero-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card img {
  border-radius: 22px;
  min-height: 280px;
  object-fit: cover;
}

.hero-card-top p,
.eyebrow {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-copy h1,
.section-head h2,
.info-panel h2,
.sidebar-panel h2 {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 0.98;
  color: var(--blue-deep);
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  max-width: 11ch;
}

.hero-intro,
.hero-card strong,
.hero-card ul,
.property-body p,
.highlight-card p,
.info-panel p,
.site-footer p,
.common-card p,
.sidebar-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions,
.hero-tags,
.pill-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-strong), #3a79ff);
}

.button-secondary {
  color: var(--blue-deep);
  background: var(--sand);
  border-color: rgba(255, 123, 44, 0.15);
}

.button-block {
  width: 100%;
}

.hero-tags span,
.pill-row span,
.badge,
.amenity-card,
.text-link {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-tags span,
.pill-row span {
  padding: 10px 14px;
  background: var(--surface-alt);
  color: var(--blue-deep);
  font-weight: 700;
}

.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 9px 13px;
  background: rgba(0, 30, 116, 0.82);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.section {
  margin-bottom: 24px;
  padding: 30px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.text-link {
  padding: 10px 14px;
  background: var(--sand);
  color: var(--orange);
  font-weight: 800;
}

.property-grid,
.highlight-grid,
.common-grid,
.amenities-grid {
  display: grid;
  gap: 18px;
}

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

.property-card,
.highlight-card,
.common-card,
.amenity-card,
.info-panel,
.sidebar-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.property-card {
  overflow: hidden;
}

.property-image {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dfe8ff, #f9fbff);
}

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

.image-fallback {
  display: grid;
  height: 100%;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.property-body {
  padding: 20px;
}

.property-city {
  margin: 0 0 8px;
  color: var(--orange);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.property-body h3,
.highlight-card h3,
.common-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

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

.highlight-card,
.common-card,
.info-panel {
  padding: 24px;
}

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

.common-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
}

.common-card img {
  width: 180px;
  height: 130px;
  border-radius: 16px;
  object-fit: cover;
}

.property-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.gallery-main img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.gallery-strip span {
  border-radius: 14px;
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.stats-list,
.info-list,
.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats-list li,
.info-list li,
.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.stats-list li:last-child,
.info-list li:last-child,
.hero-card li:last-child {
  border-bottom: 0;
}

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

.amenity-card {
  padding: 16px 18px;
  color: var(--blue-deep);
  font-weight: 700;
}

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

.info-panel.contrast {
  color: #fff;
  background: linear-gradient(145deg, var(--blue-deep), #184cca);
}

.info-panel.contrast p,
.info-panel.contrast h2 {
  color: #fff;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero,
  .property-showcase,
  .info-columns,
  .common-grid,
  .highlight-grid,
  .property-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .section-head,
  .common-card {
    grid-template-columns: 1fr;
    display: grid;
  }

  .common-card {
    grid-template-columns: 1fr;
  }

  .common-card img {
    width: 100%;
    height: 220px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100vw - 20px, 100%);
  }

  .hero-copy,
  .hero-card,
  .section {
    padding: 22px;
  }

  .hero-copy h1,
  .section-head h2 {
    line-height: 1.02;
  }

  .site-footer {
    padding: 20px;
  }
}
