:root {
  --paper: #f3f1e9;
  --paper-dark: #e5e3da;
  --ink: #10231e;
  --green: #174b3d;
  --green-2: #286653;
  --lime: #c9ed63;
  --soft: #d8ddd5;
  --muted: #69746e;
  --white: #ffffff;

  --sans: "DM Sans", sans-serif;
  --serif: "Instrument Serif", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

img {
  display: block;
  width: 100%;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}


/* =====================================
   INTRO
===================================== */

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: var(--green);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}

.intro-screen.hide {
  opacity: 0;
  visibility: hidden;
}

.intro-mark {
  display: flex;
  align-items: center;
  gap: 12px;

  color: white;

  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.06em;

  opacity: 0;
  transform: translateY(15px);

  animation: introIn 0.8s ease 0.2s forwards;
}

.intro-cross {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 36px;
  height: 36px;

  border-radius: 50%;

  background: var(--lime);
  color: var(--green);

  font-size: 25px;
  font-weight: 500;
}

.intro-line {
  width: 0;
  height: 1px;

  background: rgba(255,255,255,0.4);

  margin-top: 25px;

  animation: introLine 1.2s ease 0.6s forwards;
}

.intro-screen p {
  margin-top: 15px;

  font-size: 8px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.55);

  opacity: 0;

  animation: introIn 0.8s ease 0.9s forwards;
}

@keyframes introIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introLine {
  to {
    width: 150px;
  }
}


/* =====================================
   HEADER
===================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 82px;

  padding: 0 5vw;

  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid rgba(16,35,30,0.08);

  background: rgba(243,241,233,0.72);

  backdrop-filter: blur(16px);

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(243,241,233,0.94);
  box-shadow: 0 10px 30px rgba(16,35,30,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 27px;
  height: 27px;

  border-radius: 50%;

  background: var(--green);
  color: var(--lime);

  font-size: 18px;
  font-weight: 400;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 80px;
}

.desktop-nav a {
  position: relative;

  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;

  color: #52615b;

  transition: color 0.3s ease;
}

.desktop-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 1px;

  background: var(--green);

  transition: width 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-action {
  display: flex;
  align-items: center;
  gap: 15px;

  padding: 11px 16px;

  background: var(--green);
  color: white;

  font-size: 9px;
  letter-spacing: 0.15em;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.header-action span {
  color: var(--lime);
  font-size: 14px;
}

.header-action:hover {
  background: var(--green-2);
  transform: translateY(-2px);
}

.menu-button {
  display: none;

  width: 35px;

  border: none;
  background: transparent;

  cursor: pointer;
}

.menu-button span {
  display: block;

  height: 1px;
  background: var(--ink);

  margin: 7px 0;
}


/* =====================================
   MOBILE MENU
===================================== */

.mobile-menu {
  position: fixed;
  inset: 0;

  z-index: 900;

  background: var(--green);
  color: white;

  padding: 110px 8vw 40px;

  transform: translateY(-100%);

  transition:
    transform 0.75s cubic-bezier(.77,0,.18,1);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;

  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mobile-links a {
  font-family: var(--serif);

  font-size: clamp(48px, 13vw, 75px);

  line-height: 0.9;

  transition: color 0.2s ease;
}

.mobile-links a:hover {
  color: var(--lime);
}

.mobile-menu-bottom {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
}


/* =====================================
   HERO
===================================== */

.hero {
  min-height: 100svh;

  display: grid;
  grid-template-columns: 55% 45%;

  padding-top: 82px;
}

.hero-left {
  position: relative;

  padding: 55px 6vw 70px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  background:
    radial-gradient(
      circle at 15% 75%,
      rgba(201,237,99,0.17),
      transparent 27%
    ),
    var(--paper);
}

.hero-topline {
  display: flex;
  justify-content: space-between;

  font-size: 8px;
  letter-spacing: 0.2em;

  color: #738079;
}

.hero-title-wrap {
  margin-top: auto;
  margin-bottom: auto;

  padding-top: 80px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 23px;

  font-size: 9px;
  letter-spacing: 0.23em;
  color: var(--green);
}

.pulse-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--lime);

  box-shadow:
    0 0 0 5px rgba(201,237,99,0.2);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    box-shadow:
      0 0 0 10px rgba(201,237,99,0);
  }
}

