:root {
  /* Colours – soft white & rosé */
  --white: #ffffff;
  --cream: #fff8f6;
  --blush: #fdeef1;
  --blush-deep: #f9dfe5;
  --rose: #d98ba0;
  --rose-mid: #c96a83;
  --rose-deep: #b14a63;
  --rose-ink: #8a3a4d;
  --ink: #2c2421;
  --ink-soft: #6c5f5a;
  --line: #f0e2e0;

  --shadow-sm: 0 2px 8px rgba(140, 60, 80, 0.06);
  --shadow-md: 0 14px 40px -12px rgba(140, 60, 80, 0.18);
  --shadow-lg: 0 30px 70px -24px rgba(140, 60, 80, 0.28);

  --radius: 22px;
  --radius-lg: 34px;
  --maxw: 1180px;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 1.125rem;      /* 18px base – senior friendly */
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; }

a { color: inherit; }

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--rose); border-radius: 2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 1.05rem;
  padding: 16px 28px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--rose-deep); color: #fff; box-shadow: 0 10px 24px -8px rgba(177,74,99,.6); }
.btn-primary:hover { background: var(--rose-ink); transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(177,74,99,.6); }
.btn-ghost { background: #fff; color: var(--rose-deep); border-color: var(--blush-deep); }
.btn-ghost:hover { border-color: var(--rose); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 10px 24px -8px rgba(37,211,102,.5); }
.btn-wa:hover { background: #1cb955; transform: translateY(-2px); }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 90px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--rose-deep);
  display: grid; place-items: center; color: #fff; flex: none;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; font-weight: 600; line-height: 1; color: var(--ink); }
.brand-name span { display: block; font-family: var(--font-body); font-style: normal; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 1rem; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--rose-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; color: var(--ink); }
.nav-phone svg { width: 18px; height: 18px; color: var(--rose-deep); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: var(--ink); }
.menu-toggle svg { width: 30px; height: 30px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(720px 520px at 78% 8%, var(--blush) 0%, transparent 60%),
    radial-gradient(620px 480px at 8% 92%, var(--cream) 0%, transparent 55%),
    #fff;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.3rem); margin: 22px 0 0; }
.hero h1 em { font-style: italic; color: var(--rose-deep); }
.hero .lead { font-size: 1.28rem; color: var(--ink-soft); margin-top: 24px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .98rem; }
.hero-trust .item svg { width: 22px; height: 22px; color: var(--rose-deep); flex: none; }

/* Portrait */
.portrait-wrap { position: relative; }
.portrait {
  position: relative; aspect-ratio: 4/5; border-radius: 130px 130px 28px 28px;
  background:
    linear-gradient(160deg, var(--blush) 0%, var(--blush-deep) 100%);
  box-shadow: var(--shadow-lg); display: grid; place-items: center; text-align: center;
  border: 8px solid #fff; overflow: hidden;
}
.portrait .ph { color: var(--rose-mid); padding: 30px; }
.portrait .ph svg { width: 90px; height: 90px; margin: 0 auto 14px; opacity: .8; }
.portrait .ph strong { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--rose-deep); }
.portrait .ph small { font-size: .9rem; }
.badge-float {
  position: absolute; background: #fff; border-radius: 20px; padding: 11px 15px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px;
}
.badge-float .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--blush); display: grid; place-items: center; color: var(--rose-deep); flex: none; }
.badge-float .ic svg { width: 24px; height: 24px; }
.badge-float b { display: block; font-size: 1rem; line-height: 1.2; }
.badge-float small { display: block; color: var(--ink-soft); font-size: .82rem; line-height: 1.2; }
.badge-1 { bottom: 26px; left: -32px; }
.badge-2 { top: 30px; right: -26px; }

/* ---------- Highlight band (§45b) ---------- */
.band {
  background: linear-gradient(120deg, var(--rose-deep) 0%, var(--rose-ink) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 46px 50px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.band::after { content:""; position:absolute; right:-60px; top:-60px; width:260px; height:260px; border-radius:50%; background:rgba(255,255,255,.08); }
.band .big { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.4rem); line-height: 1; }
.band .big span { font-size: 1rem; font-family: var(--font-body); display:block; font-weight:600; letter-spacing:.1em; text-transform:uppercase; opacity:.85; margin-bottom:6px; }
.band h2 { font-size: 1.7rem; margin-bottom: 8px; }
.band p { opacity: .92; max-width: 560px; }
.band .btn { flex: none; }

/* ---------- Sections ---------- */
section { scroll-margin-top: 90px; }
.section { padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); margin: 16px 0 18px; }
.section-head p { font-size: 1.18rem; color: var(--ink-soft); }

