:root {
  --bg: #F5F0E8;
  --bg-alt: #EDE7DC;
  --fg: #1A1208;
  --fg-muted: #6B5E52;
  --accent: #C4561A;
  --accent-light: #E8764A;
  --accent-dark: #9A3F0A;
  --terracotta: #C4561A;
  --cream: #FAF7F2;
  --oak-light: #D4B896;
  --oak-mid: #A8825A;
  --oak-dark: #6B4F32;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(196,86,26,0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  background: var(--terracotta);
  color: var(--cream);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.3px;
  color: var(--fg);
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-light);
}

/* ─── HERO ─── */
.hero {
  padding: 80px 48px 60px;
  overflow: hidden;
  position: relative;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-service {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}

.hero-service strong {
  color: var(--fg);
  font-weight: 500;
}

.hero-service-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,86,26,0.08);
  padding: 2px 8px;
  border-radius: 2px;
}

/* Hero Visual */
.hero-right { position: relative; }

.hero-visual {
  position: relative;
}

.hero-room {
  background: linear-gradient(135deg, #E8D9C8 0%, #C9B89A 100%);
  border-radius: 16px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,18,8,0.18), 0 4px 16px rgba(26,18,8,0.1);
}

.room-walls {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.room-wall-top {
  flex: 1;
  background: linear-gradient(180deg, #C8764A 0%, #D4896A 60%, #E0A882 100%);
  position: relative;
}

.room-wall-top::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.04));
}

.room-floor {
  height: 28%;
  background: linear-gradient(180deg, #B8875A 0%, #C9A06E 40%, #D4B07A 100%);
  position: relative;
  flex-shrink: 0;
}

.room-floor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 18%,
    rgba(0,0,0,0.04) 18%,
    rgba(0,0,0,0.04) 20%
  );
}

.room-trim {
  height: 14px;
  background: var(--cream);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.room-window {
  position: absolute;
  top: 15%;
  right: 12%;
  width: 22%;
  height: 38%;
  background: linear-gradient(180deg, #FFF8E8 0%, #FFE4B0 100%);
  border: 3px solid var(--cream);
  box-shadow: 0 0 32px rgba(255,200,100,0.5), 0 0 8px rgba(255,200,100,0.3);
  overflow: hidden;
}

.window-light {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,220,100,0.2), rgba(255,180,60,0.1));
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
}

.room-sofa {
  position: absolute;
  bottom: 29%;
  left: 8%;
  width: 38%;
}

.sofa-base {
  background: #F2EAE0;
  height: 28px;
  border-radius: 4px 4px 2px 2px;
}

.sofa-cushion {
  position: absolute;
  bottom: 28px;
  left: 5%;
  right: 5%;
  height: 20px;
  background: #E8DDD4;
  border-radius: 3px;
}

.sofa-arm {
  position: absolute;
  right: -5%;
  bottom: 28px;
  width: 12px;
  height: 40px;
  background: #D4C8BE;
  border-radius: 2px;
}

.room-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
}

.overlay-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  border-radius: 4px;
}

.overlay-tag-before {
  background: rgba(26,18,8,0.7);
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.overlay-tag-after {
  background: var(--terracotta);
  color: var(--cream);
}

.hero-badges {
  position: absolute;
  bottom: -16px;
  left: -16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(26,18,8,0.1);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg);
}

.badge-icon {
  font-size: 14px;
  color: var(--terracotta);
}

.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
  color: var(--fg-muted);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--terracotta), transparent);
}

/* ─── STATS ─── */
.stats {
  background: var(--fg);
  color: var(--cream);
  padding: 48px 48px;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  flex: 1;
  padding: 0 32px;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -1px;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(250,247,242,0.6);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(250,247,242,0.12);
  flex-shrink: 0;
}

/* ─── SERVICES ─── */
.services {
  padding: 96px 48px;
  background: var(--bg);
}

.services-header {
  max-width: 1280px;
  margin: 0 auto 56px;
}

.services-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 12px;
}

.services-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

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

.service-card {
  background: var(--cream);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196,86,26,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(26,18,8,0.08);
}

.service-card-content { display: flex; flex-direction: column; }

