:root {
  --green-950: #17331e;
  --green-900: #254f2d;
  --green-700: #376a3b;
  --green-100: #e8f0e6;
  --orange-700: #d85b00;
  --orange-500: #f07c00;
  --gold-600: #9a7a28;
  --paper: #fffaf2;
  --cream: #f7efe3;
  --white: #ffffff;
  --ink: #20231e;
  --muted: #667064;
  --line: rgba(37, 79, 45, 0.16);
  --shadow: 0 28px 70px rgba(23, 51, 30, 0.16);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(247, 239, 227, 0.94), rgba(255, 250, 242, 0.98) 38%, rgba(232, 240, 230, 0.78)),
    var(--paper);
  font-family: var(--font-body);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 242, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 242, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(23, 51, 30, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(216, 91, 0, 0.18);
}

.brand strong {
  display: block;
  color: var(--green-900);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.9;
}

.brand small {
  display: block;
  color: var(--orange-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--green-950);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: var(--green-100);
  color: var(--green-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
}

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(108px, 12vh, 150px) clamp(22px, 6vw, 88px) 38px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 58%;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--orange-500), var(--green-700));
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--orange-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.4px;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--green-950);
  font-family: var(--font-display);
  line-height: 0.96;
  margin: 0;
}

h1 {
  font-size: 168px;
  letter-spacing: 0;
}

h2 {
  font-size: 70px;
}

h3 {
  font-size: 42px;
}

h4 {
  margin: 24px 0 6px;
  color: var(--green-900);
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: #394137;
  font-size: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 800;
  padding: 13px 20px;
}

.button.primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(37, 79, 45, 0.24);
}

.button.ghost {
  color: var(--green-900);
  border: 1px solid rgba(37, 79, 45, 0.22);
  background: rgba(255, 255, 255, 0.52);
}

.hero-media {
  min-height: 520px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-media img {
  width: min(460px, 82vw);
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  padding: 30px;
  border-radius: 50%;
  background: var(--white);
  border: 14px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.leaf {
  position: absolute;
  width: 170px;
  height: 310px;
  border-radius: 100% 0 100% 0;
  opacity: 0.82;
}

.leaf-one {
  top: 32px;
  right: 46px;
  background: linear-gradient(160deg, var(--orange-500), var(--orange-700));
  transform: rotate(18deg);
}

.leaf-two {
  bottom: 22px;
  left: 10px;
  background: linear-gradient(160deg, var(--gold-600), var(--green-700));
  transform: rotate(74deg);
}

.leaf-three {
  right: 28px;
  bottom: 92px;
  width: 104px;
  height: 220px;
  background: linear-gradient(160deg, var(--green-700), var(--green-950));
  transform: rotate(42deg);
}

section:not(.hero) {
  padding: clamp(66px, 9vw, 118px) clamp(22px, 6vw, 88px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 32px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 58px);
  max-width: 1180px;
}

.intro-grid p,
.visit p,
.wellbeing-text p {
  color: #485248;
  font-size: 18px;
  margin: 0;
}

.doctors {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
}

.doctors h2,
.doctors h3 {
  color: var(--white);
}

.doctor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.doctor-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.doctor-card p {
  margin: 12px 0 0;
}

.doctor-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: var(--green-950);
  background: linear-gradient(140deg, #fff4e3, #f07c00);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
}

.role {
  color: #f5a13b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

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

.service-grid article {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 16px 44px rgba(23, 51, 30, 0.07);
}

.service-grid h3 {
  margin-top: 42px;
  font-size: 34px;
}

.service-grid p {
  color: var(--muted);
  margin: 16px 0 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: var(--orange-700);
  background: #fff0de;
  font-size: 13px;
  font-weight: 900;
}

.wellbeing {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(232, 240, 230, 0.86), rgba(255, 250, 242, 0.92)),
    var(--green-100);
}

.wellbeing-text p {
  margin-top: 24px;
}

.wellbeing-list {
  display: grid;
  gap: 14px;
}

.wellbeing-list div {
  padding: 20px;
  border-left: 5px solid var(--orange-500);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.wellbeing-list strong,
.wellbeing-list span {
  display: block;
}

.wellbeing-list strong {
  color: var(--green-950);
  font-size: 18px;
}

.wellbeing-list span {
  color: var(--muted);
  margin-top: 4px;
}

.quote-band {
  background: linear-gradient(120deg, var(--orange-700), var(--orange-500));
  color: var(--white);
}

.quote-band p {
  max-width: 1120px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 62px;
  line-height: 1;
  text-align: center;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 30px clamp(22px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-950);
}

.site-footer strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.site-footer span {
  color: #f5a13b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  text-align: right;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 148px;
  min-height: 52px;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(23, 51, 30, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-contact__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(23, 51, 30, 0.28);
}

.floating-contact__button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.floating-contact__button.whatsapp {
  background: #25d366;
}

.floating-contact__button.call {
  background: var(--green-900);
}

@media (max-width: 980px) {
  .hero,
  .wellbeing,
  .visit,
  .intro-grid,
  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media img {
    width: min(340px, 78vw);
  }

  h1 {
    font-size: 118px;
  }

  h2 {
    font-size: 54px;
  }

  h3 {
    font-size: 38px;
  }

  .quote-band p {
    font-size: 48px;
  }

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

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .brand strong {
    font-size: 25px;
  }

  .brand small {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero {
    padding-inline: 18px;
    gap: 22px;
    padding-top: 94px;
    padding-bottom: 24px;
  }

  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 42px;
  }

  h3,
  .service-grid h3 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 18px;
    margin-top: 18px;
  }

  .hero-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 214px;
  }

  .hero-media img {
    width: min(218px, 68vw);
    padding: 18px;
    border-width: 8px;
  }

  .leaf-one {
    top: 4px;
    right: -14px;
    opacity: 0.46;
  }

  .leaf-two {
    bottom: -12px;
    left: -48px;
  }

  .leaf-three {
    right: -42px;
    bottom: 34px;
  }

  .quote-band p {
    font-size: 36px;
  }

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

  .doctor-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: block;
  }

  .site-footer p {
    margin-top: 16px;
    text-align: left;
  }

  .floating-contact {
    right: 14px;
    bottom: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: 14px;
  }

  .floating-contact__button {
    min-width: 0;
    min-height: 48px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand small {
    display: none;
  }

  .hero-media {
    min-height: 196px;
  }

  .leaf {
    transform: scale(0.76);
  }

  .button {
    min-height: 50px;
    padding: 12px 10px;
    font-size: 14px;
  }
}