.hero h1 {
  font-size: clamp(72px, 9vw, 145px);

  font-weight: 600;

  letter-spacing: -0.08em;
  line-height: 0.75;
}

.hero h1 i {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--green);
}

.hero h1 span {
  color: var(--green-2);
}

.hero-title-wrap > p {
  max-width: 440px;

  margin-top: 38px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 28px;

  margin-top: 32px;
}

.main-button {
  display: inline-flex;
  align-items: center;
  gap: 35px;

  padding: 17px 20px;

  background: var(--green);
  color: white;

  font-size: 9px;
  letter-spacing: 0.17em;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.main-button span {
  color: var(--lime);
  font-size: 16px;
}

.main-button:hover {
  background: var(--green-2);
  transform: translateY(-3px);
}

.secondary-button {
  display: flex;
  align-items: center;
  gap: 15px;

  color: var(--green);

  font-size: 9px;
  letter-spacing: 0.16em;

  border-bottom: 1px solid rgba(23,75,61,0.35);

  padding-bottom: 8px;
}

.secondary-button span {
  font-size: 15px;
}


/* HERO RIGHT */

.hero-right {
  position: relative;

  background: var(--green);

  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
}

.hero-image img {
  height: 100%;
  object-fit: cover;

  filter: saturate(0.75);

  transform: scale(1.08);

  animation: heroImage 2.4s cubic-bezier(.2,.7,.2,1) forwards;
}

@keyframes heroImage {
  to {
    transform: scale(1);
  }
}

.image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(16,35,30,0.05),
      rgba(16,35,30,0.5)
    );
}

.hero-image-caption {
  position: absolute;

  left: 35px;
  bottom: 35px;

  display: flex;
  align-items: flex-end;
  gap: 20px;

  color: white;
}

.hero-image-caption span {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 0.8;
  color: var(--lime);
}

.hero-image-caption p {
  font-size: 8px;
  line-height: 1.6;
  letter-spacing: 0.18em;
}

.vertical-note {
  position: absolute;

  right: 17px;
  top: 50%;

  transform: rotate(90deg) translateX(50%);

  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 7px;
  letter-spacing: 0.25em;

  color: rgba(255,255,255,0.65);
}

.vertical-note i {
  width: 45px;
  height: 1px;

  background: rgba(255,255,255,0.5);
}


/* =====================================
   TICKER
===================================== */

.ticker {
  overflow: hidden;

  background: var(--lime);

  padding: 18px 0;

  white-space: nowrap;
}

.ticker-track {
  width: max-content;

  display: flex;
  align-items: center;
  gap: 35px;

  animation: ticker 25s linear infinite;

  color: var(--green);

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.ticker-track b {
  font-size: 18px;
  font-weight: 400;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}


/* =====================================
   CARE
===================================== */

.care-section {
  min-height: 90vh;

  padding: 150px 7vw;

  display: grid;
  grid-template-columns: 0.25fr 1fr;

  gap: 80px;

  background: var(--paper);
}

.section-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  min-height: 470px;

  color: #7a837e;
}

.section-side > span {
  font-family: var(--serif);

  font-size: 70px;

  color: var(--green);
}

.section-side p {
  font-size: 8px;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.care-content {
  max-width: 950px;
}

.small-heading {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--green);

  font-size: 9px;
  letter-spacing: 0.22em;
}

.green-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--green);
}

.care-content h2 {
  max-width: 900px;

  margin-top: 25px;

  font-size: clamp(65px, 9vw, 135px);

  line-height: 0.78;

  letter-spacing: -0.07em;
}

.care-content h2 i {
  font-family: var(--serif);
  font-weight: 400;

  color: var(--green);
}

