@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #16233A;
  --ink-2: #3A4557;
  --muted: #737F92;
  --paper: #F4F6F8;
  --white: #FFFFFF;
  --accent: #16705C;
  --accent-deep: #0E5344;
  --accent-soft: #E3EFEA;
  --line: #DDE3E9;
  --radius: 10px;
  --wrap: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Bricolage Grotesque', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0 0 1.1rem; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--accent);
  display: grid;
  place-items: center;
  flex: none;
}
.brand-mark span {
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid var(--white);
  border-radius: 50% 50% 50% 2px;
}

.nav {
  display: flex;
  gap: 26px;
  font-size: 15px;
}
.nav a { color: var(--ink-2); }

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

/* ---------- hero ---------- */

.hero {
  padding: 88px 0 76px;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.5rem);
  margin-bottom: 22px;
}

.hero-lede {
  font-size: 19px;
  color: var(--ink-2);
  max-width: 46ch;
  margin-bottom: 28px;
}

.pill {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 13.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.btn {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--ink);
}
.btn:hover { background: #0E1930; text-decoration: none; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  margin-left: 10px;
}
.btn-ghost:hover { background: var(--paper); }

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

/* ---------- appointment column (hero visual) ---------- */

.agenda {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}

.agenda-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}
.agenda-head strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 17px;
}
.agenda-head span { font-size: 14px; color: var(--muted); }

.slot {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.slot:last-child { border-bottom: 0; }

.slot time {
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  padding-top: 1px;
}
.slot b {
  display: block;
  font-weight: 500;
  font-size: 15.5px;
}
.slot small {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 1px;
}

.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 6px;
}
.tag-paid { background: var(--accent-soft); color: var(--accent-deep); }
.tag-due { background: #FDECEC; color: #A33232; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero { padding: 56px 0 52px; }
}

/* ---------- sections ---------- */

section { padding: 76px 0; }
section.tint { background: var(--paper); border-block: 1px solid var(--line); }

.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.2rem);
  max-width: 22ch;
  margin-bottom: 40px;
}

.feature {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.feature:last-of-type { border-bottom: 1px solid var(--line); }
.feature h3 { font-size: 1.25rem; }
.feature p { margin: 0; color: var(--ink-2); }

@media (max-width: 760px) {
  .feature { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- pricing ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
}
.plan.best {
  border-color: var(--accent);
  border-width: 1.5px;
}

.plan-term { font-size: 15px; color: var(--muted); margin-bottom: 8px; }
.plan-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.plan-per { font-size: 14.5px; color: var(--muted); margin-top: 4px; }
.plan-flag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

@media (max-width: 780px) {
  .plans { grid-template-columns: 1fr; }
}

.fineprint {
  margin-top: 26px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 68ch;
}

/* ---------- faq ---------- */

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
  flex: none;
}
.faq details[open] summary::after { content: '–'; }
.faq details p {
  margin: 12px 0 0;
  color: var(--ink-2);
  max-width: 72ch;
}

/* ---------- footer ---------- */

.site-foot {
  border-top: 1px solid var(--line);
  padding: 44px 0 56px;
  font-size: 15px;
  color: var(--muted);
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-links a { color: var(--ink-2); }

/* ---------- legal pages ---------- */

.doc { padding: 60px 0 90px; }
.doc-inner { max-width: 720px; margin: 0 auto; }
.doc h1 { font-size: clamp(2rem, 4.4vw, 2.6rem); margin-bottom: 10px; }
.doc .updated { color: var(--muted); font-size: 15px; margin-bottom: 44px; }
.doc h2 {
  font-size: 1.3rem;
  margin: 44px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.doc h3 { font-size: 1.05rem; margin: 26px 0 8px; }
.doc ul { padding-left: 20px; margin: 0 0 1.1rem; }
.doc li { margin-bottom: 7px; }
.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.3rem;
  font-size: 15.5px;
}
.doc th, .doc td {
  text-align: left;
  padding: 11px 12px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.doc th { background: var(--paper); font-weight: 600; }

.callout {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin: 0 0 1.4rem;
}
.callout p:last-child { margin-bottom: 0; }

.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  background: var(--paper);
}
.contact-box p:last-child { margin-bottom: 0; }
