:root {
  --navy: #075785;
  --navy-deep: #073a58;
  --teal: #71c4c9;
  --teal-pale: #e9f7f6;
  --ink: #17333e;
  --muted: #60737a;
  --ivory: #fbfaf6;
  --sand: #f4eee4;
  --white: #ffffff;
  --line: #dce6e4;
  --shadow: 0 24px 70px rgba(18, 57, 70, 0.14);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(7, 87, 133, 0.28);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 14px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid rgba(220, 230, 228, 0.85);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: block;
  width: min(355px, 42vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
  color: #36535d;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--navy);
}

.nav-contact {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.nav-contact:hover {
  transform: translateY(-1px);
  background: var(--navy-deep);
}

.menu-toggle {
  display: none;
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  min-height: 760px;
  padding: 76px clamp(24px, 7vw, 112px) 96px;
}

.hero::before {
  position: absolute;
  top: 90px;
  right: -190px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(113, 196, 201, 0.2),
    rgba(113, 196, 201, 0) 70%
  );
  content: "";
}

.hero::after {
  position: absolute;
  bottom: 56px;
  left: -90px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(113, 196, 201, 0.34);
  border-radius: 50%;
  content: "";
}

.hero-copy,
.hero-portrait {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 30px;
  height: 2px;
  background: var(--teal);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin: 25px 0 28px;
  color: var(--navy-deep);
  font-size: clamp(3.35rem, 5.8vw, 6.15rem);
  line-height: 0.98;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 33px;
  color: var(--muted);
  font-size: clamp(1.07rem, 1.4vw, 1.22rem);
  line-height: 1.8;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 24px;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 750;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button svg,
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 87, 133, 0.2);
  color: var(--white);
}

.button.primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 15px 34px rgba(7, 87, 133, 0.26);
}

.button.secondary {
  border-color: #b9cbca;
  background: rgba(255, 255, 255, 0.52);
  color: var(--navy-deep);
}

.button.secondary:hover {
  border-color: var(--teal);
  background: var(--white);
}

.booking-note {
  margin-top: 19px;
  color: #6e7f85;
  font-size: 0.87rem;
}

.booking-note button,
.footer-column button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
}

.hero-portrait {
  justify-self: end;
  width: min(100%, 490px);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82;
  border: 13px solid var(--white);
  border-radius: 48% 48% 24px 24px;
  background: #182023;
  box-shadow: var(--shadow);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: inherit;
  content: "";
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
}

.availability-card {
  position: absolute;
  right: -24px;
  bottom: 46px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 265px;
  padding: 18px 20px;
  border: 1px solid rgba(220, 230, 228, 0.8);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 45px rgba(18, 57, 70, 0.16);
}

.status-dot {
  display: block;
  width: 11px;
  height: 11px;
  margin-top: 5px;
  border: 3px solid #d9f2e7;
  border-radius: 50%;
  background: #39a66e;
  box-sizing: content-box;
}

.availability-card strong,
.availability-card span {
  display: block;
}

.availability-card strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.availability-card div span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.trust-strip > div {
  padding: 26px 32px;
  background: rgba(255, 255, 255, 0.7);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
}

.trust-strip span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 118px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 9vw, 140px);
  margin-top: 30px;
}

.about h2,
.section-heading h2,
.services > h2,
.process h2,
.payment h2,
.military h2,
.faq h2 {
  color: var(--navy-deep);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.09;
}

.about h2 {
  max-width: 630px;
}

.about-copy {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-copy p {
  margin-bottom: 22px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.about-tags span {
  border: 1px solid #bed9d8;
  border-radius: 999px;
  padding: 8px 13px;
  background: var(--teal-pale);
  color: var(--navy-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.care-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - 1240px) / 2));
  padding-left: max(24px, calc((100vw - 1240px) / 2));
  background: #f0f7f5;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2 {
  max-width: 700px;
  margin: 18px 0 0;
}

.section-heading > p {
  max-width: 460px;
  margin-bottom: 8px;
  color: var(--muted);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 55px;
}

.care-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(190, 217, 216, 0.74);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.care-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(28, 83, 95, 0.08);
}

.card-number {
  color: #70aeb1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.care-card h3,
.service-grid h3,
.process-steps h3 {
  margin: 42px 0 12px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  font-weight: 500;
}

.care-card p,
.service-grid p,
.process-steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.72;
}

