:root {
  --bg: #f4efe6;
  --bg-alt: #ede8df;
  --dark: #0d2b1f;
  --dark-mid: #1a4a35;
  --accent: #c9a84c;
  --accent-light: #e8c97a;
  --text: #1a1a18;
  --text-mid: #4a4a44;
  --text-light: #7a7a70;
  --white: #ffffff;
}

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

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 43, 31, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  background: var(--dark);
  color: var(--white);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.hero-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 420px;
  line-height: 1.7;
}
.hero-right {
  display: flex;
  justify-content: flex-end;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  padding: 2rem;
  min-width: 260px;
  backdrop-filter: blur(8px);
}
.hero-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.hero-card-year {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1.5rem;
}
.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.hero-card-row {
  display: flex;
  gap: 1.5rem;
}
.hero-card-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.hero-stat-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Hero BG art */
.hero-bg-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.12);
}
.hero-circle-1 {
  width: 600px;
  height: 600px;
  right: -200px;
  top: -200px;
}
.hero-circle-2 {
  width: 300px;
  height: 300px;
  right: 50px;
  top: -50px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* STATS */
.stats {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}

/* SERVICES */
.services {
  padding: 6rem 2rem;
  background: var(--bg);
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(13, 43, 31, 0.1);
  border: 1px solid rgba(13, 43, 31, 0.1);
  border-radius: 16px;
  overflow: hidden;
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}
.service-card:hover {
  background: var(--white);
}
.service-icon {
  margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* DIFFERENCE */
.difference {
  padding: 6rem 2rem;
  background: var(--bg-alt);
}
.difference-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.difference-body {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
.difference-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.pillar-num {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 0.2rem;
  min-width: 28px;
}
.pillar h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.pillar p {
  font-size: 0.825rem;
  color: var(--text-light);
}
.testimonial {
  background: var(--dark);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
}
.quote-mark {
  font-family: 'Source Serif 4', serif;
  font-size: 5rem;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.testimonial p {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial cite {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.testimonial cite strong {
  font-size: 0.875rem;
  color: var(--white);
  font-style: normal;
}
.testimonial cite span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* CLOSING */
.closing {
  padding: 7rem 2rem;
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.08);
  top: 50%;
  transform: translate(-50%, -50%);
}
.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
}

/* FOOTER */
.footer {
  background: #071a11;
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}
.footer-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.footer-location {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .difference-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .stats-inner { flex-wrap: wrap; gap: 2rem; justify-content: center; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}