/* ═══════════════════════════════════════════
       TOKENS
    ═══════════════════════════════════════════ */
:root {
  /* Color system */
  --brand: #814d29; /* primary brand brown */
  --brand-light: #9a6035;
  --brand-dark: #6a3d1f;
  --brand-xlight: #c4956a; /* hover / lighter tint */
  --accent: #f0ebe7; /* soft warm bg */
  --accent-mid: #e6ddd6;
  --accent-dark: #d8cec5;
  --white: #ffffff;
  --off-white: #faf8f6;
  --light-gray: #f4f1ee;
  --mid-gray: #e4dfd9;
  --text-dark: #1e1a17;
  --text-mid: #5a5047;
  --text-light: #9a8f85;
  --dark-bg: #1a1612;
  --dark2: #221e1a;

  /* Typography system */
  --font-ui: "Manrope", sans-serif;
  --font-h: "Times New Roman", Times, serif;
  --font-b: var(--font-ui);
  --fs-root: clamp(15px, 0.3vw + 14px, 17px);
  --fs-2xs: clamp(0.64rem, 0.62rem + 0.08vw, 0.7rem);
  --fs-xs: clamp(0.72rem, 0.69rem + 0.15vw, 0.82rem);
  --fs-sm: clamp(0.82rem, 0.79rem + 0.18vw, 0.94rem);
  --fs-md: clamp(0.94rem, 0.91rem + 0.2vw, 1.06rem);
  --fs-lg: clamp(1.02rem, 0.98rem + 0.24vw, 1.18rem);
  --fs-xl: clamp(1.18rem, 1.12rem + 0.35vw, 1.42rem);
  --fs-2xl: clamp(1.4rem, 1.26rem + 0.6vw, 1.9rem);
  --fs-3xl: clamp(1.8rem, 1.55rem + 1.1vw, 2.6rem);
  --fs-4xl: clamp(2.2rem, 1.8rem + 1.8vw, 3.5rem);
  --fs-display: clamp(3rem, 2.2rem + 3.4vw, 5.2rem);
  --fs-body: clamp(0.98rem, 0.94rem + 0.22vw, 1.08rem);
  --fs-h1: clamp(2.1rem, 1.6rem + 2.4vw, 3.6rem);
  --fs-h2: clamp(1.65rem, 1.3rem + 1.6vw, 2.6rem);
  --fs-h3: clamp(1.28rem, 1.1rem + 0.8vw, 1.8rem);
  --fs-h4: var(--fs-xl);
  --fs-h5: var(--fs-lg);
  --fs-h6: var(--fs-md);
  --lh-tight: 1.2;
  --lh-body: 1.75;
  --ls-tight: 0.01em;
  --ls-wide: 0.18em;

  /* Spacing system */
  --layout-pad-inline: clamp(20px, 5vw, 80px);
  --section-pad-y: clamp(64px, 9vw, 96px);
  --s1: clamp(8px, 0.3vw, 10px);
  --s2: clamp(14px, 1vw, 18px);
  --s3: clamp(20px, 1.5vw, 28px);
  --s4: clamp(28px, 2vw, 36px);
  --s5: clamp(40px, 3vw, 56px);
  --s6: clamp(52px, 4vw, 72px);
  --s7: clamp(72px, 6vw, 104px);
  --s8: clamp(96px, 9vw, 132px);
}

/* ═══════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: var(--fs-root);
}
body {
  font-family: var(--font-b);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-h);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}
h1 {
  font-size: var(--fs-h1);
  font-weight: 700;
}
h2 {
  font-size: var(--fs-h2);
  font-weight: 650;
}
h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
}
h4 {
  font-size: var(--fs-h4);
  font-weight: 600;
}
h5 {
  font-size: var(--fs-h5);
  font-weight: 600;
}
h6 {
  font-size: var(--fs-h6);
  font-weight: 600;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: var(--font-b);
  cursor: pointer;
}

/* ═══════════════════════════════════════════
       TOP BAR
    ═══════════════════════════════════════════ */
.top-bar {
  background: var(--brand);
  text-align: center;
  padding: 10px var(--layout-pad-inline);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--white);
}
.top-bar a {
  color: var(--white);
  transition: opacity 0.2s;
}
.top-bar a:hover {
  opacity: 0.75;
}

/* ═══════════════════════════════════════════
       HEADER
    ═══════════════════════════════════════════ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--mid-gray);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 76px;
  padding: 0 var(--layout-pad-inline);
}
.nav-root {
  margin-left: auto;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  min-width: 0;
}
.site-logo img {
  height: 64px;
  max-width: 230px;
  width: auto;
}
.logo-fallback {
  display: none;
  flex-direction: column;
  gap: 2px;
}
.logo-fallback .ln {
  font-family: var(--font-h);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
}
.logo-fallback .lt {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.main-nav > li {
  position: relative;
}
.main-nav > li > a {
  display: block;
  padding: 28px 7px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: color 0.18s;
  white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li:hover > a {
  color: var(--brand);
}
.main-nav > li > a.active {
  color: var(--brand);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  /* top: calc(100% + 8px); */
  left: 50%;
  transform: translateX(-50%);
  min-width: 270px;
  max-width: min(420px, calc(100vw - (var(--layout-pad-inline) * 2)));
  max-height: min(72vh, 680px);
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--accent-dark);
  border-left: 10px solid var(--accent-dark);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  padding: 12px 0;
  z-index: 2000;
}
.dropdown-head {
  padding: 8px 22px 12px;
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--brand);
  border-bottom: 1px solid var(--accent);
  margin-bottom: 6px;
}
.dropdown a {
  display: block;
  padding: 8px 22px;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
  text-transform: none;
  color: var(--text-mid);
  transition:
    color 0.15s,
    background 0.15s;
}
.dropdown a:hover {
  color: var(--brand);
  background: var(--accent);
}
.dropdown a.active {
  color: var(--brand);
  background: var(--accent);
  font-weight: 700;
}
.main-nav > li:hover .dropdown {
  display: block;
}
.main-nav > li:focus-within .dropdown {
  display: block;
}

