:root {
  --forest: #123328;
  --forest-2: #1f5b45;
  --sage: #7fa891;
  --mint: #dcebe2;
  --cream: #f6f1e8;
  --cream-2: #fbfaf6;
  --gold: #dca443;
  --ink: #26362f;
  --muted: #66736c;
  --line: rgba(25, 51, 40, 0.11);
  --shadow: 0 22px 60px rgba(18, 51, 40, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.78);
  transition: background 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease;
}

.site-header.scrolled {
  padding-block: 13px;
  background: rgba(18, 51, 40, 0.95);
  box-shadow: 0 14px 42px rgba(8, 25, 18, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #d9eee2;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-menu {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  font-size: 15px;
  font-weight: 600;
}

.nav-menu a {
  opacity: 0.72;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-menu a:hover {
  color: var(--gold);
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--forest-2);
}

.header-cta:hover,
.btn.primary:hover {
  background: #286b52;
  transform: translateY(-2px);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 2px;
}

.social-rail {
  position: fixed;
  right: 18px;
  top: auto;
  bottom: 96px;
  z-index: 60;
  display: grid;
  gap: 12px;
  transform: none;
}

.social-rail a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(18, 51, 40, 0.9);
  box-shadow: 0 12px 30px rgba(8, 25, 18, 0.2);
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-rail a:hover {
  background: var(--forest-2);
  transform: translateX(-4px);
}

.social-rail svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-rail a:not(:first-child) svg {
  fill: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.hero-image {
  position: absolute;
  inset: -10vh 0;
  background-image: url("../images/slider1.png");
  background-size: cover;
  background-position: center;
  transform: translate3d(0, 0, 0) scale(1.06);
  transition: background-position 1200ms ease, transform 1200ms ease;
  will-change: background-position, transform;
}

.hero-angle-1 {
  background-position: left top;
}

.hero-angle-2 {
  background-position: right top;
}

.hero-angle-3 {
  background-position: left bottom;
}

.hero-angle-4 {
  background-position: right bottom;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 10%, rgba(242, 186, 70, 0.44), transparent 34%),
    linear-gradient(90deg, rgba(7, 31, 22, 0.86) 0%, rgba(16, 55, 37, 0.58) 48%, rgba(144, 104, 22, 0.28) 100%),
    linear-gradient(0deg, rgba(7, 24, 17, 0.52), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(700px, calc(100% - 40px));
  padding-top: min(30vh, 260px);
  margin-left: clamp(20px, 6vw, 84px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(50px, 7.4vw, 92px);
  font-weight: 800;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

h2 {
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800;
}

h1 em,
h2 em {
  color: var(--gold);
  font-style: italic;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600;
}

.slider-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 46px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.slider-btn {
  width: 46px;
  height: 46px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(8, 27, 19, 0.22);
  cursor: pointer;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.slider-dot.active {
  width: 48px;
  background: var(--gold);
  border-radius: 999px;
}

.section {
  padding: clamp(76px, 9vw, 132px) clamp(18px, 4vw, 48px);
}

.philosophy,
.remedies,
.contact-section {
  background: var(--cream);
}

.section-head {
  width: min(760px, 100%);
  margin: 0 auto 56px;
  text-align: center;
}

.section-head p:last-child {
  color: var(--muted);
  font-weight: 600;
}

.value-grid,
.service-grid,
.testimonial-grid,
.remedy-grid {
  display: grid;
  width: min(1360px, 100%);
  margin: 0 auto;
  gap: 28px;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-card,
.service-card,
.testimonial-card,
.consult-form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(18, 51, 40, 0.05);
}

.value-card {
  min-height: 170px;
  padding: 34px 30px;
  text-align: center;
}

.flip-card {
  min-height: 260px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  perspective: 1200px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  min-height: 260px;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-inner,
.flip-card:focus-visible .flip-inner,
.flip-card.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  backface-visibility: hidden;
  box-shadow: 0 16px 36px rgba(18, 51, 40, 0.05);
}

.flip-front {
  background: rgba(255, 255, 255, 0.9);
}

.flip-back {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(18, 51, 40, 0.96), rgba(31, 91, 69, 0.94)),
    url("../images/slider1.png") center / cover;
  transform: rotateY(180deg);
}

.flip-back::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(220, 164, 67, 0.28);
  border-radius: 6px;
  pointer-events: none;
}

.flip-back .quote {
  position: relative;
  max-width: 390px;
  margin-bottom: 18px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 800;
  line-height: 1.22;
}

.flip-back span {
  position: relative;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 700;
}

.icon-pill {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--forest-2);
  border-radius: 50%;
  background: var(--mint);
  font-size: 22px;
}

.value-card h3,
.service-card h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
}

.value-card p,
.service-card p,
.testimonial-card p {
  color: var(--muted);
  font-size: 15px;
}

.why-choose-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(18, 51, 40, 0.98), rgba(31, 91, 69, 0.94)),
    url("../images/slider1.png") center / cover;
  box-shadow: 0 24px 64px rgba(18, 51, 40, 0.2);
}

