:root {
  --ink: #123f43;
  --teal: #0b4f55;
  --teal-deep: #073c41;
  --teal-dark: #052f33;
  --mint: #79d6c4;
  --mint-soft: #dff5ef;
  --coral: #ff826e;
  --coral-dark: #ec6653;
  --cream: #fff8ed;
  --paper: #fffdf8;
  --white: #ffffff;
  --muted: #597377;
  --line: rgba(11, 79, 85, 0.14);
  --shadow: 0 24px 70px rgba(7, 60, 65, 0.13);
  --shadow-soft: 0 14px 40px rgba(7, 60, 65, 0.09);
  --display: "Arial Rounded MT Bold", "Trebuchet MS", ui-rounded, sans-serif;
  --body: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

::selection {
  color: var(--white);
  background: var(--teal);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.screen-reader-text,
.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  background: rgba(255, 248, 237, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(7, 60, 65, 0.07);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark,
.custom-logo {
  width: 52px;
  height: 48px;
  object-fit: contain;
}

.custom-logo-link {
  display: flex;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  padding-block: 10px;
  font-size: 14px;
  font-weight: 700;
}

.nav-list a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--coral);
  border: 0;
  border-radius: 16px 16px 16px 5px;
  box-shadow: 0 12px 28px rgba(255, 130, 110, 0.24);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.button:hover {
  background: var(--coral-dark);
  box-shadow: 0 16px 32px rgba(255, 130, 110, 0.32);
  transform: translateY(-2px);
}

.button-small {
  min-height: 43px;
  padding: 10px 18px;
  font-size: 13px;
}

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

.section {
  position: relative;
  padding-block: clamp(88px, 10vw, 144px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.eyebrow-light {
  color: var(--mint);
}

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

h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5vw, 66px);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: 148px 0 116px;
  background:
    radial-gradient(circle at 11% 17%, rgba(121, 214, 196, 0.25) 0 10%, transparent 28%),
    linear-gradient(135deg, var(--cream) 0%, #f3fbf7 100%);
  overflow: hidden;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.82fr);
  align-items: center;
  gap: clamp(54px, 8vw, 106px);
}

.hero-copy {
  padding-bottom: 6px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(48px, 6.2vw, 82px);
}

.hero h1 em,
.clinic-copy h2 em {
  position: relative;
  display: inline;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: -10px;
  left: 3%;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12'%3E%3Cpath d='M3 8c74-8 176-7 294-3' fill='none' stroke='%23ff826e' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  opacity: 0.55;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button-primary {
  min-height: 58px;
  padding-inline: 27px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-block: 6px;
  color: var(--teal);
  border-bottom: 1px solid rgba(11, 79, 85, 0.35);
  font-size: 14px;
  font-weight: 800;
  transition: gap 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  gap: 13px;
  border-color: var(--teal);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
  margin-top: 56px;
}

.hero-trust div {
  display: grid;
  padding-right: 24px;
}

.hero-trust div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.hero-trust strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.hero-trust span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.hero-visual {
  position: relative;
  max-width: 510px;
  justify-self: end;
}

.photo-frame {
  position: relative;
  z-index: 2;
  height: clamp(510px, 48vw, 625px);
  overflow: hidden;
  background: var(--mint-soft);
  border: 9px solid rgba(255, 255, 255, 0.82);
  border-radius: 48% 48% 34% 34% / 30% 30% 56% 56%;
  box-shadow: var(--shadow);
  transform: rotate(1.6deg);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015) rotate(-1.6deg);
}

.photo-shade {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(5, 47, 51, 0.15));
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 88%;
  aspect-ratio: 1;
  right: -54px;
  top: 19%;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.19;
  filter: blur(1px);
}

.hero-logo {
  position: absolute;
  z-index: 4;
  right: -49px;
  bottom: 24px;
  width: 136px;
  height: auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 38px 38px 12px 38px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 18px 18px 18px 6px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  animation: float-card 5s ease-in-out infinite;
}