.alt { background: linear-gradient(180deg, var(--cream) 0%, #fff 100%); }

/* Services */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 32px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blush-deep); }
.card .ic { width: 64px; height: 64px; border-radius: 18px; background: var(--blush); display: grid; place-items: center; color: var(--rose-deep); margin-bottom: 22px; }
.card .ic svg { width: 32px; height: 32px; }
.card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); margin-bottom: 18px; }
.card ul { list-style: none; }
.card li { position: relative; padding-left: 28px; margin-bottom: 9px; color: var(--ink); }
.card li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 16px; height: 16px;
  background: var(--rose-deep); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/12px no-repeat;
}

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.about-photo {
  aspect-ratio: 1/1; border-radius: var(--radius-lg); border: 8px solid #fff;
  background: linear-gradient(160deg, var(--blush) 0%, var(--blush-deep) 100%);
  box-shadow: var(--shadow-lg); display: grid; place-items: center; text-align: center;
}
.about-photo .ph { color: var(--rose-mid); }
.about-photo .ph svg { width: 80px; height: 80px; margin: 0 auto 12px; opacity: .8; }
.about-photo .ph strong { display: block; font-family: var(--font-display); color: var(--rose-deep); font-size: 1.2rem; }
.about-photo .ph small { font-size: .85rem; }
.about-grid h2 { font-size: clamp(2rem,3.6vw,2.9rem); margin: 14px 0 20px; }
.ph-note { color: var(--rose-deep); font-weight: 600; background: var(--blush); border-radius: 12px; padding: 14px 18px; display: inline-block; font-size: .95rem; margin: 6px 0 22px; }
.about-grid p.body { color: var(--ink-soft); margin-bottom: 18px; }
.creds { margin-top: 30px; border-top: 1px solid var(--line); padding-top: 26px; }
.creds h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: 16px; }
.timeline { list-style: none; }
.timeline li { position: relative; padding-left: 26px; margin-bottom: 14px; }
.timeline li::before { content:""; position:absolute; left:0; top:11px; width:10px; height:10px; border-radius:50%; background:var(--rose); }
.timeline b { font-weight: 600; }
.timeline small { color: var(--ink-soft); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; position: relative; }
.step .num {
  counter-increment: step; font-family: var(--font-display); font-size: 2.6rem; color: var(--rose);
  line-height: 1; margin-bottom: 14px; display:block;
}
.step .num::before { content: "0" counter(step); }
.step h3 { font-size: 1.4rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); }

