/* Dr. M. K. Sinha — V.L. Medical Centre: teal–stone clinical theme */
:root {
  --bg: #f4f1ec;
  --bg-mute: #ebe6df;
  --surface: #ffffff;
  --ink: #1a1f1e;
  --ink-soft: #3d4543;
  --teal-950: #0a2624;
  --teal-900: #0d322f;
  --teal-800: #11403c;
  --teal-500: #2a7a72;
  --teal-400: #3d968d;
  --teal-600: #32756e;
  --accent: #b85c2e;
  --accent-hover: #9a4d26;
  --ring: rgba(10, 38, 36, 0.18);
  --font-sans: "Outfit", system-ui, sans-serif;
  --font-serif: "Fraunces", ui-serif, Georgia, serif;
  --radius: 16px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(10, 38, 36, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 38, 36, 0.12);
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 68px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-sans);
  font-size: 1.025rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--teal-800);
  text-underline-offset: 3px;
}
a:hover {
  color: var(--teal-500);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: var(--teal-900);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip:focus {
  left: 0;
}

.note {
  font-size: 0.78em;
  font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.9;
}

.disclaimer {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(244, 241, 236, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 38, 36, 0.08);
  transition: box-shadow 0.3s var(--easing);
}
.header.is-scrolled {
  box-shadow: 0 6px 30px rgba(10, 38, 36, 0.08);
}
.header__bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.brand__glyph {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--teal-800), var(--teal-500));
  color: #e8f5f3;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.brand__glyph--sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.6rem;
  border-radius: 10px;
}
.brand__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--teal-950);
}
.brand__sub {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 18rem;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--teal-500);
  transition: width 0.25s var(--easing);
}
.nav a:hover {
  color: var(--teal-900);
}
.nav a:hover::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.medsfolioTag{
  font-size: 12px;
  font-weight: 700;
  color: rgba(10, 38, 36, 0.7);
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(10, 38, 36, 0.14);
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.25s var(--easing);
  white-space: nowrap;
  text-decoration: none;
}
.medsfolioTag:hover{
  color: var(--teal-900);
  border-color: rgba(42, 122, 114, 0.45);
  background: rgba(42, 122, 114, 0.08);
  transform: translateY(-1px);
}
.medsfolioTag--mobile{
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn--wa {
  background: #128c7e;
  color: #fff !important;
  text-decoration: none;
}
.btn--wa:hover {
  background: #0d6b60;
  transform: translateY(-1px);
}
.btn--block {
  width: 100%;
  margin-top: 0.5rem;
}
.btn--primary {
  background: var(--teal-800);
  color: #fff;
}
.btn--primary:hover {
  background: var(--teal-900);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--ring);
  color: #fff;
  text-decoration: none;
}
.btn--ghost {
  background: rgba(10, 38, 36, 0.06);
  color: var(--teal-950);
}
.btn--ghost:hover {
  background: rgba(10, 38, 36, 0.12);
  color: var(--teal-800);
  text-decoration: none;
}
.btn--inline {
  display: inline-flex;
  width: auto;
  margin-top: 0.75rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--teal-900);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (min-width: 880px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .header__bar .btn--wa {
    display: inline-flex;
  }
  .header__bar .medsfolioTag{
    display: inline-flex;
  }
}
@media (max-width: 879px) {
  .header__bar .btn--wa {
    display: none;
  }
  .header__bar .medsfolioTag{
    display: none;
  }
}
.mobile-menu {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--bg-mute);
  border-bottom: 1px solid rgba(10, 38, 36, 0.08);
  animation: slideDown 0.25s var(--easing);
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu a {
  padding: 0.6rem 0.25rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--teal-950);
  border-radius: 8px;
}
.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.5);
  color: var(--teal-800);
  text-decoration: none;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 880px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  min-width: 300px;
  height: 70%;
  background: radial-gradient(ellipse, rgba(42, 122, 114, 0.2) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
  .hero {
    padding: 3.5rem 1.25rem 4.5rem;
  }
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-800);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow__line {
  width: 2rem;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--teal-950);
  margin-bottom: 1rem;
}
.hero__em {
  display: block;
  color: var(--teal-500);
  font-style: italic;
  font-size: 0.98em;
}
.hero__lede {
  color: var(--ink-soft);
  max-width: 32rem;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}
