:root {
  --bark: #2c1e12;
  --bark-2: #4a3620;
  --gold: #c8973f;
  --gold-light: #e6c374;
  --olive: #6b7a4f;
  --cream: #faf6ef;
  --cream-2: #f1e9da;
  --ink: #211a10;
  --muted: #6b6154;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(44, 30, 18, 0.08);
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--bark);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--bark);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; color: var(--ink); }

a { color: inherit; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--bark); color: var(--white); }
.btn-primary:hover { background: var(--bark-2); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--bark); color: var(--bark); background: transparent; }
.btn-outline:hover { background: var(--bark); color: var(--white); }
.btn-ghost { background: transparent; color: var(--bark); border-color: transparent; }
.btn-ghost:hover { background: var(--cream-2); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--bark);
  text-decoration: none;
}
.brand-mark { border-radius: 8px; object-fit: cover; }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  color: var(--bark-2);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.main-nav a:hover { color: var(--bark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link { display: inline-flex; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--bark);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 72px 0 64px;
  background: radial-gradient(circle at 85% 10%, var(--cream-2), transparent 55%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 0.4em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 22px;
}
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.hero-art {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

/* Section titles */
.section-title {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 44px;
}

section { padding: 80px 0; }
.services { background: var(--white); }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--olive);
  text-decoration: none;
}
.card-link:hover { text-decoration: underline; }

/* Plans */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  background: var(--bark);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 32px;
}
.plan-card h3 { color: var(--white); }
.plan-price {
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 18px;
}
.plan-price strong { font-size: 1.8rem; }
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
  color: #e9e2d3;
}
.plan-list li { padding-left: 20px; position: relative; }
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 700;
}
.plan-note {
  font-size: 0.85rem;
  color: #b9ae98;
  margin: 0;
}
.plan-card .card-link { color: var(--gold-light); }

/* Why */
.why { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.why .section-title, .why .section-sub { text-align: left; margin: 0 0 0.5em; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.why-item h3 { font-size: 1.05rem; }
.why-item p { color: var(--muted); font-size: 0.95rem; }

/* FAQ */
.faq-groups {
  display: grid;
  gap: 40px;
}
.faq-group-title {
  font-size: 1.2rem;
  color: var(--olive);
  border-bottom: 2px solid var(--cream-2);
  padding-bottom: 10px;
  margin-bottom: 6px;
}
.accordion-item {
  border-bottom: 1px solid var(--cream-2);
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.accordion-trigger::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.accordion-trigger[aria-expanded="true"]::after {
  transform: rotate(45deg);
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion-panel p {
  padding: 0 4px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* CTA */
.cta {
  background: var(--bark);
  color: var(--cream);
  text-align: center;
}
.cta h2 { color: var(--white); }
.cta p { color: #d8cdb8; }
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.cta .btn-outline { border-color: var(--cream); color: var(--cream); }
.cta .btn-outline:hover { background: var(--cream); color: var(--bark); }
.cta .btn-primary { background: var(--gold); color: var(--bark); }
.cta .btn-primary:hover { background: var(--gold-light); }

/* Footer */
.site-footer {
  background: var(--cream-2);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { font-size: 1.05rem; }
.footer-inner p { margin: 0; font-size: 0.85rem; color: var(--muted); }
.footer-links { display: flex; gap: 18px; font-size: 0.85rem; }
.footer-links a { text-decoration: none; color: var(--bark-2); font-weight: 500; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 320px; margin: 0 auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .header-inner { position: relative; }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--cream-2);
  }
}