.why-choose-card .eyebrow {
  color: #f4c76d;
}

.why-choose-card h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.12;
}

.why-choose-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-choose-card li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 16px;
  font-weight: 700;
}

.why-choose-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.why-choose-card li span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #153729;
  border-radius: 50%;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.doctor-section {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96), rgba(246, 241, 232, 0.72)),
    url("../images/slider1.png") center / cover fixed;
}

.why-choose-section {
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: clamp(58px, 7vw, 96px);
  background: var(--cream-2);
}

.doctor-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
}

.doctor-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.doctor-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.doctor-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 18px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(18, 51, 40, 0.86);
  backdrop-filter: blur(12px);
}

.doctor-badge span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.doctor-content {
  max-width: 660px;
}

.doctor-content p {
  color: var(--muted);
  font-size: 17px;
}

.doctor-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.doctor-points span {
  padding: 14px 16px;
  color: var(--forest);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(18, 51, 40, 0.06);
}

.services {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 31, 22, 0.9), rgba(18, 51, 40, 0.72) 48%, rgba(7, 31, 22, 0.86)),
    url("../images/slider4.png") center / cover fixed;
  isolation: isolate;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(220, 164, 67, 0.34), transparent 30%),
    linear-gradient(180deg, rgba(18, 51, 40, 0.08), rgba(18, 51, 40, 0.44));
}

.services .section-head h2 {
  color: #fff;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.services .section-head > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

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

.service-card {
  min-height: 240px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.service-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--forest-2);
  font-size: 34px;
  line-height: 1;
}

.service-flip-card,
.service-flip-card .flip-inner {
  min-height: 240px;
}

.service-flip-card .flip-face {
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
}

.service-front {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.service-back {
  padding: 0;
  color: #fff;
  background: var(--forest);
  overflow: hidden;
  transform: rotateY(180deg);
}

.service-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 27, 19, 0.18), rgba(8, 27, 19, 0.84));
}

.service-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-back div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
}

.service-back strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  line-height: 1.05;
}

.service-back small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  width: min(1200px, 100%);
  margin: clamp(50px, 6vw, 72px) auto 0;
}

.image-feature-card {
  position: relative;
  overflow: hidden;
  height: 350px;
  min-height: 350px;
  border-radius: 12px;
  background: var(--forest);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(18, 51, 40, 0.14);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-feature-card img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.image-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 60, 30, 0.85);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.image-feature-card:hover {
  box-shadow: 0 22px 44px rgba(18, 51, 40, 0.2);
  transform: translateY(-4px);
}

.image-feature-card:hover img {
  filter: saturate(1.04) brightness(0.82);
  transform: scale(1.1);
}

.image-feature-card:hover::after,
.image-feature-card:hover .image-card-content {
  opacity: 1;
}

