:root {
  --ink: #101b3d;
  --ink-soft: #52617e;
  --forest: #243f99;
  --forest-dark: #14255f;
  --mint: #3aa7ea;
  --lime: #d8efff;
  --cream: #f1f7fc;
  --paper: #fbfdff;
  --white: #ffffff;
  --coral: #3aa7ea;
  --line: rgba(36, 63, 153, 0.14);
  --radius-lg: 36px;
  --radius-md: 24px;
  --font-display: "Manrope", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.page-loader {
  align-items: center;
  background: var(--forest-dark);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 22px;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 1000;
}

.page-loader p {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.loader-mark {
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 50px rgba(5, 15, 54, 0.28);
  display: grid;
  height: 72px;
  overflow: hidden;
  place-items: center;
  position: relative;
  width: 72px;
}

.loader-mark img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cursor-dot,
.cursor-ring {
  border-radius: 50%;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  z-index: 999;
}

.cursor-dot {
  background: var(--coral);
  height: 6px;
  width: 6px;
}

.cursor-ring {
  border: 1px solid rgba(36, 63, 153, 0.55);
  height: 34px;
  transition: height 0.25s, width 0.25s, background 0.25s;
  width: 34px;
}

.cursor-ring.hovered {
  background: rgba(58, 167, 234, 0.2);
  height: 54px;
  width: 54px;
}

.site-header {
  align-items: center;
  display: flex;
  height: 94px;
  justify-content: space-between;
  left: 0;
  padding: 0 5vw;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-logo {
  background: var(--white);
  border: 1px solid rgba(36, 63, 153, 0.12);
  border-radius: 50%;
  box-shadow: 0 7px 22px rgba(24, 48, 126, 0.1);
  height: 43px;
  object-fit: cover;
  padding: 2px;
  width: 43px;
}

.brand-logo-light {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 24px rgba(5, 15, 54, 0.25);
}

.brand-copy {
  align-items: center;
  display: flex;
  gap: 12px;
}

.brand-copy strong {
  border-right: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.05em;
  padding-right: 12px;
}

.brand-copy small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 600;
  position: relative;
}

.desktop-nav a::after {
  background: var(--forest);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 28px;
}

.emergency-link {
  align-items: center;
  display: flex;
  font-size: 12px;
  gap: 7px;
}

.emergency-link strong {
  font-size: 14px;
}

.pulse {
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 115, 92, 0.6);
  height: 8px;
  width: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 8px rgba(255, 115, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 115, 92, 0); }
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 38px;
  position: relative;
  width: 38px;
  z-index: 110;
}

.menu-toggle span {
  background: var(--ink);
  height: 1px;
  left: 7px;
  position: absolute;
  transition: 0.35s;
  width: 24px;
}

.menu-toggle span:first-child { top: 15px; }
.menu-toggle span:last-child { top: 23px; }
.menu-open .menu-toggle span:first-child { top: 19px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 19px; transform: rotate(-45deg); }

.mobile-menu {
  align-items: flex-start;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 110px 7vw 40px;
  pointer-events: none;
  position: fixed;
  transform: translateY(-20px);
  transition: 0.4s;
  z-index: 90;
}

.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 58px);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.mobile-menu-foot {
  border-top: 1px solid var(--line);
  bottom: 40px;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  left: 7vw;
  padding-top: 20px;
  position: absolute;
  width: 86vw;
}

.hero {
  align-items: center;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  min-height: 100vh;
  overflow: hidden;
  padding: 130px 5vw 70px;
  position: relative;
}

.hero-grid {
  background-image: linear-gradient(rgba(36, 63, 153, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 63, 153, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent 70%);
  position: absolute;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(10px);
  position: absolute;
}

.glow-one {
  background: rgba(58, 167, 234, 0.25);
  height: 500px;
  left: -240px;
  top: 20%;
  width: 500px;
}

.glow-two {
  background: rgba(112, 195, 246, 0.25);
  height: 340px;
  right: 2%;
  top: 12%;
  width: 340px;
}

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

.hero-copy {
  padding-left: 2vw;
}

.eyebrow {
  align-items: center;
  color: var(--forest);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--coral);
  border-radius: 50%;
  height: 7px;
  width: 7px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.15vw, 104px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.92;
  max-width: 900px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.09em;
}

