:root {
  --bg: #F8F3E9;
  --fg: #1A2920;
  --accent: #C8704A;
  --gold: #B8935A;
  --green: #1A2920;
  --cream: #F8F3E9;
  --warm-gray: #E8E0D4;
  --muted: #6B7B6E;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--warm-gray);
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green);
}

.nav__tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 6rem 4rem 4rem;
  min-height: 85vh;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--green);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.05;
}

.hero__headline br { display: block; }

.hero__sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.7;
}

.transform-widget {
  position: relative;
  background: var(--warm-gray);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(26,41,32,0.08);
  box-shadow: 0 20px 60px rgba(26,41,32,0.08);
}

.tw__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.tw__arrow {
  display: flex;
  justify-content: center;
  color: var(--accent);
}

.tw__room {
  border-radius: 10px;
  overflow: hidden;
  height: 180px;
  position: relative;
}

.room-scene {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.rs__floor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(to top, #C4A882, #D9C4A8);
}

.rs__wall {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 35%;
  background: linear-gradient(to bottom, #F0E8D8, #E8DDD0);
}

.tw__room--before .rs__wall { background: linear-gradient(to bottom, #D4C8B8, #C8BCAA); }

.rs__couch {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 55%;
  height: 28%;
  background: linear-gradient(135deg, #7D8C7A, #6B7A68);
  border-radius: 6px 6px 3px 3px;
}

.rs__couch::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 5%;
  right: 5%;
  height: 25%;
  background: #8A9B88;
  border-radius: 4px 4px 0 0;
}

.rs__couch--flipped {
  position: absolute;
  bottom: 20%;
  right: 15%;
  left: auto;
  width: 55%;
  height: 28%;
  background: linear-gradient(135deg, #7D8C7A, #6B7A68);
  border-radius: 6px 6px 3px 3px;
}

.rs__couch--flipped::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 5%;
  right: 5%;
  height: 25%;
  background: #8A9B88;
  border-radius: 4px 4px 0 0;
}

.tw__room--after .rs__wall {
  background: linear-gradient(to bottom, #EDE0D4, #DED2C2);
}

.tw__room--after .rs__floor {
  background: linear-gradient(to top, #A8906E, #BFA67A);
}

.rs__lamp {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 6%;
  height: 35%;
}

.rs__lamp::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30%;
  width: 40%;
  height: 50%;
  background: #8B7355;
  border-radius: 2px;
}

.rs__lamp::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #C8704A;
  border-radius: 50% 50% 30% 30%;
  box-shadow: 0 0 20px rgba(200,112,74,0.4);
}

.rs__plant {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 12%;
  height: 32%;
}

.rs__plant::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 25%;
  background: #C8704A;
  border-radius: 3px;
}

.rs__plant::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 25%;
  background: radial-gradient(ellipse at 50% 80%, #4A7A4A 0%, #3D6B3D 40%, transparent 70%);
  border-radius: 50% 50% 30% 30%;
}

.rs__rug {
  position: absolute;
  bottom: 8%;
  left: 10%;
  right: 10%;
  height: 15%;
  background: linear-gradient(135deg, #8B7355, #7A6244);
  border-radius: 3px;
  opacity: 0.6;
}

.rs__rug--shifted {
  position: absolute;
  bottom: 8%;
  left: 50%;
  right: 10%;
  height: 15%;
  background: linear-gradient(135deg, #B8935A, #A8844A);
  border-radius: 3px;
}

.rs__art {
  position: absolute;
  top: 20%;
  right: 25%;
  width: 18%;
  height: 22%;
  background: linear-gradient(135deg, #2D4A3E, #1A2920);
  border-radius: 2px;
  border: 3px solid #A8844A;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.rs__shelf {
  position: absolute;
  top: 30%;
  left: 8%;
  width: 15%;
  height: 4%;
  background: #6B5A48;
  border-radius: 2px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.tw__badge {
  text-align: center;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  padding: 0.5rem 1rem;
  background: rgba(200,112,74,0.08);
  border-radius: 20px;
}

.howitworks {
  padding: 6rem 4rem;
  background: var(--green);
}

.hiw__header {
  text-align: center;
  margin-bottom: 4rem;
}

.hiw__header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--cream);
}

.hiw__header .section-label { color: var(--gold); }

.hiw__steps {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.step { flex: 1; text-align: center; }

.step__number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.5rem;
  opacity: 0.6;
}

.step h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.step p {
  font-size: 0.85rem;
  color: rgba(248,243,233,0.6);
  line-height: 1.5;
}

.step__divider {
  width: 1px;
  height: 80px;
  background: rgba(248,243,233,0.15);
  flex-shrink: 0;
}

.features {
  padding: 6rem 4rem;
}

.feat__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feat-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--warm-gray);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,41,32,0.06);
}

.feat-card--large { grid-column: span 2; }
.feat-card--wide { grid-column: span 2; }

.feat-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(200,112,74,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feat-card h3 {
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feat-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.styles {
  padding: 6rem 4rem;
  background: linear-gradient(135deg, #1A2920 0%, #2D4A3E 100%);
  text-align: center;
}

.styles__header { margin-bottom: 3rem; }

.styles__header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.styles__header p {
  color: rgba(248,243,233,0.6);
  font-size: 1rem;
  max-width: 50ch;
  margin: 0 auto;
}

.styles__header .section-label { color: var(--gold); }

.styles__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.style-pill {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(248,243,233,0.2);
  font-size: 0.85rem;
  color: rgba(248,243,233,0.7);
  transition: all 0.2s ease;
}

.style-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,147,90,0.08);
}

.budget {
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.budget__content h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--green);
  margin-bottom: 1rem;
}

.budget__content p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.budget__example {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.be__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--warm-gray);
}

.be__cost {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  min-width: 80px;
}

.be__desc { font-size: 0.85rem; color: var(--muted); }

.budget-badge {
  background: var(--green);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--cream);
}

.bb__icon { color: var(--gold); flex-shrink: 0; }

.bb__text { display: flex; flex-direction: column; gap: 0.25rem; }

.bb__text strong { font-size: 1.1rem; color: var(--cream); }

.bb__text span { font-size: 0.85rem; color: rgba(248,243,233,0.6); }

.closing {
  padding: 8rem 4rem 6rem;
  text-align: center;
  background: var(--bg);
}

.closing h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--green);
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 50ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.closing__voice {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent) !important;
  max-width: 40ch !important;
  font-weight: 400;
}

.footer {
  padding: 4rem;
  text-align: center;
  border-top: 1px solid var(--warm-gray);
  background: var(--cream);
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.footer__tagline {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 45ch;
  margin: 0 auto 1.5rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.footer__copy { font-size: 0.75rem; color: var(--warm-gray); }

@media (max-width: 768px) {
  .nav { padding: 1.5rem 2rem; }
  .hero { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 3rem; }
  .hero__headline { font-size: 2.8rem; }
  .hero__sub { font-size: 0.95rem; }
  .hiw__steps { flex-direction: column; gap: 2rem; }
  .step__divider { display: none; }
  .feat__grid { grid-template-columns: 1fr; }
  .feat-card--large, .feat-card--wide { grid-column: span 1; }
  .budget { grid-template-columns: 1fr; gap: 2rem; }
  .howitworks, .features, .styles, .closing, .footer { padding: 4rem 2rem; }
}