:root {
  --bg: #f5f0e8;
  --bg-alt: #ede7da;
  --green: #1e3a2f;
  --green-light: #2d5240;
  --charcoal: #1a1a1a;
  --charcoal-mid: #3a3a3a;
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --cream-dark: #e0d8c8;
  --white: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--cream-dark);
  opacity: 0.45;
  z-index: 0;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.hero-rule {
  width: 80px;
  height: 4px;
  background: var(--green);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--charcoal-mid);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-owners {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.hero-owners-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-owners-count {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.hero-divider {
  color: var(--cream-dark);
  font-size: 1.2rem;
}

/* ── SECTION SHARED ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 60px;
}

/* ── WHAT ── */
.what {
  background: var(--white);
  padding: 100px 8vw;
}

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

.what-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 20px;
}

.what-content p {
  font-size: 0.95rem;
  color: var(--charcoal-mid);
  margin-bottom: 28px;
}

.what-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.what-list li {
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}

.what-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.what-solution-text {
  font-size: 1.05rem;
  color: var(--charcoal);
  line-height: 1.75;
  font-weight: 400;
}

/* ── WHY ── */
.why {
  padding: 100px 8vw;
  background: var(--bg);
}

.why-header { margin-bottom: 64px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.why-card {
  padding: 40px;
  background: var(--white);
  border-left: 3px solid var(--green);
}

.why-card-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream-dark);
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── SERVICES ── */
.services {
  padding: 100px 8vw;
  background: var(--green);
}

.services-header { margin-bottom: 64px; }

.services .section-label { color: rgba(255,255,255,0.6); }
.services .section-title { color: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.service-item {
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,0.15);
}

.service-item h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.service-item p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── PRICING ── */
.pricing {
  padding: 100px 8vw;
  background: var(--white);
}

.pricing-header { margin-bottom: 60px; }

.pricing-note {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: -40px;
  margin-bottom: 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pricing-card {
  padding: 44px 36px;
  border: 2px solid var(--cream-dark);
  position: relative;
}

.pricing-card-featured {
  background: var(--green);
  border-color: var(--green);
}

.pricing-tier {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.pricing-card-featured .pricing-tier { color: rgba(255,255,255,0.6); }

.pricing-rate {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card-featured .pricing-rate { color: var(--white); }

.pricing-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.6); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 20px;
  position: relative;
}

.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.85); }

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.pricing-card-featured .pricing-features li::before { background: rgba(255,255,255,0.5); }

.pricing-best {
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--cream-dark);
  padding-top: 20px;
  font-style: italic;
}

.pricing-card-featured .pricing-best {
  color: rgba(255,255,255,0.5);
  border-top-color: rgba(255,255,255,0.15);
}

.pricing-cta {
  margin-top: 60px;
  text-align: center;
}

.pricing-cta p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 8vw;
  background: var(--bg-alt);
}

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

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 40px;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--charcoal-mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ── FOOTER ── */
.footer {
  padding: 60px 8vw 40px;
  background: var(--charcoal);
  color: var(--white);
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .hero { padding: 60px 6vw 80px; }
  .what { padding: 80px 6vw; }
  .what-inner { grid-template-columns: 1fr; gap: 48px; }
  .why { padding: 80px 6vw; }
  .why-grid { grid-template-columns: 1fr; }
  .services { padding: 80px 6vw; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 6vw; }
  .closing { padding: 80px 6vw; }
  .footer { padding: 48px 6vw 32px; }
}

/* ── INTAKE FORM ── */
.contact-form-wrap {
  margin-top: 60px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 8px;
  padding: 44px 40px;
}

.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}

.form-field .optional {
  font-weight: 400;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 6px;
  background: var(--bg);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.15s;
  outline: none;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);
  background: var(--white);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa;
}

.form-field input[type="number"] {
  -moz-appearance: textfield;
}

.form-field input[type="number"]::-webkit-inner-spin-button,
.form-field input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.form-submit {
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, opacity 0.15s;
  align-self: flex-start;
  margin-top: 8px;
}

.form-submit:hover:not(:disabled) {
  background: var(--green-light);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  font-size: 0.88rem;
  margin: 0;
  min-height: 1.4em;
}

.form-status-success {
  color: var(--green);
  font-weight: 500;
}

.form-status-error {
  color: #b44;
}

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