*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --terra: #C0634A; --sage: #7A9E7E; --cream: #F7F3EE; --cream-dark: #EDE8E1;
  --ink: #2B2420; --ink-light: #5C4E48; --radius: 6px;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--cream); color: var(--ink); font-size: 17px; line-height: 1.6; }

nav {
  position: sticky; top: 0; z-index: 1001;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: var(--cream); box-shadow: 0 1px 0 rgba(43,36,32,0.10);
}
nav .nav-logo img { height: 36px; display: block; }
nav ul { list-style: none; display: flex; gap: 28px; align-items: center; }
nav ul a {
  text-decoration: none; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); transition: color 0.2s;
}
nav ul a:hover { color: var(--terra); }
nav .nav-cta {
  background: linear-gradient(135deg, #C0634A 0%, #7A9E7E 100%);
  color: #fff !important; padding: 9px 20px; border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(192,99,74,0.4);
}
@media (max-width: 800px) { nav ul li:not(.keep) { display: none; } }

.hero {
  padding: 88px 40px 72px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.hero .inner { max-width: 880px; margin: 0 auto; text-align: center; }
.hero .label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--terra); margin-bottom: 14px;
}
h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(38px, 5.5vw, 60px); line-height: 1.04; margin-bottom: 18px;
}
.hero .sub { font-size: 18px; color: var(--ink-light); max-width: 620px; margin: 0 auto 30px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 22px; }
.btn-primary {
  display: inline-block; background: var(--terra); color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 16px 36px;
  border-radius: var(--radius); text-decoration: none;
  box-shadow: 0 4px 20px rgba(192,99,74,0.35); transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #a85540; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink) !important; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px; letter-spacing: 0.08em; padding: 16px 26px;
  border-radius: var(--radius); text-decoration: none;
  border: 1.5px solid rgba(43,36,32,0.25); transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--terra); background: rgba(192,99,74,0.06); }
.rating { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; }
.rating .g { width: 18px; height: 18px; }
.rating .stars { color: #FBBC04; font-size: 15px; letter-spacing: 2px; }
.rating .lbl { font-size: 14px; font-weight: 600; color: var(--ink-light); }

.trust-bar { background: #fff; border-bottom: 1px solid var(--cream-dark); }
.trust-bar-inner { max-width: 980px; margin: 0 auto; display: flex; flex-wrap: wrap; }
.trust-item { flex: 1 1 0; min-width: 160px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 18px 16px; border-right: 1px solid var(--cream-dark); }
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 20px; height: 20px; fill: none; stroke: var(--terra); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.trust-item span { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); line-height: 1.15; }
@media (max-width: 700px) { .trust-item { flex: 1 1 50%; border-bottom: 1px solid var(--cream-dark); } .trust-item:nth-child(even) { border-right: none; } }

section { padding: 72px 40px; }
.container { max-width: 980px; margin: 0 auto; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
  font-size: clamp(30px, 3.6vw, 42px); line-height: 1.05; margin-bottom: 16px;
}
.intro-copy p { color: var(--ink-light); margin-bottom: 18px; max-width: 760px; }

.svc { background: #fff; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.svc-card { background: var(--cream); border-radius: 10px; padding: 28px 24px; }
.svc-icon { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: rgba(192,99,74,0.12); color: var(--terra); }
.svc-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.svc-icon.sage { background: rgba(122,158,126,0.14); color: var(--sage); }
.svc-card .step-num { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--terra); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 16px; margin-bottom: 14px; }
.svc-card h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 21px; margin-bottom: 8px; }
.svc-card p { font-size: 15px; color: var(--ink-light); }

.price-tbl { background: #fff; border-radius: 10px; padding: 30px; max-width: 560px; margin: 36px auto 0; border: 1px solid rgba(43,36,32,0.06); }
.price-tbl h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 21px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid rgba(192,99,74,0.18); }
.price-tbl p { color: var(--ink-light); }
.p-note { font-size: 13px; color: var(--ink-light); margin-top: 16px; line-height: 1.5; }
.p-note a { color: var(--terra); font-weight: 600; text-decoration: none; }

.rev { background: var(--cream-dark); }
.rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.rev-card { background: #fff; border-radius: 10px; padding: 28px; border: 1px solid rgba(43,36,32,0.06); }
.rev-card .stars { color: var(--terra); font-size: 16px; letter-spacing: 3px; margin-bottom: 12px; }
.rev-card p { font-size: 15px; color: var(--ink-light); line-height: 1.65; margin-bottom: 14px; }
.rev-card .who { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; }
.rev-card .who span { font-family: 'Barlow', sans-serif; font-weight: 400; font-size: 12.5px; color: var(--ink-light); display: block; }

.faq-list { max-width: 720px; margin: 36px auto 0; }
.faq-item { background: #fff; border: 1.5px solid rgba(43,36,32,0.08); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-item[open] { border-color: var(--terra); }
.faq-item summary {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 18px;
  padding: 18px 52px 18px 22px; cursor: pointer; list-style: none; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--terra); }
.faq-item[open] summary::after { content: '−'; }
.faq-item .a { padding: 0 22px 20px; font-size: 15.5px; color: var(--ink-light); line-height: 1.65; }

.cta-band { background: var(--terra); text-align: center; }
.cta-band h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(30px, 4vw, 44px); color: #fff; margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 28px; }
.cta-band .btn-primary { background: #fff; color: var(--terra) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.18); }
.cta-band .btn-primary:hover { background: var(--cream); }

footer { background: var(--ink); color: rgba(255,255,255,0.55); padding: 40px; text-align: center; font-size: 13px; }
footer a { color: rgba(255,255,255,0.8); text-decoration: none; }
footer .links { margin-top: 10px; }
footer .links a { margin: 0 10px; color: rgba(255,255,255,0.45); }

.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; display: none;
  box-shadow: 0 -4px 20px rgba(43,36,32,0.18);
}
.mobile-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 17px;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 16px 0 calc(16px + env(safe-area-inset-bottom));
}
.mobile-cta-call { background: var(--ink); color: #fff; }
.mobile-cta-text { background: var(--terra); color: #fff; }
@media (max-width: 900px) {
  .mobile-cta-bar { display: flex; }
  footer { padding-bottom: 110px; }
  section { padding: 56px 24px; }
  .hero { padding: 64px 24px 56px; }
  .svc-grid, .rev-grid { grid-template-columns: 1fr; }
  nav { padding: 0 24px; }
}