/* Mega dropdown (Πρόσωπο - Λαιμός) */
.main-nav > li:has(> .mega-dropdown) {
  position: static;
}
.mega-dropdown {
  top: 100%;
  left: var(--layout-pad-inline);
  right: var(--layout-pad-inline);
  width: auto;
  min-width: 0;
  max-width: none;
  transform: none;
  padding: clamp(24px, 2.8vw, 34px) clamp(26px, 2.8vw, 40px)
    clamp(24px, 2.8vw, 36px);
}
.main-nav > li:hover .mega-dropdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(30px, 2.6vw, 44px);
  row-gap: clamp(10px, 1vw, 16px);
}
.main-nav > li:focus-within .mega-dropdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(30px, 2.6vw, 44px);
  row-gap: clamp(10px, 1vw, 16px);
}
.mega-dropdown .dropdown-head {
  grid-column: 1 / span 3;
  margin: 0;
  padding: 2px 0 14px;
  border-bottom: none;
  font-size: clamp(1.02rem, 0.98rem + 0.3vw, 1.22rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.mega-dropdown .mega-menu-cta {
  grid-column: 4;
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mega-dropdown .mega-menu-cta:hover {
  background: var(--accent);
}
.mega-dropdown > a:not(.mega-menu-cta) {
  display: block;
  margin: 0;
  padding: 4px 0;
  background: transparent;
  font-size: 13px !important;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.55;
  text-transform: none;
  color: var(--text-mid);
}
.mega-dropdown > a:not(.mega-menu-cta):hover {
  color: var(--brand);
  background: transparent;
}

/* Mega dropdown (Σώμα) */
.mega-dropdown-soma {
  width: min(920px, calc(100vw - (var(--layout-pad-inline) * 2)));
  min-width: 0;
  left: auto;
  right: var(--layout-pad-inline);
  transform: none;
}
.main-nav > li:hover .mega-dropdown-soma {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 2.2vw, 34px);
  row-gap: clamp(12px, 1vw, 16px);
}
.main-nav > li:focus-within .mega-dropdown-soma {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 2.2vw, 34px);
  row-gap: clamp(12px, 1vw, 16px);
}
.mega-dropdown-soma .dropdown-head {
  grid-column: 1;
}
.mega-dropdown-soma .mega-menu-cta {
  grid-column: 2;
}

/* Mega dropdown (Μαστοί) */
.mega-dropdown-mastoi {
  width: min(860px, calc(100vw - (var(--layout-pad-inline) * 2)));
  min-width: 0;
  left: auto;
  right: var(--layout-pad-inline);
  transform: none;
}
.main-nav > li:hover .mega-dropdown-mastoi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 2.2vw, 34px);
  row-gap: clamp(12px, 1vw, 16px);
}
.main-nav > li:focus-within .mega-dropdown-mastoi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(24px, 2.2vw, 34px);
  row-gap: clamp(12px, 1vw, 16px);
}
.mega-dropdown-mastoi .dropdown-head {
  grid-column: 1;
}
.mega-dropdown-mastoi .mega-menu-cta {
  grid-column: 2;
}
@media (min-width: 1200px) and (max-width: 1320px) {
  .main-nav > li:hover .mega-dropdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .main-nav > li:focus-within .mega-dropdown {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mega-dropdown .dropdown-head {
    grid-column: 1 / span 2;
  }
  .mega-dropdown .mega-menu-cta {
    grid-column: 3;
  }
}
@media (min-width: 1200px) and (max-width: 1240px) {
  .main-nav > li:hover .mega-dropdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-nav > li:focus-within .mega-dropdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-dropdown .dropdown-head {
    grid-column: 1;
  }
  .mega-dropdown .mega-menu-cta {
    grid-column: 2;
  }

  .main-nav > li:hover .mega-dropdown-mastoi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-nav > li:focus-within .mega-dropdown-mastoi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-nav > li:hover .mega-dropdown-soma {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .main-nav > li:focus-within .mega-dropdown-soma {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Nav divider */
.nav-divider {
  border-left: 1px solid var(--mid-gray);
  margin: 0 4px;
}
.nav-divider > a {
  color: var(--brand) !important;
}

/* CTA phone button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--brand);
  color: var(--white);
  padding: 10px 14px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: background 0.2s;
  white-space: nowrap;
  text-transform: uppercase;
}
.nav-cta:hover {
  background: var(--brand-light);
}
.nav-cta svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  flex-shrink: 0;
}
.nav-cta-desktop {
}
.nav-cta-mobile-item {
  display: none;
}
.submenu-toggle {
  display: none;
}
.mobile-menu-close-row {
  display: none;
}
.mobile-menu-close {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: 0.3s;
}
@media (min-width: 1200px) {
  .nav-toggle {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .nav-cta-desktop,
  .header-inner > .nav-cta-desktop {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .main-nav:not(.open) {
    display: none !important;
  }
  .nav-cta-desktop {
    display: none !important;
  }
  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--brand);
    background: var(--brand);
    position: absolute;
    top: 50%;
    right: var(--layout-pad-inline);
    transform: translateY(-50%);
    z-index: 1300;
  }
  .nav-toggle span {
    background: var(--white);
  }
}

/* ═══════════════════════════════════════════
       HERO — IMAGE SLIDER, content LEFT
    ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--dark-bg);
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: none;
  transition: opacity 0.45s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: none;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.hero-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 7;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  transition:
    color 0.2s,
    opacity 0.2s;
}
.hero-slider-nav:hover {
  color: var(--white);
  opacity: 1;
}
.hero-slider-prev {
  left: clamp(10px, 1.8vw, 28px);
}
.hero-slider-next {
  right: clamp(10px, 1.8vw, 28px);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    105deg,
    rgba(20, 14, 10, 0.65) 0%,
    rgba(20, 14, 10, 0.35) 50%,
    rgba(20, 14, 10, 0.08) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 96px;
  left: var(--layout-pad-inline);
  z-index: 5;
  width: min(820px, calc(100% - (var(--layout-pad-inline) * 2)));
}
.hero-label {
  display: inline-block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-xlight);
  margin-bottom: 16px;
}
.hero-title {
  font-size: var(--fs-h1);
  font-weight: 500;
  color: var(--white);
  line-height: 1.16;
  margin-bottom: 12px;
}
.hero-subtitle {
  font-size: var(--fs-lg);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 28px;
}
.btn-hero {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 34px;
  transition: background 0.2s;
}
.btn-hero:hover {
  background: var(--brand-light);
}
.hero .btn-hero {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.hero .btn-hero:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.95);
}

/* ═══════════════════════════════════════════
       PROMO STRIP
    ═══════════════════════════════════════════ */
.promo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.promo-card {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.promo-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}
.promo-card:hover .promo-card-bg {
  transform: scale(1.04);
}
.promo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.06) 55%
  );
}
.promo-card-1 .promo-card-bg {
  background-image: url("https://green-pony-320586.hostingersite.com/wp-content/uploads/promo_therapies_anatheorisi-maston-1.jpg");
  background-color: #6a7a85;
}
.promo-card-2 .promo-card-bg {
  background-image: url("https://green-pony-320586.hostingersite.com/wp-content/uploads/promo_therapies_biofillers.jpg");
  background-color: #b89080;
}
.promo-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 36px;
  width: 100%;
}
.promo-card-content h2 {
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.promo-card-content p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 300;
}
.btn-promo {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.btn-promo:hover {
  background: var(--brand);
  border-color: var(--brand);
}

/* ═══════════════════════════════════════════
       PRESS BAR — MARQUEE
    ═══════════════════════════════════════════ */
.press-bar {
  background: var(--brand);
  padding: 50px var(--layout-pad-inline);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--mid-gray);
}
.press-bar::before,
.press-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.press-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--brand), transparent);
}
.press-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--brand), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  animation: marquee 26s linear infinite;
  width: max-content;
  will-change: transform;
}
.press-bar:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.press-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(140px, 16vw, 230px);
  height: clamp(42px, 4.8vw, 62px);
}