.care-bottom {
  display: grid;
  grid-template-columns: 0.9fr 1fr;

  gap: 80px;

  margin-top: 80px;
}

.care-bottom > p {
  max-width: 420px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.9;
}

.care-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.care-stats div {
  border-top: 1px solid rgba(16,35,30,0.2);

  padding-top: 15px;
}

.care-stats strong {
  display: block;

  font-size: 35px;
  font-weight: 500;

  letter-spacing: -0.07em;
}

.care-stats span {
  display: block;

  margin-top: 7px;

  color: #78827c;

  font-size: 7px;
  letter-spacing: 0.16em;
}


/* =====================================
   SPECIALTIES
===================================== */

.specialties {
  padding: 150px 7vw;

  background: var(--green);

  color: white;
}

.specialties-heading {
  display: grid;
  grid-template-columns: 1fr 0.5fr;

  gap: 80px;

  margin-bottom: 90px;
}

.eyebrow {
  display: inline-block;

  color: var(--green);

  font-size: 9px;
  letter-spacing: 0.25em;
}

.specialties .eyebrow {
  color: var(--lime);
}

.specialties-heading h2 {
  margin-top: 25px;

  font-size: clamp(65px, 8vw, 120px);

  line-height: 0.8;

  letter-spacing: -0.07em;
}

.specialties-heading h2 i {
  font-family: var(--serif);
  font-weight: 400;

  color: var(--lime);
}

.specialties-heading > p {
  align-self: end;

  color: rgba(255,255,255,0.58);

  font-size: 12px;
  line-height: 1.9;
}

.specialty-list {
  border-top: 1px solid rgba(255,255,255,0.18);
}

.specialty {
  display: grid;
  grid-template-columns: 0.1fr 1fr auto;
  align-items: center;

  min-height: 105px;

  border-bottom: 1px solid rgba(255,255,255,0.18);

  transition:
    background 0.35s ease,
    padding 0.35s ease;
}

.specialty:hover,
.specialty.active {
  background: rgba(255,255,255,0.055);

  padding-left: 25px;
  padding-right: 25px;
}

.specialty-number {
  color: rgba(255,255,255,0.35);

  font-size: 9px;
  letter-spacing: 0.1em;
}

.specialty-title h3 {
  font-family: var(--serif);

  font-size: 35px;
  font-weight: 400;
}

.specialty-title p {
  margin-top: 4px;

  color: rgba(255,255,255,0.42);

  font-size: 9px;
}

.specialty-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  border: 1px solid rgba(255,255,255,0.25);

  border-radius: 50%;

  color: var(--lime);

  font-size: 20px;

  transition:
    transform 0.4s ease,
    background 0.4s ease;
}

.specialty:hover .specialty-icon {
  transform: rotate(90deg);

  background: var(--lime);

  color: var(--green);
}


/* =====================================
   VITALS
===================================== */

.vitals {
  min-height: 85vh;

  position: relative;

  display: flex;
  align-items: center;

  padding: 100px 8vw;

  overflow: hidden;

  background: #0d1f1a;

  color: white;
}

.vitals-background {
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 70% 50%,
      rgba(201,237,99,0.12),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #0d1f1a,
      #163d32
    );
}

.vitals-background::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.1) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.1) 1px,
      transparent 1px
    );

  background-size: 70px 70px;
}

.vitals-content {
  position: relative;
  z-index: 2;

  max-width: 700px;
}

.eyebrow.light {
  color: var(--lime);
}

.vitals-content h2 {
  margin-top: 25px;

  font-size: clamp(65px, 8vw, 120px);

  line-height: 0.8;

  letter-spacing: -0.07em;
}

.vitals-content h2 i {
  font-family: var(--serif);

  font-weight: 400;

  color: var(--lime);
}

.vitals-content p {
  max-width: 420px;

  margin-top: 35px;

  color: rgba(255,255,255,0.6);

  font-size: 13px;
  line-height: 1.9;
}

