:root {
  --bg: #f5f0e8;
  --bg-warm: #ede6d6;
  --fg: #1c1c1c;
  --fg-muted: #6b6560;
  --accent: #c8a96e;
  --accent-dark: #9e7f4a;
  --dark: #0f1c2e;
  --dark-surface: #162436;
  --border: #d4ccbf;
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.wordmark.light { color: var(--bg); }

.site-nav {
  display: flex;
  gap: 2.5rem;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--fg); }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.2rem;
}

.section-label.light { color: var(--accent); }

/* ── MANIFESTO ── */
.manifesto {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 5rem;
  background: var(--bg);
}

.manifesto-inner {
  padding: 6rem 5rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manifesto-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.manifesto-headline em {
  font-style: italic;
  color: var(--accent-dark);
}

.manifesto-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2rem;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 38ch;
  margin-bottom: 3rem;
}

.manifesto-stat-row {
  display: flex;
  gap: 3rem;
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--fg);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* ── MANIFESTO VISUAL ── */
.manifesto-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  background: var(--dark);
}

.visual-frame {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(200, 169, 110, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-inner {
  width: 82%;
  height: 85%;
  background: var(--dark-surface);
  border: 1px solid rgba(200, 169, 110, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-mood {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.room-light {
  width: 80%;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(200, 169, 110, 0.6), transparent);
  border-radius: 3px;
}

.room-detail {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 70%;
}

.detail-line {
  height: 1px;
  background: rgba(200, 169, 110, 0.2);
  border-radius: 1px;
}

.detail-line.long { width: 100%; }
.detail-line.medium { width: 75%; }
.detail-line.short { width: 50%; }

/* ── FOR OWNERS ── */
.for-owners {
  background: var(--bg-warm);
  padding: 7rem 5rem;
}

.owners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.owners-copy h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.owners-copy p {
  color: var(--fg-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.concern-header {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
}

.concern-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.concern-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg);
}

.concern-icon {
  font-size: 0.75rem;
  color: var(--fg-muted);
  width: 1rem;
}

.concern-solution {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--accent-dark);
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ── FOR GUESTS ── */
.for-guests {
  background: var(--dark);
  padding: 7rem 5rem;
}

.guests-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.guests-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--bg);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.guests-quote cite {
  font-size: 0.82rem;
  color: var(--accent);
  font-style: normal;
  letter-spacing: 0.06em;
}

.guests-offer h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--bg);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.guests-offer p {
  color: rgba(245, 240, 232, 0.65);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 2rem;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ── PILLARS ── */
.pillars {
  padding: 7rem 5rem;
  background: var(--bg);
}

.pillars-header {
  max-width: 1280px;
  margin: 0 auto 4rem;
}

.pillars-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}

.pillars-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.pillar {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── CLOSING ── */
.closing {
  background: var(--bg-warm);
  padding: 8rem 5rem;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing-line {
  width: 3.5rem;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 2.5rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 1.2rem;
}

.closing p {
  font-size: 1rem;
  color: var(--fg-muted);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  padding: 4rem 5rem 3rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 0.4rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  text-align: right;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-visual { display: none; }
  .manifesto-inner { padding: 5rem 2rem; }
  
  .owners-grid { grid-template-columns: 1fr; gap: 3rem; }
  .for-owners { padding: 5rem 2rem; }
  
  .guests-inner { grid-template-columns: 1fr; gap: 3rem; }
  .for-guests { padding: 5rem 2rem; }
  
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { padding: 5rem 2rem; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 600px) {
  .site-nav { display: none; }
  .manifesto-stat-row { flex-wrap: wrap; gap: 2rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 1rem 1.5rem; }
}