.press-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.9;
}

.press-logo {
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-weight: 600;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  padding: 0 44px;
  white-space: nowrap;
}
.press-logo.sans {
  font-family: var(--font-b);
  font-size: var(--fs-sm);
  font-weight: 700;
  font-style: normal;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5;
}
.press-sep {
  color: rgba(255, 255, 255, 0.28);
  font-size: var(--fs-lg);
  padding: 0 4px;
  user-select: none;
}

/* ═══════════════════════════════════════════
       DOCTOR SECTION — extra breathing room
    ═══════════════════════════════════════════ */
.doctor-section {
  margin: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  padding-inline: var(--s6);
}

.doctor-text {
  padding-top: var(--s8);
  padding-bottom: var(--s8);

  padding-right: var(--s8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.section-overtitle {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.doctor-name {
  font-size: var(--fs-h2);
  font-weight: 650;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.doctor-subtitle {
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 30px;
}
.doctor-bio {
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 38px;
  max-width: 750px;
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-brand {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px;
  transition: background 0.2s;
}
.btn-brand:hover {
  background: var(--brand-light);
}
.btn-outline {
  display: inline-block;
  border: 1px solid var(--mid-gray);
  color: var(--text-mid);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.doctor-image {
  position: relative;
  overflow: hidden;
  background: var(--accent);
  align-self: center;
  justify-self: center;
  width: min(100%, 440px);
  aspect-ratio: 4 / 5;
  min-height: 0;
}
.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ═══════════════════════════════════════════
       COUNTERS
    ═══════════════════════════════════════════ */
.counters-section {
  background: var(--white);
  border-top: 1px solid var(--accent-dark);
  border-bottom: 1px solid var(--accent-dark);
  padding: 56px var(--s6);
  margin: 120px 0;
}
.counters-inner {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.counter-item {
  padding: 0 24px;
  border-right: 1px solid var(--accent-dark);
}
.counter-item:last-child {
  border-right: none;
}
.counter-num {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 650;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
       WELCOME / SERVICES
    ═══════════════════════════════════════════ */
.welcome-section {
  background: var(--dark-bg);
}

.welcome-video-wrap {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}
.welcome-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.welcome-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 14, 10, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.welcome-big {
  font-size: clamp(3.3rem, 9vw, 6.6rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 24px;
  text-transform: uppercase;
  line-height: 1;
  user-select: none;
}
.welcome-sub {
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.svc-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: stretch;
}
.svc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.svc-card:hover .svc-card-bg {
  transform: scale(1.04);
}
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(20, 16, 14, 0.2) 0%,
      rgba(20, 16, 14, 0.48) 44%,
      rgba(20, 16, 14, 0.62) 100%
    ),
    radial-gradient(
      70% 70% at 50% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 100%
    );
}
.svc-card-1 .svc-card-bg {
  background-image: url("/assets/images/dr-androulakakis/dr-androulakakis-andreas-051.webp");
  background-position: center 20%;
  background-color: #bcaea4;
}
.svc-card-2 .svc-card-bg {
  background-image: url("/assets/images/dr-androulakakis/dr-androulakakis-abdominoplasty-032.webp");
  background-position: center;
  background-color: #8a9a97;
}
.svc-card-3 .svc-card-bg {
  background-image: url("/assets/images/homepage/Dr.-Andreas_031.jpg");
  background-position: center;
  background-color: #957f73;
}

.svc-card-content {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 2.2vw, 34px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(12px, 1.2vw, 18px);
}
.svc-line {
  display: none;
}
.svc-card-content h3 {
  font-size: clamp(2rem, 1.45rem + 1.25vw, 2.9rem);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.06;
  letter-spacing: 0.02em;
}
.svc-desc {
  width: min(92%, 560px);
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.18rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin: 0;
}
.btn-svc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-width: clamp(170px, 15vw, 210px);
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: var(--brand);
  color: var(--white);
  font-size: clamp(0.88rem, 0.82rem + 0.18vw, 0.98rem);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 11px 26px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.btn-svc:hover {
  background: var(--white);
  color: var(--brand);
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
       TEAM
    ═══════════════════════════════════════════ */
.team-section {
  background: var(--white);
  padding: var(--section-pad-y) var(--layout-pad-inline);
  text-align: center;
}

.section-title {
  font-size: var(--fs-h2);
  font-weight: 650;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.section-desc {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 780px;
  margin: 0 auto var(--s5);
}

.team-grid {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
}
.team-photo {
  width: clamp(180px, 14vw, 230px);
  height: clamp(180px, 14vw, 230px);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 2px solid var(--accent-dark);
  background: var(--accent);
  transition: border-color 0.28s;
}
.team-card:hover .team-photo {
  border-color: var(--brand);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-name {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 3px;
}
.team-role {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
       PHILOSOPHY
    ═══════════════════════════════════════════ */
.philosophy-section {
  background: var(--accent);
  padding: var(--section-pad-y) var(--layout-pad-inline);
  text-align: center;
}
.philosophy-intro {
  font-size: var(--fs-body);
  color: var(--text-mid);
  line-height: 1.88;
  max-width: 800px;
  margin: 0 auto var(--s5);
}
.pillars-grid {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.pillar {
  text-align: center;
  padding: 10px 12px;
}
.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: var(--fs-xl);
  color: var(--brand);
}
.pillar-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.pillar h3 {
  font-size: var(--fs-2xl);
  font-weight: 650;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.pillar p {
  font-size: var(--fs-body);
  color: var(--text-mid);
  line-height: 1.82;
}

/* ═══════════════════════════════════════════
       BEFORE / AFTER
    ═══════════════════════════════════════════ */
.before-after-section {
  background: var(--off-white);
  padding: var(--section-pad-y) var(--layout-pad-inline);
  text-align: center;
}
.before-after-intro {
  font-size: var(--fs-body);
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 860px;
  margin: 0 auto var(--s5);
}
.before-after-grid {
  max-width: none;
  width: 100%;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
}
.ba-card {
  background: var(--white);
  border: 1px solid var(--accent-dark);
  overflow: hidden;
  text-align: left;
}
.ba-compare {
  --pos: 50%;
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--accent-mid);
  overflow: hidden;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ba-img-before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--pos);
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid rgba(255, 255, 255, 0.92);
}
.ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}
.ba-slider:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
}
.ba-slider::-webkit-slider-thumb {
  appearance: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
}
.ba-slider::-moz-range-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
}
.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(30, 26, 23, 0.18);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 3;
}
.ba-slider-handle::before,
.ba-slider-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  margin-top: -4px;
}
.ba-slider-handle::before {
  left: 11px;
  transform: rotate(-135deg);
}
.ba-slider-handle::after {
  right: 11px;
  transform: rotate(45deg);
}
.ba-badge {
  position: absolute;
  top: 12px;
  z-index: 5;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 26, 23, 0.14);
  padding: 4px 9px;
}
.ba-badge-before {
  left: 12px;
}
.ba-badge-after {
  right: 12px;
}
.ba-card-copy {
  padding: 12px 14px 14px;
}
.ba-card-copy h3 {
  font-size: var(--fs-md);
  font-family: var(--font-b);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.ba-card-copy p {
  font-size: var(--fs-xs);
  color: var(--text-mid);
}
.before-after-actions {
  margin-top: 22px;
}
.ba-load-more.btn-brand {
  border: 0;
  cursor: pointer;
  min-height: 44px;
}
.ba-load-more[hidden] {
  display: none;
}

/* ═══════════════════════════════════════════
       BLOG SECTION
    ═══════════════════════════════════════════ */
.blog-section {
  background: var(--white);
  padding: var(--section-pad-y) var(--layout-pad-inline);
  text-align: center;
}
.blog-section-desc {
  max-width: 860px;
}
.blog-grid {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
}
.blog-card {
  background: var(--off-white);
  border: 1px solid var(--accent-dark);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
}
.blog-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--accent-mid);
}
.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-card-image,
.blog-card:focus-within .blog-card-image {
  transform: scale(1.03);
}
.blog-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 15px 16px;
  min-height: 192px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a5d53;
}
.blog-card-title {
  margin: 0;
  font-family: var(--font-b);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 1.4;
}
.blog-card-title a {
  color: var(--text-dark);
  text-decoration: none;
}
.blog-card-title a:hover {
  color: var(--brand);
}
.blog-card-excerpt {
  font-size: var(--fs-sm);
  line-height: 1.72;
  color: var(--text-mid);
}
.blog-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
}
.blog-card-cta:hover {
  color: var(--brand-light);
}
.blog-actions {
  margin-top: 24px;
}
.blog-load-more[hidden] {
  display: none;
}
.blog-load-more.btn-brand {
  border: 0;
  cursor: pointer;
  min-height: 44px;
}

/* ═══════════════════════════════════════════
       BLOG ARTICLE
    ═══════════════════════════════════════════ */
.blog-article-page {
  --blog-article-bg: #f5f4f2;
}
.blog-article-page .blog-article-section {
  background: var(--blog-article-bg);
  padding: 0 0 clamp(52px, 7vw, 84px);
}
.blog-article-page .blog-article-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--layout-pad-inline) clamp(8px, 1.2vw, 16px);
}
.blog-article-page article.blog-article-card.reveal.visible {
  padding-top: 50px;
}
.blog-article-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: var(--fs-xs);
  color: #6a5d53;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.blog-article-title {
  margin: 14px 0 20px;
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1.7rem, 1.42rem + 1.3vw, 2.5rem);
  line-height: 1.2;
  color: var(--brand-dark);
}
.blog-article-image-wrap {
  margin: 0 0 18px;
  border: 1px solid var(--accent-dark);
  background: var(--accent-mid);
  overflow: hidden;
}
.blog-article-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-article-content p {
  margin: 0 0 14px;
  font-size: var(--fs-md);
  line-height: 1.85;
  color: #2d2823;
  padding-right: clamp(0px, 1.2vw, 18px);
}
.blog-article-content h1,
.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4,
.blog-article-content h5,
.blog-article-content h6 {
  margin: 24px 0 12px;
  font-family: var(--font-b);
  color: var(--brand-dark);
  line-height: 1.3;
}
.blog-article-content h2 {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.5rem);
}
.blog-article-content h3 {
  font-size: clamp(1.08rem, 1.03rem + 0.24vw, 1.24rem);
}
.blog-article-content ul,
.blog-article-content ol {
  margin: 0 0 16px 20px;
  padding: 0;
}
.blog-article-content li {
  margin-bottom: 8px;
  font-size: var(--fs-md);
  line-height: 1.8;
  color: #2d2823;
}
.blog-article-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blog-article-content strong {
  font-weight: 800;
  color: #201a16;
}
.blog-article-content em {
  font-style: italic;
}
.blog-article-content code {
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  background: #ece8e2;
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-size: 0.95em;
}
.blog-article-content blockquote {
  margin: 0 0 18px;
  padding: 10px 0 10px 16px;
  border-left: 3px solid var(--accent-dark);
  color: #5b524a;
}
.blog-article-content hr {
  border: 0;
  border-top: 1px solid var(--accent-dark);
  margin: 24px 0;
}
.blog-article-content p:last-child {
  margin-bottom: 0;
}
.blog-article-status {
  margin: 8px 0 0;
  font-size: var(--fs-sm);
  color: var(--text-light);
}
.blog-article-actions {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 760px) {
  .blog-article-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-article-actions .btn-brand,
  .blog-article-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
       TESTIMONIALS
    ═══════════════════════════════════════════ */
.testimonials-section {
  background: var(--white);
  padding: var(--section-pad-y) var(--layout-pad-inline);
  text-align: center;
}
.testimonials-grid {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-card {
  background: var(--accent-dark);
  padding: 32px 28px;
  text-align: left;
  border-bottom: 2px solid var(--brand);
}
.testimonial-text {
  font-size: var(--fs-lg);
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 18px;
  font-style: italic;
  font-weight: 400;
}
.testimonial-author {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
}

/* ═══════════════════════════════════════════
       CONTACT
    ═══════════════════════════════════════════ */
.contact-section {
  background: var(--dark-bg);
  position: relative;
  padding: var(--section-pad-y) var(--layout-pad-inline);
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 12% 88%,
      rgba(129, 77, 41, 0.22) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 88% 12%,
      rgba(100, 60, 25, 0.18) 0%,
      transparent 45%
    );
}
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -38deg,
      transparent,
      transparent 90px,
      rgba(129, 77, 41, 0.04) 90px,
      rgba(129, 77, 41, 0.04) 91px
    ),
    repeating-linear-gradient(
      52deg,
      transparent,
      transparent 130px,
      rgba(129, 77, 41, 0.03) 130px,
      rgba(129, 77, 41, 0.03) 131px
    );
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 44px;
}
.contact-header h2 {
  font-size: var(--fs-h2);
  font-weight: 650;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-header p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.45);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group.full {
  grid-column: span 2;
}
.form-group label {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  font-size: var(--fs-md);
  font-family: var(--font-b);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group select option {
  background: #2a201a;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-xlight);
}
.form-group textarea {
  height: 110px;
  resize: vertical;
}
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--fs-md);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  cursor: pointer;
}
.form-checkbox input {
  margin-top: 3px;
  appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  display: inline-grid;
  place-content: center;
}
.form-checkbox input:checked {
  background: var(--brand);
  border-color: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.7 3.6 5.7 9.8 2.4 6.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
.form-checkbox input:focus-visible {
  outline: 2px solid var(--brand-xlight);
  outline-offset: 3px;
}
.form-submit {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}
.btn-submit {
  background: var(--brand);
  color: var(--white);
  border: none;
  font-family: var(--font-b);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 48px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--brand-light);
}
.btn-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}
.btn-submit.is-loading {
  background: #7f6c5b;
}
.btn-submit.is-sent {
  background: var(--brand-dark);
}
.btn-submit.is-error {
  background: #8b2f2f;
}

