:root {
  --navy: #073b66;
  --navy-deep: #032f53;
  --teal: #0c9eb1;
  --teal-dark: #087f90;
  --teal-pale: #dff5f4;
  --pink: #df3f78;
  --pink-pale: #ffe8ef;
  --ink: #102b44;
  --muted: #5f7180;
  --cream: #fffaf5;
  --white: #ffffff;
  --line: #dfe9eb;
  --shadow: 0 20px 60px rgba(7, 59, 102, 0.13);
  --soft-shadow: 0 10px 30px rgba(7, 59, 102, 0.09);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
}

svg {
  overflow: visible;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--navy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.service-area-bar {
  padding: 7px 20px;
  color: white;
  background: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.service-area-bar span {
  margin-right: 7px;
  color: var(--pink);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 250, 245, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(7, 59, 102, 0.08);
  box-shadow: 0 6px 24px rgba(7, 59, 102, 0.08);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  line-height: 1.05;
}

.brand-mark {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.brand-mark .roof {
  fill: none;
  stroke: var(--navy);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.brand-mark .heart {
  fill: var(--teal-pale);
  stroke: var(--teal);
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.brand-mark circle {
  fill: var(--navy);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  letter-spacing: 0.015em;
}

.brand small {
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  font-weight: 750;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--teal-pale);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 23px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: white;
  background: var(--navy);
  box-shadow: 0 9px 24px rgba(7, 59, 102, 0.18);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(7, 59, 102, 0.25);
  transform: translateY(-2px);
}

.button svg,
.mobile-contact svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-small {
  min-height: 42px;
  padding: 9px 19px;
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(223, 63, 120, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--pink);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.91) 44%, rgba(255, 250, 245, 0) 74%),
    radial-gradient(circle at 80% 20%, #d9f4f3, transparent 34%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 66px;
  align-items: center;
  padding-block: 72px 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 3px;
  display: inline-block;
  border-radius: 3px;
  background: var(--pink);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 650px;
  margin-bottom: 23px;
  font-size: clamp(3rem, 5vw, 5.15rem);
  line-height: 0.98;
}

h1 em {
  color: var(--pink);
  font-weight: 500;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 30px;
  color: #435d70;
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}

.trust-list {
  margin: 31px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  list-style: none;
  color: #4b6475;
  font-size: 0.8rem;
  font-weight: 750;
}

.trust-list span {
  width: 19px;
  height: 19px;
  margin-right: 4px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--teal);
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-photo {
  min-height: 490px;
  overflow: hidden;
  border: 9px solid white;
  border-radius: 44% 44% 26px 26px;
  background-image:
    linear-gradient(0deg, rgba(7, 59, 102, 0.18), transparent 34%),
    url("assets/caryn-havasu-home-pet.jpg");
  background-position: 8% top;
  background-size: 145% auto;
  box-shadow: var(--shadow);
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(7, 59, 102, 0.06);
}

.meet-card {
  position: absolute;
  bottom: -28px;
  left: -35px;
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 20px;
  border: 1px solid rgba(7, 59, 102, 0.08);
  border-radius: 18px;
  background: white;
  box-shadow: var(--soft-shadow);
  transform: rotate(-2deg);
}

.meet-card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pink);
  background: var(--pink-pale);
  font-size: 1.3rem;
}

.meet-card strong,
.meet-card small {
  display: block;
}

.meet-card strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}

.meet-card small {
  color: var(--muted);
  font-size: 0.76rem;
}

.local-badge {
  position: absolute;
  top: 31px;
  right: -25px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  color: white;
  background: var(--teal);
  box-shadow: 0 8px 20px rgba(12, 158, 177, 0.25);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.local-badge svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-one {
  right: -100px;
  bottom: -120px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(12, 158, 177, 0.08);
}

.hero-orb-two {
  top: 88px;
  left: 46%;
  width: 52px;
  height: 52px;
  background: rgba(223, 63, 120, 0.12);
}

.value-strip {
  color: white;
  background: var(--navy);
}

.value-strip-inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.value-strip p {
  max-width: 300px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  line-height: 1.35;
}

.value-strip strong {
  color: #6ce0e4;
}

.mini-proof {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 21px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.mini-proof b {
  display: block;
  color: white;
  font-size: 0.87rem;
}

.mini-proof i {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.21);
}

.section {
  padding-block: 112px;
}

.section-heading {
  margin-bottom: 53px;
}

.section-heading h2,
.meet-copy h2,
.contact-card h2,
.faq-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 4vw, 3.85rem);
  line-height: 1.08;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.split-heading h2 {
  max-width: 690px;
  margin-bottom: 0;
}

