:root {
  --paper: #f8f5ef;
  --paper-2: #fbf8f3;
  --soft-green: #eff2e5;
  --sand: #e9e3cf;
  --sage: #5f6f4f;
  --olive: #606948;
  --deep: #3f6432;
  --forest: #2f3a2b;
  --ink: #2e3434;
  --muted: #4a4a4a;
  --white: #fff;
  --whatsapp: #21d66f;
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Nunito Sans", Arial, sans-serif;
  --header-h: 110px;
  --radius-lg: 42px;
  --radius-md: 22px;
  --shadow-soft: 0 18px 60px rgba(47, 58, 43, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body::selection {
  background: var(--olive);
  color: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(1160px, calc(100% - 64px));
  margin-inline: auto;
}

.rounded-top {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.center {
  display: flex;
  justify-content: center;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 16px clamp(28px, 5vw, 74px);
  border-bottom: 1px solid rgba(96, 105, 72, 0.08);
  background: rgba(248, 245, 239, 0.9);
  backdrop-filter: blur(16px);
  transition:
    min-height 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.site-header.is-scrolled {
  min-height: 88px;
  background: rgba(248, 245, 239, 0.96);
  box-shadow: 0 12px 30px rgba(47, 58, 43, 0.07);
}

.brand img {
  width: clamp(210px, 22vw, 285px);
  height: auto;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 30px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: none;
  transition:
    transform 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.36), transparent 82%);
  content: "";
  transform: translateX(-125%);
  transition: transform 520ms ease;
}

.btn:hover::after {
  transform: translateX(125%);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(33, 214, 111, 0.36);
  outline-offset: 4px;
}

.btn-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(33, 214, 111, 0.16);
}

.whatsapp-mark {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.btn-dark {
  min-width: 124px;
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--deep);
}

.btn-outline {
  border: 3px solid var(--sage);
  background: transparent;
  color: var(--sage);
  font-size: 18px;
  letter-spacing: 0.05em;
}

.btn-outline:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-cream {
  background: var(--paper);
  color: var(--deep);
}

.btn-cream:hover {
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.hero {
  padding-top: clamp(12px, 1.5vw, 20px);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: auto 1fr;
  column-gap: 8vw;
  padding: 18px 18px 22px;
}

.display {
  z-index: 2;
  align-self: start;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.22;
}

.display span {
  display: block;
}

.hero-intro {
  z-index: 2;
  max-width: 410px;
  align-self: start;
  padding-top: 5px;
}

.hero-intro p {
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: clamp(19px, 1.45vw, 23px);
  letter-spacing: -0.02em;
  line-height: 1.42;
}

.hero-points {
  z-index: 2;
  align-self: end;
  margin: 0 0 8px 38px;
  padding: 0;
  list-style: none;
  font-size: clamp(17px, 1.32vw, 21px);
  font-weight: 500;
  line-height: 2.05;
}

.hero-points li::before {
  margin-right: 9px;
  content: "•";
}

.scribble {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.scribble-hero-a {
  position: absolute;
  bottom: 138px;
  left: 32%;
  width: 200px;
  color: var(--ink);
}

.scribble-hero-b {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: 205px;
  color: var(--ink);
  animation: floatLine 7s ease-in-out infinite;
}

.media-frame {
  position: relative;
  overflow: hidden;
}

.parallax-photo {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: calc(100% - 16px);
  height: clamp(520px, 52vw, 710px);
  margin: 0 auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-photo > img,
.parallax-photo > img,
.strategy-background,
.contact-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transform: none;
}

.problem {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding: 46px 0 72px;
  background: var(--soft-green);
}

.problem-shell {
  position: relative;
}

.problem-scribble {
  position: absolute;
  top: 68px;
  left: -70px;
  width: 240px;
}

.problem-collage {
  position: absolute;
  inset: 0;
  height: 520px;
  pointer-events: none;
}

.problem-collage .parallax-photo {
  position: absolute;
  width: 306px;
  height: 208px;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.collage-one {
  top: 0;
  right: -14px;
  left: auto;
}

.collage-two {
  top: 236px;
  right: -14px;
  left: auto;
}

.problem-copy {
  position: relative;
  z-index: 2;
  min-height: 470px;
  padding: 10px 0 0;
}

.problem-copy h2 {
  max-width: 700px;
  margin: 6px 0 16px;
  font-family: var(--serif);
  font-size: clamp(38px, 3.4vw, 50px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.problem-copy p {
  width: 58%;
  max-width: 680px;
  margin: 0 0 14px;
  font-size: 16px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 42px;
}

.benefit-card {
  min-height: 290px;
  padding: 24px 20px 28px;
  border-radius: 22px;
  background: var(--paper-2);
  text-align: center;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-soft);
}

.benefit-card svg {
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  fill: none;
  stroke: var(--olive);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.benefit-card h3 {
  min-height: 42px;
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.services {
  position: relative;
  z-index: 3;
  padding: 58px 0 84px;
  background: var(--sand);
}

.section-heading {
  max-width: 930px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-heading h2,
.differential-intro h2,
.security h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(37px, 2.95vw, 46px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.section-heading > p:not(.eyebrow) {
  margin: 0 0 18px;
  font-size: 16px;
}

.featured-service {
  position: relative;
  display: grid;
  left: 50%;
  width: min(1173px, calc(100vw - 32px));
  max-width: 1173px;
  min-height: 320px;
  grid-template-columns: 1fr 320px;
  align-items: center;
  gap: 28px;
  margin: 52px auto 40px;
  padding: 38px 38px 38px 42px;
  border-radius: 24px;
  background: var(--sage);
  color: var(--white);
  transform: translateX(-50%);
}

.featured-copy h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  text-align: center;
}

.featured-copy p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.48;
}

.featured-photo {
  width: 100%;
  height: 230px;
  border-radius: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin: 0 auto 46px;
}

.service-card {
  min-height: 280px;
  padding: 24px 26px;
  border-radius: 22px;
  background: var(--paper);
  text-align: center;
  transition: transform 250ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  margin: 0 0 22px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: #3f3f3f;
  font-size: 15px;
  line-height: 1.55;
}

.differential-intro {
  padding: 72px 0 64px;
  background: var(--paper);
}

.narrow {
  max-width: 1090px;
}

.differential-intro h2 span {
  display: block;
}

.differential-intro p:not(.eyebrow) {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: 16px;
}

.differential-intro h3 {
  margin: 48px 0 0;
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 400;
  text-align: left;
}

.care-strategy {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.strategy-background {
  z-index: 0;
}

.care-strategy::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(47, 58, 43, 0.03), rgba(47, 58, 43, 0.12));
  content: "";
  pointer-events: none;
}

.strategy-cards {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 34px;
  padding-top: 130px;
}

.featured-service.reveal {
  transform: translate(-50%, 24px);
}

.featured-service.reveal.is-visible {
  transform: translate(-50%, 0);
}

.floating-card {
  position: static;
  width: 100%;
  min-height: 390px;
  padding: 34px 36px;
  border-radius: 10px;
  background: rgba(248, 245, 239, 0.97);
  box-shadow: var(--shadow-soft);
}

.floating-card h3 {
  margin: 8px 0 18px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.3vw, 35px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.floating-card p {
  margin: 0;
  font-size: 16px;
}

.strategy-icon {
  display: block;
  width: 75px;
  height: 75px;
  object-fit: contain;
  object-position: left bottom;
}

.strategy-note {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 550px;
  bottom: auto;
  left: 0;
  margin: 0 auto;
  padding: 4px 20px;
  background: rgba(248, 245, 239, 0.86);
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(21px, 1.85vw, 29px);
  text-align: center;
}

.operations {
  position: relative;
  z-index: 4;
  margin-top: -39px;
  padding: 54px 0 42px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--deep);
  color: var(--white);
}

.operations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.eyebrow-light {
  color: var(--white);
}

.operations h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
}

.operations p {
  font-size: 16px;
}

.timeline {
  display: grid;
  gap: 23px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
}

.timeline > li > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 25px;
}

.timeline h3 {
  margin: 2px 0 4px;
  font-size: 16px;
  text-transform: uppercase;
}

.timeline p {
  margin: 0;
}

.coordination {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.check-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 8px 0;
}

.check-list li::before {
  margin-right: 10px;
  content: "✓";
}

.profile-row {
  display: grid;
  grid-template-columns: 1fr 210px;
  align-items: start;
  gap: 24px;
  margin-top: 25px;
}

.profile-row h3 {
  font-family: var(--serif);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 400;
}

.profile-photo {
  width: 210px;
  height: 270px;
  border-radius: 28px;
}

.profile-photo img {
  object-position: center 12%;
}

.profile-person {
  margin: -18px 0 0;
}

.profile-person figcaption {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.operations-action {
  margin-top: 34px;
}

.operations-action .btn {
  z-index: 6;
  margin-top: -24px;
}

.security {
  position: relative;
  z-index: 5;
  margin-top: -29px;
  padding: 58px 0 64px;
  background: var(--sand);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.trust-card {
  min-height: 250px;
  padding: 28px 30px;
  border-radius: 14px;
  background: var(--paper);
}

.trust-card h3 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.trust-card p {
  margin: 0;
  font-size: 16px;
}

.final-cta {
  padding: 66px 0 52px;
  background: var(--forest);
  color: var(--white);
  text-align: left;
}

.final-cta h2 {
  max-width: 960px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.final-cta h2 span {
  display: block;
}

.final-cta > div > p:not(.service-area, .hours) {
  max-width: 1100px;
  margin: 0 auto 22px;
  text-align: left;
}

.final-cta .btn {
  display: flex;
  width: max-content;
  margin: 20px auto 0;
}

.service-area {
  margin: 12px 0 0;
  line-height: 1.4;
  text-align: center;
}

.hours {
  margin: 20px 0 0;
  text-align: center;
}

.contact {
  min-height: 720px;
  background: var(--paper);
}

.contact-background {
  z-index: 0;
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.contact-label {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  align-self: start;
  padding: 46px 34px 0;
  text-align: left;
}

.contact-form {
  grid-column: 2;
  padding: 34px 34px 28px;
  border-radius: 22px;
  background: rgba(248, 245, 239, 0.96);
  box-shadow: var(--shadow-soft);
}

.contact-form h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #817f79;
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
}

.contact-form input {
  min-height: 42px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--deep);
  box-shadow: 0 1px 0 var(--deep);
}

.message-field {
  margin-top: 24px;
}

.btn-submit {
  width: 100%;
  margin-top: 24px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.btn-submit:hover {
  background: var(--ink);
  color: var(--white);
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--deep);
  font-size: 13px;
  text-align: center;
}

.site-footer {
  position: relative;
  z-index: 7;
  margin-top: -32px;
  padding: 68px 0 38px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1.1fr 0.8fr 0.7fr;
  align-items: start;
  gap: 52px;
}

.footer-logo img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-about p,
.footer-contact p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact {
  text-align: center;
}

.footer-contact .btn {
  margin-bottom: 16px;
}

.footer-nav {
  display: grid;
  gap: 3px;
  font-size: 14px;
}

.footer-nav a:hover,
.legal-links a:hover,
.footer-bottom p a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 52px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  text-align: center;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 190ms;
}

.reveal-delay-3 {
  transition-delay: 280ms;
}

@keyframes floatLine {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(2deg);
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 92px;
  }

  .page-shell {
    width: min(100% - 36px, 760px);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 22px;
  }

  .hero-intro {
    max-width: 620px;
  }

  .hero-points {
    margin-left: 0;
  }

  .scribble-hero-a {
    display: none;
  }

  .scribble-hero-b {
    right: 0;
    bottom: 20px;
    width: 150px;
  }

  .problem {
    margin-top: -55px;
  }

  .problem-collage {
    position: relative;
    height: 320px;
  }

  .collage-one {
    right: auto;
    left: 45%;
  }

  .collage-two {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
  }

  .problem-copy {
    min-height: auto;
    padding: 0;
  }

  .problem-copy h2,
  .problem-copy p {
    width: auto;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .benefit-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-service {
    grid-template-columns: 1fr 250px;
  }

  .care-strategy {
    min-height: auto;
    padding: 44px 0 76px;
  }

  .strategy-cards {
    display: grid;
    min-height: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding-top: 0;
  }

  .floating-card {
    position: static;
    width: auto;
    min-height: 380px;
    padding: 28px 24px;
  }

  .strategy-note {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 3;
    margin-top: 42px;
  }

  .operations-grid {
    grid-template-columns: 1fr;
  }

  .coordination {
    padding-top: 44px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .footer-grid {
    grid-template-columns: 170px 1fr 1fr;
  }

  .footer-nav {
    grid-column: 2 / -1;
    grid-template-columns: repeat(5, auto);
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 78px;
    --radius-lg: 28px;
  }

  body {
    font-size: 15px;
  }

  .page-shell {
    width: min(100% - 48px, 560px);
  }

  .site-header {
    min-height: var(--header-h);
    gap: 8px;
    padding: 10px 24px;
  }

  .site-header.is-scrolled {
    min-height: 70px;
  }

  .brand img {
    width: clamp(128px, 40vw, 150px);
  }

  .btn-small {
    min-height: 40px;
    max-width: 130px;
    padding: 8px 10px;
    font-size: clamp(9px, 2.7vw, 10px);
    letter-spacing: 0.06em;
  }

  .btn-small .whatsapp-mark {
    display: none;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    min-height: 0;
    padding-inline: 0;
  }

  .display {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .hero-intro p {
    font-size: clamp(16px, 4.8vw, 18px);
  }

  .hero-points {
    align-self: start;
    font-size: 15px;
    line-height: 1.8;
  }

  .scribble-hero-b {
    right: -20px;
    bottom: 6px;
    width: 120px;
  }

  .hero-photo {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-photo img {
    object-position: 45% center;
  }

  .problem {
    margin-top: -38px;
    padding-top: 34px;
  }

  .problem-scribble {
    top: 22px;
    left: -50px;
    width: 150px;
  }

  .problem-collage {
    display: grid;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    aspect-ratio: auto;
  }

  .problem-collage .parallax-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 230 / 157;
  }

  .collage-one,
  .collage-two {
    inset: auto;
  }

  .problem-copy h2,
  .section-heading h2,
  .differential-intro h2,
  .security h2 {
    font-size: clamp(28px, 9vw, 35px);
  }

  .benefit-grid,
  .service-grid,
  .trust-grid,
  .strategy-cards {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .service-card,
  .trust-card {
    min-height: auto;
  }

  .benefit-card h3 {
    min-height: 0;
  }

  .featured-service {
    display: flex;
    left: auto;
    width: auto;
    min-height: 0;
    padding: 28px 24px;
    flex-direction: column;
    transform: none;
  }

  .featured-service.reveal,
  .featured-service.reveal.is-visible {
    transform: none;
  }

  .featured-photo {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .btn-outline {
    width: 100%;
    padding-inline: 20px;
    font-size: 15px;
  }

  .differential-intro {
    padding-block: 56px;
  }

  .care-strategy {
    background-position: 55% center;
  }

  .floating-card {
    min-height: auto;
  }

  .floating-card h3,
  .service-card h3,
  .trust-card h3 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .strategy-icon {
    width: 58px;
    height: 58px;
  }

  .strategy-note {
    padding-inline: 24px;
    font-size: 21px;
  }

  .operations-grid {
    gap: 38px;
  }

  .operations {
    margin-top: -24px;
  }

  .operations h2 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .operations-action .btn {
    width: min(100%, 360px);
    margin-top: -12px;
  }

  .security {
    margin-top: -18px;
  }

  .profile-row {
    grid-template-columns: minmax(0, 1fr) min(34vw, 130px);
  }

  .profile-photo {
    width: 100%;
    height: auto;
    aspect-ratio: 130 / 190;
  }

  .profile-person {
    margin-top: -10px;
  }

  .timeline li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .timeline > li > span {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .final-cta > div > p:not(.service-area, .hours) {
    text-align: center;
  }

  .contact {
    min-height: 0;
  }

  .contact-background {
    object-position: 25% center;
  }

  .contact-shell {
    min-height: 0;
    grid-template-columns: 1fr;
    align-content: start;
    padding-block: 64px 55px;
  }

  .contact-label {
    position: static;
    width: auto;
    align-self: end;
    padding-top: 0;
    text-align: left;
  }

  .contact-form {
    width: 100%;
    min-width: 0;
    grid-column: 1;
    padding: 26px 20px 22px;
  }

  .contact-form h2 {
    font-size: clamp(32px, 10vw, 38px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: -20px;
    padding-top: 52px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    width: 175px;
    margin: 0 auto;
  }

  .footer-nav {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .legal-links {
    flex-direction: column;
    gap: 8px;
  }

  .page-shell > *,
  .form-grid > *,
  .profile-row > *,
  .footer-grid > * {
    min-width: 0;
  }

  h1,
  h2,
  h3,
  p,
  li,
  a,
  label,
  button {
    overflow-wrap: anywhere;
  }

  .btn {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .site-header .btn {
    white-space: nowrap;
  }
}

@media (max-width: 359px) {
  .page-shell {
    width: calc(100% - 36px);
  }

  .site-header {
    padding-inline: 18px;
  }

  .strategy-note {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