/* Pricing */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
.price-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 46px;
  box-shadow: var(--shadow-md);
}
.price-card .tag { color: var(--rose-deep); font-weight:700; letter-spacing:.04em; }
.price-amount { font-family: var(--font-display); font-size: 4.4rem; color: var(--ink); line-height: 1; margin: 16px 0 6px; }
.price-amount small { font-size: 1.2rem; color: var(--ink-soft); font-family: var(--font-body); }
.price-card p { color: var(--ink-soft); margin-bottom: 26px; }
.price-card ul { list-style:none; }
.price-card li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.price-card li::before {
  content:""; position:absolute; left:0; top:8px; width:18px; height:18px; background: var(--rose-deep); border-radius:50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/13px no-repeat;
}
.price-note {
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  border-radius: var(--radius-lg); padding: 46px; display: flex; flex-direction: column; justify-content: center;
}
.price-note .ic { width: 58px; height: 58px; border-radius: 16px; background:#fff; display:grid; place-items:center; color: var(--rose-deep); margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.price-note .ic svg { width: 30px; height: 30px; }
.price-note h3 { font-size: 1.7rem; margin-bottom: 12px; color: var(--ink); }
.price-note p { color: var(--rose-ink); }
.price-note .hl { font-family: var(--font-display); font-size: 2rem; color: var(--rose-deep); display:block; margin: 14px 0 4px; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
details.qa { border: 1px solid var(--line); border-radius: 18px; background:#fff; margin-bottom: 16px; overflow: hidden; transition: box-shadow .2s, border-color .2s; }
details.qa[open] { box-shadow: var(--shadow-md); border-color: var(--blush-deep); }
details.qa summary {
  list-style: none; cursor: pointer; padding: 24px 28px; font-family: var(--font-display);
  font-size: 1.28rem; font-weight: 500; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary .chev { flex:none; width: 26px; height: 26px; border-radius: 50%; background: var(--blush); display: grid; place-items: center; color: var(--rose-deep); transition: transform .25s, background .25s; }
details.qa[open] summary .chev { transform: rotate(45deg); background: var(--rose-deep); color:#fff; }
details.qa .ans { padding: 0 28px 26px; color: var(--ink-soft); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.contact-info h2 { font-size: clamp(2rem,3.6vw,2.9rem); margin: 14px 0 18px; }
.contact-info > p { color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 30px; }
.contact-list { list-style:none; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-list .ic { width: 50px; height: 50px; border-radius: 14px; background: var(--blush); color: var(--rose-deep); display:grid; place-items:center; flex:none; }
.contact-list .ic svg { width: 24px; height: 24px; }
.contact-list b { display:block; font-size: .82rem; letter-spacing:.1em; text-transform:uppercase; color: var(--ink-soft); font-weight: 700; }
.contact-list a, .contact-list span { font-size: 1.18rem; font-weight: 600; text-decoration: none; color: var(--ink); }
.contact-list a:hover { color: var(--rose-deep); }

form.card-form { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 20px; }
.field label { display:block; font-weight: 600; margin-bottom: 8px; font-size: .98rem; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 14px; background: var(--cream);
  transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px var(--blush); background:#fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.consent { display:flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); margin-bottom: 22px; }
.consent input { margin-top: 5px; width: 20px; height: 20px; accent-color: var(--rose-deep); flex:none; }
form .btn { width: 100%; }
.form-hint { text-align:center; font-size:.88rem; color: var(--ink-soft); margin-top: 14px; }

/* Footer */
footer { background: var(--ink); color: #f3ebe9; padding: 70px 0 30px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-brand { display:flex; align-items:center; gap: 12px; margin-bottom: 18px; }
.foot-brand .brand-mark { width: 42px; height: 42px; }
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-name span { color: var(--rose); }
footer p { color: #c9bbb7; max-width: 340px; }
footer h4 { font-family: var(--font-body); font-size: .82rem; letter-spacing:.14em; text-transform:uppercase; color: var(--rose); margin-bottom: 18px; }
footer ul { list-style:none; }
footer ul li { margin-bottom: 12px; }
footer ul a { color:#d8cdca; text-decoration:none; transition: color .2s; }
footer ul a:hover { color:#fff; }
.foot-bottom { display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: .9rem; color:#a99f9c; }
.foot-bottom a { color:#a99f9c; text-decoration: none; }
.foot-bottom a:hover { color:#fff; }

/* Legal pages */
.legal { padding: 70px 0 90px; background: var(--cream); }
.legal .back-link { display:inline-flex; align-items:center; gap: 8px; color: var(--rose-deep); font-weight: 600; text-decoration: none; margin-bottom: 26px; }
.legal .back-link:hover { text-decoration: underline; }
.legal .back-link svg { width: 18px; height: 18px; }
.legal-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 44px; max-width: 860px; margin: 0 auto 28px; box-shadow: var(--shadow-sm); }
.legal-card h1 { font-size: 2.4rem; margin-bottom: 8px; }
.legal-card h2 { font-size: 2rem; margin-bottom: 8px; }
.legal-card h3 { font-family: var(--font-body); font-size: 1.05rem; margin: 22px 0 6px; color: var(--ink); font-weight: 700; }
.legal-card p, .legal-card li { color: var(--ink-soft); font-size: 1rem; }
.legal-card ul { margin-left: 20px; }
.pill-ph { display:inline-block; background: var(--blush); color: var(--rose-deep); font-weight:700; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px; }

/* Floating WhatsApp */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 62px; height: 62px; border-radius: 50%; background: #25D366; color:#fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px -6px rgba(37,211,102,.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.wa-float.show { opacity: 1; visibility: visible; pointer-events: auto; animation: floaty 3s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 34px; height: 34px; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-6px);} }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.hero .reveal { transition-delay: var(--d, 0s); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .portrait-wrap { max-width: 420px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards, .steps { grid-template-columns: 1fr 1fr; }
  .price-wrap, .contact-grid { grid-template-columns: 1fr; }
  .band { grid-template-columns: 1fr; text-align: center; gap: 22px; }
  .band p { margin: 0 auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 920px) {
  .nav-links, .nav-phone span { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 90px; left: 0; right: 0;
    background:#fff; padding: 20px 24px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
  }
  .cards, .steps, .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .band { padding: 36px 26px; }
  .price-card, .price-note, form.card-form, .legal-card { padding: 30px 24px; }
  .badge-1 { left: 0; bottom: 12px; }
  .badge-2 { right: 0; top: 14px; }
  .foot-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-phone, .nav-cta .btn { display: none; }
  .brand-name { font-size: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