.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.5rem;
}
.trust-badges li {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  background: rgba(10, 38, 36, 0.06);
  border-radius: var(--radius-pill);
  color: var(--teal-900);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(10, 38, 36, 0.1);
}
.stat__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--teal-800);
  line-height: 1.1;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: block;
  margin-top: 0.2rem;
}

/* Hero image */
.hero__frame {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  cursor: zoom-in;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  border-radius: 24px;
  transition: transform 0.35s var(--easing), box-shadow 0.35s;
}
.hero__frame:hover,
.hero__frame:focus {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  outline: 2px solid var(--teal-400);
  outline-offset: 2px;
}
.hero__frame-inner {
  border-radius: 20px;
  overflow: hidden;
  background: var(--teal-900);
  aspect-ratio: 4 / 5;
  box-shadow: 0 16px 50px rgba(10, 38, 36, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero__frame-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__plaque {
  position: absolute;
  bottom: -0.5rem;
  right: 1.25rem;
  background: var(--surface);
  padding: 0.65rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: right;
  line-height: 1.2;
  border: 1px solid rgba(10, 38, 36, 0.08);
}
.hero__plaque-t {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-800);
}
.hero__plaque-b {
  font-size: 0.78rem;
  color: var(--ink-soft);
}
.hero__sticker {
  margin-top: 1.5rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  background: var(--teal-900);
  color: #e0ebe9;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 32px rgba(10, 38, 36, 0.25);
}
.hero__sticker strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

@media (min-width: 900px) {
  .hero__frame {
    max-width: 340px;
  }
}

/* Sections */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: 3.5rem 0;
}
.section--mute {
  background: var(--bg-mute);
}
.section--depth {
  background: linear-gradient(180deg, var(--teal-900) 0%, var(--teal-800) 100%);
  color: #e6f0ee;
}
.section--depth a {
  color: #8fd4c9;
}
.section--depth a:hover {
  color: #fff;
}
.section--depth h2,
.section--depth h3 {
  color: #fff;
}
.section--depth .section__head h2 {
  color: #fff;
}
.section--contact {
  background: #fff;
  box-shadow: 0 -8px 40px rgba(10, 38, 36, 0.04);
}
.section__head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  color: var(--teal-950);
  margin-bottom: 0.4rem;
}
.section__kicker {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 0;
}
.section--depth .section__kicker {
  color: rgba(255, 255, 255, 0.7);
}
.section__note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 40rem;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(10, 38, 36, 0.04);
  border-left: 3px solid var(--teal-500);
  border-radius: 0 8px 8px 0;
}
.t-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (min-width: 800px) {
  .t-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.t-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(10, 38, 36, 0.08);
  box-shadow: var(--shadow);
}
.t-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--teal-950);
  margin-bottom: 0.6rem;
}
.t-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}
.t-meta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--teal-800);
  background: rgba(42, 122, 114, 0.08);
  padding: 0.35rem 0.6rem;
  border-radius: var(--radius-pill);
}
.t-cta {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

/* Services */
.svc-grid {
  display: grid;
  gap: 1rem;
  margin-top: 0.25rem;
}
@media (min-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
.svc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(10, 38, 36, 0.08);
  box-shadow: var(--shadow);
}
.svc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--teal-950);
  margin-bottom: 0.75rem;
}
.svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.svc-list li {
  position: relative;
  padding-left: 1.05rem;
}
.svc-list li::before {
  content: \"\";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-500);
}
.svc-list strong {
  color: var(--teal-900);
}

.split {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 800px) {
  .split {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}
.prose p {
  margin-bottom: 1rem;
  color: var(--ink);
}
.prose p:last-child {
  margin-bottom: 0;
}
.side-card {
  background: var(--surface);
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 38, 36, 0.06);
}
.side-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--teal-900);
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.checklist li {
  position: relative;
  padding-left: 1.35rem;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 800;
  font-size: 0.85em;
}

