/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF5EF;
  --bg-alt: #F2E9DF;
  --primary: #BF4A27;
  --primary-dark: #9C3620;
  --secondary: #7A9E7E;
  --text: #2D1B0E;
  --text-muted: #6B5744;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 80px;
  background: var(--bg);
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(165deg, var(--primary) 0%, #D4602E 60%, var(--secondary) 100%);
  opacity: 0.12;
  z-index: 0;
}

.hero-inner {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--primary);
}

.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ─── Philosophy ─── */
.philosophy {
  background: var(--text);
  padding: 100px 48px;
}

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

.philosophy-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 32px;
  font-weight: 400;
}

.philosophy-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  font-weight: 300;
}

/* ─── Method ─── */
.method {
  background: var(--bg);
  padding: 100px 48px;
}

.method-inner { max-width: 1100px; margin: 0 auto; }

.method-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 64px;
}

.method-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.2em;
}

.method-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.method-card {
  background: var(--bg-alt);
  padding: 48px 40px;
  border-left: 3px solid var(--primary);
}

.method-icon {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1;
}

.method-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.method-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Results ─── */
.results {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.results-inner { max-width: 1100px; margin: 0 auto; }

.results-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
}

.results-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.2em;
}

.results-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.result-card {
  background: var(--white);
  padding: 36px 32px;
}

.result-initials {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.result-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.result-meta { display: flex; flex-direction: column; }

.result-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.result-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.results-outro {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

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

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 56px;
}

.services-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.2em;
}

.services-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--text);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--bg-alt);
}

.service-card {
  background: var(--bg);
  padding: 40px 32px;
}

.service-mark {
  width: 32px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Founder ─── */
.founder {
  background: var(--text);
  padding: 100px 48px;
}

.founder-inner { max-width: 900px; margin: 0 auto; }

.founder-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.founder-content { }

.founder-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
}

.founder-body p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.credential { display: flex; gap: 16px; }

.credential-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  min-width: 100px;
  padding-top: 2px;
}

.credential-value {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

/* ─── Closing ─── */
.closing {
  background: var(--primary);
  padding: 100px 48px;
}

.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }

.closing-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 40px;
}

.closing-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}

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

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--primary); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero { padding: 64px 28px 72px; }
  .philosophy { padding: 72px 28px; }
  .method { padding: 72px 28px; }
  .method-grid { grid-template-columns: 1fr; }
  .results { padding: 72px 28px; }
  .results-grid { grid-template-columns: 1fr; }
  .services { padding: 72px 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .founder { padding: 72px 28px; }
  .closing { padding: 72px 28px; }
  .site-footer { padding: 32px 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 44px; }
  .hero-lede { font-size: 16px; }
  .stat-number { font-size: 28px; }
}