.floating-icon {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #97dd58, #61b537);
  box-shadow: 0 18px 34px rgba(40, 81, 26, 0.35);
  transform: translateX(-50%);
  transition: bottom 0.35s ease, transform 0.35s ease;
}

.floating-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.image-feature-card:hover .floating-icon {
  bottom: 112px;
  transform: translateX(-50%) scale(1.08);
}

.image-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 20px 24px;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.image-card-content h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.image-card-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 600;
}

.gallery-section {
  padding: clamp(76px, 9vw, 120px) 0;
  overflow: hidden;
  background: var(--cream-2);
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  padding: 0 clamp(18px, 4vw, 48px) 18px;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(18px, 4vw, 48px);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

.gallery-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(18, 51, 40, 0.1);
  scroll-snap-align: center;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.gallery-grid img:hover {
  filter: saturate(1.04);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 38px rgba(18, 51, 40, 0.16);
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(4) {
  margin-top: 34px;
}

.parallax-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.band-image {
  position: absolute;
  inset: -14vh 0;
  z-index: -2;
  background: url("../images/slider1.png") center / cover;
  opacity: 0.1;
  will-change: transform;
}

.remedy-grid {
  grid-template-columns: repeat(3, 1fr);
}

.remedy-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 18px 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 24px rgba(18, 51, 40, 0.04);
}

.remedy-flip-card {
  display: block;
  min-height: 128px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}

.remedy-flip-card .flip-inner {
  min-height: 128px;
}

.remedy-flip-card .flip-face {
  align-items: stretch;
  justify-content: center;
  padding: 24px 28px;
}

.remedy-front {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.remedy-back {
  padding: 0;
  color: #fff;
  background: var(--forest);
  transform: rotateY(180deg);
}

.remedy-back::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 27, 19, 0.92), rgba(8, 27, 19, 0.62));
}

.remedy-back img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.remedy-back div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  max-width: 330px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.remedy-back strong {
  color: #fff;
  font-size: 22px;
}

.remedy-back small {
  color: rgba(255, 255, 255, 0.9);
}

.remedy-item span {
  grid-row: span 2;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.remedy-item strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
}

.remedy-item small {
  color: var(--muted);
  font-weight: 600;
}

.testimonials {
  background: var(--cream-2);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  padding: 30px;
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

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

.testimonial-card small {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 520px);
  gap: clamp(32px, 7vw, 110px);
  align-items: center;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.contact-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--muted);
  font-weight: 700;
}

.contact-list span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 12px;
  place-items: center;
  color: var(--forest-2);
  border-radius: 50%;
  background: var(--mint);
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--forest-2);
  box-shadow: 0 0 0 4px rgba(31, 91, 69, 0.12);
}

textarea {
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 48px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.74);
  background: #122d23;
  font-size: 13px;
}

.footer-brand {
  color: #fff;
  font-size: 18px;
}

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

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

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a:hover {
  color: var(--gold);
}



@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;
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 18px;
    right: auto;
    width: calc(100vw - 36px);
    display: none;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    color: var(--ink);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .header-cta {
    min-height: 42px;
    padding-inline: 18px;
  }

  .value-grid,
  .testimonial-grid,
  .remedy-grid,
  .feature-card-grid,
  .why-choose-card,
  .doctor-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .feature-card-grid {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    width: min(760px, 100%);
  }

  .doctor-image-wrap,
  .doctor-image-wrap img {
    min-height: 420px;
  }

  .gallery-grid {
    grid-auto-columns: minmax(230px, 46vw);
  }

  .doctor-section,
  .services {
    background-attachment: scroll !important;
  }
}

