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

:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EBE3;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C4622D;
  --accent-dark: #9E4E24;
  --accent-light: #F2E5DA;
  --sage: #6B7C5E;
  --sage-light: #EEF0EB;
  --border: #E0D9D0;
  --card-bg: #FFFFFF;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

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;
}

/* ─── Navigation ─── */
.nav {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── Hero ─── */
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual — CSS illustration grid */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 180px;
  gap: 12px;
  width: 100%;
}
.hero-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-img-1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: linear-gradient(145deg, #D4B896 0%, #C4A47A 50%, #B08D5B 100%);
  position: relative;
}
.hero-img-1::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(26,26,26,0.3) 0%, transparent 100%);
}
.hero-img-2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background: linear-gradient(135deg, #8B9E7D 0%, #6B7C5E 100%);
}
.hero-img-3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: linear-gradient(135deg, #C4622D 0%, #9E4E24 100%);
}

/* ─── Section Utilities ─── */
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
}

/* ─── Manifesto ─── */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-2xl) 0;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.manifesto-mark svg {
  display: block;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.35;
  font-style: italic;
  color: var(--bg);
  max-width: 68ch;
  letter-spacing: -0.01em;
}
.manifesto-byline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,248,245,0.5);
}

/* ─── Rooms ─── */
.rooms {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}
.rooms-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.room-card {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.room-card-reverse {
  direction: rtl;
}
.room-card-reverse > * {
  direction: ltr;
}
.room-card-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.room-bg {
  width: 100%;
  height: 100%;
}
.room-bg-living {
  background: linear-gradient(160deg, #E8D9C5 0%, #C9B49A 40%, #A89068 100%);
  position: relative;
}
.room-bg-living::after {
  content: '';
  position: absolute;
  bottom: 15%; left: 8%; right: 8%; height: 20%;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
}
.room-bg-bedroom {
  background: linear-gradient(160deg, #D6C8B8 0%, #B8A898 40%, #9A8878 100%);
}
.room-bg-office {
  background: linear-gradient(160deg, #C8D4BC 0%, #A8B89A 40%, #8A9C7A 100%);
}
.room-tag {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.room-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.room-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.room-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.room-includes li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.5rem;
  position: relative;
}
.room-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.room-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.room-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
}
.room-margin {
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 500;
}

/* ─── How It Works ─── */
.how {
  padding: var(--space-2xl) 0;
  background: var(--bg-alt);
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.how-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── Pricing ─── */
.pricing {
  padding: var(--space-2xl) 0;
  background: var(--bg);
}
.pricing-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 50ch;
}
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent);
  border-width: 2px;
}
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}
.pricing-room-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 500;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.pricing-avg {
  font-size: 0.78rem;
  color: var(--sage);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pricing-includes li {
  font-size: 0.88rem;
  color: var(--fg);
  padding-left: 1.5rem;
  position: relative;
}
.pricing-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Closing ─── */
.closing {
  background: var(--accent);
  padding: var(--space-2xl) 0;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 70ch;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 55ch;
  line-height: 1.7;
}
.closing-cta {
  padding-top: 1rem;
}
.closing-cta-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

/* ─── Footer ─── */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-xl) 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.88rem;
  color: rgba(250,248,245,0.5);
  line-height: 1.6;
  max-width: 30ch;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col-head {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250,248,245,0.4);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.footer-col span:not(.footer-col-head) {
  font-size: 0.88rem;
  color: rgba(250,248,245,0.7);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid rgba(250,248,245,0.1);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250,248,245,0.3);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .room-card { grid-template-columns: 1fr; gap: 2rem; }
  .room-card-reverse { direction: ltr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .how-steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
}