/* ═══════════════════════════════════════════
       FOOTER MODERN (HOME)
    ═══════════════════════════════════════════ */
.footer-modern {
  background: #e2e1de;
  color: #2f2d29;
  padding: 0;
}
.footer-modern-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 0.92fr 0.92fr;
  width: 100%;
}
.footer-modern-col {
  min-height: 430px;
  padding: 34px 28px 28px;
}
.footer-modern-newsletter {
  background: #e7e6e4;
}
.footer-modern-contact {
  background: #d2ceca;
}
.footer-modern-links {
  background: #c0bcb6;
}
.footer-modern-follow {
  background: #b0aba2;
}
.footer-modern :is(h2, h4) {
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #34322e;
}
.footer-modern-form {
  width: min(100%, 520px);
}
.footer-modern-form input {
  width: 100%;
  border: 1px solid #8c8984;
  background: transparent;
  padding: 10px 12px;
  font-size: 0.88rem;
  font-family: var(--font-b);
  color: #2f2d29;
  margin-bottom: 10px;
  outline: none;
}
.footer-modern-form input::placeholder {
  color: #8f8b85;
}
.footer-modern-form input:focus {
  border-color: #6b655c;
}
.footer-modern-note {
  margin: 8px 0 22px;
  color: #3e3b36;
  font-size: 0.84rem;
  line-height: 1.58;
  max-width: 520px;
}
.footer-modern-form button {
  background: #8a592e;
  color: #fff;
  border: 0;
  padding: 11px 20px;
  min-width: 108px;
  font-family: var(--font-b);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.footer-modern-form button:hover {
  background: #774c27;
}
.footer-modern-form button:disabled {
  opacity: 0.72;
  cursor: not-allowed;
}
.footer-modern-form button.is-loading {
  background: #7f6c5b;
}
.footer-modern-form button.is-error {
  background: #8b2f2f;
}
.footer-modern-contact p,
.footer-modern-links li a {
  font-size: 0.92rem;
  color: #34322f;
  line-height: 1.64;
}
.footer-modern-contact p {
  margin-bottom: 18px;
}
.footer-modern-contact span {
  font-weight: 500;
}
.footer-modern-contact a {
  color: #34322f;
}
.footer-modern-contact a:hover {
  color: #8a592e;
}
.footer-modern-links ul {
  display: grid;
  gap: 10px;
}
.footer-modern-links li a:hover {
  color: #8a592e;
}
.footer-modern-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-modern-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.footer-modern-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.95);
}
.footer-modern-social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