.hero-title .line > span {
  display: block;
}

.hero-title .accent-line {
  color: var(--forest);
  font-family: Georgia, serif;
  font-size: 0.69em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
  margin-top: 13px;
}

.hero-description {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 26px 0 30px;
  max-width: 505px;
}

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

.button {
  align-items: center;
  border-radius: 100px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 26px;
  justify-content: center;
  padding: 18px 24px;
}

.button svg {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  width: 17px;
}

.button-primary {
  background: var(--forest);
  color: var(--white);
  transition: background 0.3s, box-shadow 0.3s;
}

.button-primary:hover {
  background: var(--forest-dark);
  box-shadow: 0 14px 34px rgba(20, 37, 95, 0.2);
}

.text-link {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 10px;
}

.text-link span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  transition: 0.3s;
  width: 30px;
}

.text-link:hover span {
  background: var(--mint);
  transform: rotate(45deg);
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
}

.image-orbit {
  height: min(71vh, 690px);
  position: relative;
  width: min(39vw, 590px);
}

.hero-image-wrap {
  border-radius: 48% 48% 42% 42% / 34% 34% 56% 56%;
  box-shadow: 0 40px 80px rgba(20, 37, 95, 0.2);
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.hero-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  width: 100%;
}

.image-overlay {
  background: linear-gradient(to top, rgba(20, 37, 95, 0.35), transparent 48%);
  inset: 0;
  position: absolute;
}

.orbit {
  border: 1px solid rgba(36, 63, 153, 0.23);
  border-radius: 50%;
  position: absolute;
}

.orbit-one {
  height: 112%;
  left: -15%;
  top: -5%;
  transform: rotate(-15deg);
  width: 130%;
}

.orbit-two {
  border-color: rgba(255, 115, 92, 0.25);
  height: 90%;
  left: -24%;
  top: 3%;
  transform: rotate(26deg);
  width: 145%;
}

.floating-card {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(20, 37, 95, 0.16);
  display: flex;
  position: absolute;
  z-index: 3;
}

.card-care {
  bottom: 11%;
  gap: 12px;
  left: -13%;
  padding: 14px 18px 14px 14px;
}