.split-heading > p,
.centered-heading > p,
.faq-intro > p {
  color: var(--muted);
}

.split-heading > p {
  margin-bottom: 4px;
}

.services {
  position: relative;
  background: white;
}

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

.service-card {
  min-height: 208px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(12, 158, 177, 0.48);
  box-shadow: var(--soft-shadow);
  transform: translateY(-5px);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--teal-dark);
  background: var(--teal-pale);
}

.service-icon svg,
.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.25;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.service-card .card-kicker {
  margin-bottom: 7px;
  color: var(--pink);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-card,
.concierge-card {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.featured-card .service-icon,
.concierge-card .service-icon {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

.featured-card h3,
.concierge-card h3 {
  color: white;
}

.featured-card p,
.concierge-card p {
  color: rgba(255, 255, 255, 0.74);
}

.concierge-card {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.meet-section {
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 12% 25%, rgba(108, 224, 228, 0.12), transparent 27%),
    var(--navy);
}

.meet-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 105px;
  align-items: center;
}

.meet-art {
  position: relative;
  min-height: 520px;
}

.polaroid {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  margin: 10px auto 0;
  padding: 14px 14px 16px;
  color: var(--navy);
  background: white;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  transform: rotate(-3.5deg);
}

.polaroid-photo {
  aspect-ratio: 1 / 1.08;
  background: url("assets/caryn-havasu-home-pet.jpg") center top / 143% auto no-repeat;
}

.polaroid p {
  margin: 12px 0 0;
  font-family: "Segoe Print", "Bradley Hand", cursive;
  font-size: 0.9rem;
  text-align: center;
}

.polaroid span {
  color: var(--pink);
}

.sun-ring {
  position: absolute;
  z-index: 1;
  top: -30px;
  right: -60px;
  width: 280px;
  height: 280px;
  border: 54px solid rgba(12, 158, 177, 0.28);
  border-radius: 50%;
}

.art-paw {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--pink);
  font-size: 2.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.paw-one {
  right: 2%;
  bottom: 30px;
}

.paw-two {
  top: 70px;
  left: -20px;
  width: 28px;
  height: 28px;
  background: var(--teal);
  font-size: 1.5rem;
}

.eyebrow.light {
  color: #79e1e4;
}

.meet-copy h2,
.contact-card h2 {
  color: white;
}

.lead-quote {
  max-width: 690px;
  margin-bottom: 24px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  line-height: 1.55;
}

.meet-copy > p:not(.eyebrow):not(.lead-quote) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.72);
}

.button-pink {
  margin-top: 9px;
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: 0 10px 26px rgba(223, 63, 120, 0.22);
}

.button-pink:hover,
.button-pink:focus-visible {
  background: #c72d64;
}

.process {
  background: var(--cream);
}

.centered-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p {
  max-width: 620px;
  margin-inline: auto;
}

.process-grid {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  counter-reset: steps;
}

.process-grid li {
  position: relative;
  padding: 4px 50px 0;
  text-align: center;
}

.process-grid li + li {
  border-left: 1px dashed rgba(7, 59, 102, 0.2);
}

.step-number {
  position: absolute;
  top: -12px;
  left: 26px;
  color: rgba(7, 59, 102, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.1rem;
  font-weight: 800;
  line-height: 1;
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--teal-dark);
  background: var(--teal-pale);
  transform: rotate(4deg);
}

.process-grid li:nth-child(2) .step-icon {
  color: var(--pink);
  background: var(--pink-pale);
  transform: rotate(-4deg);
}

.process-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.process-grid p {
  color: var(--muted);
  font-size: 0.88rem;
}

.faq-section {
  background: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro .text-link {
  margin-top: 6px;
}

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

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

.faq-list summary {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: var(--teal-pale);
  font-family: sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 600px;
  margin: -6px 56px 27px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding: 0 0 90px;
  background: white;
}

.contact-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
  padding: 54px 64px;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 95% 0%, rgba(108, 224, 228, 0.19), transparent 33%),
    var(--teal-dark);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 700px;
  margin-bottom: 12px;
}

.contact-card p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.button-white {
  color: var(--navy);
  border-color: white;
  background: white;
  box-shadow: none;
}

.button-white:hover,
.button-white:focus-visible {
  color: var(--navy);
  background: var(--pink-pale);
  border-color: var(--pink-pale);
}

.facebook-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
}

.facebook-link span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--teal-dark);
  background: white;
  font-family: Arial, sans-serif;
  font-weight: 900;
}

