/* ====================================
   SCENEFORGE — CUSTOM CSS
   Palette: Parchment #F8F4EE, Charcoal #18181B, Copper #B67C42
   ==================================== */

:root {
  --bg: #F8F4EE;
  --bg-alt: #F0EBE2;
  --fg: #18181B;
  --fg-muted: #6B6460;
  --accent: #B67C42;
  --accent-light: #D4A574;
  --border: #DDD6C8;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Navigation ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 0.5rem; }
.nav-logo {
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.5px;
}
.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.3px;
}

/* ---- Hero ---- */
.hero {
  padding: 5rem 3rem 4rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { order: 2; }
.hero-visual { order: 1; }

/* CSS 3D House Scene */
.hero-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}
.scene-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #C8A97A 0%, #E8D4B0 40%, #F5E8D0 70%, #D4C4A0 100%);
}
.sky-sun {
  position: absolute;
  top: 18%;
  right: 22%;
  width: 40px; height: 40px;
  background: radial-gradient(circle, #F5D78A 0%, #E8B84A 50%, transparent 70%);
  border-radius: 50%;
}
.scene-grass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, #6A9C3A, #8DB84E);
}
.scene-path {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 12%;
  height: 35%;
  background: linear-gradient(to top, #B8A48A, #C8B49A);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}
.scene-house {
  position: absolute;
  bottom: 32%;
  left: 50%;
  transform: translateX(-50%);
  width: 48%;
}
.house-body {
  width: 100%;
  height: 90px;
  background: linear-gradient(135deg, #F2EDE4, #E8E0D0);
  border: 1px solid #C8C0B0;
  position: relative;
}
.house-roof {
  position: absolute;
  top: -50px;
  left: -5%;
  width: 110%;
  height: 60px;
  background: linear-gradient(135deg, #4A3728, #6B4F38);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.house-door {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 35px;
  background: #6B4F38;
}
.house-window {
  position: absolute;
  bottom: 25px;
  width: 22px; height: 22px;
  background: rgba(180, 210, 240, 0.7);
  border: 1px solid #8BAABB;
}
.hw1 { left: 20%; }
.hw2 { right: 20%; }
.house-garage {
  position: absolute;
  bottom: 0;
  right: -15%;
  width: 28%;
  height: 50px;
  background: linear-gradient(135deg, #E0D8C8, #D4CCBC);
  border: 1px solid #C0B8A8;
  border-top: 3px solid #5A4838;
}
.scene-tree {
  position: absolute;
  bottom: 30%;
  width: 18%;
  height: 70px;
  border-radius: 50% 50% 20% 20%;
}
.st1 { left: 8%; background: radial-gradient(ellipse at 50% 60%, #5A8A2E, #4A7020); }
.st2 { right: 10%; background: radial-gradient(ellipse at 50% 60%, #6A9A3E, #507028); }
.scene-hedge {
  position: absolute;
  bottom: 30%;
  width: 12%;
  height: 22px;
  background: #4A7028;
  border-radius: 4px 4px 2px 2px;
  left: 32%;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.hero-stat { padding: 0 2rem 0 0; }
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.stat-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 2rem 0 0;
}

/* ---- Section Defaults ---- */
.section-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--fg);
  letter-spacing: -0.3px;
}

/* ---- Outcomes ---- */
.outcomes { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.outcomes-header { max-width: 1200px; margin: 0 auto 3.5rem; }
.outcomes-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.outcome-card { padding: 1.5rem 0; }
.outcome-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.outcome-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.outcome-card p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }

/* ---- Process ---- */
.process { padding: 5rem 3rem; background: var(--bg-alt); }
.process-header { max-width: 1200px; margin: 0 auto 3.5rem; }
.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}
.step-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.step-body p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.65; }
.step-connector {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 3.5rem 1rem 0;
  flex-shrink: 0;
}

/* ---- Portfolio ---- */
.portfolio { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.portfolio-header { max-width: 1200px; margin: 0 auto 3.5rem; }
.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.portfolio-item {
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.portfolio-scene {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
/* Portfolio Scene 1 - Exterior */
.ps-exterior { background: linear-gradient(180deg, #C8A97A 0%, #D4C89A 50%, #7A9A42 50%, #6A8A32 100%); }
.ps-house {
  position: absolute;
  bottom: 35%; left: 30%; width: 40%;
  height: 55px;
  background: #F2EDE4; border: 1px solid #C8C0B0;
}
.ps-roof {
  position: absolute;
  top: -28px; left: -4%;
  width: 108%; height: 35px;
  background: #4A3728;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.ps-door {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 12px; height: 22px;
  background: #5A4030;
}
.ps-win {
  position: absolute;
  bottom: 18px; width: 12px; height: 12px;
  background: rgba(180, 210, 240, 0.7); border: 1px solid #8BAABB;
}
.w1 { left: 22%; }
.w2 { right: 22%; }
.ps-tree {
  position: absolute;
  bottom: 30%;
  width: 16%; height: 40px;
  border-radius: 50% 50% 20% 20%;
}
.pt1 { left: 6%; background: radial-gradient(ellipse, #5A8A2E, #4A7020); }
.pt2 { right: 8%; background: radial-gradient(ellipse, #6A9A3E, #507028); }
.ps-path {
  position: absolute; bottom: 0; left: 45%; width: 10%;
  height: 30%; background: #C8B49A;
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}
.ps-grass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 32%;
  background: linear-gradient(to top, #5A8A32, #7AA842);
}
/* Portfolio Scene 2 - Landscaping */
.ps-landscape { background: linear-gradient(180deg, #A8C87A 0%, #8AB85A 100%); }
.pl-patio {
  position: absolute;
  bottom: 10%; left: 10%; width: 80%; height: 35%;
  background: repeating-linear-gradient(45deg, #C8B498 0px, #C8B498 8px, #B8A488 8px, #B8A488 16px);
  border-radius: 2px;
}
.pl-trees {
  position: absolute; top: 15%; left: 5%; width: 20%; height: 45%;
  background: radial-gradient(ellipse at 50% 80%, #5A8A2E, #4A7020 70%, transparent 71%);
}
.pl-planters {
  position: absolute; bottom: 48%; left: 15%;
  width: 12%; height: 15%; background: #8B6914; border-radius: 2px 2px 0 0;
}
.pl-hardscape {
  position: absolute; bottom: 10%; left: 10%; width: 80%; height: 8%;
  background: linear-gradient(to right, #A89068, #B8A078);
  border-radius: 2px;
}
/* Portfolio Scene 3 - Aerial */
.ps-aerial { background: linear-gradient(180deg, #C8D4A8 0%, #8AA842 100%); }
.pa-house {
  position: absolute; top: 20%; left: 25%; width: 50%; height: 35%;
  background: #E8E0D0; border: 2px solid #C8C0B0;
}
.pa-lot {
  position: absolute; top: 10%; left: 10%; width: 80%; height: 80%;
  border: 1px dashed #A0A080;
}
.pa-driveway {
  position: absolute; bottom: 35%; left: 40%; width: 20%; height: 30%;
  background: #B8A888;
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}
.pa-trees {
  position: absolute; top: 10%; left: 5%; width: 15%; height: 30%;
  background: radial-gradient(ellipse, #5A8A2E 50%, transparent 51%);
}
.pa-pool {
  position: absolute; bottom: 15%; right: 15%;
  width: 22%; height: 18%;
  background: linear-gradient(135deg, #7AB8D8, #5A98B8);
  border-radius: 50%;
}
.portfolio-info { padding: 1.25rem; }
.portfolio-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.portfolio-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-top: 0.4rem;
}

/* ---- Manifesto ---- */
.manifesto {
  padding: 6rem 3rem;
  background: var(--fg);
  color: var(--bg);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: #F8F4EE;
  border: none;
  margin-bottom: 1.5rem;
}
.manifesto-attr {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---- Pricing ---- */
.pricing { padding: 5rem 3rem; border-bottom: 1px solid var(--border); }
.pricing-header { max-width: 1200px; margin: 0 auto 3rem; }
.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
}
.pricing-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
}
.pc-featured {
  border-color: var(--accent);
  background: #FAF5EE;
}
.pc-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
}
.pc-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.pc-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 1.75rem;
  letter-spacing: -1px;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pc-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 1.25rem;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border: 1px solid var(--accent);
  border-radius: 50%;
}
.pricing-note {
  max-width: 1200px;
  margin: 2rem auto 0;
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ---- Closing ---- */
.closing {
  padding: 7rem 3rem;
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- Footer ---- */
.footer {
  padding: 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-logo {
  width: 28px; height: 28px;
  background: var(--accent);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
  .hero-scene { max-width: 500px; margin: 0 auto; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; }
  .step-connector { width: 40px; height: 1px; margin: 1rem 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .outcomes, .process, .portfolio, .pricing { padding: 3rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .stat-num { font-size: 1.6rem; }
}