:root {
  --copper: #B87333;
  --copper-light: #D4956A;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D8;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2D2D2D;
  --sage: #8A9A7B;
  --sage-light: #A8B89A;
  --warm-white: #FDFBF7;
  --text-primary: #1A1A1A;
  --text-secondary: #5A5A5A;
  --text-muted: #8A8A8A;
}

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

body {
  background: var(--warm-white);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* Navigation */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-bottom: 1px solid var(--cream-dark);
  background: var(--warm-white);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 300;
}

/* Section Eyebrow */
.section-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}

/* Hero */
.hero {
  padding: 4rem 3rem 3rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--cream-dark);
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--copper);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 460px;
}

/* Hero Visual - Transformation Frame */
.hero-visual { position: relative; }

.visual-frame {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.frame-label-top {
  padding: 0.75rem 1.25rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--cream-dark);
  background: var(--cream-dark);
}

.frame-split {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.split-before, .split-after {
  flex: 1;
  padding: 1.5rem;
}

.split-before { background: #C8BBA8; }
.split-after { background: #7A6E60; }

.before-visual, .after-visual {
  height: 180px;
  border-radius: 2px;
}

.before-visual {
  background: linear-gradient(135deg, #C8BBA8 0%, #AFA090 100%);
}

.after-visual {
  background: linear-gradient(135deg, #8A7A66 0%, #6B5D50 100%);
  position: relative;
}

.after-visual::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
}

.before-label, .after-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.split-arrow {
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  color: rgba(255,255,255,0.5);
}

.frame-label-bottom {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1280px;
  margin: 3rem auto 0;
  border-top: 1px solid var(--cream-dark);
  padding-top: 2rem;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* Transformation Section */
.transformation {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 3rem;
}

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

.transformation-header { margin-bottom: 3rem; }

.transformation .section-eyebrow { color: var(--copper-light); }
.transformation .section-heading { color: var(--cream); }

.transformation-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.trans-lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.trans-col-text p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Concept Cards */
.concept-card {
  background: var(--charcoal-mid);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.concept-badge {
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--copper-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
}

.concept-visual {
  height: 200px;
  background: linear-gradient(135deg, #3D3530 0%, #2A2420 100%);
}

.concept-caption {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  font-style: italic;
}

.luxury-modern-ranch {
  background: linear-gradient(135deg, #5C4F42 0%, #3D3530 50%, #2A2420 100%);
}

.barndominium-retreat {
  background: linear-gradient(135deg, #4A4A42 0%, #3A3A30 50%, #2A2A24 100%);
}

/* Collections */
.collections {
  background: var(--cream);
  padding: 5rem 3rem;
}

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

.collections-header { margin-bottom: 3rem; }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.collection-card {
  background: var(--warm-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.collection-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.collection-tall { grid-row: span 2; }

.collection-visual {
  height: 280px;
  background: linear-gradient(135deg, #8B7355 0%, #6B5A45 100%);
}

.collection-wide .collection-visual { height: 100%; min-height: 280px; }
.collection-tall .collection-visual { height: 420px; }

.ranch-compound-visual {
  background: linear-gradient(135deg, #7A6A58 0%, #5C4C3E 50%, #3D3028 100%);
}

.barndo-visual {
  background: linear-gradient(135deg, #6B6B5C 0%, #4A4A3E 50%, #2D2D24 100%);
}

.land-transform-visual {
  background: linear-gradient(135deg, #8A9A7B 0%, #6A7A5B 50%, #4A5A3B 100%);
}

.luxury-estate-visual {
  background: linear-gradient(135deg, #9B8B7B 0%, #7B6B5B 50%, #5B4B3B 100%);
}

.collection-info { padding: 1.5rem; }

.collection-title {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}

.collection-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.collection-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--cream-dark);
  border-radius: 2px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Process */
.process {
  background: var(--warm-white);
  padding: 5rem 3rem;
}

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

.process-header { margin-bottom: 3rem; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--cream-dark);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--cream-dark);
  background: var(--warm-white);
}

.process-step:last-child { border-right: none; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--copper-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-title {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Pricing Teaser */
.process-pricing-teaser {
  background: var(--charcoal);
  border-radius: 4px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.pricing-intro {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.tier-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--copper-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.tier-range {
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(245,240,232,0.4);
}

.tier-note {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.4);
}

/* Closing */
.closing {
  background: var(--cream);
  padding: 5rem 3rem;
  text-align: center;
}

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

.closing-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.closing-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.tag-large {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--cream-dark);
  border-radius: 3px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  font-weight: 500;
}

.closing-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--copper);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(245,240,232,0.4);
  padding: 4rem 3rem 3rem;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.footer-desc {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.footer-location {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.3);
  margin-bottom: 2.5rem;
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: rgba(245,240,232,0.15);
  margin: 0 auto 2rem;
}

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

/* Mobile Responsive */
@media (max-width: 900px) {
  .site-nav { padding: 1rem 1.5rem; }
  .hero { padding: 3rem 1.5rem 2rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.8rem; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 1rem; }
  .stat-value { font-size: 1.8rem; }

  .transformation-body { grid-template-columns: 1fr; }
  .transformation { padding: 3rem 1.5rem; }

  .collections-grid { grid-template-columns: 1fr; }
  .collection-wide { grid-column: span 1; grid-template-columns: 1fr; }
  .collection-wide .collection-visual { height: 200px; }
  .collection-tall { grid-row: span 1; }
  .collection-tall .collection-visual { height: 200px; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .process-step:last-child { border-bottom: none; }

  .process-pricing-teaser { flex-direction: column; gap: 1.5rem; padding: 2rem; }

  .collections, .process, .closing { padding: 3rem 1.5rem; }
}

@media (max-width: 500px) {
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { width: 40px; height: 1px; }
  .closing-tags { flex-direction: column; align-items: center; }
}