.floating-card p {
  display: grid;
  margin: 0;
  line-height: 1.2;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.floating-card-top {
  top: 19%;
  left: -66px;
}

.floating-card-bottom {
  right: -17px;
  bottom: 33%;
  animation-delay: -2.5s;
}

.floating-card-bottom svg {
  width: 30px;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.pulse-dot {
  position: relative;
  width: 11px;
  height: 11px;
  background: var(--mint);
  border-radius: 50%;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--mint);
  border-radius: 50%;
  animation: pulse-dot 2s ease-out infinite;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(11, 79, 85, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 410px;
  height: 410px;
  top: 4%;
  right: -205px;
}

.orbit-two {
  width: 170px;
  height: 170px;
  left: -80px;
  bottom: 3%;
}

.hero-wave {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 80px;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  fill: var(--paper);
}

@keyframes float-card {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(1deg); }
}

@keyframes pulse-dot {
  from { opacity: 0.8; transform: scale(0.6); }
  to { opacity: 0; transform: scale(1.4); }
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  align-items: end;
  gap: 100px;
  margin-bottom: 58px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
  font-size: 18px;
}

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

.service-card {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 36px 34px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px 28px 28px 9px;
  box-shadow: 0 8px 30px rgba(7, 60, 65, 0.04);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -86px;
  bottom: -86px;
  background: var(--mint-soft);
  border-radius: 50%;
  transition: transform 350ms ease;
}

.service-card:hover {
  border-color: rgba(11, 79, 85, 0.23);
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
}

.service-card:hover::after {
  transform: scale(1.3);
}

.service-card-featured {
  margin-top: -16px;
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 22px 50px rgba(7, 60, 65, 0.2);
}

.service-card-featured::after {
  background: rgba(121, 214, 196, 0.13);
}

.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 22px 22px 22px 7px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-teal {
  color: var(--teal);
  background: var(--mint-soft);
}

.icon-coral {
  color: var(--white);
  background: var(--coral);
}

.icon-mint {
  color: var(--teal);
  background: rgba(121, 214, 196, 0.3);
}

.service-label {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 31px;
}

.service-card > p:not(.service-label) {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-card-featured > p:not(.service-label) {
  color: rgba(255, 255, 255, 0.72);
}

.service-card > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
}

.service-card-featured > a {
  color: var(--mint);
}

.scope-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 930px;
  padding: 18px 22px;
  margin: 38px auto 0;
  color: var(--muted);
  background: #f1f8f5;
  border: 1px solid rgba(11, 79, 85, 0.1);
  border-radius: 16px;
}

.scope-note svg {
  width: 24px;
  min-width: 24px;
  margin-top: 2px;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.scope-note p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.scope-note strong {
  color: var(--ink);
}

.clinic-section {
  padding-block: clamp(90px, 11vw, 150px);
  color: var(--white);
  background:
    radial-gradient(circle at 81% 18%, rgba(121, 214, 196, 0.12), transparent 26%),
    var(--teal-dark);
  overflow: hidden;
}

.clinic-section::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -360px;
  bottom: -240px;
  border: 1px solid rgba(121, 214, 196, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(121, 214, 196, 0.025), 0 0 0 180px rgba(121, 214, 196, 0.018);
}

.clinic-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(70px, 9vw, 130px);
}

.clinic-art {
  position: relative;
  min-height: 570px;
}

.clinic-illustration {
  position: absolute;
  inset: 10px 0 0;
  display: grid;
  place-items: center;
}

.clinic-circle {
  position: absolute;
  width: min(430px, 90%);
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--mint), #51bda9);
  border-radius: 44% 56% 59% 41% / 44% 40% 60% 56%;
  animation: morph-circle 9s ease-in-out infinite;
}

.clinic-illustration::before,
.clinic-illustration::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(121, 214, 196, 0.28);
  border-radius: 50%;
}

.clinic-illustration::before {
  width: 520px;
  height: 520px;
}

.clinic-illustration::after {
  width: 610px;
  height: 610px;
  opacity: 0.5;
}

.clinic-illustration img {
  position: relative;
  z-index: 2;
  width: min(360px, 74%);
  filter: drop-shadow(0 28px 30px rgba(5, 47, 51, 0.18));
}