.vital-card {
  position: absolute;

  right: 8vw;
  bottom: 12%;

  width: 390px;

  padding: 25px;

  background: rgba(255,255,255,0.07);

  border: 1px solid rgba(255,255,255,0.15);

  backdrop-filter: blur(20px);
}

.vital-card-top,
.vital-bottom {
  display: flex;
  justify-content: space-between;

  color: rgba(255,255,255,0.5);

  font-size: 7px;
  letter-spacing: 0.2em;
}

.live-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--lime);

  box-shadow: 0 0 12px var(--lime);
}

.heart-line {
  position: relative;

  height: 150px;

  display: flex;
  align-items: center;
}

.heart-line svg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
}

.heart-line polyline {
  fill: none;

  stroke: var(--lime);

  stroke-width: 2;

  stroke-linecap: round;

  stroke-dasharray: 700;

  stroke-dashoffset: 700;

  animation: heartbeat 2.8s linear infinite;
}

@keyframes heartbeat {
  to {
    stroke-dashoffset: 0;
  }
}

.heart-number {
  position: relative;
  z-index: 2;

  font-size: 52px;
  font-weight: 500;

  letter-spacing: -0.08em;
}

.bpm {
  position: relative;
  z-index: 2;

  margin-left: 8px;

  color: rgba(255,255,255,0.45);

  font-size: 8px;
  letter-spacing: 0.15em;
}


/* =====================================
   DOCTORS
===================================== */

.doctors {
  padding: 150px 7vw;

  background: var(--paper);
}

.doctors-intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;

  gap: 80px;

  align-items: end;

  margin-bottom: 90px;
}

.doctors-intro h2 {
  margin-top: 22px;

  font-size: clamp(65px, 8vw, 120px);

  line-height: 0.8;

  letter-spacing: -0.07em;
}

.doctors-intro h2 i {
  font-family: var(--serif);

  color: var(--green);

  font-weight: 400;
}

.doctors-intro > p {
  max-width: 360px;

  color: var(--muted);

  font-size: 12px;
  line-height: 1.9;
}

.doctor-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;

  align-items: start;
}

.doctor-card.offset {
  margin-top: 90px;
}

.doctor-image {
  height: 530px;

  position: relative;

  overflow: hidden;

  background: var(--paper-dark);
}

.doctor-image img {
  height: 100%;

  object-fit: cover;

  filter: grayscale(0.25);

  transition:
    transform 0.8s cubic-bezier(.2,.7,.2,1),
    filter 0.8s ease;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.05);

  filter: grayscale(0);
}

.doctor-image > span {
  position: absolute;

  left: 20px;
  top: 20px;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--lime);

  color: var(--green);

  font-size: 8px;
}

.doctor-info {
  padding-top: 18px;
}

.doctor-info h3 {
  font-family: var(--serif);

  font-size: 27px;

  font-weight: 400;
}

.doctor-info p {
  margin-top: 4px;

  color: var(--muted);

  font-size: 9px;
  letter-spacing: 0.08em;
}


/* =====================================
   CLINIC SPACE
===================================== */

.clinic-space {
  background: var(--green);

  color: white;
}

.space-image {
  position: relative;

  height: 80vh;

  overflow: hidden;
}

.space-image img {
  height: 100%;

  object-fit: cover;

  filter: saturate(0.65);
}

.space-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(13,31,26,0.8),
      transparent 70%
    ),
    linear-gradient(
      0deg,
      rgba(13,31,26,0.65),
      transparent 60%
    );
}

.space-title {
  position: absolute;

  left: 8vw;
  bottom: 9vh;
}

.space-title > span {
  color: var(--lime);

  font-size: 8px;
  letter-spacing: 0.25em;
}

.space-title h2 {
  margin-top: 25px;

  font-size: clamp(65px, 8vw, 120px);

  line-height: 0.78;

  letter-spacing: -0.07em;
}

.space-title h2 i {
  font-family: var(--serif);

  font-weight: 400;

  color: var(--lime);
}

.space-details {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 1px;

  background: rgba(255,255,255,0.12);
}