.services > h2 {
  max-width: 690px;
  margin: 18px 0 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid article {
  padding: 42px 42px 48px 0;
}

.service-grid article + article {
  border-left: 1px solid var(--line);
  padding-left: 42px;
}

.service-icon {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-grid h3 {
  margin-top: 29px;
}

.process {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 85px;
  max-width: none;
  padding-right: max(24px, calc((100vw - 1240px) / 2));
  padding-left: max(24px, calc((100vw - 1240px) / 2));
  background: var(--sand);
}

.process-intro h2 {
  margin: 18px 0 24px;
}

.process-intro > p {
  max-width: 450px;
  color: var(--muted);
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 27px 0;
  border-top: 1px solid rgba(92, 115, 122, 0.2);
}

.process-steps li:last-child {
  border-bottom: 1px solid rgba(92, 115, 122, 0.2);
}

.process-steps > li > span {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.process-steps h3 {
  margin: 1px 0 7px;
}

.payment {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 22px;
}

.payment-card {
  border-radius: 26px;
  padding: clamp(34px, 5vw, 62px);
}

.insurance-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.self-pay-card {
  background: var(--navy-deep);
  color: var(--white);
  scroll-margin-top: 110px;
}

.payment h2 {
  margin: 17px 0 20px;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
}

.self-pay-card h2,
.self-pay-card .section-kicker {
  color: var(--white);
}

.payment-card > p {
  max-width: 560px;
  color: var(--muted);
}

.self-pay-card > p {
  color: #c4d4dc;
}

.insurance-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 25px;
  margin: 31px 0 38px;
  padding: 0;
  list-style: none;
}

.insurance-status {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.01em;
}

.insurance-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #3e5861;
  font-size: 0.9rem;
}

.insurance-list li::before {
  color: #43a990;
  content: "✓";
  font-weight: 800;
}

.insurance-list svg {
  width: 18px;
  fill: none;
  stroke: #43a990;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.fee-list {
  margin: 38px 0;
}

.fee-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.fee-list > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.fee-list dt {
  color: #d8e5e9;
  font-size: 0.9rem;
}

.fee-list dd {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.button.dark {
  background: var(--teal);
  color: #07344d;
}

.button.dark:hover {
  background: #8cd6d9;
}

.care-values {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: center;
}

.care-values-intro h2 {
  margin: 15px 0 20px;
  font-size: clamp(2.2rem, 3.6vw, 3.7rem);
}

.care-values-intro p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.values-carousel {
  min-width: 0;
}

.values-viewport {
  min-height: 310px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid #cfe2df;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(113, 196, 201, 0.2), transparent 36%),
    var(--white);
  box-shadow: 0 22px 60px rgba(18, 57, 70, 0.1);
}

.value-slide {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  animation: value-fade 600ms ease both;
}

.value-mark {
  display: flex;
  width: 108px;
  height: 108px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b8d8d7;
  border-radius: 50%;
  background: var(--teal-pale);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.value-count {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.value-copy h3 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.value-copy p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.values-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 4px 0;
}

.values-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.value-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: #c5d7d5;
  transition:
    width 180ms ease,
    border-radius 180ms ease,
    background 180ms ease;
}

.value-dot.is-active {
  width: 32px;
  border-radius: 999px;
  background: var(--navy);
}

.values-pause {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 3px;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 750;
}

.values-welcome {
  grid-column: 1 / -1;
  margin: -24px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 650;
}

@keyframes value-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  border-top: 1px solid var(--line);
}

.faq h2 {
  margin: 16px 0 20px;
}

.faq-intro > p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 4px;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  font-weight: 750;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  color: var(--navy-deep);
  font-size: 1rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 6px;
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bed0cf;
  border-radius: 50%;
  color: var(--navy);
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 700px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  max-width: 1380px;
  margin: 0 auto 50px;
  padding: clamp(45px, 6vw, 78px);
  border-radius: 28px;
  background: linear-gradient(125deg, var(--navy-deep), #075f82);
  color: var(--white);
}

.closing-cta .section-kicker {
  color: var(--teal);
}

.closing-cta h2 {
  max-width: 670px;
  margin: 15px 0 0;
  color: var(--white);
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  line-height: 1.05;
}

.button.light {
  background: var(--white);
  color: var(--navy-deep);
}

.button.outline-light {
  border-color: rgba(255, 255, 255, 0.46);
  background: transparent;
  color: var(--white);
}

.button.outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

footer {
  display: grid;
  grid-template-columns: 1.3fr 0.65fr 0.8fr 1.25fr;
  gap: 52px;
  padding: 70px clamp(24px, 6vw, 92px);
  border-top: 1px solid var(--line);
  background: #f1f5f3;
}

.footer-brand img {
  display: block;
  width: min(350px, 100%);
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-column strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a:hover,
.footer-column button:hover {
  color: var(--navy);
}

.footer-column button {
  border-bottom: 0;
  color: var(--muted);
  font-weight: 400;
}

.footer-column small {
  display: block;
  max-width: 15rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-note {
  color: #738188;
  font-size: 0.73rem;
  line-height: 1.65;
}

.crisis-note {
  font-weight: 700;
}

.modal-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(6, 35, 49, 0.62);
  backdrop-filter: blur(8px);
}

.contact-modal {
  width: min(100%, 680px);
  max-height: min(92vh, 900px);
  overflow: auto;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 30px 100px rgba(0, 25, 39, 0.3);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px 0;
}

.modal-header h2 {
  margin: 7px 0 0;
  color: var(--navy-deep);
  font-size: 2rem;
}

.modal-close {
  display: flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: var(--ivory);
  color: var(--navy-deep);
  font-size: 1.65rem;
  line-height: 1;
}

.modal-intro {
  margin: 14px 30px 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-frame {
  display: block;
  width: 100%;
  height: min(570px, 62vh);
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.iframe-fallback {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 30px 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

.iframe-fallback a {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 1279px) {
  .section,
  .trust-strip {
    width: calc(100% - 48px);
  }

  .care-section,
  .process {
    width: 100%;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: 45px;
    padding-right: 54px;
    padding-left: 54px;
  }

  .availability-card {
    right: -12px;
  }

  .closing-cta {
    margin-right: 24px;
    margin-left: 24px;
  }

  footer {
    grid-template-columns: 1.2fr 0.7fr 0.9fr;
  }

  .footer-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .site-header {
    min-height: 78px;
  }

  .brand {
    width: min(310px, 58vw);
  }

  .menu-toggle {
    z-index: 2;
    display: flex;
    width: 43px;
    height: 43px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    background: var(--white);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--navy-deep);
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 10px;
  }

  .nav-contact {
    margin-top: 7px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 36px 90px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-portrait {
    justify-self: center;
    width: min(84%, 520px);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .section-heading,
  .process,
  .payment,
  .faq {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .section-heading,
  .process,
  .faq {
    gap: 38px;
  }

  .care-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .service-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 32px 0;
  }

  .service-grid article:first-child {
    border-top: 0;
  }

  .care-values {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .care-values-intro p {
    max-width: 650px;
  }

  .values-welcome {
    margin-top: 0;
  }

  .closing-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 11px 18px;
  }

  .brand {
    width: min(258px, 68vw);
  }

  .hero {
    min-height: auto;
    gap: 55px;
    padding: 55px 22px 72px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .closing-actions .button {
    width: 100%;
  }

  .hero-portrait {
    width: 100%;
  }

  .availability-card {
    right: 12px;
    bottom: 18px;
    left: 12px;
    min-width: 0;
  }

  .section,
  .trust-strip {
    width: calc(100% - 36px);
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .care-section,
  .process {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .care-card {
    min-height: 220px;
  }

  .payment-card {
    padding: 32px 25px;
  }

  .insurance-list {
    grid-template-columns: 1fr;
  }

  .values-viewport {
    min-height: 420px;
    padding: 30px 24px;
  }

  .value-slide {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .value-mark {
    width: 82px;
    height: 82px;
    font-size: 0.9rem;
  }

  .value-copy h3 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .values-controls {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .process-steps li {
    grid-template-columns: 44px 1fr;
    gap: 15px;
  }

  .process-steps > li > span {
    width: 40px;
    height: 40px;
  }

  .closing-cta {
    margin: 0 12px 28px;
    padding: 42px 24px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
    padding: 54px 22px;
  }

  .footer-brand,
  .footer-note {
    grid-column: 1 / -1;
  }

  .modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }

  .contact-modal {
    max-height: 94vh;
    border-radius: 22px 22px 0 0;
  }

  .modal-header {
    padding: 24px 20px 0;
  }

  .modal-intro {
    margin-right: 20px;
    margin-left: 20px;
  }

  .iframe-fallback {
    flex-direction: column;
    gap: 4px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
