/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F8F4EE;
  --bg-alt: #EDE8DF;
  --primary: #1C3A0E;
  --accent: #8B5E3C;
  --accent-light: #C4714A;
  --text: #1A1A1A;
  --text-muted: #5C5C4E;
  --border: #D8D0C4;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--primary); color: #fff; }

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
}

.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-header nav a:hover { color: var(--primary); }

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}

.hero-image-col {
  position: relative;
  overflow: hidden;
}

.hero-visual {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-svg-bg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-image-overlay {
  position: absolute;
  bottom: 28px;
  left: 28px;
}

.image-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.7);
  background: rgba(0,0,0,0.3);
  padding: 8px 14px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.hero-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 64px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.1;
}

.hero-lede {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-services-list span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-services-list .dot {
  color: var(--accent-light);
}

/* === STATS === */
.stats-section {
  background: var(--primary);
  color: #fff;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px;
  gap: 0;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 48px 0 0;
}

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

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.25rem;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.stat-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-width: 200px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 40px;
  align-self: stretch;
}

/* === SERVICES === */
.services-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 64px;
}

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

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 44px 40px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}

.service-card:hover { background: var(--bg-alt); }

.service-icon {
  margin-bottom: 20px;
}

.service-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === PHILOSOPHY === */
.philosophy-section {
  background: var(--bg-alt);
  padding: 100px 40px;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.philosophy-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.philosophy-tag {
  display: inline-block;
  margin-top: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 8px 16px;
  border-radius: 2px;
}

.process-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.process-step {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
}

.process-arrow {
  display: flex;
  justify-content: center;
  padding: 4px 0;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  color: var(--primary);
  opacity: 0.5;
  flex-shrink: 0;
  width: 40px;
}

.step-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

/* === CLOSING === */
.closing-section {
  background: var(--primary);
  padding: 120px 40px;
  text-align: center;
}

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

.closing-badge {
  display: inline-block;
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: var(--accent-light);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.closing-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* === FOOTER === */
.site-footer {
  background: var(--text);
  padding: 48px 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.125rem;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

.footer-meta {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image-col { height: 60vw; min-height: 300px; }
  .hero-content-col { padding: 56px 32px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
  .header-inner { padding: 16px 20px; }
  .hero-content-col { padding: 40px 20px; }
  .services-section { padding: 64px 20px; }
  .philosophy-section { padding: 64px 20px; }
  .closing-section { padding: 80px 20px; }
  .site-footer { padding: 40px 20px; }
  .site-header nav { gap: 20px; }
}