a[aria-label="Instagram"] svg {
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  shape-rendering: geometricPrecision;
}
.footer-modern-bottom {
  background: #e9e8e6;
  border-top: 1px solid #d3d1cd;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.footer-modern-bottom p,
.footer-modern-bottom-links a {
  font-size: 0.84rem;
  color: #3f3d39;
}
.footer-modern-bottom-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.footer-modern-bottom-links a:hover {
  color: #8a592e;
}

@media (max-width: 1200px) {
  .footer-modern-grid {
    grid-template-columns: 1.6fr 1fr 1fr 0.9fr;
  }
  .footer-modern-col {
    padding-inline: 20px;
  }
}
@media (max-width: 980px) {
  .footer-modern-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-modern-col {
    min-height: auto;
  }
}
@media (max-width: 640px) {
  .footer-modern-grid {
    grid-template-columns: 1fr;
  }
  .footer-modern-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-modern-bottom-links {
    gap: 18px;
    flex-wrap: wrap;
  }
}


/* ═══════════════════════════════════════════
       CLINIC PAGE
    ═══════════════════════════════════════════ */
.clinic-page {
  --cl-font-h: var(--font-h);
  --cl-section-bg: #edebe9;
}

/* Page header */
.clinic-page .page-header {
  background: var(--cl-section-bg);
  padding: 44px 0 40px;
}
.clinic-page .page-header-inner {
  width: 100%;
  padding: 0 var(--layout-pad-inline);
}
.clinic-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 14px;
}
.clinic-page .breadcrumb a {
  color: var(--text-mid);
  transition: color 0.15s;
}
.clinic-page .breadcrumb a:hover {
  color: var(--brand);
}
.clinic-page .breadcrumb .sep {
  color: var(--accent-dark);
}
.clinic-page .breadcrumb .current {
  color: var(--brand);
  font-weight: 600;
}
.clinic-page .page-title {
  font-family: var(--cl-font-h);
  font-size: var(--fs-h1);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 6px;
}
.clinic-page .page-subtitle {
  font-family: var(--cl-font-h);
  font-size: clamp(var(--fs-sm), 1.8vw, var(--fs-xl));
  font-style: italic;
  color: #6a5d53;
  font-weight: 400;
}