.space-details > div {
  padding: 50px 6vw;

  background: var(--green);
}

.space-details span {
  color: var(--lime);

  font-size: 9px;
}

.space-details h3 {
  margin-top: 35px;

  font-family: var(--serif);

  font-size: 30px;

  font-weight: 400;
}

.space-details p {
  margin-top: 15px;

  color: rgba(255,255,255,0.55);

  font-size: 11px;
  line-height: 1.8;
}


/* =====================================
   APPOINTMENT
===================================== */

.appointment {
  min-height: 85vh;

  padding: 140px 7vw;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10vw;

  align-items: center;

  background: var(--paper);
}

.appointment-left h2 {
  margin-top: 25px;

  font-size: clamp(65px, 8vw, 120px);

  line-height: 0.8;

  letter-spacing: -0.07em;
}

.appointment-left h2 i {
  font-family: var(--serif);

  font-weight: 400;

  color: var(--green);
}

.appointment-left > p {
  max-width: 420px;

  margin-top: 35px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.9;
}

.appointment-card {
  padding: 30px;

  background: var(--green);

  color: white;

  min-height: 440px;

  display: flex;
  flex-direction: column;
}

.appointment-card-head {
  display: flex;
  justify-content: space-between;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(255,255,255,0.15);

  color: rgba(255,255,255,0.5);

  font-size: 8px;
  letter-spacing: 0.18em;
}

.appointment-placeholder {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  align-items: flex-start;
}

.big-plus {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--lime);

  color: var(--green);

  font-size: 32px;
}

.appointment-placeholder h3 {
  margin-top: 30px;

  font-family: var(--serif);

  font-size: 50px;

  font-weight: 400;
}

.appointment-placeholder p {
  max-width: 370px;

  margin-top: 10px;

  color: rgba(255,255,255,0.58);

  font-size: 11px;
  line-height: 1.8;
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 40px;

  margin-top: 28px;

  padding: 15px 18px;

  background: var(--lime);

  color: var(--green);

  font-size: 8px;
  font-weight: 600;

  letter-spacing: 0.16em;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.whatsapp-button span {
  font-size: 16px;
}

.whatsapp-button:hover {
  transform: translateY(-3px);

  background: white;
}


/* =====================================
   CLIENT CTA
===================================== */

.client-cta {
  min-height: 80vh;

  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 100px 7vw;

  background:
    radial-gradient(
      circle at center,
      rgba(201,237,99,0.18),
      transparent 35%
    ),
    var(--lime);

  color: var(--green);
}

.client-cta-inner {
  max-width: 900px;
}

.client-cta-inner > span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.client-cta h2 {
  margin-top: 25px;

  font-size: clamp(65px, 9vw, 135px);

  line-height: 0.78;

  letter-spacing: -0.08em;
}

.client-cta h2 i {
  font-family: var(--serif);

  font-weight: 400;
}

.client-cta p {
  max-width: 500px;

  margin: 35px auto;

  color: rgba(16,35,30,0.65);

  font-size: 12px;
  line-height: 1.8;
}

.client-button {
  display: inline-flex;
  align-items: center;
  gap: 45px;

  padding: 17px 22px;

  background: var(--green);

  color: white;

  font-size: 9px;
  letter-spacing: 0.17em;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.client-button span {
  color: var(--lime);

  font-size: 17px;
}

.client-button:hover {
  transform: translateY(-4px);

  background: #0b3026;
}

.client-cta small {
  display: block;

  margin-top: 25px;

  font-size: 8px;

  letter-spacing: 0.14em;

  color: rgba(16,35,30,0.45);
}


/* =====================================
   FOOTER
===================================== */

footer {
  padding: 90px 6vw 30px;

  background: #0b1915;

  color: white;
}

.footer-main {
  display: grid;

  grid-template-columns:
    2fr 1fr 1fr 1fr;

  gap: 50px;

  padding-bottom: 90px;
}

.footer-logo {
  font-size: 58px;
  font-weight: 600;

  letter-spacing: -0.08em;
}

.footer-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 45px;
  height: 45px;

  border-radius: 50%;

  background: var(--lime);

  color: var(--green);

  font-size: 30px;

  vertical-align: middle;
}

.footer-column {
  display: flex;
  flex-direction: column;

  gap: 12px;
}

.footer-column > span {
  color: var(--lime);

  font-size: 8px;
  letter-spacing: 0.22em;

  margin-bottom: 8px;
}

.footer-column a,
.footer-column p {
  color: rgba(255,255,255,0.48);

  font-size: 9px;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);

  padding-top: 20px;

  display: flex;
  justify-content: space-between;

  color: rgba(255,255,255,0.3);

  font-size: 7px;
  letter-spacing: 0.18em;
}