.doctor-card {
  position: absolute;
  z-index: 5;
  right: -15px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 282px;
  padding: 18px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 21px 21px 21px 7px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.doctor-monogram {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 17px;
}

.doctor-card p,
.doctor-card h3,
.doctor-card span {
  margin: 0;
  line-height: 1.25;
}

.doctor-card p {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.doctor-card h3 {
  margin-top: 4px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.doctor-card span {
  color: var(--muted);
  font-size: 11px;
}

.orbit-pet {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--ink);
  background: var(--cream);
  border: 5px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  background-clip: padding-box;
  font-size: 10px;
  font-weight: 900;
}

.orbit-pet-one {
  top: 68px;
  left: 10px;
}

.orbit-pet-two {
  top: 170px;
  right: -6px;
}

@keyframes morph-circle {
  0%, 100% { border-radius: 44% 56% 59% 41% / 44% 40% 60% 56%; transform: rotate(0deg); }
  50% { border-radius: 56% 44% 43% 57% / 57% 53% 47% 43%; transform: rotate(3deg); }
}

.clinic-copy h2 {
  margin-bottom: 28px;
}

.clinic-copy > p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.clinic-copy blockquote {
  position: relative;
  padding-left: 25px;
  margin: 34px 0;
  color: var(--mint);
  border-left: 3px solid var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 14px;
}

.check-list span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.steps-section {
  padding-bottom: clamp(80px, 8vw, 120px);
  background: var(--paper);
}

.steps-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.steps-heading .eyebrow,
.steps-heading h2 {
  margin-bottom: 0;
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--mint) 0 7px, transparent 7px 15px);
}

.step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
}

.step > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--mint);
  font-family: var(--display);
  font-size: 17px;
}

.step h3 {
  margin: 5px 0 12px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  background: #f0f8f5;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(500px, 1fr);
  gap: clamp(70px, 9vw, 132px);
}

.faq-heading > p:not(.eyebrow) {
  margin: 0 0 26px;
  color: var(--muted);
}

.accordion {
  border-top: 1px solid rgba(11, 79, 85, 0.2);
}

.accordion details {
  border-bottom: 1px solid rgba(11, 79, 85, 0.2);
}

.accordion summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.035em;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary span {
  position: relative;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--white);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 10px;
  width: 12px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 200ms ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

.accordion details[open] summary span {
  background: var(--coral);
}

.accordion details[open] summary span::before,
.accordion details[open] summary span::after {
  background: var(--white);
}

.accordion details[open] summary span::after {
  transform: rotate(0deg);
}

.accordion details div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.accordion details[open] div {
  grid-template-rows: 1fr;
}

.accordion details p {
  max-width: 620px;
  margin: 0;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 15px;
  overflow: hidden;
}

.location-section {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(64px, 8vw, 110px);
}

.map-card {
  position: relative;
  height: 555px;
  padding: 14px;
  background: var(--mint-soft);
  border-radius: 34px 34px 34px 10px;
  box-shadow: var(--shadow);
}

.map-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 140px;
  height: 140px;
  left: -50px;
  bottom: -48px;
  background-image: radial-gradient(var(--coral) 2px, transparent 2px);
  background-size: 14px 14px;
  opacity: 0.38;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 24px 24px 24px 5px;
  filter: saturate(0.75) sepia(0.06) hue-rotate(112deg);
}

.map-link {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--teal);
  border-radius: 13px;
  box-shadow: 0 10px 25px rgba(7, 60, 65, 0.24);
  font-size: 12px;
  font-weight: 800;
}

.location-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.address-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px;
  margin-top: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 19px 19px 19px 6px;
}

.address-card svg {
  width: 49px;
  height: 49px;
  padding: 12px;
  fill: none;
  stroke: var(--coral);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  background: rgba(255, 130, 110, 0.1);
  border-radius: 15px;
}

.address-card div {
  display: grid;
  line-height: 1.35;
}

.address-card small,
.hours-row small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.address-card strong {
  margin-top: 3px;
  font-size: 15px;
}

.address-card span {
  color: var(--muted);
  font-size: 12px;
}

.hours-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 26px;
}

.hours-row div {
  display: grid;
  gap: 2px;
}

.hours-row strong {
  font-size: 15px;
}