.service-visual {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.service-visual-paint {
  background: linear-gradient(135deg, #F0E8E0, #E8D8C8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.paint-can {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.can-body {
  width: 48px;
  height: 60px;
  background: var(--terracotta);
  border-radius: 4px 4px 2px 2px;
  position: relative;
}

.can-body::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 12px;
  background: var(--oak-dark);
  border-radius: 2px 2px 0 0;
}

.can-label {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 2px;
  color: var(--cream);
}

.paint-stroke {
  width: 80px;
  height: 120px;
  background: linear-gradient(180deg, var(--accent-light), var(--accent));
  border-radius: 4px;
  opacity: 0.7;
  margin-top: 16px;
  position: relative;
}

.paint-stroke::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: rgba(0,0,0,0.1);
}

.service-visual-floor {
  background: linear-gradient(135deg, #E8D5BE, #D4BC9A);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-planks {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 140px;
}

.plank {
  height: 18px;
  background: var(--oak-mid);
  border-radius: 2px;
  position: relative;
}

.plank:nth-child(2) { background: var(--oak-light); width: 90%; }
.plank:nth-child(4) { background: #B8916A; width: 75%; }
.plank:nth-child(6) { background: var(--oak-light); width: 85%; }

.plank::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, transparent 40%, rgba(0,0,0,0.05) 100%);
  border-radius: 2px;
}

.floor-sheen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  pointer-events: none;
}

.service-content {
  padding: 28px;
}

.service-content-full { padding: 28px; display: flex; flex-direction: column; justify-content: center; }

.service-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.service-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
}

.service-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--terracotta);
  background: rgba(196,86,26,0.08);
  padding: 4px 10px;
  border-radius: 3px;
}

.service-tag-social { background: rgba(196,86,26,0.12); }

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ─── HOW ─── */
.how {
  padding: 96px 48px;
  background: var(--bg-alt);
}

.how-header {
  max-width: 1280px;
  margin: 0 auto 56px;
}

.how-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 12px;
}

.how-sub {
  font-size: 16px;
  color: var(--fg-muted);
}

.steps {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding-right: 32px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -2px;
  color: rgba(196,86,26,0.15);
  margin-bottom: 12px;
  line-height: 1;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--terracotta), rgba(196,86,26,0.2));
  margin-top: 32px;
  flex-shrink: 0;
}

.how-note {
  max-width: 1280px;
  margin: 0 auto;
}

.how-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(196,86,26,0.06);
  border: 1px solid rgba(196,86,26,0.12);
  border-radius: 12px;
  padding: 24px 28px;
}

.note-icon {
  width: 20px;
  height: 20px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.note-icon::after {
  content: '!';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
}

.how-note-inner p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.how-note-inner strong { color: var(--fg); }

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 96px 48px;
  background: var(--fg);
  color: var(--cream);
}

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

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--cream);
  border-left: 3px solid var(--terracotta);
  padding-left: 24px;
  margin-bottom: 32px;
  font-style: normal;
}

.manifesto-body {
  font-size: 16px;
  color: rgba(250,247,242,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-cta {
  margin-top: 40px;
}

.manifesto-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(250,247,242,0.08);
  color: var(--cream);
  border: 1px solid rgba(250,247,242,0.12);
}

.btn-secondary:hover {
  background: rgba(250,247,242,0.12);
}

/* ─── CLOSING ─── */
.closing {
  padding: 80px 48px 60px;
  background: var(--bg);
}

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

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -1.5px;
  color: var(--fg);
  max-width: 700px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.closing-rule {
  width: 64px;
  height: 3px;
  background: var(--terracotta);
  border-radius: 2px;
  margin-bottom: 32px;
}

.closing-bottom {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.closing-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.closing-location {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--bg-alt);
  padding: 48px;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  border-left: 1px solid rgba(26,18,8,0.1);
}

.footer-divider {
  height: 1px;
  background: rgba(26,18,8,0.08);
  margin-bottom: 24px;
}

.footer-meta {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-col {}

.footer-col-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.footer-col-value {
  font-size: 14px;
  color: var(--fg-muted);
}

.footer-link {
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(26,18,8,0.06);
  padding-top: 20px;
}

.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    width: 48px;
    height: 1px;
    margin-top: 0;
  }

  .stats-inner {
    flex-direction: column;
    gap: 24px;
  }

  .stat-divider { display: none; }

  .stat { padding: 0; }

  .closing-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .footer-meta { flex-direction: column; gap: 20px; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .stats { padding: 40px 24px; }
  .services { padding: 64px 24px; }
  .how { padding: 64px 24px; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 56px 24px 40px; }
  .footer { padding: 40px 24px; }

  .manifesto-buttons { flex-direction: column; }

  .hero-badges { bottom: -12px; }
  .badge { font-size: 11px; padding: 8px 10px; }
}