/* =====================================
   REVEAL
===================================== */

.reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 1s ease,
    transform 1s cubic-bezier(.2,.7,.2,1);
}

.reveal.visible {
  opacity: 1;

  transform: translateY(0);
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1000px) {

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .header-action {
    margin-left: auto;
    margin-right: 22px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-left {
    min-height: 80vh;
  }

  .hero-right {
    min-height: 65vh;
  }

  .care-section {
    grid-template-columns: 1fr;
  }

  .section-side {
    min-height: auto;

    flex-direction: row;

    align-items: center;
  }

  .section-side > span {
    font-size: 55px;
  }

  .care-bottom {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .specialties-heading,
  .doctors-intro {
    grid-template-columns: 1fr;
  }

  .vital-card {
    right: 5vw;
    width: 340px;
  }

  .doctor-grid {
    grid-template-columns: 1fr 1fr;
  }

  .doctor-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
  }

  .appointment {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }
}


@media (max-width: 700px) {

  .header {
    height: 70px;

    padding: 0 6vw;
  }

  .header-action {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-left {
    padding: 35px 7vw 60px;

    min-height: 720px;
  }

  .hero-topline span:last-child {
    display: none;
  }

  .hero-title-wrap {
    padding-top: 30px;
  }

  .hero h1 {
    font-size: clamp(68px, 19vw, 105px);
  }

  .hero-title-wrap > p {
    font-size: 12px;
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-right {
    min-height: 500px;
  }

  .hero-image-caption {
    left: 20px;
    bottom: 25px;
  }

  .vertical-note {
    display: none;
  }

  .care-section,
  .specialties,
  .doctors,
  .appointment {
    padding: 100px 7vw;
  }

  .care-content h2,
  .specialties-heading h2,
  .doctors-intro h2,
  .appointment-left h2 {
    font-size: clamp(60px, 17vw, 95px);
  }

  .care-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .specialty {
    grid-template-columns: 35px 1fr auto;
    min-height: 110px;
  }

  .specialty-title h3 {
    font-size: 27px;
  }

  .specialty-title p {
    font-size: 8px;
  }

  .specialty:hover,
  .specialty.active {
    padding-left: 10px;
    padding-right: 10px;
  }

  .vitals {
    min-height: 850px;

    padding: 100px 7vw;

    align-items: flex-start;
  }

  .vitals-content h2 {
    font-size: clamp(60px, 17vw, 95px);
  }

  .vital-card {
    left: 7vw;
    right: 7vw;
    bottom: 50px;
    width: auto;
  }

  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .doctor-card.offset {
    margin-top: 0;
  }

  .doctor-card:last-child {
    grid-column: auto;
    width: auto;
  }

  .doctor-image {
    height: 480px;
  }

  .space-image {
    height: 650px;
  }

  .space-title {
    left: 7vw;
    bottom: 8vh;
  }

  .space-title h2 {
    font-size: clamp(60px, 17vw, 95px);
  }

  .space-details {
    grid-template-columns: 1fr;
  }

  .appointment-card {
    min-height: 430px;
  }

  .client-cta {
    min-height: 700px;
  }

  .client-cta h2 {
    font-size: clamp(60px, 17vw, 95px);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    font-size: 45px;
  }

  .footer-logo span {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

}