/* Intro */
.clinic-page .intro-section {
  background: var(--cl-section-bg);
  padding: 0 0 72px;
}
.clinic-page .intro-inner {
  width: 100%;
  padding: 0 var(--layout-pad-inline);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.clinic-page .intro-col {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
}
.clinic-page .intro-col p {
  margin-bottom: 16px;
}
.clinic-page .intro-col p:last-child {
  margin-bottom: 0;
}
.clinic-page .intro-col strong {
  font-weight: 600;
  color: var(--text-dark);
}
.clinic-page .intro-image {
  overflow: hidden;
  background: var(--accent-mid);
}
.clinic-page .intro-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.clinic-page .intro-image:hover img {
  transform: scale(1.03);
}

/* Team */
.clinic-page .team-section {
  background: var(--white);
  padding: var(--section-pad-y) var(--layout-pad-inline);
  text-align: center;
}
.clinic-page .section-overtitle {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.clinic-page .team-section .section-title {
  font-size: var(--fs-h2);
  font-weight: 650;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.clinic-page .team-section .section-desc {
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  max-width: 780px;
  margin: 0 auto var(--s5);
}
.clinic-page .team-section .team-grid {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.clinic-page .team-section .team-card {
  text-align: center;
}
.clinic-page .team-section .team-photo {
  width: clamp(180px, 14vw, 230px);
  height: clamp(180px, 14vw, 230px);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
  border: 2px solid var(--accent-dark);
  background: var(--accent);
  transition: border-color 0.28s;
}
.clinic-page .team-section .team-card:hover .team-photo {
  border-color: var(--brand);
}
.clinic-page .team-section .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.clinic-page .team-section .team-name {
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 3px;
}
.clinic-page .team-section .team-role {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-mid);
}

/* Gallery */
.clinic-page .gallery-section {
  background: var(--cl-section-bg);
  padding: 0 0 80px;
}
.clinic-page .gallery-inner {
  width: 100%;
  padding: 0 var(--layout-pad-inline);
}
.clinic-page .gallery-title-row {
  padding: 60px 0 40px;
  text-align: center;
}
.clinic-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.clinic-page .gallery-item {
  border: 0;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--accent-mid);
  position: relative;
  cursor: pointer;
}
.clinic-page .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
  display: block;
}
.clinic-page .gallery-item:hover img {
  transform: scale(1.06);
}
.clinic-page .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(129, 77, 41, 0);
  transition: background 0.3s;
}
.clinic-page .gallery-item:hover::after {
  background: rgba(129, 77, 41, 0.12);
}

/* Contact/newsletter/footer */
.clinic-page .contact-section {
  padding: 80px var(--layout-pad-inline);
}
.clinic-page .contact-inner {
  max-width: none;
  width: 100%;
}
.clinic-page .contact-overtitle {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-xlight);
  margin-bottom: 14px;
}
.clinic-page .contact-header h2 {
  font-family: var(--cl-font-h);
  font-size: var(--fs-h2);
  font-weight: 400;
}
.clinic-page .contact-header p {
  font-size: var(--fs-md);
}
.clinic-page .form-group label {
  font-size: var(--fs-2xs);
}

/* ═══════════════════════════════════════════
       PHILOSOPHY PAGE
    ═══════════════════════════════════════════ */
.philosophy-page {
  --ph-font-h: var(--font-h);
  --ph-section-bg: #edebe9;
}

.philosophy-page .page-header {
  background: var(--ph-section-bg);
  padding: 48px 0 44px;
}
.philosophy-page .page-header-inner {
  width: 100%;
  padding: 0 var(--layout-pad-inline);
}
.philosophy-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 14px;
}
.philosophy-page .breadcrumb a {
  color: var(--text-mid);
  transition: color 0.15s;
}
.philosophy-page .breadcrumb a:hover {
  color: var(--brand);
}
.philosophy-page .breadcrumb .sep {
  color: var(--accent-dark);
}
.philosophy-page .breadcrumb .current {
  color: var(--brand);
  font-weight: 600;
}
.philosophy-page .page-title {
  font-family: var(--ph-font-h);
  font-size: var(--fs-h1);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.15;
}