/* Care tabs */
.care-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}
.care-tab {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(10, 38, 36, 0.15);
  background: #fff;
  color: var(--teal-900);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.care-tab:hover {
  border-color: var(--teal-500);
  background: rgba(42, 122, 114, 0.08);
}
.care-tab.is-active,
.care-tab[aria-selected="true"] {
  background: var(--teal-800);
  color: #fff;
  border-color: var(--teal-800);
  box-shadow: 0 4px 16px var(--ring);
}
.care-panel[hidden] {
  display: none;
}
.care-panels__content {
  min-height: 4rem;
}
.care-panel {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 38, 36, 0.06);
}
.care-panel.is-visible {
  animation: fadeIn 0.3s var(--easing);
}
.pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--ink);
}
.pill-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.98rem;
}
.pill-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-500);
}
@keyframes fadeIn {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

/* Timeline (credentials) */
.timeline {
  max-width: 40rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.25);
}
.section--depth .section__head {
  margin-bottom: 1.5rem;
}
.timeline__item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 0.5rem;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__dot {
  position: absolute;
  left: calc(-1.5rem - 5px);
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8fd4c9;
  box-shadow: 0 0 0 3px rgba(42, 122, 114, 0.5);
}
.timeline h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}
.timeline p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

/* Clinic */
.clinic-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .clinic-grid {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: start;
  }
  .clinic-visit {
    grid-column: span 1;
  }
}
.clinic-thumb {
  width: 100%;
  border: none;
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--easing), box-shadow 0.3s;
  border: 1px solid rgba(10, 38, 36, 0.08);
}
.clinic-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--easing);
}
.clinic-thumb:hover,
.clinic-thumb:focus {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  outline: none;
}
.clinic-thumb:hover img,
.clinic-thumb:focus img {
  transform: scale(1.03);
}
.clinic-visit h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--teal-950);
}
.info-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.4rem 1.25rem;
  font-size: 0.95rem;
  margin: 0;
}
.info-dl dt {
  color: var(--teal-800);
  font-weight: 600;
  margin: 0;
}
.info-dl dd {
  margin: 0;
  color: var(--ink);
  grid-column: 2;
  margin-bottom: 0.75rem;
}
.info-dl a {
  text-decoration: none;
  font-weight: 600;
  color: var(--teal-800);
}
.info-dl a:hover {
  text-decoration: underline;
}

/* Contact */
.contact-row {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
@media (min-width: 800px) {
  .contact-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-block {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(10, 38, 36, 0.08);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: block;
}
a.contact-block:hover,
a.contact-block:focus {
  border-color: var(--teal-500);
  box-shadow: 0 12px 32px var(--ring);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
  outline: none;
}
.contact-block h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0.4rem 0 0.5rem;
  color: var(--teal-950);
}
.contact-block p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
}
.contact-block__action {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #128c7e;
}
.contact-block__icon {
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(42, 122, 114, 0.1);
  border-radius: 12px;
  font-size: 1.2rem;
}
.contact-block--plain {
  background: #fff;
}

/* Anim */
.anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--easing), transform 0.55s var(--easing);
}
.anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.anim[data-delay="50"] { transition-delay: 50ms; }
.anim[data-delay="60"] { transition-delay: 60ms; }
.anim[data-delay="80"] { transition-delay: 80ms; }
.anim[data-delay="100"] { transition-delay: 100ms; }
.anim[data-delay="120"] { transition-delay: 120ms; }

/* Footer */
.footer {
  background: var(--teal-950);
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0;
  font-size: 0.88rem;
  line-height: 1.6;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__name {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-serif);
  font-size: 1.05rem;
}
.footer__meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__credit {
  flex: 1 1 100%;
  text-align: center;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.55);
}
.medsfolio {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.medsfolio:hover {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 720px) {
  .footer__credit {
    order: 0;
    flex: 1 1 auto;
  }
  .footer__row {
    flex-wrap: nowrap;
  }
  .footer__brand {
    order: -1;
  }
  .medsfolio {
    order: 1;
  }
}

/* FAB */
.fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  text-decoration: none;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover {
  transform: scale(1.06);
  text-decoration: none;
  color: #fff;
}
@media (min-width: 600px) {
  .fab {
    font-size: 0.75rem;
  }
}
.fab svg { width: 24px; height: 24px; flex-shrink: 0; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 20, 18, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  cursor: zoom-out;
}
.lightbox[hidden] {
  display: none;
}
.lightbox__img {
  max-width: min(92vw, 900px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  cursor: default;
  pointer-events: auto;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  line-height: 1;
  border: none;
  background: #fff;
  color: var(--teal-950);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.lightbox__close:hover {
  transform: scale(1.05);
}
