/* ===== Fonts ===== */
@font-face {
  font-family: 'Calibre';
  src: url('fonts/Calibre/Calibre-Regular.woff2') format('woff2'),
       url('fonts/Calibre/Calibre-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Calibre';
  src: url('fonts/Calibre/Calibre-Medium.woff2') format('woff2'),
       url('fonts/Calibre/Calibre-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Calibre';
  src: url('fonts/Calibre/Calibre-Semibold.woff2') format('woff2'),
       url('fonts/Calibre/Calibre-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charcoal: #2c3345;
  --dark-bg: #1b2030;
  --copper: #c0956b;
  --copper-light: #d4b08c;
  --copper-dark: #a67c52;
  --cream: #faf8f6;
  --warm-gray: #f0ece8;
  --border: #e5e0da;
  --text: #2c3345;
  --text-mid: #6b7280;
  --text-light: #9ca3af;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Calibre', -apple-system, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--copper-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--copper); }
img { max-width: 100%; display: block; }

/* ===== Nav — transparent overlay, centered ===== */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-logo span {
  font-weight: 400;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--copper-light); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* ===== Hero — full-screen dark overlay, centered text ===== */
.hero-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  background: var(--dark-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(192,149,107,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(192,149,107,0.05) 0%, transparent 50%);
}

.hero-content { position: relative; max-width: 700px; }

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--copper);
  border-radius: 20px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--copper-light);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; }

.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: 'Calibre', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--copper);
  border-radius: 4px;
  color: var(--copper);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover { background: var(--copper); color: var(--white); }

.btn-solid { background: var(--copper); color: var(--white); border-color: var(--copper); }
.btn-solid:hover { background: var(--copper-dark); border-color: var(--copper-dark); color: var(--white); }

.btn-white { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.btn-white:hover { border-color: var(--white); color: var(--white); background: transparent; }

/* ===== Horizontal stat bar ===== */
.stats-bar {
  background: var(--charcoal);
  display: flex;
  justify-content: center;
  padding: 0;
}

.stats-bar .stat {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stats-bar .stat:last-child { border-right: none; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== Section basics ===== */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.bg-cream { background: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header .divider {
  width: 50px;
  height: 2px;
  background: var(--copper);
  margin: 1rem auto 0;
}

/* ===== Amenities — icon row, 2 rows of 3 ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.amenity-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.amenity-item:nth-child(3n) { border-right: none; }
.amenity-item:nth-child(n+4) { border-bottom: none; }

.amenity-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.amenity-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.amenity-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 240px;
  margin: 0 auto;
}

/* ===== Floor Plans — horizontal cards ===== */
.plans-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.plan-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: var(--transition);
}

.plan-row:hover {
  border-color: var(--copper);
  box-shadow: 0 4px 20px rgba(192,149,107,0.1);
}

.plan-row .plan-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.plan-row .plan-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
}

.plan-row .plan-specs {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.plan-row .plan-specs strong {
  color: var(--charcoal);
  font-weight: 500;
}

.plan-row .plan-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: right;
  white-space: nowrap;
}

.plan-row .plan-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-mid);
}

/* ===== Gallery — masonry-ish 2+1 layout ===== */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 1rem;
}

.gallery-cell {
  background: var(--warm-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

.gallery-cell.tall { grid-row: span 2; }

/* ===== Location — side by side, reversed ===== */
.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.location-map {
  background: var(--warm-gray);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.location-info {
  padding: 3rem;
  background: var(--white);
}

.location-info h3 {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.location-info h3:first-child { margin-top: 0; }

.location-info ul {
  list-style: none;
  padding: 0;
}

.location-info li {
  padding: 0.35rem 0;
  color: var(--text-mid);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
}

.location-info li span { color: var(--text-light); font-size: 0.85rem; }

.location-info p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== CTA — full-width copper band ===== */
.cta-band {
  background: var(--copper);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.cta-band .btn {
  border-color: var(--white);
  color: var(--white);
}

.cta-band .btn:hover {
  background: var(--white);
  color: var(--copper-dark);
}

/* ===== Contact — centered form, no sidebar ===== */
.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.contact-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Calibre', sans-serif;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--copper);
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-meta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.contact-meta div h4 {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

.contact-meta div p {
  font-size: 0.92rem;
  color: var(--text-mid);
}

/* ===== Managed By ===== */
.managed-by {
  padding: 2rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.managed-by a {
  color: var(--copper-dark);
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  padding: 2.5rem 2rem;
  background: var(--dark-bg);
  color: rgba(255,255,255,0.35);
  text-align: center;
  font-size: 0.82rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0; right: 0;
    background: var(--dark-bg);
    padding: 1.5rem 2rem;
    gap: 1rem;
  }

  .hero { min-height: 85vh; padding: 5rem 1.5rem 3rem; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: center; }

  .stats-bar { flex-direction: column; }
  .stats-bar .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.5rem; }
  .stats-bar .stat:last-child { border-bottom: none; }

  section { padding: 4rem 1.5rem; }

  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .amenity-item:last-child { border-bottom: none !important; }

  .plan-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem;
  }
  .plan-row .plan-price { text-align: left; }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-cell.tall { grid-row: span 1; }

  .location-split { grid-template-columns: 1fr; }
  .location-map { min-height: 200px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-meta { flex-direction: column; gap: 1.5rem; }
}
