:root {
  --ink: #221b24;
  --muted: #665d68;
  --cream: #fbf7f2;
  --rose: #bd6f7d;
  --rose-dark: #8c4351;
  --blush: #f2dfe1;
  --line: #e6dadd;
  --white: #fff;
  --shadow: 0 24px 70px rgba(74, 43, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font: 16px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--rose-dark); }
.wrap { width: min(1120px, calc(100% - 40px)); margin: auto; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 247, 242, .92);
  border-bottom: 1px solid rgba(230, 218, 221, .8);
  backdrop-filter: blur(12px);
}
nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--ink); font-size: 1.45rem; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.brand span { color: var(--rose); }
.navlinks { display: flex; align-items: center; gap: 22px; }
.navlinks a { color: var(--muted); font-size: .92rem; font-weight: 650; text-decoration: none; }
.navlinks a:hover { color: var(--rose-dark); }
.hero { padding: 100px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 70px; }
.eyebrow { color: var(--rose-dark); font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 760px; margin: 18px 0 24px; font-size: clamp(2.8rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { margin-bottom: 8px; font-size: 1.15rem; }
.lead { max-width: 650px; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-block; padding: 13px 20px; border-radius: 999px; background: var(--rose-dark); color: #fff; font-weight: 750; text-decoration: none; }
.button.secondary { border: 1px solid var(--line); background: transparent; color: var(--ink); }
.mock {
  padding: 22px;
  transform: rotate(2deg);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.mock-top { display: flex; justify-content: space-between; margin-bottom: 22px; }
.dot { display: inline-block; width: 9px; height: 9px; margin-right: 5px; border-radius: 50%; background: var(--blush); }
.appointment { margin: 10px 0; padding: 15px; border-left: 4px solid var(--rose); border-radius: 12px; background: #fcf5f5; }
.appointment strong, .appointment small { display: block; }
.appointment small { color: var(--muted); }
.section { padding: 78px 0; }
.section.alt { background: var(--white); }
.section-intro { max-width: 700px; margin-bottom: 36px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: var(--cream); }
.card p { margin-bottom: 0; color: var(--muted); }
.cta { margin: 70px auto; padding: 50px; border-radius: 30px; background: var(--ink); color: var(--white); }
.cta p { color: #d7ccd8; }
footer { padding: 34px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.legal { padding: 68px 0 90px; }
.legal article { max-width: 840px; padding: clamp(24px, 5vw, 58px); border: 1px solid var(--line); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.legal h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
.legal h2 { margin-top: 42px; font-size: 1.55rem; }
.legal li { margin-bottom: 8px; }
.notice { padding: 18px 20px; border-left: 4px solid var(--rose); border-radius: 10px; background: var(--blush); }
address { font-style: normal; }

@media (max-width: 780px) {
  .hero { padding-top: 64px; }
  .hero-grid, .grid { grid-template-columns: 1fr; }
  .mock { transform: none; }
  .navlinks a:not(.button) { display: none; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .cta { padding: 30px; }
}