.philosophy-page .ph-pillar-section {
  background: var(--ph-section-bg);
  padding: 60px var(--layout-pad-inline) 80px;
}
.philosophy-page .ph-pillar-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.philosophy-page .ph-pillar-card {
  padding: 20px 40px 40px;
  border-right: 1px solid var(--accent-dark);
}
.philosophy-page .ph-pillar-card:last-child {
  border-right: none;
}
.philosophy-page .ph-pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.philosophy-page .ph-pillar-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.philosophy-page .ph-pillar-title {
  font-family: var(--font-b);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.philosophy-page .ph-pillar-text {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-mid);
}
.philosophy-page .ph-pillar-text p {
  margin-bottom: 14px;
}
.philosophy-page .ph-pillar-text p:last-child {
  margin-bottom: 0;
}

.philosophy-page .ph-image-strip {
  background: var(--ph-section-bg);
  padding: 0 var(--layout-pad-inline) 80px;
}
.philosophy-page .ph-image-strip-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.philosophy-page .ph-image-item {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--accent-mid);
  position: relative;
}
.philosophy-page .ph-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}
.philosophy-page .ph-image-item:hover img {
  transform: scale(1.05);
}

.philosophy-page .ph-cta-banner {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  padding: 72px var(--layout-pad-inline);
  text-align: center;
}
.philosophy-page .ph-cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 15% 85%,
      rgba(129, 77, 41, 0.22) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 85% 15%,
      rgba(100, 60, 25, 0.18) 0%,
      transparent 45%
    );
}
.philosophy-page .ph-cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -38deg,
      transparent,
      transparent 90px,
      rgba(129, 77, 41, 0.04) 90px,
      rgba(129, 77, 41, 0.04) 91px
    ),
    repeating-linear-gradient(
      52deg,
      transparent,
      transparent 130px,
      rgba(129, 77, 41, 0.03) 130px,
      rgba(129, 77, 41, 0.03) 131px
    );
}
.philosophy-page .ph-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.philosophy-page .ph-cta-overtitle {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brand-xlight);
  margin-bottom: 14px;
}
.philosophy-page .ph-cta-title {
  font-family: var(--ph-font-h);
  font-size: clamp(var(--fs-2xl), 3vw, var(--fs-4xl));
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.philosophy-page .ph-cta-text {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  line-height: 1.75;
}
.philosophy-page .ph-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.philosophy-page .btn-cta {
  display: inline-block;
  background: var(--brand);
  color: var(--white);
  border: 1px solid var(--brand);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.philosophy-page .btn-cta:hover {
  background: var(--brand-light);
  border-color: var(--brand-light);
}
.philosophy-page .btn-cta-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.philosophy-page .btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Lightbox */
.clinic-page .lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.clinic-page .lightbox.open {
  display: flex;
}
.clinic-page .lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.clinic-page .lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-3xl);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: sans-serif;
}
.clinic-page .lightbox-close:hover {
  color: var(--brand-xlight);
}
.clinic-page .lightbox-prev,
.clinic-page .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-4xl);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0 20px;
  line-height: 1;
  transition: color 0.2s;
  font-family: sans-serif;
}
.clinic-page .lightbox-prev:hover,
.clinic-page .lightbox-next:hover {
  color: var(--brand-xlight);
}
.clinic-page .lightbox-prev {
  left: 0;
}
.clinic-page .lightbox-next {
  right: 0;
}


