:root {
  --teal-dark: #1f4b46;
  --teal: #2f6b63;
  --teal-light: #e8f2f0;
  --cream: #faf7f2;
  --gold: #c98a3e;
  --text: #2a2a28;
  --muted: #6b6b66;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* Header */
header.site {
  background: var(--white);
  border-bottom: 1px solid #e7e0d4;
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--teal-dark);
}
.logo .badge {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.5px;
}
nav.links { display: flex; gap: 26px; font-size: 0.95rem; font-weight: 600; }
nav.links a { color: var(--text); opacity: 0.85; }
nav.links a:hover, nav.links a.active { color: var(--teal-dark); opacity: 1; }
.cta-btn {
  background: var(--gold);
  color: white !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.cta-btn:hover { background: #b57a34; }

@media (max-width: 780px) {
  nav.links { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: white;
  padding: 40px 24px 56px;
  text-align: center;
}
.hero h1 { font-size: 2.2rem; margin: 0 0 14px; font-weight: 800; line-height: 1.15; }
.hero p.lead { font-size: 1.05rem; opacity: 0.92; max-width: 560px; margin: 0 auto 22px; }
.hero-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 560px; margin: 0 auto 24px; }
.hero-ba-photo { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.hero-ba-photo img { width: 100%; height: 200px; object-fit: cover; display: block; }
.hero-ba-photo .tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(20,30,28,0.75); color: white; font-size: 0.68rem; font-weight: 700;
  padding: 4px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-reassurance { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin: 16px auto 0; max-width: 480px; }
@media (max-width: 480px) {
  .hero-ba-photo img { height: 150px; }
}
.btn-primary {
  background: var(--gold); color: white; padding: 14px 28px; border-radius: 999px;
  font-weight: 700; display: inline-block;
}
.btn-secondary {
  background: rgba(255,255,255,0.12); color: white; padding: 14px 28px; border-radius: 999px;
  font-weight: 700; border: 1px solid rgba(255,255,255,0.5); display: inline-block;
}
.btn-primary:hover { background: #b57a34; }
.btn-secondary:hover { background: rgba(255,255,255,0.22); }

/* Page header (non-home) */
.page-header {
  background: var(--teal-light);
  padding: 50px 24px;
  text-align: center;
  border-bottom: 1px solid #dfe9e6;
}
.page-header h1 { color: var(--teal-dark); font-size: 2rem; margin: 0 0 10px; }
.page-header p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* Sections */
section { padding: 60px 24px; }
section.alt { background: var(--teal-light); }
h2.section-title { color: var(--teal-dark); font-size: 1.7rem; margin: 0 0 8px; text-align: center; }
p.section-sub { text-align: center; color: var(--muted); max-width: 600px; margin: 0 auto 40px; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 820px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(31,75,70,0.07);
  border: 1px solid #eee4d3;
}
.card h3 { color: var(--teal-dark); margin: 0 0 10px; font-size: 1.15rem; }
.card p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.card .icon { font-size: 1.8rem; margin-bottom: 12px; }

/* Before/after */
.ba-item {
  background: white; border-radius: 14px; overflow: hidden;
  border: 1px solid #eee4d3; box-shadow: 0 4px 18px rgba(31,75,70,0.07);
}
.ba-strip { display: grid; grid-template-columns: 1fr 1fr; }
.ba-half { padding: 40px 16px; text-align: center; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.ba-half.before { background: #efe9df; color: #8a7f6a; }
.ba-half.after { background: var(--teal-light); color: var(--teal-dark); }

.ba-photo { position: relative; overflow: hidden; }
.ba-photo img { width: 100%; height: 210px; object-fit: cover; display: block; }
.ba-photo .tag {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(20,30,28,0.75); color: white; font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.5px;
}
.ba-body { padding: 22px; }
.ba-body h3 { color: var(--teal-dark); margin: 0 0 8px; }
.ba-body p { color: var(--muted); margin: 0; font-size: 0.92rem; }
.ba-tag {
  display: inline-block; background: var(--teal-light); color: var(--teal-dark);
  font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; margin-top: 10px;
}

/* Areas */
.area-pill {
  display: inline-block; background: white; border: 1px solid #dfe9e6; color: var(--teal-dark);
  padding: 10px 18px; border-radius: 999px; margin: 6px; font-weight: 600; font-size: 0.9rem;
}
.area-list { text-align: center; margin: 30px 0; }

/* FAQ */
details.faq {
  background: white; border: 1px solid #eee4d3; border-radius: 12px;
  padding: 18px 22px; margin-bottom: 14px;
}
details.faq summary {
  cursor: pointer; font-weight: 700; color: var(--teal-dark); font-size: 1rem;
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: "+"; float: right; font-weight: 800; }
details.faq[open] summary::after { content: "\2212"; }
details.faq p { margin: 14px 0 0; color: var(--muted); }

/* Steps */
.steps { counter-reset: step; }
.step {
  display: flex; gap: 20px; margin-bottom: 26px; align-items: flex-start;
}
.step .num {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal-dark); color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 800;
}
.step h3 { margin: 0 0 6px; color: var(--teal-dark); font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.94rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info .item { margin-bottom: 22px; }
.contact-info .label { font-weight: 700; color: var(--teal-dark); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-info .value { font-size: 1.05rem; }
form.contact-form { background: white; border-radius: 14px; padding: 30px; border: 1px solid #eee4d3; }
form.contact-form label { display: block; font-weight: 700; font-size: 0.85rem; color: var(--teal-dark); margin: 14px 0 6px; }
form.contact-form input, form.contact-form select, form.contact-form textarea {
  width: 100%; padding: 11px 14px; border-radius: 8px; border: 1px solid #ddd; font-size: 0.95rem; font-family: inherit;
}
form.contact-form button {
  margin-top: 22px; background: var(--gold); color: white; border: none; padding: 14px 24px;
  border-radius: 999px; font-weight: 700; font-size: 1rem; cursor: pointer; width: 100%;
}
form.contact-form button:hover { background: #b57a34; }

/* CTA band */
.cta-band {
  background: var(--teal-dark); color: white; text-align: center; padding: 60px 24px;
}
.cta-band h2 { font-size: 1.8rem; margin: 0 0 14px; }
.cta-band p { opacity: 0.9; max-width: 560px; margin: 0 auto 26px; }

/* Footer */
footer.site {
  background: #16332f; color: #cfe0dc; padding: 50px 24px 26px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto; }
.footer-grid h4 { color: white; font-size: 0.95rem; margin: 0 0 14px; }
.footer-grid a, .footer-grid p { color: #a8c2bc; font-size: 0.9rem; display: block; margin-bottom: 8px; }
.footer-bottom {
  text-align: center; color: #7d9994; font-size: 0.8rem; margin-top: 30px; padding-top: 20px;
  border-top: 1px solid #244843; max-width: 1100px; margin-left: auto; margin-right: auto;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; } }