@media (max-width: 680px) {
  .site-header {
    gap: 12px;
    grid-template-columns: 1fr auto;
    padding: 12px 14px;
  }

  .brand {
    min-width: 0;
    font-size: 18px;
  }

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

  .header-cta {
    display: none;
  }

  .social-rail {
    right: 10px;
    bottom: 76px;
    gap: 8px;
  }

  .social-rail a {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    width: calc(100% - 52px);
    padding-top: 18vh;
    margin-left: 16px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-copy {
    max-width: 310px;
    font-size: 17px;
  }

  .slider-controls {
    bottom: 40px;
  }

  .section {
    padding-block: 72px;
    padding-inline: 16px;
  }

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

  h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .value-card,
  .service-card,
  .testimonial-card {
    min-height: auto;
    padding: 26px 22px;
  }

  .flip-card,
  .flip-inner {
    min-height: 300px;
  }

  .flip-face {
    padding: 28px 22px;
  }

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

  .why-choose-card {
    gap: 24px;
    padding: 28px 22px;
  }

  .why-choose-card li {
    font-size: 14px;
  }

  .doctor-image-wrap,
  .doctor-image-wrap img {
    min-height: 340px;
  }

  .gallery-grid {
    grid-auto-columns: minmax(230px, 78vw);
    padding-inline: 16px;
  }

  .image-feature-card,
  .image-feature-card img {
    min-height: 0;
  }

  .feature-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .image-feature-card {
    height: 230px;
    border-radius: 12px;
  }

  .image-feature-card img {
    height: 100%;
  }

  .floating-icon {
    width: 58px;
    height: 58px;
    bottom: 16px;
  }

  .floating-icon svg {
    width: 29px;
    height: 29px;
  }

  .image-feature-card:hover .floating-icon,
  .image-feature-card:focus-within .floating-icon {
    bottom: 86px;
  }

  .image-card-content {
    padding: 0 18px 20px;
  }

  .image-card-content h3 {
    font-size: 20px;
  }

  .image-card-content p {
    font-size: 13px;
  }

  .gallery-grid img {
    height: 170px;
  }

  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(4) {
    margin-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand,
  .site-footer nav {
    justify-self: center;
  }
}

@media (max-width: 430px) {
  .nav-menu {
    left: 12px;
    width: calc(100vw - 24px);
  }

  .brand {
    font-size: 16px;
  }

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

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: calc(100% - 48px);
    padding-top: 17vh;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(38px, 12.5vw, 50px);
  }

  .hero-copy {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .btn {
    min-height: 44px;
    padding-inline: 18px;
  }

  .slider-controls {
    bottom: 36px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
  }

  .social-rail {
    right: 8px;
    bottom: 64px;
    gap: 7px;
  }

  .social-rail a {
    width: 36px;
    height: 36px;
  }

  .social-rail svg {
    width: 18px;
    height: 18px;
  }

  .section {
    padding-block: 58px;
    padding-inline: 14px;
  }

  .value-grid,
  .service-grid,
  .remedy-grid,
  .testimonial-grid,
  .feature-card-grid,
  .contact-layout {
    gap: 18px;
  }

  .flip-card,
  .flip-inner {
    min-height: 280px;
  }

  .service-card {
    min-height: 158px;
  }

  .service-icon {
    margin-bottom: 18px;
  }

  .image-feature-card,
  .image-feature-card img {
    min-height: 0;
  }

  .image-feature-card {
    height: 210px;
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-grid {
    grid-auto-columns: 86vw;
    padding-inline: 0;
  }

  .gallery-grid img {
    height: 220px;
  }

  .remedy-flip-card,
  .remedy-flip-card .flip-inner {
    min-height: 150px;
  }

  .remedy-flip-card .flip-face {
    padding: 22px;
  }

  .doctor-image-wrap,
  .doctor-image-wrap img {
    min-height: 300px;
  }

  .doctor-badge {
    left: 14px;
    bottom: 14px;
    min-width: 160px;
    padding: 14px 16px;
  }

  .consult-form {
    padding: 20px;
  }

  .site-footer {
    padding-block: 36px;
  }

  .site-footer nav {
    justify-content: center;
  }
}
