:root {
  color-scheme: light;
  --ink: #12201f;
  --muted: #5b6d6a;
  --line: #dbe5e0;
  --paper: #fbfcfa;
  --surface: #ffffff;
  --teal: #187c77;
  --teal-dark: #0d5652;
  --sage: #dfe9df;
  --coral: #d8674d;
  --gold: #c99a3f;
  --shadow: 0 18px 55px rgba(20, 41, 40, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 252, 250, 0.92);
  border-bottom: 1px solid rgba(219, 229, 224, 0.8);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 50%;
  color: var(--teal-dark);
  background: #fff;
  overflow: hidden;
  font-weight: 800;
}

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

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

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

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav .nav-action {
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.language-button {
  min-width: 42px;
  min-height: 34px;
  padding: 7px 10px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.language-button.is-active {
  color: #fff;
  background: var(--teal-dark);
}

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

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

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 42, 39, 0.86) 0%, rgba(11, 42, 39, 0.58) 38%, rgba(11, 42, 39, 0.08) 72%),
    url("assets/clinic-hero.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: 104px 0 88px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #aee7df;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

html[lang="sq"] h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 6.8vw, 5.6rem);
}

h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.button-primary {
  color: #fff;
  background: var(--teal);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.hero .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 580px;
  margin: 38px 0 0;
}

.hero-stats div {
  min-height: 90px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats dt {
  font-size: 1.7rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.intro-item {
  min-height: 185px;
  padding: clamp(24px, 4vw, 46px);
  background: var(--surface);
}

.intro-item span {
  color: var(--coral);
  font-weight: 900;
}

.intro-item strong {
  display: block;
  margin-top: 20px;
  font-size: 1.18rem;
}

.intro-item p {
  max-width: 360px;
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 76px);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-heading.compact {
  align-content: start;
  max-width: 470px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.services-explorer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
}

.review-card,
.details-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(20, 41, 40, 0.05);
}

.service-tabs {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 102px;
}

.service-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  width: 100%;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(20, 41, 40, 0.04);
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  border-color: rgba(24, 124, 119, 0.45);
  background: #f1f7f4;
  transform: translateY(-1px);
}

.service-tab-media {
  grid-row: span 2;
  display: grid;
  justify-items: center;
  gap: 9px;
  width: 54px;
}

.service-tab-media b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.service-tab-media i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(24, 124, 119, 0.2);
  border-radius: 50%;
  background: #fff;
}

.service-tab-media svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: var(--teal-dark);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-tab strong {
  align-self: end;
  font-size: 1.08rem;
}

.service-tab small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.service-detail-stack {
  position: relative;
  min-height: 640px;
}

.service-detail {
  display: none;
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 233, 223, 0.85), rgba(255, 255, 255, 0.96) 42%),
    var(--surface);
  box-shadow: var(--shadow);
}

.service-detail.is-active {
  display: block;
}

.service-kicker {
  width: fit-content;
  margin: 0 0 16px;
  padding: 7px 10px;
  border-radius: 8px;
  color: var(--teal-dark);
  background: rgba(24, 124, 119, 0.12);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-detail h3 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.06;
}

.service-detail p:not(.service-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.03rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.service-detail-grid div,
.service-outcome {
  padding: 20px;
  border: 1px solid rgba(219, 229, 224, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.service-detail-grid h4 {
  margin: 0 0 14px;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.service-detail-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-detail-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.service-detail-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.service-outcome {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #fff;
  background: var(--teal-dark);
}

.service-outcome span {
  color: #aee7df;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-outcome strong {
  font-size: 1.05rem;
}

.review-card blockquote,
.details-grid p,
.plain-list {
  color: var(--muted);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 76px);
  background: #edf4f0;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.instagram-profile-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(219, 229, 224, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 244, 0.92)),
    var(--surface);
  box-shadow: var(--shadow);
}

.instagram-profile-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.instagram-profile-top img {
  width: 84px;
  height: 84px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(20, 41, 40, 0.12);
}

.instagram-profile-top strong,
.instagram-profile-top a {
  display: block;
}

.instagram-profile-top strong {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.instagram-profile-top a {
  width: fit-content;
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 850;
}

.instagram-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.instagram-profile-stats span {
  min-height: 74px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 12px 8px;
  background: #fff;
  text-align: center;
}

.instagram-profile-stats b,
.instagram-profile-stats small {
  display: block;
}

.instagram-profile-stats b {
  font-size: 1.18rem;
}

.instagram-profile-stats small {
  color: var(--muted);
  font-weight: 750;
}

.instagram-profile-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.instagram-profile-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 850;
}

.instagram-profile-location span {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.instagram-profile-card .button {
  width: fit-content;
}

.instagram-card {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.instagram-embed {
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 8px !important;
}

.instagram-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, rgba(18, 32, 31, 0.2), rgba(18, 32, 31, 0.82));
}

.tone-1 {
  background: linear-gradient(135deg, #187c77, #d8674d);
}

.tone-2 {
  background: linear-gradient(135deg, #405d52, #c99a3f);
}

.tone-3 {
  background: linear-gradient(135deg, #0d5652, #86a88c);
}

.tone-4 {
  background: linear-gradient(135deg, #7d6653, #187c77);
}

.instagram-card span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.8rem;
  font-weight: 850;
}

.instagram-card strong {
  font-size: 1.3rem;
}

.instagram-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.reviews-section {
  background: var(--surface);
}

.review-grid,
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.review-card blockquote {
  margin: 0;
  font-size: 1.08rem;
}

.review-stars {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.08rem;
  font-weight: 900;
}

.review-card figcaption {
  margin-top: 24px;
  color: var(--ink);
  font-weight: 850;
}

.review-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: var(--teal-dark);
  font-weight: 850;
  border-bottom: 2px solid currentColor;
}

.details-section {
  background: #f5f7f2;
}

.plain-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.plain-list li + li {
  margin-top: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(46px, 7vw, 78px) clamp(18px, 5vw, 76px);
  color: #fff;
  background: var(--teal-dark);
}

.contact-section .eyebrow {
  color: #aee7df;
}

.contact-section h2 {
  max-width: 560px;
}

.contact-section p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 76px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--teal-dark);
  font-weight: 850;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-end;
  }

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

  .services-explorer,
  .section-split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    position: static;
  }

  .service-detail-stack {
    min-height: 0;
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 740px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    max-width: calc(100% - 112px);
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 94px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .language-switcher {
    margin-left: auto;
  }

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

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(11, 42, 39, 0.82) 0%, rgba(11, 42, 39, 0.5) 64%, rgba(11, 42, 39, 0.7) 100%),
      url("assets/clinic-hero.png") center / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 86px;
  }

  h1 {
    font-size: clamp(2.9rem, 16vw, 4.7rem);
  }

  html[lang="sq"] h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 13vw, 3.85rem);
  }

  .hero-stats,
  .intro-band,
  .instagram-grid,
  .service-detail-grid,
  .review-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 78px;
  }

  .button,
  .hero-actions,
  .contact-actions,
  .instagram-profile-card .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
