/* Lisa Johnson, LMT — lisajohnsonlmt.com
   Mobile-first. Desktop layout kicks in at 900px. */

:root {
  --ink: #10181C;
  --ink-2: #34444C;
  --muted: #52616B;
  --line: #DCE3E5;
  --paper: #FFFFFF;
  --paper-2: #F2F5F6;
  --tint: #E8F0F4;
  --accent: #134E6F;
  --accent-dark: #0C3A53;
  --accent-light: #7FA8BC;
  --amber: #A85D00;
  --star: #C8860D;
  --radius: 4px;
  --gutter: 20px;
  --maxw: 1280px;
  --display: 'Archivo', system-ui, -apple-system, sans-serif;
  --body: 'Public Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 74px; /* room for the fixed mobile call bar */
}

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

a { color: var(--accent); }
a:hover { color: var(--accent-dark); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0;
}

p { margin: 0; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: 48px 0; }

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}

.label {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost { background: var(--paper); color: var(--accent); border-color: #B6C4CB; }
.btn-ghost:hover { background: var(--paper-2); }
.btn-light { background: #fff; color: var(--ink); }
.btn-block { display: flex; width: 100%; }

/* ---------- top bar + header ---------- */

.topbar {
  background: var(--ink);
  color: #C3CCD1;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 38px;
  text-align: center;
}
.topbar strong { color: #fff; font-weight: 600; }
.topbar-extra { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}
.brand {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { font-weight: 500; color: var(--muted); }
.site-nav { display: none; }
.header-cta {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 14px;
}

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

.hero { padding: 32px 0; }
.hero .wrap { display: flex; flex-direction: column; gap: 18px; }
.hero h1 { font-size: clamp(34px, 8.5vw, 38px); }
.hero .lede { font-size: 17px; color: var(--muted); }
.hero-actions { display: flex; flex-direction: column; gap: 12px; }

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.rating svg { flex: none; }
.rating strong { color: var(--ink); }
.rating a { font-weight: 600; }

.ratecard {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ratecard .row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.ratecard .row:last-of-type { padding-bottom: 0; border-bottom: 0; }
.ratecard .row span:first-child { font-size: 16px; color: var(--ink-2); }
.ratecard .price {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}
.ratecard .fine { font-size: 14px; line-height: 1.5; color: var(--muted); }

/* ---------- chips ---------- */

.chips {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.chips .wrap { display: flex; flex-direction: column; gap: 12px; }
.chips-title { font-size: 15px; font-weight: 700; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid #C9D4D8;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}
.chip:hover { background: var(--tint); }

/* ---------- photo band ---------- */

.photoband { display: grid; grid-template-columns: 1fr; gap: 3px; background: #fff; }
.photoband img { width: 100%; height: 260px; object-fit: cover; }

/* ---------- conditions ---------- */

.conditions .wrap { display: flex; flex-direction: column; gap: 18px; }
.conditions h2 { font-size: clamp(28px, 7vw, 32px); }
.cond-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.cond {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cond:last-child { border-bottom: 1px solid var(--line); }
.cond h3 { font-size: 18px; }
.cond p { font-size: 15px; color: var(--muted); }

/* ---------- first visit ---------- */

.firstvisit { background: var(--ink); color: #fff; padding: 48px 0; }
.firstvisit .eyebrow { color: var(--accent-light); }
.firstvisit h2 { font-size: clamp(28px, 7vw, 32px); color: #fff; }
.firstvisit .wrap { display: flex; flex-direction: column; gap: 20px; }
.steps { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step {
  padding-top: 16px;
  border-top: 2px solid #35505E;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step .num {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent-light);
}
.step h3 { font-size: 18px; color: #fff; }
.step p { font-size: 15px; color: #B8C4CA; }

.pullquote-dark {
  border-left: 2px solid var(--accent-light);
  padding: 12px 0 2px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.pullquote-dark p { font-size: 15px; font-style: italic; color: #E4EBEE; }
.pullquote-dark cite { font-size: 13px; font-weight: 600; font-style: normal; color: var(--accent-light); }

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

.pricing .wrap { display: flex; flex-direction: column; gap: 18px; }
.pricing h2 { font-size: clamp(28px, 7vw, 32px); }
.badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  background: var(--tint);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
}
.tier {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tier:first-of-type { border-top: 2px solid var(--ink); }
.tier:last-of-type { border-bottom: 1px solid var(--line); }
.tier.featured { background: var(--paper-2); padding-left: 16px; padding-right: 16px; }
.tier-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.tier-name { font-family: var(--display); font-size: 20px; font-weight: 700; }
.tier-price { font-family: var(--display); font-size: 26px; font-weight: 700; }
.tier p { font-size: 15px; color: var(--muted); }
.tag-mostbooked {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--amber);
}
.addons { display: flex; flex-wrap: wrap; gap: 8px; }
.addon {
  padding: 10px 15px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
}
.policies { display: flex; flex-direction: column; gap: 7px; }
.policies p { font-size: 15px; color: var(--muted); }
.policies strong { color: var(--ink); }

/* ---------- techniques ---------- */

.techniques {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 40px 0;
}
.techniques .wrap { display: flex; flex-direction: column; gap: 16px; }
.techniques h2 { font-size: 21px; letter-spacing: -0.02em; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 10px 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}

/* ---------- about ---------- */

.about .wrap { display: flex; flex-direction: column; gap: 18px; }
.about h2 { font-size: clamp(28px, 7vw, 32px); }
.about p { font-size: 16px; line-height: 1.68; color: var(--ink-2); }
.portrait { border-radius: 6px; width: 100%; height: 340px; object-fit: cover; object-position: center top; }

.pullquote {
  border-left: 3px solid var(--accent);
  padding: 2px 0 2px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pullquote p {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.pullquote cite { font-size: 13px; font-weight: 600; font-style: normal; color: var(--muted); }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.stat { padding-top: 14px; border-top: 2px solid var(--ink); }
.stat .big { font-family: var(--display); font-size: 24px; font-weight: 700; }
.stat .cap { font-size: 13px; line-height: 1.4; color: var(--muted); }

/* ---------- reviews ---------- */

.reviews { background: var(--tint); padding: 44px 0; }
.reviews .wrap { display: flex; flex-direction: column; gap: 16px; }
.reviews h2 { font-size: clamp(24px, 6vw, 27px); letter-spacing: -0.025em; }
.quote {
  background: #fff;
  border: 1px solid #C8D8E1;
  border-radius: 6px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.quote p { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.quote.lead p {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.quote cite { font-size: 13px; font-weight: 600; font-style: normal; color: var(--muted); }
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* ---------- location ---------- */

.location .wrap { display: flex; flex-direction: column; gap: 18px; }
.location h2 { font-size: clamp(28px, 7vw, 32px); }
.map {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 6px;
  display: block;
  background: #E3EAED;
}
.addr { display: flex; flex-direction: column; gap: 5px; }
.addr .name { font-size: 17px; font-weight: 700; }
.addr p { font-size: 16px; color: var(--ink-2); }
.gettingin {
  background: var(--paper-2);
  border-left: 3px solid var(--accent);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gettingin p { font-size: 15px; line-height: 1.65; color: var(--ink-2); }
.gettingin strong { color: var(--ink); }
.hours { display: flex; flex-direction: column; }
.hours .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.hours .row:last-child { border-bottom: 1px solid var(--line); }
.hours .day { font-size: 16px; }
.hours .time { font-size: 16px; font-weight: 600; color: var(--muted); }
.hours .closed { color: #8E9CA3; }
.hours-note { font-size: 14px; line-height: 1.55; color: var(--muted); padding-top: 10px; }

/* ---------- final cta ---------- */

.finalcta { background: var(--accent); color: #fff; padding: 48px 0; }
.finalcta .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.finalcta h2 { font-size: clamp(28px, 7.5vw, 32px); color: #fff; }
.finalcta p { font-size: 16px; color: #C6DAE5; }
.finalcta .btn {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  min-height: 58px;
}

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

.site-footer { background: var(--ink); color: #8E9CA3; padding: 26px 0; }
.site-footer .wrap { display: flex; flex-direction: column; gap: 10px; }
.site-footer .name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.site-footer p, .site-footer a { font-size: 13px; line-height: 1.5; }
.site-footer a { color: #8E9CA3; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- fixed mobile call bar ---------- */

.callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-top: 1px solid var(--line);
  padding: 12px var(--gutter);
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  display: flex;
  gap: 10px;
}
.callbar .btn { flex: 1; min-height: 48px; font-size: 16px; padding: 12px 16px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 900px) {
  :root { --gutter: 56px; }

  body { font-size: 18px; padding-bottom: 0; }

  .section { padding: 84px 0; }

  .topbar .wrap { justify-content: space-between; min-height: 42px; font-size: 13px; text-align: left; }
  .topbar-extra { display: block; }

  .site-header .wrap { min-height: 84px; }
  .brand { font-size: 21px; }
  .site-nav { display: flex; align-items: center; gap: 30px; }
  .site-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-2);
    text-decoration: none;
  }
  .site-nav a:hover { color: var(--accent); }
  .header-cta { font-size: 15px; padding: 12px 22px; }

  .hero { padding: 0; }
  .hero .wrap {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
    min-height: 560px;
  }
  .hero-copy {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .hero h1 { font-size: clamp(44px, 4.7vw, 60px); line-height: 1.02; letter-spacing: -0.035em; }
  .hero .lede { font-size: 18px; max-width: 560px; }
  .hero-actions { flex-direction: row; align-items: center; gap: 14px; }
  .rating { font-size: 15px; }
  .ratecard { padding: 30px; gap: 18px; }
  .ratecard .row { padding-bottom: 14px; }
  .ratecard .price { font-size: 26px; }

  .chips { padding: 0; }
  .chips .wrap {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    min-height: 104px;
    flex-wrap: wrap;
  }
  .chips-title { flex: none; }
  .chip { font-size: 15px; padding: 10px 18px; }

  .photoband { grid-template-columns: 2fr 1fr 1fr; }
  .photoband img { height: 360px; }

  .conditions .wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start;
  }
  .conditions h2 { font-size: 38px; }
  .cond-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 40px; }
  .cond { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 0; }
  .cond:last-child { border-bottom: 0; }
  .cond h3 { font-size: 19px; }

  .firstvisit { padding: 76px 0; }
  .firstvisit h2 { font-size: 38px; max-width: 620px; }
  .firstvisit .wrap { gap: 40px; }
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
  .step { padding-top: 20px; }
  .step .num { font-size: 30px; }
  .step h3 { font-size: 19px; }
  .pullquote-dark { padding: 14px 0 4px 16px; }

  .pricing h2 { font-size: 38px; }
  .pricing-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
  }
  .tier {
    display: grid;
    grid-template-columns: 200px 1fr 120px;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
  }
  .tier.featured { padding: 24px 16px; }
  .tier-head { display: contents; }
  .tier-name { font-size: 21px; }
  .tier p { font-size: 16px; grid-column: 2; grid-row: 1; }
  .tier-price { font-size: 28px; text-align: right; grid-column: 3; grid-row: 1; }
  .tier .tier-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    grid-column: 1;
    grid-row: 1;
  }
  .pricing-foot {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    padding-top: 8px;
  }

  .techniques { padding: 60px 0; }
  .techniques .wrap { flex-direction: row; align-items: center; gap: 48px; }
  .techniques h2 { font-size: 22px; max-width: 220px; line-height: 1.2; flex: none; }
  .tag { font-size: 15px; padding: 11px 18px; }

  .about .wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start;
  }
  .about h2 { font-size: 38px; }
  .about p { font-size: 17px; line-height: 1.7; }
  .about-copy { display: flex; flex-direction: column; gap: 20px; }
  .portrait { height: 420px; }
  .pullquote { padding: 4px 0 4px 24px; gap: 12px; }
  .pullquote p { font-size: 23px; }
  .stats { gap: 24px; padding-top: 12px; }
  .stat { padding-top: 18px; }
  .stat .big { font-size: 32px; }
  .stat .cap { font-size: 14px; }

  .reviews { padding: 76px 0; }
  .reviews h2 { font-size: 32px; }
  .reviews-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
  }
  .quote-grid { grid-template-columns: 1.7fr 1fr 1fr; gap: 24px; }
  .quote { padding: 30px; min-height: 230px; justify-content: space-between; }
  .quote.lead p { font-size: 22px; }
  .quote-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding-top: 4px;
  }
  .quote-strip .item {
    padding-top: 18px;
    border-top: 1px solid #B9CDD8;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .quote-strip p { font-size: 15px; line-height: 1.6; color: var(--ink-2); }
  .quote-strip cite { font-size: 13px; font-weight: 600; font-style: normal; color: var(--muted); }

  .location .wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: start;
  }
  .location h2 { font-size: 38px; }
  .location-copy { display: flex; flex-direction: column; gap: 22px; }
  .map { height: 100%; min-height: 520px; }
  .addr p { font-size: 17px; }
  .gettingin { padding: 20px 22px; }
  .hours .row { padding: 13px 0; }

  .finalcta { padding: 72px 0; }
  .finalcta .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 48px;
  }
  .finalcta h2 { font-size: 40px; max-width: 620px; }
  .finalcta p { font-size: 18px; max-width: 620px; }
  .finalcta .btn { font-size: 26px; min-height: 64px; padding: 18px 36px; flex: none; }
  .finalcta-copy { display: flex; flex-direction: column; gap: 14px; }

  .site-footer { padding: 0; }
  .site-footer .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 104px;
    gap: 24px;
  }
  .site-footer .name { font-size: 16px; }
  .footer-links { gap: 24px; }
  .footer-links a { font-size: 14px; }

  .callbar { display: none; }
}

/* Quote strip is hidden on mobile to keep the page from running long;
   the three lead quotes carry it. */
@media (max-width: 899px) {
  .quote-strip { display: none; }
  .tier-meta { display: contents; }
}