.mini-icon {
  align-items: center;
  background: var(--lime);
  border-radius: 12px;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.mini-icon svg {
  fill: none;
  height: 19px;
  stroke: var(--forest);
  stroke-width: 1.8;
  width: 19px;
}

.floating-card div:last-child {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.floating-card span,
.floating-card small {
  color: var(--ink-soft);
  font-size: 9px;
}

.card-location {
  gap: 10px;
  padding: 14px 17px;
  right: -12%;
  top: 17%;
}

.location-dot {
  background: var(--coral);
  border: 4px solid #ffe0db;
  border-radius: 50%;
  height: 16px;
  width: 16px;
}

.card-location strong {
  font-size: 12px;
}

.hero-bottom {
  align-items: flex-end;
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  left: 7vw;
  position: absolute;
  width: 86vw;
  z-index: 2;
}

.scroll-cue {
  align-items: center;
  display: flex;
  gap: 8px;
}

.scroll-line {
  background: var(--ink);
  height: 1px;
  overflow: hidden;
  position: relative;
  width: 35px;
}

.scroll-line::after {
  animation: scrollLine 2s infinite;
  background: var(--coral);
  content: "";
  height: 1px;
  left: -100%;
  position: absolute;
  width: 100%;
}

@keyframes scrollLine {
  to { left: 100%; }
}

.scroll-cue small {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-strip {
  align-items: center;
  display: flex;
  gap: 15px;
}

.trust-strip span {
  color: var(--ink-soft);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-strip i {
  background: var(--coral);
  border-radius: 50%;
  height: 3px;
  width: 3px;
}

.quick-access {
  background: var(--forest-dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 5vw;
}

.quick-card {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: auto auto 1fr auto;
  min-height: 148px;
  padding: 28px 30px;
  position: relative;
  transition: background 0.35s;
}

.quick-card:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-card:hover {
  background: var(--forest);
}

.quick-number {
  align-self: start;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.quick-icon {
  align-items: center;
  background: rgba(58, 167, 234, 0.12);
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.quick-icon svg {
  fill: none;
  height: 21px;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 21px;
}

.quick-card div:nth-child(3) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quick-card strong {
  font-family: var(--font-display);
  font-size: 15px;
}

.quick-card div span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.quick-card b {
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.3s;
}

.quick-card:hover b {
  transform: translate(4px, -4px);
}

.section-pad {
  padding: 130px 7vw;
}

.section-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.section-index {
  color: var(--forest);
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.section-heading h2,
.structure-content h2,
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1.02;
}

h2 em {
  color: var(--forest);
  font-family: Georgia, serif;
  font-weight: 400;
}

.section-heading > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  max-width: 390px;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.specialty-card {
  border: 1px solid var(--line);
  border-right: 0;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 28px;
  position: relative;
  transition: background 0.4s, color 0.4s, transform 0.4s;
}

.specialty-card:last-child {
  border-right: 1px solid var(--line);
}

.specialty-card:hover,
.specialty-card.featured {
  background: var(--forest);
  color: var(--white);
  transform: translateY(-12px);
}

.specialty-card.featured {
  background: var(--forest-dark);
}

.card-index {
  color: var(--ink-soft);
  font-size: 10px;
}

.featured .card-index,
.specialty-card:hover .card-index {
  color: rgba(255, 255, 255, 0.5);
}

.specialty-icon {
  align-items: center;
  background: rgba(58, 167, 234, 0.17);
  border-radius: 50%;
  display: flex;
  height: 74px;
  justify-content: center;
  margin: 46px 0 32px;
  width: 74px;
}

.specialty-icon svg {
  fill: none;
  height: 34px;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
  width: 34px;
}

.featured .specialty-icon svg,
.specialty-card:hover .specialty-icon svg {
  stroke: var(--mint);
}

.specialty-card h3 {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.specialty-card p {
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
  max-width: 230px;
}

.featured p,
.specialty-card:hover p {
  color: rgba(255, 255, 255, 0.65);
}

.specialty-card > a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  bottom: 26px;
  display: flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 26px;
  width: 38px;
}

.featured > a,
.specialty-card:hover > a {
  border-color: rgba(255, 255, 255, 0.2);
}

.structure {
  align-items: stretch;
  background: var(--cream);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 0.9fr;
}

.structure-image {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-left: -7vw;
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.structure-image::after {
  background: linear-gradient(to top, rgba(20, 37, 95, 0.48), transparent 50%);
  content: "";
  inset: 0;
  position: absolute;
}

.structure-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-tag {
  bottom: 36px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  left: 7vw;
  position: absolute;
  z-index: 2;
}

.image-tag span {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.image-tag strong {
  font-family: var(--font-display);
  font-size: 25px;
  margin-top: 5px;
}

.structure-content {
  align-self: center;
}

.structure-content > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin: 28px 0 42px;
  max-width: 475px;
}

.stats {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 40px;
  padding: 30px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.stat strong {
  font-family: var(--font-display);
  font-size: 34px;
  letter-spacing: -0.06em;
}

.stat small {
  color: var(--ink-soft);
  font-size: 9px;
  line-height: 1.4;
  max-width: 95px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.social-gallery {
  background: var(--paper);
}

.social-gallery-intro {
  max-width: 390px;
}

.social-gallery-intro p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-gallery-intro a {
  align-items: center;
  color: var(--forest);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
}

.social-gallery-intro a span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 30px;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  width: 30px;
}

.social-gallery-intro a:hover span {
  background: var(--mint);
  transform: translate(3px, -3px);
}

.instagram-grid {
  display: grid;
  gap: 16px;
  grid-auto-rows: 270px;
  grid-template-columns: repeat(4, 1fr);
}

.instagram-card {
  border-radius: 20px;
  grid-column: span 1;
  overflow: hidden;
  position: relative;
}

.instagram-card-tall {
  grid-row: span 2;
}

.instagram-card-wide {
  grid-column: span 2;
}

.instagram-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
  width: 100%;
}

.instagram-card:hover img {
  transform: scale(1.06);
}

.instagram-shade {
  background: linear-gradient(to top, rgba(7, 36, 32, 0.88), transparent 58%);
  inset: 0;
  position: absolute;
}

.instagram-meta {
  bottom: 24px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  left: 24px;
  position: absolute;
  right: 64px;
  z-index: 2;
}

.instagram-meta small {
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.instagram-meta strong {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.035em;
}

.instagram-card > i {
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  bottom: 22px;
  color: var(--white);
  display: flex;
  font-style: normal;
  height: 34px;
  justify-content: center;
  position: absolute;
  right: 22px;
  transition: background 0.3s, transform 0.3s;
  width: 34px;
  z-index: 2;
}

.instagram-card:hover > i {
  background: var(--coral);
  transform: translate(3px, -3px);
}

.manifesto {
  background: var(--forest-dark);
  color: var(--white);
  min-height: 720px;
  overflow: hidden;
  padding: 140px 7vw;
  position: relative;
}

.manifesto::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  inset: 0;
  position: absolute;
}

.manifesto-orb {
  background: radial-gradient(circle, rgba(58, 167, 234, 0.2), transparent 67%);
  border: 1px solid rgba(58, 167, 234, 0.2);
  border-radius: 50%;
  height: 700px;
  position: absolute;
  right: -190px;
  top: -190px;
  width: 700px;
}

.manifesto-inner {
  position: relative;
  z-index: 2;
}

.manifesto .section-index {
  color: var(--mint);
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.7vw, 72px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.16;
  margin-top: 65px;
}

.manifesto-text > span {
  display: block;
  opacity: 0.18;
}

.manifesto-text em {
  color: var(--mint);
  font-family: Georgia, serif;
  font-weight: 400;
}

.manifesto-signature {
  align-items: center;
  display: flex;
  gap: 17px;
  margin-top: 75px;
}

.manifesto-signature > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.manifesto-signature strong {
  font-family: var(--font-display);
  font-size: 13px;
}

.manifesto-signature small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.contact {
  align-items: flex-end;
  display: grid;
  gap: 10vw;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-copy > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 25px;
  max-width: 340px;
}

.contact-panel {
  border-top: 1px solid var(--line);
}

.contact-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.7fr 1.4fr auto;
  min-height: 92px;
  transition: padding 0.3s, background 0.3s;
}

.contact-row:hover {
  background: var(--cream);
  padding: 0 20px;
}

.contact-label {
  color: var(--ink-soft);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row strong {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.035em;
}

.contact-row i {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  font-style: normal;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  bottom: 28px;
  box-shadow: 0 14px 38px rgba(15, 64, 35, 0.3);
  color: var(--white);
  display: flex;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: 28px;
  transition: background 0.3s, box-shadow 0.3s;
  width: 62px;
  z-index: 80;
}

.whatsapp-float:hover {
  background: #1fb85a;
  box-shadow: 0 18px 46px rgba(15, 64, 35, 0.38);
}

.whatsapp-float svg {
  fill: currentColor;
  height: 31px;
  position: relative;
  width: 31px;
  z-index: 2;
}

.whatsapp-tooltip {
  background: var(--ink);
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(16, 27, 61, 0.18);
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  padding: 10px 14px;
  pointer-events: none;
  position: absolute;
  right: 72px;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
  white-space: nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-pulse {
  border: 1px solid rgba(37, 211, 102, 0.65);
  border-radius: 50%;
  inset: -4px;
  position: absolute;
  animation: whatsappPulse 2.2s infinite;
}

@keyframes whatsappPulse {
  0% { opacity: 0.8; transform: scale(0.9); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}

footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 7vw 28px;
}

.footer-top {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding-bottom: 60px;
}

.footer-brand .brand-copy strong {
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-top > p {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.5;
}

.back-top {
  align-items: center;
  display: flex;
  font-size: 11px;
  gap: 12px;
}

.back-top span {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom small {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr 0.8fr; }
  .image-orbit { height: 57vh; width: 38vw; }
  .hero-title { font-size: clamp(52px, 7.2vw, 78px); }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .specialty-card:nth-child(2) { border-right: 1px solid var(--line); }
  .specialty-card:nth-child(n+3) { border-top: 0; }
}

@media (max-width: 760px) {
  .cursor-dot,
  .cursor-ring { display: none; }

  .site-header {
    height: 78px;
    padding: 0 5vw;
  }

  .brand-copy small { display: none; }
  .brand-copy strong { border: 0; padding: 0; }
  .emergency-link { display: none; }
  .header-actions { gap: 10px; }

  .hero {
    display: block;
    min-height: auto;
    padding: 118px 6vw 86px;
  }

  .hero-copy { padding: 0; }
  .eyebrow { font-size: 9px; margin-bottom: 20px; }
  .hero-title { font-size: clamp(48px, 14.5vw, 68px); }
  .hero-title .accent-line { font-size: 0.67em; line-height: 1.1; margin-top: 7px; }
  .hero-description { font-size: 14px; margin: 22px 0 26px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .button { padding: 16px 20px; }

  .hero-visual { margin-top: 74px; }
  .image-orbit { height: 485px; width: 87vw; }
  .card-care { bottom: 8%; left: -2%; }
  .card-location { right: -2%; top: 12%; }
  .orbit-one { left: -5%; width: 110%; }
  .orbit-two { left: -4%; width: 112%; }
  .hero-bottom { display: none; }

  .quick-access { grid-template-columns: 1fr; padding: 0; }
  .quick-card {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0 !important;
    border-right: 0;
    min-height: 112px;
    padding: 22px 7vw;
  }

  .section-pad { padding: 90px 6vw; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 28px; margin-bottom: 45px; }
  .section-heading h2,
  .structure-content h2,
  .contact h2 { font-size: clamp(39px, 12vw, 58px); }

  .specialties-grid { grid-template-columns: 1fr; }
  .specialty-card {
    border: 1px solid var(--line) !important;
    border-bottom: 0 !important;
    min-height: 340px;
  }
  .specialty-card:last-child { border-bottom: 1px solid var(--line) !important; }
  .specialty-card:hover,
  .specialty-card.featured { transform: none; }
  .specialty-icon { margin: 30px 0 24px; }

  .structure { display: flex; flex-direction: column; gap: 65px; }
  .structure-image {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-left: -6vw;
    min-height: 440px;
    width: 100vw;
  }
  .image-tag { left: 8vw; }
  .stats { gap: 15px; }
  .stat strong { font-size: 28px; }

  .instagram-grid {
    grid-auto-rows: 310px;
    grid-template-columns: 1fr;
  }
  .instagram-card,
  .instagram-card-tall,
  .instagram-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .manifesto { min-height: 650px; padding: 100px 6vw; }
  .manifesto-text { font-size: clamp(35px, 10.8vw, 53px); margin-top: 50px; }
  .manifesto-text > span { display: inline; }
  .manifesto-signature { margin-top: 60px; }

  .contact { align-items: stretch; display: flex; flex-direction: column; gap: 55px; }
  .contact-row { grid-template-columns: 0.7fr 1.2fr auto; }
  .contact-row strong { font-size: 16px; }

  .whatsapp-float {
    bottom: 18px;
    height: 56px;
    right: 18px;
    width: 56px;
  }
  .whatsapp-float svg {
    height: 28px;
    width: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }

  footer { padding: 50px 6vw 24px; }
  .footer-top { align-items: flex-start; gap: 38px; grid-template-columns: 1fr auto; }
  .footer-top > p { grid-column: 1 / -1; grid-row: 2; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
