:root {
  --ink: #141414;
  --ink-soft: #272522;
  --muted: #6f6a61;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --line: #e7e3db;
  --gold: #c7aa55;
  --gold-dark: #987c2e;
  --teal: #0f6c68;
  --mist: #eef6f3;
  --shadow: 0 22px 55px rgba(20, 20, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(231, 227, 219, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  width: 70px;
  height: 54px;
  object-fit: contain;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

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

.nav {
  display: flex;
  gap: clamp(15px, 2.7vw, 32px);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 160ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(46px, 7vw, 94px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(20, 20, 20, 0.96) 0%, rgba(39, 37, 34, 0.94) 54%, rgba(15, 108, 104, 0.88) 100%);
  color: white;
}

.hero-copy {
  max-width: 720px;
}

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

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

h1,
h2,
h3 {
  line-height: 1.06;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6vw, 5.8rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: 0;
}

h3 {
  font-size: 1.15rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero-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 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #171511;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.button.light {
  background: white;
  color: var(--ink);
}

.hero-panel {
  position: relative;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
}

.hero-note {
  position: absolute;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: grid;
  gap: 2px;
  max-width: min(330px, calc(100% - 28px));
  padding: 16px 18px;
  border: 1px solid rgba(199, 170, 85, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(20, 20, 20, 0.18);
  backdrop-filter: blur(12px);
}

.hero-note span {
  color: var(--muted);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info article {
  min-height: 150px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--surface);
}

.quick-info span,
.clinic-card p {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
}

.quick-info p,
.treatment-grid p,
.clinic-copy p,
address {
  color: var(--muted);
}

.section {
  padding: clamp(66px, 9vw, 116px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.team-section {
  background: var(--paper);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 26px);
}

.team-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 38px rgba(20, 20, 20, 0.08);
}

.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.team-card div {
  padding: clamp(20px, 2.6vw, 28px);
}

.team-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
}

.role {
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.treatment-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(20, 20, 20, 0.06);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  font-weight: 800;
}

.clinic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  background: var(--surface);
}

.clinic-copy {
  max-width: 860px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 720px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.stat-row div {
  padding: 22px;
  background: #fbfbfa;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.clinic-card {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.clinic-card a {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  text-decoration: none;
}

.instagram-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--teal);
  color: white;
}

.instagram-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.instagram-band h2 {
  max-width: 860px;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.5rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: start;
}

address {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-style: normal;
}

address strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.2rem;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions a {
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  padding: 30px 18px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer strong {
  color: white;
}

.footer-logo {
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.footer a {
  text-decoration: none;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1fr);
    grid-template-rows: none;
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: white;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
  }

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

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

  .hero,
  .clinic,
  .instagram-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-logo {
    width: 58px;
    height: 44px;
  }

  .brand small {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero,
  .section,
  .instagram-band {
    padding-left: 14px;
    padding-right: 14px;
  }

  .quick-info,
  .treatment-grid,
  .team-card,
  .stat-row {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-note {
    position: static;
    margin-top: 12px;
  }
}
