:root {
  --bg: #FAF8F5;
  --fg: #0D1B1E;
  --accent: #D4A843;
  --accent-dark: #B8912E;
  --teal: #0D3B3E;
  --teal-light: #1A5C5F;
  --cream: #F5F0E8;
  --muted: #6B7280;
  --border: #E5E0D8;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal);
  letter-spacing: -0.01em;
}
.site-header nav {
  display: flex;
  gap: 32px;
}
.site-header nav a {
  color: var(--fg);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.site-header nav a:hover { opacity: 1; }

/* HERO */
.hero {
  padding: 80px 0 60px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--teal);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 480px;
}
.hero-sub {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(13, 59, 62, 0.15);
}
.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* SECTION LABELS */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--teal);
  margin-bottom: 48px;
}

/* SERVICES */
.services {
  padding: 80px 0;
  background: white;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.service-card {
  padding: 36px;
  background: var(--bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 59, 62, 0.08);
}
.service-icon {
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.services-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-feature {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.service-feature img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.service-feature span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(13,59,62,0.8));
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

/* INDUSTRIES */
.industries {
  padding: 80px 0;
  background: var(--cream);
}
.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.industry-card {
  padding: 40px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 59, 62, 0.08);
}
.industry-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.industry-card h3 {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 12px;
}
.industry-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* PROOF / PRICING */
.proof {
  padding: 80px 0;
  background: var(--teal);
  color: white;
}
.proof .section-label { color: var(--accent); }
.proof .section-title { color: white; }
.proof-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
.pricing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.pricing-card.featured {
  background: rgba(212, 168, 67, 0.15);
  border-color: var(--accent);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
}
.pricing-card h3 {
  font-size: 1.375rem;
  margin-bottom: 4px;
  color: white;
}
.pricing-for {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.price-setup {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}
.price-setup-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.price-monthly {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.proof-stat {
  text-align: center;
  padding: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
}

/* CLOSING */
.closing {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.closing-content {
  max-width: 680px;
  margin: 0 auto;
}
.closing h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal);
  margin-bottom: 24px;
}
.closing p {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

/* FOOTER */
.site-footer {
  background: var(--teal);
  color: white;
  padding: 64px 0 40px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px;
  align-items: start;
}
.site-footer .logo { color: white; }
.footer-brand p {
  margin-top: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  grid-column: 1 / -1;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image img { height: 260px; }
  .services-grid, .industries-grid, .pricing-grid { grid-template-columns: 1fr; }
  .services-images { grid-template-columns: 1fr; }
  .site-footer .container { grid-template-columns: 1fr; gap: 32px; }
  .site-header nav { display: none; }
  .hero h1 { font-size: 2rem; }
  .closing h2 { font-size: 1.75rem; }
}