.contact-paw {
  position: absolute;
  right: -70px;
  bottom: -100px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 18rem;
  line-height: 1;
  transform: rotate(-14deg);
}

.site-footer {
  padding-block: 52px 94px;
  background: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
  align-items: center;
}

.footer-brand .brand-mark {
  width: 42px;
  height: 42px;
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-inner .copyright {
  text-align: right;
}

.mobile-contact {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 34px;
  }

  .hero-photo {
    min-height: 450px;
    background-size: auto 100%;
  }

  .local-badge {
    right: -8px;
  }

  .meet-card {
    left: -12px;
  }

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

  .meet-grid {
    gap: 60px;
  }

  .faq-grid {
    gap: 55px;
  }

  .contact-card {
    gap: 40px;
    padding-inline: 45px;
  }
}

@media (max-width: 790px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .service-area-bar {
    padding-block: 6px;
    font-size: 0.65rem;
    letter-spacing: 0.09em;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 43px;
    height: 43px;
  }

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 102;
    inset: 0;
    padding: 120px 34px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav > a:not(.button) {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
  }

  .site-nav .button {
    margin-top: 28px;
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 58px 76px;
  }

  h1 {
    max-width: 680px;
    font-size: clamp(3.25rem, 12vw, 5rem);
  }

  .hero-lede {
    font-size: 1.03rem;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero-photo {
    min-height: 500px;
    background-size: 145% auto;
  }

  .value-strip-inner {
    padding-block: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .value-strip p {
    max-width: none;
  }

  .mini-proof {
    width: 100%;
    justify-content: space-between;
  }

  .section {
    padding-block: 88px;
  }

  .split-heading,
  .meet-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 23px;
  }

  .meet-grid {
    gap: 62px;
  }

  .meet-art {
    width: min(100%, 500px);
    margin-inline: auto;
  }

  .process-grid li {
    padding-inline: 25px;
  }

  .faq-grid {
    gap: 50px;
  }

  .faq-intro {
    position: static;
  }

  .contact-card {
    gap: 30px;
  }

  .contact-actions {
    max-width: 360px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-inner .copyright {
    text-align: left;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .brand strong {
    max-width: 180px;
    font-size: 0.8rem;
  }

  .brand small {
    font-size: 0.63rem;
  }

  h1 {
    font-size: clamp(2.95rem, 15vw, 4.2rem);
  }

  .hero-grid {
    padding-top: 45px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    align-self: center;
  }

  .trust-list {
    gap: 9px 13px;
    font-size: 0.72rem;
  }

  .hero-photo {
    min-height: 355px;
    border-width: 7px;
    border-radius: 38% 38% 22px 22px;
    background-size: 145% auto;
  }

  .meet-card {
    bottom: -35px;
    left: 3px;
    min-width: 190px;
    padding: 11px 14px;
  }

  .meet-card-icon {
    width: 37px;
    height: 37px;
  }

  .meet-card strong {
    font-size: 0.98rem;
  }

  .local-badge {
    top: 22px;
    right: -3px;
    padding: 8px 11px;
    font-size: 0.64rem;
  }

  .mini-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .mini-proof i {
    display: none;
  }

  .section {
    padding-block: 75px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .meet-copy h2,
  .contact-card h2,
  .faq-intro h2 {
    font-size: clamp(2.2rem, 11vw, 3.1rem);
  }

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

  .service-card {
    min-height: 0;
    flex-direction: row;
    gap: 18px;
    padding: 21px;
  }

  .service-icon {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .meet-art {
    min-height: 390px;
  }

  .polaroid {
    width: 88%;
  }

  .sun-ring {
    right: -90px;
    width: 220px;
    height: 220px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .process-grid li {
    padding-inline: 45px;
  }

  .process-grid li + li {
    border-left: 0;
  }

  .step-number {
    left: 20px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 1rem;
  }

  .contact-section {
    padding-bottom: 70px;
  }

  .contact-card {
    width: calc(100% - 28px);
    padding: 38px 25px;
    border-radius: 24px;
  }

  .contact-actions {
    max-width: none;
  }

  .site-footer {
    padding-bottom: 50px;
  }

  .mobile-contact {
    position: fixed;
    z-index: 200;
    right: 0;
    bottom: 0;
    left: 0;
    height: 72px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px rgba(7, 59, 102, 0.12);
    backdrop-filter: blur(12px);
  }

  .mobile-contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    color: var(--navy);
    background: var(--teal-pale);
    font-size: 0.83rem;
    font-weight: 850;
  }

  .mobile-contact a:last-child {
    color: white;
    background: var(--navy);
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