/* ═══════════════════════════════════════════
       REVEAL ANIMATION
    ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-09 {
  transition-delay: 0.09s;
}
.reveal-delay-10 {
  transition-delay: 0.1s;
}
.reveal-delay-12 {
  transition-delay: 0.12s;
}
.reveal-delay-18 {
  transition-delay: 0.18s;
}
.reveal-delay-20 {
  transition-delay: 0.2s;
}
.reveal-delay-24 {
  transition-delay: 0.24s;
}
.reveal-delay-27 {
  transition-delay: 0.27s;
}

.section-overtitle--brand {
  color: var(--brand);
}
.section-overtitle--xlight {
  color: var(--brand-xlight);
}
.section-title--tight {
  margin-top: 6px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track {
    animation: none !important;
    transform: none !important;
  }
  .hero-slide {
    transform: none;
  }
}

/* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
@media (max-width: 1280px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    aspect-ratio: 5 / 2;
  }
}
@media (max-width: 1100px) {
  .doctor-text {
    padding: var(--s7) var(--s4);
  }

  .doctor-page .col-left {
    padding: 50px 40px;
  }
  .doctor-page .col-right {
    padding: 50px 40px;
  }
}
@media (max-width: 900px) {
  .doctor-section {
    grid-template-columns: 1fr;
  }
  .doctor-text {
    padding: var(--s6) var(--s4);
  }
  .doctor-image {
    min-height: 0;
  }
  .counters-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-item {
    padding: 16px;
    border-right: none;
    border-bottom: 1px solid var(--accent-dark);
  }
  .counter-item:nth-child(odd) {
    border-right: 1px solid var(--accent-dark);
  }
  .counter-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .welcome-video-wrap {
    height: 360px;
  }

  .doctor-page .main-content-inner {
    grid-template-columns: 1fr;
  }
  .doctor-page .col-left {
    position: static;
    padding: 40px var(--layout-pad-inline) 0;
  }
  .doctor-page .col-right {
    padding: 32px var(--layout-pad-inline) 48px;
  }
  .doctor-page .contact-form {
    grid-template-columns: 1fr;
  }
  .doctor-page .form-group.full,
  .doctor-page .form-submit {
    grid-column: 1;
  }
  .doctor-page .page-hero-content {
    left: var(--layout-pad-inline);
    right: var(--layout-pad-inline);
    bottom: 50px;
  }
}
@media (max-width: 700px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1199px) {
  body.nav-open {
    overflow: hidden;
  }
  .site-header {
    z-index: 1100;
  }
  .main-nav.open .dropdown {
    display: none;
    position: static;
    left: 0;
    transform: none;
    max-width: none;
    min-width: 0;
    max-height: none;
    overflow: visible;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0 0 10px;
  }
  .main-nav.open > li.mobile-submenu-open > .dropdown {
    display: block !important;
  }
  .main-nav.open > li.mobile-submenu-open > .mega-dropdown {
    display: block !important;
  }
  .main-nav.open > li:not(.mobile-submenu-open) > .dropdown,
  .main-nav.open > li:not(.mobile-submenu-open) > .mega-dropdown {
    display: none !important;
  }
  .main-nav.open > li:hover > .dropdown,
  .main-nav.open > li:hover > .mega-dropdown,
  .main-nav.open > li:focus-within > .dropdown,
  .main-nav.open > li:focus-within > .mega-dropdown {
    display: none !important;
  }
  .main-nav.open > li.mobile-submenu-open:hover > .dropdown,
  .main-nav.open > li.mobile-submenu-open:hover > .mega-dropdown,
  .main-nav.open > li.mobile-submenu-open:focus-within > .dropdown {
    display: block !important;
  }
  .main-nav.open > li.mobile-submenu-open:focus-within > .mega-dropdown {
    display: block !important;
  }
  .main-nav.open > li.has-mobile-submenu {
    position: relative;
  }
  .main-nav.open > li.has-mobile-submenu > a {
    padding-right: 62px;
  }
  .main-nav.open > li.has-mobile-submenu > .submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    width: 56px;
    height: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-mid);
    cursor: pointer;
    transition: color 0.2s;
  }
  .main-nav.open > li.has-mobile-submenu > .submenu-toggle::before {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-1px) rotate(45deg);
    transition: transform 0.22s ease;
  }
  .main-nav.open > li.mobile-submenu-open > .submenu-toggle {
    color: var(--brand);
  }
  .main-nav.open > li.mobile-submenu-open > a {
    color: var(--brand);
  }
  .main-nav.open > li.mobile-submenu-open > .submenu-toggle::before {
    transform: translateY(2px) rotate(-135deg);
  }
  .mega-dropdown {
    width: auto;
    min-width: 0;
    left: 0;
    transform: none;
    padding: 8px 0 10px;
    box-shadow: none;
    border-top: 1px solid var(--accent-dark);
  }
  .main-nav.open .mega-dropdown {
    position: static;
    max-height: none;
    overflow: visible;
    border-radius: 0;
  }
  .mega-dropdown .dropdown-head {
    display: none;
  }
  .main-nav.open .mega-dropdown .mega-menu-cta {
    display: block;
    margin: 0;
    padding: 10px 20px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(149, 84, 39, 0.08);
    color: var(--brand);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-align: left;
  }
  .mega-dropdown > a:not(.mega-menu-cta) {
    display: block;
    padding: 9px 20px;
    font-size: 0.92rem !important;
    line-height: 1.45;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .mega-dropdown > a:not(.mega-menu-cta):last-child {
    border-bottom: 0;
  }

  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    border-top: 0;
    padding: 68px 0 18px;
    z-index: 1200;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.open > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  .main-nav.open > li > a {
    padding: 12px 20px;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.35;
    text-align: left;
  }
  .main-nav.open > li:last-child {
    border-bottom: 0;
  }
  .nav-divider {
    border-left: 0;
    margin: 0;
  }
  .nav-cta-desktop,
  .header-inner > .nav-cta-desktop {
    display: none !important;
  }
  .nav-cta-mobile-item {
    display: block;
  }
  .main-nav.open .nav-cta {
    display: inline-flex;
    margin: 12px 20px 4px;
    justify-content: center;
    color: var(--white);
    background: var(--brand);
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--brand);
    background: var(--brand);
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: var(--layout-pad-inline);
    transform: translateY(-50%);
    z-index: 1300;
  }
  .nav-toggle span {
    background: var(--white);
  }
}

@media (max-width: 768px) {
  .promo-strip {
    grid-template-columns: 1fr;
  }
  .hero-content {
    left: var(--layout-pad-inline);
    right: var(--layout-pad-inline);
    bottom: 56px;
  }
  .hero-slider-nav {
    width: 32px;
    height: 32px;
    font-size: 2.15rem;
  }
  .hero-slider-prev {
    left: 6px;
  }
  .hero-slider-next {
    right: 6px;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .form-group.full,
  .form-submit {
    grid-column: 1;
  }
  .welcome-video-wrap {
    height: 260px;
  }
}

@media (max-width: 900px) {
  .face-lift-page .treatment-hero-inner,
  .face-lift-page .procedure-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .face-lift-page .hero-image,
  .face-lift-page .procedure-image {
    min-height: 0;
    width: min(100%, 460px);
    margin-inline: auto;
  }
  .face-lift-page .steps-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .face-lift-page .step-item {
    border-right: none;
    border-bottom: 1px solid var(--accent-dark);
    padding: 0 0 28px;
  }
  .face-lift-page .step-item:last-child {
    border-bottom: none;
  }
  .face-lift-page .what-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .clinic-page .intro-inner {
    grid-template-columns: 1fr 1fr;
  }
  .clinic-page .intro-image {
    grid-column: span 2;
  }
  .clinic-page .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clinic-page .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clinic-page .contact-form {
    grid-template-columns: 1fr;
  }
  .clinic-page .form-group.full,
  .clinic-page .form-submit {
    grid-column: 1;
  }
}

@media (max-width: 768px) {
  .clinic-page .intro-inner {
    grid-template-columns: 1fr;
  }
  .clinic-page .intro-image {
    grid-column: 1;
  }
  .clinic-page .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .philosophy-page .ph-pillar-grid {
    grid-template-columns: 1fr;
  }
  .philosophy-page .ph-pillar-card {
    border-right: none;
    border-bottom: 1px solid var(--accent-dark);
    padding: 32px 20px;
  }
  .philosophy-page .ph-pillar-card:last-child {
    border-bottom: none;
  }
  .philosophy-page .ph-image-strip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .philosophy-page .ph-cta-actions {
    flex-direction: column;
  }
  .philosophy-page .btn-cta {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }
}
