/* Base */
:root {
  --cream: #faf5ef;
  --warm-white: #fff9f5;
  --terracotta: #b84a2e;
  --terracotta-dark: #8c3520;
  --sage: #7a9e7e;
  --sage-light: #a8c4ab;
  --charcoal: #2d2420;
  --warm-gray: #7a6e68;
  --light-warm: #e8dfd6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(250, 245, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(45, 36, 32, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.logo-mark {
  color: var(--terracotta);
  font-size: 1.1rem;
}

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

.site-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--warm-gray);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm-white) 60%, #f0e6d9 100%);
  padding: 140px 40px 100px;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.mist-1 {
  width: 600px;
  height: 300px;
  bottom: 0;
  left: -100px;
  background: radial-gradient(ellipse, rgba(184, 74, 46, 0.15), transparent);
}

.mist-2 {
  width: 400px;
  height: 200px;
  top: 20%;
  right: 5%;
  background: radial-gradient(ellipse, rgba(122, 158, 126, 0.2), transparent);
}

.horizon-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(184, 74, 46, 0.06), transparent);
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

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

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--warm-gray);
  max-width: 560px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-credential {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cred-badge {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  padding: 5px 12px;
  border-radius: 2px;
}

.cred-divider { color: var(--light-warm); }

.cred-text {
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-weight: 300;
}

/* Section labels */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

/* Philosophy */
.philosophy {
  padding: 120px 40px;
  background: var(--charcoal);
  text-align: center;
}

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

.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.35;
  margin-bottom: 16px;
}

.philosophy-cite {
  font-size: 0.85rem;
  color: var(--sage-light);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 56px;
}

.philosophy-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(250, 245, 239, 0.65);
  font-weight: 300;
}

/* Services */
.services {
  padding: 120px 40px;
  background: var(--cream);
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  padding: 40px 36px;
  background: var(--warm-white);
  border: 1px solid rgba(45, 36, 32, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(45, 36, 32, 0.08);
}

.service-icon {
  color: var(--terracotta);
  margin-bottom: 24px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--warm-gray);
  font-weight: 300;
}

/* Impact */
.impact {
  padding: 120px 40px;
  background: linear-gradient(135deg, #f0e6d9 0%, var(--warm-white) 100%);
}

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

.impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(45, 36, 32, 0.12);
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.impact-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
}

.impact-narrative p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--warm-gray);
  font-weight: 300;
}

/* Testimonials */
.testimonials {
  padding: 120px 40px;
  background: var(--warm-white);
}

.testimonials-header { text-align: center; margin-bottom: 80px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  padding: 40px 36px;
  background: var(--cream);
  border-left: 3px solid var(--terracotta);
  position: relative;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--terracotta);
  opacity: 0.25;
  line-height: 0.5;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* About */
.about {
  padding: 120px 40px;
  background: var(--cream);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.about-image-block {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.about-portrait-placeholder {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portrait-initial {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
}

.portrait-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid var(--terracotta);
  opacity: 0.3;
}

.about-headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  line-height: 1.15;
}

.about-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--warm-gray);
  font-weight: 300;
  margin-bottom: 20px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.credential {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--light-warm);
  padding: 8px 16px;
  border-radius: 2px;
}

/* Closing */
.closing {
  padding: 140px 40px;
  background: var(--charcoal);
  text-align: center;
}

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

.closing-symbol {
  font-size: 2.5rem;
  color: var(--terracotta);
  margin-bottom: 40px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 36px;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(250, 245, 239, 0.65);
  font-weight: 300;
  margin-bottom: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.closing-body:last-of-type {
  color: var(--sage-light);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  padding: 60px 40px;
  background: #1a1512;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-logo-mark { color: var(--terracotta); }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(250, 245, 239, 0.5);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

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

.footer-location, .footer-contact {
  font-size: 0.8rem;
  color: rgba(250, 245, 239, 0.35);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hero { padding: 120px 24px 80px; }
  .philosophy, .services, .impact, .testimonials, .about, .closing { padding: 80px 24px; }
  .impact-stats { grid-template-columns: 1fr; gap: 32px; }
  .impact-narrative { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image-block { justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}