/* === TOKENS === */
:root {
  --cream: #F8F4EE;
  --cream-dark: #EDE8DC;
  --green-deep: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --amber: #C8893E;
  --amber-light: #E0A84B;
  --text-dark: #1A1A18;
  --text-mid: #4A4A45;
  --text-light: #8A8A82;
  --white: #FFFFFF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-phone:hover {
  color: var(--amber);
}

/* === HERO === */
.hero {
  padding: 80px 32px 96px;
}

.hero-content {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 460px;
}

/* HUD Image Block */
.hero-image-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-frame {
  width: 100%;
  max-width: 480px;
}

.hero-image-inner {
  background: var(--green-deep);
  border-radius: 16px;
  padding: 32px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-image-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.hud-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hud-card:nth-child(1) { background: rgba(200,137,62,0.2); border-color: rgba(200,137,62,0.4); }
.hud-card:nth-child(2) { background: rgba(64,145,108,0.2); border-color: rgba(64,145,108,0.4); }
.hud-card:nth-child(3) { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }
.hud-card:nth-child(4) { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.12); }

.hud-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
}

.hud-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hud-card:nth-child(1) .hud-value { color: var(--amber-light); }
.hud-card:nth-child(2) .hud-value { color: #74D4A8; }

.hero-caption {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
  font-style: italic;
}

/* === SHARED SECTION STYLES === */
.section-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* === WHAT YOU GET === */
.what-you-get {
  background: var(--white);
  padding: 96px 0;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  flex-shrink: 0;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.3;
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* === DIFFERENCE === */
.difference {
  background: var(--cream);
  padding: 96px 0;
}

.difference-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.diff-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.diff-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.diff-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.diff-stat-value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
}

.diff-stat-label {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.4;
}

/* === SERVICES === */
.services {
  background: var(--green-deep);
  padding: 96px 0;
}

.services .section-eyebrow {
  color: var(--amber-light);
}

.services .section-heading {
  color: var(--white);
}

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

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.service-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 8px;
}

.service-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.service-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  background: var(--cream-dark);
  padding: 96px 32px;
}

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

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin: 0 auto 48px;
  border-radius: 2px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 32px;
}

.closing-final {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--green-mid);
  font-weight: 500;
  margin-top: 40px;
}

/* === LEAD FORM === */
.lead-form {
  max-width: 600px;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-form-row--center {
  justify-content: center;
}

.lead-field {
  position: relative;
}

.lead-field--full {
  width: 100%;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: var(--text-light);
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--green-mid);
}

.lead-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A82' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.lead-field textarea {
  resize: vertical;
  min-height: 88px;
}

.lead-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  min-width: 220px;
}

.lead-submit:hover {
  background: var(--green-mid);
}

.lead-submit:active {
  transform: scale(0.98);
}

.lead-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.lead-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: lead-spin 0.6s linear infinite;
}

@keyframes lead-spin {
  to { transform: rotate(360deg); }
}

.lead-form-privacy {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
}

.lead-success {
  text-align: center;
  color: var(--green-mid);
  font-weight: 500;
  padding: 12px;
  background: rgba(64,145,108,0.08);
  border-radius: 8px;
  border: 1px solid rgba(64,145,108,0.2);
}

.lead-error {
  text-align: center;
  color: #b0392b;
  font-size: 0.9rem;
  padding: 12px;
  background: rgba(176,57,43,0.08);
  border-radius: 8px;
}

@media (max-width: 600px) {
  .lead-form-row { grid-template-columns: 1fr; }
  .lead-submit { width: 100%; }
}

/* === FOOTER === */
.site-footer {
  background: var(--green-deep);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.footer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 56px 24px 72px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-block { order: -1; }
  .hero-image-inner { aspect-ratio: 16/9; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .difference-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; gap: 24px; }
  .diff-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .diff-stat { width: calc(50% - 12px); }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .hud-card { padding: 14px 12px; }
  .hud-value { font-size: 1.2rem; }
  .diff-stat { width: 100%; }
}