:root {
  --bg: #f6f6f1;
  --surface: #ffffff;
  --surface-soft: #eef1e5;
  --primary: #a7b77a;
  --primary-dark: #6b4f2a;
  --text: #3b2f1d;
  --muted: #625d54;
  --border: #d9dccf;
  --shadow: 0 18px 40px rgba(77, 63, 34, 0.10);
  --radius: 22px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: linear-gradient(180deg, #fcfefd 0%, var(--bg) 100%);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: #1e2f23;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

h4 {
  font-size: 1.05rem;
}

p,
li,
input,
select,
textarea,
label {
  font-size: 1rem;
  line-height: 1.65;
}

p { margin: 0 0 16px; }

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: #e7f3ea;
  color: var(--primary-dark);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 76px;
  height: auto;
  max-height: 76px;
  object-fit: contain;
  border-radius: 14px;
}

.brand-text small {
  color: var(--muted);
  display: block;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-name {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 999px;
  transition: 0.2s ease;
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-menu { margin-left: auto; }

.site-menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-menu li { margin: 0; padding: 0; }

.site-menu a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  display: inline-block;
  padding: 8px 10px;
}

.site-menu a.active,
.site-menu a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--primary-dark);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover { transform: translateY(-1px); }

.btn-secondary {
  background: white;
  border-color: var(--border);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.hero { padding: 72px 0 40px; }
.hero-upgraded { padding: 72px 0 56px; }

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 62ch;
}

.hero-side { width: 100%; }

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #e6f4ea;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 18px;
}

.hero p,
.page-hero p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f1 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.hero-feature-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.mini-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-badge {
  background: #e6f4ea;
  color: var(--primary-dark);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-points,
.hero-points-upgraded {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.hero-point-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(77, 63, 34, 0.06);
  width: 100%;
  min-width: 0;
}

.hero-point-card strong {
  color: #1e2f23;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.hero-point-card span {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section { padding: 44px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.section-head p,
.card p,
.intro-strip-card p,
.home-cta-card p,
.contact-band p {
  max-width: 62ch;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cards-2, .cards-3, .split {
  display: grid;
  gap: 22px;
}

.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.split { grid-template-columns: 1fr 1fr; align-items: stretch; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.card h3 {
  letter-spacing: -0.015em;
}

.card p {
  font-size: 0.98rem;
  line-height: 1.62;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e8f4ec;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card, .benefit-card, .process-card { height: 100%; }
.service-card { display: flex; flex-direction: column; }

.text-link {
  margin-top: auto;
  color: var(--primary-dark);
  font-weight: 700;
}

.section-soft {
  background: linear-gradient(180deg, #fafbf8 0%, #f2f5ed 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-intro-strip { padding-top: 10px; }

.intro-strip-card {
  background: linear-gradient(135deg, #edf7f0, #f8fbf7);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fbfdfb;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
}

.check {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #dff0e5;
  color: var(--primary-dark);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  margin-top: 2px;
}

.step-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(145deg, #8dcba9, #6daa83);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.page-hero { padding: 64px 0 24px; }

.band {
  background: linear-gradient(180deg, #fafbf8 0%, #f2f5ed 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.photo-frame {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f3 100%);
  border: 1px solid var(--border);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.profile-photo,
.photo-fallback {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  background: #ecefe3;
}

.photo-fallback {
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 2px dashed #cfd4c0;
  font-weight: 700;
  text-align: center;
  padding: 24px;
}

.quote-card {
  background: #f9faf6;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.quote-card p { font-style: italic; }

.price {
  font-family: Georgia, serif;
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-band {
  background: linear-gradient(135deg, #edf7f0, #f9fcfa);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 700;
  color: #1e2f23;
  font-size: 0.95rem;
  line-height: 1.4;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #cfe0d3;
  background: white;
  font: inherit;
  color: var(--text);
}

input::placeholder,
textarea::placeholder {
  color: #9a968d;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.home-cta-section {
  padding-top: 18px;
  padding-bottom: 58px;
}

.home-cta-card {
  background: linear-gradient(135deg, #1f3326, #324d3a);
  color: white;
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.home-cta-card h2,
.home-cta-card h3,
.home-cta-card .eyebrow {
  color: white;
}

.home-cta-card .eyebrow {
  background: rgba(255,255,255,0.12);
}

.home-cta-card .muted,
.home-cta-card p {
  color: rgba(255,255,255,0.84);
}

.home-cta-card .btn-secondary {
  background: white;
  color: var(--primary-dark);
}

.nav-cta { display: inline-flex; }

footer {
  padding: 30px 0 50px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.contact-form label {
  color: #ffffff;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  color: #000000;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #f47835;
  box-shadow: 0 0 0 2px rgba(244, 120, 53, 0.2);
}

.contact-form textarea {
  resize: vertical;
}

@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 24px; }
  .intro-strip-card,
  .home-cta-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 820px) {
  header { position: relative; top: auto; }

  .topbar .container {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
  }

  .brand {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .brand-logo {
    width: 62px;
    max-height: 62px;
    height: auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-menu {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
  }

  .site-menu.open { display: block; }

  .site-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 12px 0 0;
  }

  .site-menu li { width: 100%; }

  .site-menu a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    text-align: center;
  }

  .nav-cta { display: none; }

  .hero-layout { display: block; }

  .hero-copy,
  .hero-side,
  .hero-feature-card,
  .hero-point-card {
    width: 100%;
    max-width: 100%;
  }

  .hero-side { margin-top: 20px; }

  .hero-points,
  .hero-points-upgraded {
    gap: 12px;
    width: 100%;
  }

  .cards-2,
  .cards-3,
  .split,
  .contact-band { grid-template-columns: 1fr; }

  .trust-row {
    flex-direction: column;
    gap: 8px;
  }

  .trust-pill {
    width: 100%;
    text-align: center;
  }

  .hero-upgraded { padding: 52px 0 36px; }
}

@media (max-width: 540px) {
  .container { width: min(var(--container), calc(100% - 20px)); }

  .brand-name { font-size: 1.05rem; }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-actions .btn,
  .home-cta-card .btn {
    width: 100%;
  }
}

/* =========================
   PREMIUM FORM REFINEMENT
   ========================= */

.contact-form,
form {
  gap: 18px;
}

.contact-form label {
  color: #f7f7f2;
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(107, 79, 42, 0.14);
  background: rgba(255, 255, 255, 0.98);
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: inset 0 1px 2px rgba(31, 41, 55, 0.03);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
input::placeholder,
textarea::placeholder {
  color: #98a1ae;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
input:hover,
select:hover,
textarea:hover {
  border-color: rgba(107, 79, 42, 0.24);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #a7b77a;
  box-shadow:
    0 0 0 4px rgba(167, 183, 122, 0.18),
    inset 0 1px 2px rgba(31, 41, 55, 0.03);
  transform: translateY(-1px);
}

.contact-form textarea,
textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button,
form button {
  margin-top: 6px;
}