.contact-section {
  padding-block: clamp(95px, 11vw, 148px);
  color: var(--white);
  background: var(--teal);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -330px;
  left: -160px;
  border: 1px solid rgba(121, 214, 196, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(121, 214, 196, 0.035), 0 0 0 160px rgba(121, 214, 196, 0.025);
}

.contact-dots {
  position: absolute;
  width: 220px;
  height: 220px;
  right: -30px;
  bottom: -25px;
  background-image: radial-gradient(rgba(121, 214, 196, 0.35) 2px, transparent 2px);
  background-size: 17px 17px;
  transform: rotate(-12deg);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(530px, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 132px);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.whatsapp-card {
  max-width: 390px;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 15px;
  padding: 15px;
  margin-top: 35px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px 18px 18px 6px;
  transition: background 200ms ease, transform 200ms ease;
}

.whatsapp-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-3px);
}

.whatsapp-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--mint);
  border-radius: 15px;
}

.whatsapp-icon svg {
  width: 27px;
  fill: currentColor;
}

.whatsapp-card > span:nth-child(2) {
  display: grid;
}

.whatsapp-card small {
  color: var(--mint);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.whatsapp-card strong {
  margin-top: 3px;
  font-size: 17px;
}

.form-card {
  padding: clamp(26px, 3.4vw, 43px);
  color: var(--ink);
  background: var(--cream);
  border-radius: 30px 30px 30px 9px;
  box-shadow: 0 30px 70px rgba(5, 47, 51, 0.28);
}

.form-notice {
  padding: 13px 15px;
  margin-bottom: 19px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

.form-notice-success {
  color: #175e42;
  background: #dff5e8;
  border: 1px solid #afdcc0;
}

.form-notice-error {
  color: #8c3024;
  background: #ffebe7;
  border: 1px solid #fac6bc;
}

.form-card form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.form-card label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.form-card label > span {
  color: var(--coral);
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(11, 79, 85, 0.17);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-card input,
.form-card select {
  height: 49px;
  padding: 0 14px;
}

.form-card textarea {
  min-height: 105px;
  padding: 13px 14px;
  resize: vertical;
}

.form-card input::placeholder,
.form-card textarea::placeholder {
  color: #90a4a5;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(121, 214, 196, 0.2);
}

.form-card .consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
}

.form-card .consent input {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.form-card .consent span {
  color: inherit;
}

.button-submit {
  width: 100%;
  min-height: 55px;
  margin-top: 1px;
  background: var(--teal);
  box-shadow: 0 12px 25px rgba(7, 60, 65, 0.18);
}

.button-submit:hover {
  background: var(--teal-deep);
}

.site-footer {
  padding: 70px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--teal-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 70px;
}

.brand-light {
  color: var(--white);
}

.brand-light .brand-copy small {
  color: var(--mint);
}

.footer-brand > p {
  max-width: 400px;
  margin: 22px 0 0;
  font-size: 14px;
}

.footer-title {
  margin: 0 0 17px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  font-size: 13px;
  list-style: none;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 30px;
  padding-top: 24px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 10px;
}

.footer-bottom .demo-note {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.42);
}

.floating-whatsapp {
  position: fixed;
  z-index: 75;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: var(--teal-dark);
  background: var(--mint);
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px 18px 18px 5px;
  box-shadow: 0 14px 35px rgba(5, 47, 51, 0.24);
  font-size: 12px;
  font-weight: 900;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 40px rgba(5, 47, 51, 0.3);
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 23px;
  fill: currentColor;
}

.default-content {
  min-height: 70vh;
  padding-block: 150px 80px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(2),
.steps-grid .reveal:nth-child(2) {
  transition-delay: 90ms;
}

.services-grid .reveal:nth-child(3),
.steps-grid .reveal:nth-child(3) {
  transition-delay: 180ms;
}

@media (max-width: 1080px) {
  :root { --shell: min(100% - 40px, 980px); }

  .primary-navigation { gap: 20px; }
  .nav-list { gap: 18px; }
  .nav-list a { font-size: 13px; }
  .hero-grid { grid-template-columns: 1.03fr minmax(360px, 0.78fr); gap: 54px; }
  .hero h1 { font-size: clamp(48px, 6vw, 66px); }
  .floating-card-top { left: -32px; }
  .hero-logo { right: -18px; }
  .section-heading { gap: 60px; }
  .clinic-grid { gap: 70px; }
  .clinic-illustration::after { display: none; }
  .faq-grid { gap: 70px; }
  .location-grid { grid-template-columns: 1fr 0.75fr; gap: 60px; }
  .contact-grid { gap: 60px; }
}

@media (max-width: 880px) {
  .menu-toggle { display: block; }

  .primary-navigation {
    position: fixed;
    inset: 86px 16px auto;
    max-height: calc(100vh - 110px);
    display: grid;
    gap: 24px;
    padding: 28px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .primary-navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    gap: 2px;
  }

  .nav-list a {
    display: block;
    padding: 12px 0;
    font-size: 17px;
  }

  .primary-navigation .button { width: 100%; }

  .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); }

  .hero { padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(520px, 88%); justify-self: center; }
  .photo-frame { height: 590px; }

  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading > p { max-width: 680px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card-featured { margin-top: 0; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 330px; }

  .clinic-grid { grid-template-columns: 1fr; }
  .clinic-art { width: min(600px, 100%); margin-inline: auto; }
  .clinic-copy { max-width: 660px; }

  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .steps-grid::before { top: 20px; bottom: 20px; left: 28px; width: 1px; height: auto; background: repeating-linear-gradient(180deg, var(--mint) 0 7px, transparent 7px 15px); }

  .faq-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .faq-heading, .location-copy, .contact-copy { max-width: 680px; }
  .map-card { height: 480px; }
  .contact-copy { text-align: center; margin-inline: auto; }
  .contact-copy .eyebrow { justify-content: center; }
  .whatsapp-card { margin-inline: auto; text-align: left; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 32px); }

  body { font-size: 16px; }
  .header-inner { min-height: 76px; }
  .brand-mark, .custom-logo { width: 45px; height: 42px; }
  .brand-copy strong { font-size: 20px; }
  .primary-navigation { inset: 76px 12px auto; }
  .section { padding-block: 82px; }

  .hero { min-height: auto; padding: 112px 0 92px; }
  .hero-grid { gap: 50px; }
  .hero h1 { font-size: clamp(42px, 12.5vw, 58px); }
  .hero h1 br { display: none; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 19px; }
  .button-primary { width: 100%; }
  .hero-trust { width: 100%; grid-template-columns: 1fr; gap: 14px; margin-top: 42px; }
  .hero-trust div { display: flex; justify-content: center; gap: 7px; padding: 0; }
  .hero-trust div + div { padding: 0; border: 0; }
  .hero-trust span { margin: 0; }
  .hero-visual { width: 92%; }
  .photo-frame { height: 470px; border-width: 6px; }
  .floating-card-top { top: 15%; left: -14px; }
  .floating-card-bottom { right: -12px; bottom: 27%; }
  .hero-logo { width: 102px; right: -12px; bottom: 18px; padding: 13px; border-radius: 26px 26px 8px 26px; }
  .floating-card { padding: 11px 13px; }
  .floating-card strong { font-size: 11px; }
  .floating-card small { font-size: 8px; }

  h2 { font-size: clamp(38px, 11vw, 51px); }
  .section-heading { margin-bottom: 38px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { min-height: 350px; grid-column: auto; }
  .scope-note { margin-top: 26px; }

  .clinic-art { min-height: 470px; }
  .clinic-circle { width: 86%; }
  .clinic-illustration::before { width: 110%; height: auto; aspect-ratio: 1; }
  .doctor-card { right: 0; bottom: -4px; min-width: 260px; }
  .orbit-pet-one { top: 40px; left: -6px; }
  .orbit-pet-two { top: 132px; right: -5px; }

  .steps-heading { display: block; }
  .steps-heading h2 { margin-top: 18px; }
  .step { grid-template-columns: 52px 1fr; gap: 17px; }
  .step > span { width: 52px; height: 52px; }
  .steps-grid::before { left: 25px; }

  .faq-grid, .location-grid, .contact-grid { gap: 50px; }
  .accordion summary { min-height: 72px; font-size: 17px; }
  .accordion details p { padding-right: 20px; }
  .map-card { height: 390px; padding: 9px; border-radius: 25px 25px 25px 8px; }
  .map-card iframe { border-radius: 18px 18px 18px 5px; }
  .hours-row { gap: 12px; }

  .form-card { padding: 25px 19px; }
  .form-row { grid-template-columns: 1fr; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 13px; border-radius: 50%; }
  .floating-whatsapp span { display: none; }
  .site-footer { padding-top: 58px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .particle-canvas { display: none; }
}
