:root {
  --bg: #FAFAF7;
  --bg-alt: #F0EDE6;
  --fg: #1A1A18;
  --fg-muted: #6B6A63;
  --accent: #0D4F4F;
  --accent-light: #E8F4F4;
  --amber: #F5A623;
  --amber-light: #FEF3E2;
  --border: #E2DED6;
  --radius: 10px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
  font-weight: 600;
}

/* Site header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
}
nav {
  display: flex;
  gap: 32px;
}
nav a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--fg); }

/* Section base */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

/* Hero */
.hero {
  padding: 96px 0 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
}
h1 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label { font-size: 12px; color: var(--fg-muted); max-width: 90px; line-height: 1.4; }
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.hero-image-wrap {
  position: relative;
}
.hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* How it works */
.how-section {
  padding: 96px 0;
  background: var(--accent);
}
.how-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  color: white;
  margin-bottom: 56px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.step-card:hover { background: rgba(255,255,255,0.12); }
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
  margin-bottom: 20px;
}
.step-icon { margin-bottom: 16px; }
.step-card h3 {
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
}
.step-card p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* Features */
.features-section { padding: 96px 0; }
.features-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 56px;
}
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 40px;
}
.feature-text-block { display: flex; flex-direction: column; gap: 32px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon-sm {
  width: 40px;
  height: 40px;
  background: var(--amber-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 17px; font-weight: 600; margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.feature-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.feature-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.feature-callout {
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: -48px;
  margin-left: 24px;
  margin-right: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  position: relative;
  z-index: 2;
}
.callout-number {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
}
.callout-label { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.features-row-2 { margin-top: 40px; }
.feature-full-width {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  height: 280px;
}
.features-img-wide {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-wide-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 40px 40px;
  background: linear-gradient(to top, rgba(13,79,79,0.95) 0%, rgba(13,79,79,0) 100%);
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.feature-wide-text .feature-icon-sm { background: rgba(255,255,255,0.2); }
.feature-wide-text h4 { color: white; font-size: 20px; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; }
.feature-wide-text p { color: rgba(255,255,255,0.8); font-size: 14px; max-width: 600px; }

/* Industries */
.industries-section {
  padding: 96px 0;
  background: var(--bg-alt);
}
.industries-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 48px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.industry-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-3px);
}
.industry-icon { margin-bottom: 20px; }
.industry-card h3 { font-size: 17px; margin-bottom: 12px; }
.industry-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* Closing */
.closing-section {
  padding: 120px 0;
  background: var(--accent);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-section h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  color: white;
  margin-bottom: 24px;
}
.closing-section > .section-inner > .closing-inner > p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-vision {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: left;
}
.vision-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}
.closing-vision p {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); }
.footer-copy { font-size: 12px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-layout { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  h1 { font-size: 32px; }
  .hero { padding: 60px 0 48px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .industries-grid { grid-template-columns: 1fr; }
  .header-inner { padding: 14px 20px; }
  nav { display: none; }
  .section-inner, .hero-inner { padding: 0 20px; }
  .closing-section { padding: 80px 0; }
}