:root {
  --bg: #f7f4f0;
  --card: #fffdfb;
  --ink: #29241f;
  --muted: #6f655c;
  --accent: #9a6b4f;
  --chip: #efe8e0;
  --line: #e5ddd3;
  --btn: #29241f;
  --btn-ink: #fffdfb;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

.page {
  max-width: 520px;
  margin: 0 auto;
  padding: 28px 22px 40px;
}

body.card .page { padding-bottom: 150px; }

/* ---- Card header ---- */

.avatar {
  position: relative;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c4a890, #8a5a3e);
  color: #fffdfb;
  font-size: 56px;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 22px;
  overflow: hidden;
}

.avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center;
}

.title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
  text-align: center;
  margin-top: 6px;
}

.tagline {
  color: var(--muted);
  font-size: 17px;
  text-align: center;
  margin-top: 10px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.chip {
  background: var(--chip);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 14px;
  color: var(--ink);
}

/* ---- Contact rows ---- */

.rows { margin-top: 30px; }

.row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.row:last-child { border-bottom: none; }

.row .icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--btn);
  color: var(--btn-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.row .icon svg { width: 22px; height: 22px; }

.row > span:last-child { min-width: 0; }
.row .label { font-size: 17px; font-weight: 500; overflow-wrap: anywhere; }
.row .sub { font-size: 14px; color: var(--muted); }

/* ---- Save contact bar ---- */

.savebar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 22px calc(18px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 65%, rgba(247, 244, 240, 0));
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.savebtn {
  pointer-events: auto;
  display: block;
  width: 100%;
  max-width: 360px;
  background: var(--btn);
  color: var(--btn-ink);
  text-align: center;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 999px;
}

/* ---- Offers page ---- */

.back {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  padding: 12px;
  margin: -12px -12px 10px;
}

.offers-intro {
  color: var(--muted);
  font-size: 17px;
  margin-top: 10px;
}

.offer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  margin-top: 22px;
}

.offer .pub {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.offer h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
}

.offer .price {
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

.offer .fit {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
}

.offer ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.offer li { margin-top: 6px; font-size: 16px; }

.offer .cta {
  display: block;
  background: var(--btn);
  color: var(--btn-ink);
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 999px;
  margin-top: 18px;
}

.offers-footer {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-top: 34px;
}

.offers-footer a { color: var(--ink); }

footer.credit {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 40px;
}

/* ===================== Full site ===================== */

html { scroll-behavior: smooth; }

body.site { background: var(--bg); }

.section { scroll-margin-top: 80px; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 22px;
  background: rgba(247, 244, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}

.nav-links { display: none; gap: 22px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; }
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-block;
  background: var(--btn);
  color: var(--btn-ink);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  text-align: center;
}

.btn-small { font-size: 14px; padding: 9px 16px; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

/* Hero */
.hero {
  max-width: 1060px;
  margin: 0 auto;
  padding: 44px 22px 30px;
  display: flex;
  flex-direction: column-reverse;
  gap: 28px;
  align-items: center;
}

.hero-text { text-align: center; }

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 32px;
  line-height: 1.18;
  text-align: inherit;
}

.hero-sub {
  color: var(--muted);
  font-size: 18px;
  margin-top: 14px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 22px;
}

.hero-note { color: var(--muted); font-size: 14px; margin-top: 12px; }
.hero-note a { color: var(--ink); }

.hero-photo img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
  display: block;
}

/* Press strip */
.press-strip {
  text-align: center;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.press-strip a { color: var(--muted); text-decoration: none; font-size: 15px; }
.press-strip strong { color: var(--ink); }

/* Sections */
.section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 54px 22px 10px;
}

.section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-intro { color: var(--muted); font-size: 17px; margin-bottom: 10px; max-width: 640px; }
.section-close { color: var(--muted); font-size: 16px; margin: 22px 0 6px; }

.problems { list-style: none; max-width: 640px; }
.problems li {
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  position: relative;
}
.problems li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Service cards grid */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 10px; }
.offer h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
}

/* Steps */
.steps { max-width: 640px; counter-reset: step; list-style: none; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 0 14px 56px;
  font-size: 17px;
  border-bottom: 1px solid var(--line);
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--chip);
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
}

.chips-left { justify-content: flex-start; margin-top: 6px; }

/* About */
.about { display: flex; flex-direction: column; gap: 24px; }
.about-photo img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 18%;
}
.about-text p { font-size: 17px; margin-bottom: 14px; max-width: 640px; }

.quote {
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 18px;
  margin-top: 18px;
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  max-width: 560px;
}
.quote cite { display: block; margin-top: 8px; font-style: normal; font-size: 14px; color: var(--muted); }

/* FAQ */
.faq { max-width: 640px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  font-size: 17px;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
}
.faq summary:hover { color: var(--accent); }
.faq p { font-size: 16px; color: var(--muted); padding: 0 0 16px; }

/* Final CTA */
.final-cta { text-align: center; padding-bottom: 50px; }
.final-cta .section-intro { margin-left: auto; margin-right: auto; }
.final-cta .btn { margin-top: 8px; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 28px 22px 40px;
  color: var(--muted);
  font-size: 15px;
}
.footer a { color: var(--muted); }
.footer a:hover { color: var(--ink); }
.footer p { margin-bottom: 8px; }

/* Desktop */
@media (min-width: 760px) {
  .nav { padding: 14px 36px; }
  .nav-links { display: flex; }
  .hero {
    flex-direction: row;
    text-align: left;
    padding-top: 64px;
    gap: 48px;
  }
  .hero-text { text-align: left; flex: 1; }
  .hero h1 { font-size: 42px; }
  .hero-ctas { justify-content: flex-start; }
  .hero-photo img { width: 300px; height: 300px; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .about { flex-direction: row; align-items: flex-start; gap: 44px; }
  .about-photo { flex: none; }
  .section { padding-top: 64px; }
}
