:root {
  --bg: #FAFAF7;
  --bg-alt: #F2EDE8;
  --bg-dark: #1A1A1A;
  --text: #1A1A1A;
  --text-muted: #6B6560;
  --accent: #E84A1E;
  --accent-light: #FBF0EB;
  --border: #E0D9D0;
  --sold: #1A1A1A;
  --available: #E84A1E;
  --wall: #C8BFB3;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 7rem;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) var(--space-lg);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ── Floor Preview (hero visual) ── */
.floor-preview {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.floor-header {
  background: var(--bg-dark);
  color: #fff;
  padding: 0.875rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.floor-title { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.floor-meta { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.floor-grid {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.table-row { display: flex; gap: 6px; justify-content: center; }
.table-cell {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}
.table-cell.sold { background: var(--bg-dark); color: #fff; }
.table-cell.available { background: var(--accent); color: #fff; opacity: 0.85; }
.aisle {
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin: 2px 0;
}
.floor-legend {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  align-items: center;
}
.dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  margin-right: 4px;
}
.sold-dot { background: var(--bg-dark); }
.avail-dot { background: var(--accent); }

/* ── Showcase (live events) ── */
.showcase { background: var(--bg-alt); padding: var(--space-lg) var(--space-lg); }
.showcase-inner { max-width: 1100px; margin: 0 auto; }
.showcase-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.events-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.event-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  flex: 1;
  min-width: 180px;
}
.event-name { font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 0.35rem; }
.event-date { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.25rem; }
.event-price { font-weight: 600; font-size: 0.9rem; color: var(--accent); }

/* ── Floor Plan Section ── */
.floorplan-section { padding: var(--space-xl) var(--space-lg); border-bottom: 1px solid var(--border); }
.floorplan-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}
.section-body { color: var(--text-muted); line-height: 1.7; font-size: 1rem; }
.canvas-wrapper {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.canvas-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 4px;
  margin-bottom: 0.875rem;
}
.canvas-cell {
  aspect-ratio: 1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.canvas-table {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.canvas-table.sold { background: var(--bg-dark); color: #fff; }
.canvas-table.available { background: var(--accent); color: #fff; }
.canvas-legend {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.can-sold, .can-avail, .can-wall {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 3px;
  margin-right: 3px;
}
.can-sold { background: var(--bg-dark); }
.can-avail { background: var(--accent); }
.can-wall { background: var(--wall); }

/* ── Features ── */
.features { padding: var(--space-xl) var(--space-lg); background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: var(--space-lg); }
.features-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.features-headline { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; letter-spacing: -0.02em; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); margin-bottom: var(--space-lg); }
.feature-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.feature-icon { color: var(--accent); margin-bottom: 1rem; }
.feature-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.features-stat-row { display: flex; justify-content: center; gap: var(--space-xl); flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--text); }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ── Pricing ── */
.pricing { padding: var(--space-xl) var(--space-lg); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.pricing-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.pricing-headline { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--space-sm); }
.pricing-sub { color: var(--text-muted); line-height: 1.7; margin-bottom: var(--space-md); font-size: 1rem; }
.pricing-perks { display: flex; flex-direction: column; gap: 0.625rem; text-align: left; max-width: 320px; margin: 0 auto; }
.perk { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 500; }

/* ── Closing ── */
.closing { padding: var(--space-xl) var(--space-lg); text-align: center; }
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: var(--space-sm); }
.closing-body { color: var(--text-muted); line-height: 1.7; font-size: 1rem; }

/* ── Footer ── */
.footer { background: var(--bg-dark); padding: var(--space-md) var(--space-lg); }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-brand { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1rem; }
.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner, .floorplan-inner { grid-template-columns: 1fr; gap: var(--space-lg); }
  .hero-visual { order: -1; }
  .floorplan-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .events-row { flex-direction: column; }
  .features-stat-row { gap: var(--space-md); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .table-cell { width: 36px; height: 36px; }
  .canvas-grid { grid-template-columns: repeat(8, 1fr); }
}

@media (max-width: 480px) {
  .hero, .showcase, .floorplan-section, .features, .pricing, .closing { padding-left: var(--space-sm); padding-right: var(--space-sm); }
  .nav { padding-left: var(--space-sm); padding-right: var(--space-sm); }
}