:root {
  --ivory: #f7f4ef;
  --paper: #fcfbf8;
  --white: #ffffff;
  --ink: #263746;
  --ink-deep: #182632;
  --muted: #65717a;
  --mist: #dbe8ee;
  --mist-deep: #c8dce5;
  --champagne: #c7a989;
  --line: rgba(38, 55, 70, .18);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: min(100% - 72px, 1520px); margin-inline: auto; }
.section { padding-block: clamp(7rem, 11vw, 11rem); }
.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;
}
.skip-link {
  position: fixed; left: 16px; top: 16px; z-index: 2000;
  background: var(--ink-deep); color: white; padding: .75rem 1rem;
  transform: translateY(-160%); transition: transform .2s;
}
.skip-link:focus { transform: none; }

.kicker, .eyebrow {
  margin: 0 0 1.4rem;
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.button {
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .8rem 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  cursor: pointer;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 600;
  transition: color .25s, background .25s, border-color .25s, transform .25s;
}
.button:hover { transform: translateY(-2px); }
.button-violet { background: var(--ink); color: #fff; border-color: var(--ink); }
.button-violet:hover { background: transparent; color: var(--ink); }
.button-dark { background: var(--ink-deep); color: #fff; }

/* Navigation and cinematic hero */
.hero {
  min-height: 100svh;
  background: var(--paper);
  position: relative;
}
.blob, .smile-line, .review-float, .new-patient { display: none; }
.nav {
  height: 92px;
  display: grid;
  grid-template-columns: 1.35fr 1fr auto;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 20;
}
.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: var(--ink);
  text-decoration: none;
  font: 500 1.75rem/1 var(--serif);
  letter-spacing: .04em;
}
.brand-orbit {
  width: 36px; height: 36px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  position: relative;
}
.brand-orbit::before,
.brand-orbit::after {
  content: "";
  position: absolute;
  inset: 7px -6px;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  transform: rotate(52deg);
}
.brand-orbit::after { transform: rotate(-52deg); }
.nav-links { display: flex; justify-content: center; gap: clamp(1.25rem, 2.2vw, 2.8rem); }
.nav-links a {
  color: var(--ink);
  font-size: .83rem;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--champagne); }
.nav-actions { display: flex; align-items: center; gap: .9rem; }
.phone {
  color: var(--ink);
  font-size: .79rem;
  font-weight: 600;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  width: 44px; height: 44px; padding: 9px;
  background: transparent; border: 0;
}
.menu-toggle i {
  display: block; width: 24px; height: 1px;
  margin: 7px auto; background: var(--ink);
}
.hero-grid {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - 92px);
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero-grid::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 25, 34, .78) 0%, rgba(20, 31, 39, .56) 41%, rgba(25, 34, 40, .08) 72%),
    linear-gradient(0deg, rgba(13, 25, 34, .42), transparent 45%);
}
.hero-visual {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; min-height: 0;
}
.photo-arc { width: 100%; height: 100%; overflow: hidden; }
.photo-arc img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 62% 34%;
  transform: scale(1.015);
}
.hero-copy {
  width: min(650px, calc(100% - 72px));
  margin-left: max(36px, calc((100vw - 1520px) / 2));
  padding: 5.5rem 0 9rem;
  color: white;
  position: relative;
  z-index: 2;
}
.eyebrow { color: rgba(255,255,255,.84); }
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px; height: 1px;
  margin-right: .8rem;
  vertical-align: middle;
  background: var(--champagne);
}
.hero h1 {
  margin: 0;
  max-width: 660px;
  color: #fff;
  font: 400 clamp(4.3rem, 7vw, 7.7rem)/.87 var(--serif);
  letter-spacing: -.045em;
}
.hero h1 em { color: #fff; font-weight: 400; }
.hero-copy > p:nth-of-type(2) {
  max-width: 570px;
  margin: 1.7rem 0 0;
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  line-height: 1.75;
}
.hero-buttons { display: flex; align-items: center; gap: 1rem; margin-top: 2.1rem; }
.hero-buttons .button {
  background: rgba(247,244,239,.95);
  color: var(--ink);
  border-color: rgba(255,255,255,.8);
}
.hero-buttons .button:hover { background: transparent; color: #fff; }
.soft-link {
  color: white;
  font-size: .82rem;
  text-underline-offset: 6px;
}
.hero-proof {
  width: min(560px, 100%);
  margin-top: 3rem;
  padding: 1rem 1.15rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(247,244,239,.13);
  backdrop-filter: blur(12px);
}
.hero-proof > span { font: 500 1.6rem var(--serif); }
.hero-proof div { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,.26); }
.hero-proof strong, .hero-proof small { display: block; }
.hero-proof strong { color: #f1d7b8; font-size: .72rem; letter-spacing: .12em; }
.hero-proof small { margin-top: .15rem; color: rgba(255,255,255,.72); font-size: .68rem; }

/* Spacious editorial statements */
.manifesto {
  min-height: 760px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  overflow: hidden;
  position: relative;
}
.manifesto-flow {
  position: absolute;
  width: 720px; height: 340px;
  right: -120px; bottom: 50px;
  border: 1px solid rgba(199,169,137,.42);
  border-radius: 50%;
  transform: rotate(-18deg);
}
.manifesto-flow::before,
.manifesto-flow::after {
  content: "";
  position: absolute; inset: 55px -120px;
  border: 1px solid rgba(199,169,137,.26);
  border-radius: 50%;
}
.manifesto-flow::after { inset: 112px -210px; }
.manifesto-inner { position: relative; z-index: 1; }
.manifesto .kicker { color: var(--champagne); }
.manifesto h2 {
  max-width: 1170px;
  margin: 0;
  color: var(--ink);
  font: 400 clamp(3.6rem, 6.7vw, 7rem)/.96 var(--serif);
  letter-spacing: -.035em;
}
.manifesto h2 em { color: var(--champagne); font-weight: 400; }
.manifesto-inner > p:not(.kicker) {
  max-width: 520px;
  margin: 2.4rem 0 2rem 48%;
  color: var(--muted);
  line-height: 1.75;
}
.manifesto a {
  margin-left: 48%;
  color: var(--ink);
  font-size: .82rem;
  text-underline-offset: 6px;
}
.manifesto a span { margin-left: .7rem; }

/* Services */
.care {
  width: 100%;
  max-width: none;
  padding-inline: max(36px, calc((100vw - 1520px) / 2));
  background: var(--mist);
}
.care-intro {
  max-width: 890px;
  margin: 0 auto 5rem;
  text-align: center;
}
.care-intro h2,
.team h2,
.faq h2 {
  margin: 0;
  color: var(--ink);
  font: 400 clamp(3.5rem, 5.7vw, 6rem)/.98 var(--serif);
  letter-spacing: -.035em;
}
.care-intro h2 em { color: var(--ink); font-weight: 400; }
.care-intro > p:last-child {
  max-width: 540px;
  margin: 1.5rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}
.care-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  border-top: 1px solid rgba(38,55,70,.24);
  border-left: 1px solid rgba(38,55,70,.24);
}
.care-row {
  min-height: 300px;
  padding: clamp(2rem, 4.5vw, 4.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 1.2rem 2rem;
  background: rgba(255,255,255,.42);
  border-right: 1px solid rgba(38,55,70,.24);
  border-bottom: 1px solid rgba(38,55,70,.24);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.care-row::after {
  content: "";
  position: absolute;
  width: 200px; height: 120px;
  right: -90px; bottom: -70px;
  border: 1px solid rgba(199,169,137,.6);
  border-radius: 50%;
  transform: rotate(-24deg);
  transition: transform .4s;
}
.care-row:hover { background: rgba(255,255,255,.78); }
.care-row:hover::after { transform: rotate(-10deg) scale(1.15); }
.care-number { color: var(--champagne); font-size: .72rem; font-weight: 600; }
.care-label {
  align-self: start;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.care-row > div { grid-column: 1 / 3; align-self: end; }
.care-row h3 {
  margin: 0;
  color: var(--ink);
  font: 400 clamp(2rem, 3.3vw, 3.5rem)/1.02 var(--serif);
  letter-spacing: -.025em;
}
.care-row p { max-width: 450px; margin: .8rem 0 0; color: var(--muted); line-height: 1.6; }
.care-arrow {
  grid-column: 3; grid-row: 1 / 3; align-self: end;
  width: 48px; height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .25s, color .25s, transform .25s;
}
.care-row:hover .care-arrow { background: var(--ink); color: white; transform: rotate(45deg); }

/* Image and technology split */
.experience {
  padding: 0;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--paper);
}
.experience-photo {
  width: 100%;
  height: 900px;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.experience-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 47% center; }
.photo-note {
  position: absolute; left: 2.4rem; bottom: 2.4rem;
  width: 174px; height: 174px;
  display: grid; place-content: center;
  border-radius: 50%;
  background: rgba(247,244,239,.9);
  color: var(--ink);
  text-align: center;
  font-size: .59rem;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.6;
  backdrop-filter: blur(7px);
}
.experience-copy { width: 100%; display: grid; align-items: center; }
.experience-copy-inner {
  width: min(700px, 100%);
  margin: 0;
  padding: clamp(4rem, 8vw, 8.5rem);
  background: transparent;
}
.experience-copy h2 {
  margin: 0;
  color: var(--ink);
  font: 400 clamp(3.7rem, 5.7vw, 6rem)/.98 var(--serif);
  letter-spacing: -.035em;
}
.experience-copy h2 em { color: var(--champagne); font-weight: 400; }
.experience-copy-inner > p:nth-of-type(2) { color: var(--muted); line-height: 1.75; }
.experience-points { margin-top: 2.6rem; border-top: 1px solid var(--line); }
.experience-points > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.experience-points span { color: var(--champagne); font-size: .68rem; font-weight: 600; }
.experience-points strong { color: var(--ink); font: 500 1.5rem var(--serif); }
.experience-points p { margin: .2rem 0 0; color: var(--muted); font-size: .86rem; }

/* Values */
.feeling {
  width: 100%;
  max-width: none;
  min-height: 760px;
  padding-inline: max(36px, calc((100vw - 1520px) / 2));
  background: var(--ink-deep);
  color: white;
  overflow: hidden;
  position: relative;
}
.feeling::before {
  content: "";
  position: absolute;
  width: 680px; height: 420px;
  right: -120px; top: -70px;
  border: 1px solid rgba(199,169,137,.38);
  border-radius: 50%;
  transform: rotate(19deg);
}
.feeling-heading { max-width: 900px; position: relative; z-index: 1; }
.feeling-heading h2 {
  margin: 0;
  color: white;
  font: 400 clamp(3.7rem, 6.5vw, 6.7rem)/.98 var(--serif);
  letter-spacing: -.035em;
}
.feeling-heading h2 em { color: #d8bd9f; font-weight: 400; }
.feeling-words {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.word {
  position: static;
  padding: .85rem 1.3rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  font: 400 clamp(1.5rem, 2.5vw, 2.6rem) var(--serif);
  letter-spacing: 0;
}
.feeling-orbit { display: none; }

/* Doctor */
.team { background: var(--ivory); position: relative; overflow: hidden; }
.team-wave {
  position: absolute;
  width: 750px; height: 360px;
  right: -180px; bottom: -160px;
  border: 1px solid rgba(199,169,137,.35);
  border-radius: 50%;
  transform: rotate(-17deg);
}
.team-inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.team-portrait { height: 760px; overflow: hidden; }
.team-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 35%; }
.team h2 em { color: var(--champagne); font-weight: 400; }
.team-copy > p:nth-of-type(2) { max-width: 650px; color: var(--muted); line-height: 1.8; }
.team blockquote {
  max-width: 620px;
  margin: 2.2rem 0;
  padding-left: 1.5rem;
  border-left: 1px solid var(--champagne);
  color: var(--ink);
  font: 400 1.65rem/1.45 var(--serif);
}
.team-copy > a { color: var(--ink); font-size: .82rem; font-weight: 600; text-underline-offset: 6px; }

/* Testimonial */
.stories {
  padding-block: clamp(7rem, 11vw, 11rem);
  background: var(--mist);
  position: relative;
  overflow: hidden;
}
.stories::before {
  content: "";
  position: absolute;
  width: 580px; height: 580px;
  left: -330px; top: -300px;
  border: 1px solid rgba(38,55,70,.18);
  border-radius: 50%;
}
.story-stage { max-width: 1120px; margin: 0 auto; }
.quote-mark { display: block; height: 70px; color: var(--champagne); font: 400 8rem/1 var(--serif); }
.story-stage blockquote {
  margin: 0;
  color: var(--ink);
  font: 400 clamp(3rem, 5vw, 5.6rem)/1.04 var(--serif);
  letter-spacing: -.035em;
}
.story-person { margin-top: 3rem; display: flex; align-items: center; gap: 1rem; }
.avatar {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: .76rem;
}
.story-person div strong, .story-person div small { display: block; }
.story-person div small { margin-top: .18rem; color: var(--muted); font-size: .75rem; }
.story-person > .stars { margin-left: auto; color: var(--champagne); letter-spacing: .12em; }

/* FAQ and closing */
.faq { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(4rem, 8vw, 9rem); }
.faq-title { align-self: start; position: sticky; top: 3rem; }
.faq h2 em { color: var(--champagne); font-weight: 400; }
.faq-title > p:last-child { margin-top: 2rem; color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font: 500 1.45rem var(--serif);
}
.faq-item button i { color: var(--champagne); font: 400 1.6rem var(--sans); }
.faq-answer p { margin: 0; padding: 0 3rem 2rem 0; color: var(--muted); line-height: 1.75; }
.visit {
  min-height: 820px;
  display: grid;
  place-items: center;
  background: var(--ink-deep);
  color: white;
  position: relative;
  overflow: hidden;
}
.visit-sun {
  position: absolute;
  width: 820px; height: 440px;
  right: -220px; bottom: -180px;
  border: 1px solid rgba(199,169,137,.6);
  border-radius: 50%;
  transform: rotate(-19deg);
}
.visit-sun::before,
.visit-sun::after {
  content: "";
  position: absolute;
  inset: 70px -150px;
  border: 1px solid rgba(199,169,137,.34);
  border-radius: 50%;
}
.visit-sun::after { inset: 145px -260px; }
.visit-content { position: relative; z-index: 1; }
.visit h2 {
  max-width: 1060px;
  margin: 0;
  color: white;
  font: 400 clamp(4rem, 7.7vw, 8.2rem)/.9 var(--serif);
  letter-spacing: -.045em;
}
.visit h2 em { color: #d8bd9f; font-weight: 400; }
.visit-content > p:nth-of-type(2) { margin: 2rem 0; color: rgba(255,255,255,.7); }
.visit-details {
  margin-top: 5rem;
  padding-top: 2rem;
  display: flex;
  gap: 5rem;
  border-top: 1px solid rgba(255,255,255,.22);
  font-size: .8rem;
}
.visit-details span { color: rgba(255,255,255,.68); line-height: 1.7; }
.visit-details a { margin-left: auto; color: white; text-underline-offset: 5px; }

footer { padding: 5rem 0 2rem; background: var(--paper); }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 5rem; }
.footer-main > div { display: flex; flex-direction: column; gap: .75rem; }
.footer-main p, .footer-main a, .footer-main span {
  color: var(--muted); font-size: .8rem; line-height: 1.5; text-decoration: none;
}
.footer-main strong {
  margin-bottom: .55rem;
  color: var(--champagne);
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .7rem;
}

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 999;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15,27,36,.78); backdrop-filter: blur(8px); }
.modal-panel {
  width: min(620px, calc(100% - 28px));
  max-height: 92vh;
  overflow: auto;
  position: relative;
  padding: clamp(3rem, 6vw, 5rem);
  background: var(--paper);
  border-top: 4px solid var(--mist-deep);
}
.modal-close {
  position: absolute; right: 1.4rem; top: 1.2rem;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
}
.modal h2 {
  margin: 0;
  color: var(--ink);
  font: 400 clamp(2.8rem, 5vw, 4.8rem)/.98 var(--serif);
  letter-spacing: -.035em;
}
.modal h2 em { color: var(--champagne); font-weight: 400; }
.modal form { display: grid; gap: 1rem; margin-top: 2.2rem; }
.modal label { color: var(--ink); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.modal input, .modal select {
  width: 100%; display: block;
  padding: .85rem 0;
  border: 0; border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  outline: none;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.modal input:focus, .modal select:focus { border-color: var(--champagne); }
.modal .button { margin-top: 1rem; }
.form-note { color: var(--muted); font-size: .72rem; text-align: center; }
.form-success { padding: 3rem 0; text-align: center; }
.form-success > span {
  width: 68px; height: 68px;
  margin: auto;
  display: grid; place-items: center;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  font-size: 1.8rem;
}
.form-success h3 { margin: 1.5rem 0 .5rem; color: var(--ink); font: 400 2.5rem var(--serif); }
.form-success p { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav { grid-template-columns: 1fr auto auto; }
  .nav-links { display: none; }
  .menu-toggle { display: block; order: 2; }
  .nav-actions { order: 3; }
  .nav.menu-open .nav-links {
    position: absolute; top: 92px; left: -36px; right: -36px;
    display: flex; flex-direction: column; gap: 1.2rem;
    padding: 2rem 36px;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .experience { grid-template-columns: 1fr; }
  .experience-photo { height: 700px; }
  .experience-copy-inner { width: min(100% - 72px, 760px); margin-inline: auto; padding-inline: 0; }
  .team-inner { grid-template-columns: 1fr; }
  .team-portrait { width: min(700px, 100%); height: 720px; }
  .faq { grid-template-columns: 1fr; }
  .faq-title { position: static; }
}

@media (max-width: 740px) {
  .shell { width: min(100% - 28px, 1520px); }
  .section { padding-block: 6rem; }
  .nav { width: calc(100% - 28px); height: 78px; gap: .5rem; }
  .nav.menu-open .nav-links { top: 78px; left: -14px; right: -14px; padding-inline: 1.2rem; }
  .brand { font-size: 1.25rem; gap: .55rem; }
  .brand-orbit { width: 28px; height: 28px; }
  .nav-actions .phone { display: none; }
  .nav-actions .button { min-height: 42px; padding: .65rem .9rem; font-size: .7rem; }
  .hero-grid { min-height: calc(100svh - 78px); }
  .hero-grid::after {
    background: linear-gradient(90deg, rgba(13,25,34,.79), rgba(20,31,39,.32)),
                linear-gradient(0deg, rgba(13,25,34,.45), transparent 55%);
  }
  .photo-arc img { object-position: 61% center; }
  .hero-copy {
    width: calc(100% - 28px);
    margin-inline: auto;
    padding: 5rem 0 4rem;
    align-self: end;
  }
  .hero h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .hero-copy > p:nth-of-type(2) { font-size: .9rem; }
  .hero-buttons { align-items: flex-start; flex-direction: column; }
  .hero-proof { width: 100%; margin-top: 2rem; }
  .manifesto { min-height: 720px; }
  .manifesto h2 { font-size: clamp(3.2rem, 14vw, 4.8rem); }
  .manifesto-inner > p:not(.kicker), .manifesto a { margin-left: 0; }
  .care { padding-inline: 14px; }
  .care-intro h2, .team h2, .faq h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .care-list { grid-template-columns: 1fr; }
  .care-row { min-height: 260px; padding: 2rem; gap: 1rem; }
  .care-row h3 { font-size: 2.45rem; }
  .care-row p { font-size: .86rem; }
  .experience-photo { height: 540px; }
  .photo-note { left: 1rem; bottom: 1rem; width: 128px; height: 128px; font-size: .5rem; }
  .experience-copy-inner { width: calc(100% - 28px); padding-block: 5rem; }
  .experience-copy h2 { font-size: clamp(3.2rem, 14vw, 4.8rem); }
  .feeling { min-height: 680px; padding-inline: 14px; }
  .feeling-heading h2 { font-size: clamp(3.2rem, 14vw, 4.8rem); }
  .feeling-words { margin-top: 3rem; }
  .word { font-size: 1.55rem; }
  .team-portrait { height: 520px; }
  .team blockquote { font-size: 1.4rem; }
  .story-stage blockquote { font-size: clamp(3rem, 13vw, 4.5rem); }
  .story-person { flex-wrap: wrap; }
  .story-person > .stars { width: 100%; margin: .6rem 0 0; }
  .visit { min-height: 720px; }
  .visit h2 { font-size: clamp(4rem, 18vw, 6rem); }
  .visit-details { gap: 2rem; flex-wrap: wrap; }
  .visit-details a { width: 100%; margin: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 3rem 1rem; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { gap: 1rem; }
  .footer-bottom span:last-child { text-align: right; }
  .modal-panel { padding-top: 4.5rem; }
}
