﻿:root {
  --green-950: #04241d;
  --green-900: #062f26;
  --green-800: #0b4639;
  --green-700: #155d4c;
  --gold-500: #c9a15d;
  --gold-400: #dfbf7a;
  --cream-100: #faf7ef;
  --cream-200: #f2eadc;
  --ink: #12221e;
  --muted: #66736e;
  --line: rgba(18, 34, 30, 0.12);
  --shadow: 0 22px 65px rgba(12, 37, 31, 0.12);
  --radius: 8px;
  --container: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

svg {
  width: 1.2em;
  height: 1.2em;
  fill: currentColor;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 72px 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: #fff;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.08;
  color: #10231d;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 6.2vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 3.2vw, 3.5rem);
}

h3 {
  font-size: 1rem;
  font-weight: 800;
}

p {
  margin: 0 0 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(4, 36, 29, 0.97);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: box-shadow 250ms ease, backdrop-filter 250ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-400);
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(223, 191, 122, 0.65);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-style: italic;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: #e4ceb0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-navigation {
  flex: 1;
}

.menu,
.footer-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu a {
  color: #f5f0e8;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.menu a:hover,
.menu .current-menu-item > a {
  color: var(--gold-400);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(223, 191, 122, 0.5);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--green-900);
  box-shadow: 0 14px 30px rgba(6, 47, 38, 0.22);
}

.btn-gold {
  color: #1c2a24;
  background: linear-gradient(135deg, var(--gold-400), #f1d796);
  box-shadow: 0 14px 30px rgba(201, 161, 93, 0.22);
}

.btn-ghost {
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(201, 161, 93, 0.42);
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-800);
  font-weight: 800;
}

.text-link::after {
  content: "";
  width: 18px;
  height: 1px;
  margin-left: 8px;
  background: var(--gold-500);
  transition: width 180ms ease;
}

.text-link:hover::after {
  width: 30px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(223, 191, 122, 0.45);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 680px;
  isolation: isolate;
  overflow: hidden;
  background: var(--cream-100);
}

.hero-media {
  position: absolute;
  inset: 0 0 0 37%;
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #fffdfa 0 41%, rgba(255, 253, 250, 0.76) 52%, rgba(255, 253, 250, 0.05) 74%);
}

.hero-inner {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(520px, 100%);
  padding: 70px 0 90px;
}

.hero h1 span {
  display: block;
  color: var(--gold-500);
}

.hero-lead {
  color: #182923;
  font-size: 1.33rem;
  font-weight: 700;
}

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

.hero-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.hero-badge {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  width: min(260px, 80vw);
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(201, 161, 93, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-badge svg {
  grid-row: span 2;
  color: var(--gold-500);
  font-size: 2rem;
}

.feature-cards,
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.service-card,
.post-card,
.widget {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(18, 34, 30, 0.07);
}

.feature-card .icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--gold-500);
  border: 1px solid rgba(201, 161, 93, 0.45);
  border-radius: var(--radius);
  font-size: 1.7rem;
}

.feature-card h2 {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.16rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.image-mosaic img,
.gallery-track img,
.mini-service img,
.entry-media img,
.post-thumb img,
.service-card img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-mosaic img {
  height: 250px;
}

.image-mosaic img:first-child {
  grid-row: span 2;
  height: 514px;
}

.specialties {
  padding-top: 30px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  color: var(--green-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.specialty-item svg {
  flex: 0 0 auto;
  color: var(--gold-500);
  font-size: 1.55rem;
}

.center {
  margin-top: 32px;
  text-align: center;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(130px, 1fr));
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.mini-service img {
  aspect-ratio: 1 / 0.72;
}

.mini-service h3 {
  margin-top: 10px;
  font-size: 0.9rem;
}

.therapy-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.95fr 1fr;
  align-items: stretch;
  background: var(--cream-100);
}

.therapy-band > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.therapy-copy,
.baby-copy {
  padding: clamp(34px, 5vw, 76px);
}

.therapy-copy {
  color: #fff;
  background: radial-gradient(circle at top left, rgba(223, 191, 122, 0.22), transparent 34%), var(--green-900);
}

.therapy-copy h2,
.therapy-copy p {
  color: #fff;
}

.baby-copy {
  background: #fffaf2;
}

.check-list {
  padding: 0;
  margin: 22px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 900;
}

.doctor-grid,
.appointment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

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

.doctor-card,
.appointment-card,
.trust-item {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.doctor-avatar {
  display: grid;
  place-items: center;
  width: 86px;
  height: 96px;
  margin: 0 auto 12px;
  color: var(--green-900);
  background: linear-gradient(180deg, #f8efe0, #ffffff);
  border-radius: var(--radius);
  font-size: 2.2rem;
}

.doctor-card h3 {
  margin-bottom: 4px;
  font-size: 0.86rem;
}

.doctor-card p,
.appointment-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.appointment-card strong {
  display: block;
  font-size: 2rem;
}

.appointment-card span {
  display: block;
  margin-bottom: 16px;
  font-weight: 900;
}

.appointment-card a {
  color: var(--green-800);
  font-size: 0.8rem;
  font-weight: 900;
}

.trust-row {
  padding-top: 24px;
  padding-bottom: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.trust-item {
  border: 0;
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 86px;
  font-size: 0.82rem;
  font-weight: 800;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item svg {
  color: var(--green-800);
  font-size: 1.5rem;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 42px;
  align-items: center;
}

.gallery-track {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.gallery-track img {
  height: 240px;
}

.booking-section {
  padding: 66px 0;
  color: #fff;
  background: radial-gradient(circle at 78% 20%, rgba(223, 191, 122, 0.14), transparent 34%), linear-gradient(135deg, var(--green-950), var(--green-800));
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 48px;
  align-items: center;
}

.booking-copy h2,
.booking-copy p {
  color: #fff;
}

.booking-phone {
  font-size: 1.4rem;
  font-weight: 900;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 6px;
}

.booking-form span {
  color: #f1d796;
  font-size: 0.76rem;
  font-weight: 800;
}

.form-success {
  padding: 12px 14px;
  color: #173329;
  background: #f8e4b2;
  border-radius: var(--radius);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.search-field {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #031d17;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding: 48px 0;
}

.footer-grid h3 {
  color: var(--gold-400);
}

.footer-menu {
  display: grid;
  justify-content: start;
  gap: 6px;
}

.footer-menu .menu {
  display: grid;
  justify-content: start;
  gap: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
}

.post-list {
  display: grid;
  gap: 22px;
}

.post-card {
  overflow: hidden;
  padding: 0;
}

.post-card-body {
  padding: 28px;
}

.post-thumb img {
  border-radius: 0;
  max-height: 360px;
}

.entry-content {
  font-size: 1.07rem;
}

.entry-content a {
  color: var(--green-800);
  font-weight: 800;
}

.comments-area {
  margin-top: 48px;
}

.reveal,
.animated-title {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.animated-title {
  transform: translateY(18px);
}

.reveal.is-visible,
.animated-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal,
  .animated-title {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .header-actions .phone-pill {
    display: none;
  }

  .therapy-band {
    grid-template-columns: 1fr 1fr;
  }

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

  .trust-item {
    border: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .header-inner {
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    padding: 24px;
    background: var(--green-950);
  }

  .main-navigation.is-open {
    display: block;
  }

  .menu {
    display: grid;
    justify-content: start;
    gap: 16px;
  }

  .header-actions {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-media {
    inset: 40% 0 0;
  }

  .hero::before {
    background: linear-gradient(180deg, #fffdfa 0 58%, rgba(255, 253, 250, 0.6) 76%, rgba(255, 253, 250, 0.1));
  }

  .hero-copy {
    padding: 58px 0 290px;
  }

  .hero-badge {
    right: 20px;
    bottom: 28px;
  }

  .feature-cards,
  .split,
  .gallery-layout,
  .booking-grid,
  .content-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-cta,
  .footer-bottom {
    display: grid;
  }
}

/* Requested typography/header correction pass */
body {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
}

h1,
h2,
h3,
.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
}

p,
li {
  line-height: 1.55;
}

.site-header .container {
  width: min(1500px, calc(100% - 64px));
}

.header-inner {
  min-height: 64px;
  gap: 18px;
}

.brand {
  min-width: 170px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  font-size: 0.72rem;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  font-size: 0.56rem;
}

.menu {
  gap: clamp(10px, 0.85vw, 16px);
}

.menu a {
  font-size: 0.68rem;
  line-height: 1;
}

.phone-pill,
.header-actions .btn {
  min-height: 38px;
  padding: 0 14px;
  white-space: nowrap;
  font-size: 0.78rem;
  line-height: 1;
}

.phone-pill {
  min-width: 136px;
}

.header-actions .btn {
  min-width: 132px;
}

.appointment-ticker-inner {
  min-height: 54px;
  grid-template-columns: 185px 1fr 180px;
  gap: 14px;
}

.ticker-label,
.ticker-all {
  font-size: 0.7rem;
  line-height: 1.15;
}

.ticker-slots {
  grid-template-columns: repeat(6, minmax(112px, 1fr));
}

.ticker-slots a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 54px;
  padding: 0 14px;
  white-space: nowrap;
  font-size: 0.76rem;
  line-height: 1;
}

.ticker-slots strong {
  color: #f5d68c;
  font-size: 1.02rem;
  font-weight: 900;
}

.ticker-slots span {
  display: none;
}

.hero-premium {
  min-height: 500px;
}

.hero-premium .hero-inner {
  min-height: 500px;
}

.hero-premium .hero-copy {
  padding: 72px 0 128px;
}

.hero-premium h1 {
  max-width: 600px;
  font-size: clamp(3.4rem, 4.4vw, 5.45rem);
}

.hero-premium .hero-lead {
  font-size: 0.98rem;
}

.founder-card {
  grid-template-columns: 1.12fr 1fr;
  min-height: 430px;
}

.founder-portrait {
  min-height: 430px;
}

.founder-portrait img {
  object-position: 34% center;
  transform: translateY(var(--parallax-y, 0)) scale(1.08);
}

.founder-portrait::after {
  background: linear-gradient(90deg, rgba(5, 22, 18, 0.02), rgba(5, 22, 18, 0.28) 58%, rgba(5, 22, 18, 0.66));
}

.signature {
  color: #ffe18f;
  font-family: "Parisienne", cursive;
  font-size: clamp(2.05rem, 2.5vw, 3.1rem);
  line-height: 0.95;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.founder-portrait p {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.founder-copy {
  padding: clamp(38px, 4.5vw, 72px);
}

.founder-copy .eyebrow {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-copy h2 {
  font-size: clamp(3rem, 3.6vw, 4.4rem);
}

.founder-copy p {
  font-size: 0.98rem;
}

.founder-values span {
  font-size: 0.78rem;
}

.section-title-line h2 {
  font-size: 1.25rem;
}

.therapy-new {
  width: 100%;
  max-width: none;
  margin: 38px 0 0;
  border-radius: 0;
  grid-template-columns: 0.95fr 1fr 0.95fr 1.1fr;
}

.therapy-new .therapy-copy,
.therapy-new .baby-copy {
  min-height: 390px;
  padding: clamp(42px, 5vw, 78px);
}

.therapy-new h2 {
  font-size: clamp(2.25rem, 2.75vw, 3.55rem);
}

.therapy-new p,
.therapy-new li {
  font-size: 0.86rem;
}

.therapy-new > img {
  min-height: 390px;
}

.specialties-card .specialty-item span,
.doctors-panel .doctor-card h3,
.doctors-panel .doctor-card p,
.trust-band .trust-item span {
  font-family: "Manrope", Arial, sans-serif;
}

.dermamedic-panel h2 {
  font-size: clamp(2.45rem, 3vw, 3.8rem);
}

.booking-copy h2 {
  font-size: clamp(2.6rem, 3.3vw, 4.1rem);
}

@media (max-width: 1280px) {
  .site-header .container {
    width: min(100% - 32px, 1500px);
  }

  .brand {
    min-width: 150px;
  }

  .menu {
    gap: 9px;
  }

  .menu a {
    font-size: 0.64rem;
  }

  .phone-pill,
  .header-actions .btn {
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  .therapy-new {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .therapy-new {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 52px 0;
  }

  h1 {
    font-size: 3rem;
  }

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

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

  .hero-actions,
  .hero-contact {
    display: grid;
  }

  .specialty-grid,
  .trust-grid,
  .therapy-band,
  .gallery-track {
    grid-template-columns: 1fr;
  }

  .therapy-band > img {
    min-height: 280px;
  }

  .image-mosaic,
  .doctor-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .image-mosaic img,
  .image-mosaic img:first-child,
  .gallery-track img {
    height: 240px;
  }
}

/* Render-match refinements */
body {
  background: #fbf8f1;
}

.container {
  width: min(var(--container), calc(100% - 96px));
}

.site-header {
  position: relative;
}

.header-inner {
  min-height: 78px;
  gap: 22px;
}

.brand {
  min-width: 184px;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  font-size: 0.6rem;
}

.main-navigation {
  min-width: 0;
}

.menu {
  justify-content: flex-start;
  gap: clamp(12px, 1vw, 19px);
}

.menu a {
  font-size: 0.72rem;
  white-space: nowrap;
}

.header-actions {
  min-width: max-content;
}

.phone-pill,
.header-actions .btn {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.appointment-ticker-inner {
  min-height: 76px;
  grid-template-columns: 210px 1fr 205px;
}

.ticker-label {
  border-right: 1px solid rgba(243, 213, 138, 0.22);
}

.ticker-slots a {
  min-height: 76px;
  padding-inline: 22px;
  font-size: 0.95rem;
}

.ticker-slots span {
  margin-top: 2px;
  font-size: 0.76rem;
}

.hero-premium {
  min-height: 560px;
}

.hero-premium .hero-inner {
  min-height: 560px;
  align-items: flex-start;
}

.hero-premium .hero-copy {
  width: min(650px, 100%);
  padding: 86px 0 150px;
}

.hero-premium h1 {
  max-width: 650px;
  font-size: clamp(4.4rem, 5.4vw, 6.7rem);
  line-height: 0.98;
}

.hero-premium .hero-lead {
  max-width: 540px;
  margin-top: 22px;
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-premium::before {
  background:
    linear-gradient(90deg, rgba(2, 18, 15, 0.94) 0%, rgba(2, 18, 15, 0.78) 30%, rgba(2, 18, 15, 0.22) 64%, rgba(2, 18, 15, 0.02) 100%),
    radial-gradient(circle at 79% 34%, rgba(243, 213, 138, 0.18), transparent 24%);
}

.hero-actions {
  margin-top: 34px;
}

.founder-card-section {
  margin-top: -86px;
}

.founder-card {
  width: min(1320px, calc(100% - 96px));
  grid-template-columns: 0.96fr 1.08fr;
  min-height: 396px;
  border-radius: 16px;
}

.founder-portrait {
  min-height: 396px;
}

.founder-portrait img {
  object-position: 46% center;
}

.signature {
  left: 42px;
  bottom: 84px;
  font-size: 1.85rem;
}

.founder-portrait p {
  left: 42px;
  bottom: 42px;
  font-size: 0.82rem;
}

.founder-copy {
  padding: clamp(44px, 5vw, 82px);
}

.founder-copy .eyebrow {
  color: #f2d587;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  font-weight: 600;
  text-transform: none;
}

.founder-copy h2 {
  margin-top: -8px;
  font-size: clamp(3.2rem, 4vw, 4.35rem);
}

.founder-copy p {
  max-width: 620px;
  font-size: 1.01rem;
}

.founder-values {
  max-width: 560px;
  margin-top: 36px;
}

.gallery-strip-section {
  padding-top: 44px;
  padding-bottom: 34px;
}

.section-title-line {
  margin-inline: auto;
  margin-bottom: 24px;
  width: min(1320px, 100%);
}

.section-title-line h2 {
  font-size: 1.45rem;
  letter-spacing: 0;
}

.premium-gallery {
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: min(1320px, 100%);
  margin-inline: auto;
  padding: 10px;
  border-radius: 14px;
}

.premium-gallery img {
  height: 174px;
}

.compact-center {
  margin-top: -16px;
}

.therapy-new {
  width: min(1320px, calc(100% - 96px));
  grid-template-columns: 0.95fr 1fr 0.92fr 1.05fr;
  min-height: 360px;
  margin-top: 36px;
  border-radius: 14px;
}

.therapy-new .therapy-copy,
.therapy-new .baby-copy {
  min-height: 360px;
  padding: 42px;
}

.therapy-new h2 {
  font-size: clamp(2.6rem, 3.1vw, 4rem);
  line-height: 0.98;
}

.therapy-new p,
.therapy-new li {
  font-size: 0.91rem;
}

.therapy-new > img {
  min-height: 360px;
}

.therapy-new > img:last-child {
  object-position: 35% center;
}

.specialties-card {
  padding-top: 40px;
}

.specialties-card .container,
.dermamedic-section .container,
.trust-band .container {
  width: min(1320px, calc(100% - 96px));
}

.specialties-card .specialty-grid {
  grid-template-columns: repeat(12, 1fr);
}

.specialties-card .specialty-item {
  min-height: 130px;
  padding: 16px 8px;
}

.specialties-card .specialty-item svg {
  font-size: 2rem;
}

.specialties-card .specialty-item span {
  font-size: 0.74rem;
  line-height: 1.25;
}

.dermamedic-section {
  padding-top: 34px;
  padding-bottom: 44px;
}

.dermamedic-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
}

.dermamedic-panel {
  min-height: 310px;
  grid-template-columns: 0.92fr 1.08fr;
}

.dermamedic-panel > div {
  padding: 48px;
}

.dermamedic-panel .eyebrow {
  color: #f2d587;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  text-transform: none;
}

.dermamedic-panel h2 {
  font-size: clamp(3rem, 3.6vw, 4.4rem);
  line-height: 0.98;
}

.dermamedic-panel img {
  object-position: 48% center;
}

.doctors-panel {
  min-height: 310px;
  display: grid;
  align-content: center;
  padding: 38px 34px;
}

.doctors-panel .doctor-grid {
  gap: 18px;
}

.doctors-panel .doctor-avatar {
  width: 108px;
  height: 118px;
  margin-bottom: 14px;
}

.doctors-panel .doctor-card h3 {
  font-size: 0.82rem;
}

.trust-band {
  padding-bottom: 42px;
}

.trust-band .trust-grid {
  grid-template-columns: repeat(6, 1fr);
  border-radius: 12px;
}

.trust-band .trust-item {
  justify-content: flex-start;
  min-height: 92px;
  padding: 18px 20px;
}

.booking-section {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 58px 0;
}

.booking-grid {
  width: min(1320px, calc(100% - 96px));
  grid-template-columns: 0.42fr 1fr;
  gap: 70px;
}

.booking-copy h2 {
  max-width: 420px;
  font-size: clamp(3.1rem, 4vw, 5.1rem);
  line-height: 0.95;
}

.booking-form {
  align-self: center;
}

.booking-form input,
.booking-form select {
  min-height: 54px;
}

.booking-form textarea {
  min-height: 118px;
}

@media (max-width: 1280px) {
  .container,
  .founder-card,
  .therapy-new,
  .specialties-card .container,
  .dermamedic-section .container,
  .trust-band .container,
  .booking-grid {
    width: min(100% - 56px, var(--container));
  }

  .specialties-card .specialty-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 920px) {
  .container,
  .founder-card,
  .therapy-new,
  .specialties-card .container,
  .dermamedic-section .container,
  .trust-band .container,
  .booking-grid {
    width: min(100% - 32px, var(--container));
  }

  .hero-premium h1 {
    font-size: clamp(3.2rem, 10vw, 5rem);
  }

  .founder-card,
  .therapy-new,
  .dermamedic-panel,
  .dermamedic-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium Alpha Medic v2 */
.site-header {
  background: linear-gradient(90deg, #021b16, #052a22 52%, #021b16);
}

.header-inner {
  min-height: 68px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: #091d18;
  background: linear-gradient(135deg, #b78432 0%, #f4d488 42%, #9a6825 100%);
  border: 0;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(223, 191, 122, 0.22);
}

.brand strong {
  color: #f2d587;
}

.menu {
  gap: clamp(14px, 1.6vw, 24px);
}

.menu a {
  font-size: 0.78rem;
}

.btn-gold,
.gold-outline:hover {
  position: relative;
  overflow: hidden;
  background: linear-gradient(110deg, #b78332, #f3d58a 34%, #c79a4d 62%, #fff1b8 78%, #b78332);
  background-size: 220% 100%;
  animation: goldSheen 5.5s ease-in-out infinite;
}

.btn-gold::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: shineSweep 4s ease-in-out infinite;
}

.btn-gold > *,
.btn-gold svg {
  position: relative;
  z-index: 1;
}

.btn-glass {
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(243, 213, 138, 0.55);
  backdrop-filter: blur(10px);
}

.gold-outline {
  color: var(--green-900);
  border-color: rgba(183, 131, 50, 0.6);
}

.appointment-ticker {
  border-top: 1px solid rgba(223, 191, 122, 0.2);
  border-bottom: 1px solid rgba(223, 191, 122, 0.22);
  background: linear-gradient(90deg, #09281f, #12382d, #09281f);
  color: #fff;
}

.appointment-ticker-inner {
  min-height: 64px;
  display: grid;
  grid-template-columns: 190px 1fr 180px;
  align-items: stretch;
  gap: 18px;
}

.ticker-label,
.ticker-all {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #f4d488;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticker-label svg,
.ticker-all svg {
  font-size: 1.45rem;
}

.ticker-slots {
  display: grid;
  grid-template-columns: repeat(6, minmax(108px, 1fr));
  overflow: hidden;
}

.ticker-slots a {
  display: grid;
  align-content: center;
  min-height: 64px;
  padding: 0 18px;
  border-left: 1px solid rgba(243, 213, 138, 0.18);
  font-size: 0.88rem;
  font-weight: 700;
}

.ticker-slots span {
  color: #f2c86f;
  font-size: 0.72rem;
}

.ticker-all {
  justify-content: flex-end;
  text-transform: none;
}

.hero-premium {
  min-height: 440px;
  color: #fff;
  background: #061b16;
}

.hero-premium .hero-media {
  inset: 0;
  opacity: 0.88;
  transform: translateY(var(--parallax-y, 0));
  transition: transform 80ms linear;
}

.hero-premium::before {
  background:
    linear-gradient(90deg, rgba(2, 18, 15, 0.92) 0%, rgba(2, 18, 15, 0.72) 31%, rgba(2, 18, 15, 0.28) 62%, rgba(2, 18, 15, 0.08) 100%),
    radial-gradient(circle at 78% 30%, rgba(243, 213, 138, 0.16), transparent 26%);
}

.hero-premium .hero-inner {
  min-height: 440px;
}

.hero-premium .hero-copy {
  width: min(620px, 100%);
  padding: 76px 0 92px;
}

.hero-premium h1 {
  color: #fff;
  font-size: clamp(3.1rem, 5vw, 5.2rem);
}

.hero-premium h1 span,
.gold-text,
.founder-copy h2,
.dermamedic-panel h2 {
  color: transparent;
  background: linear-gradient(100deg, #b78332, #f8dd94 36%, #c18d3c 62%, #fff1bd);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: goldSheen 6s ease-in-out infinite;
}

.hero-premium .hero-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.04rem;
}

.hero-gold-orbit {
  position: absolute;
  right: 4%;
  bottom: 16%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(243, 213, 138, 0.24);
  border-radius: 50%;
  pointer-events: none;
  animation: slowSpin 18s linear infinite;
  translate: 0 var(--parallax-y, 0);
}

.hero-gold-orbit::before,
.hero-gold-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  border: 1px solid rgba(243, 213, 138, 0.18);
}

.hero-gold-orbit::before {
  inset: 28px;
}

.hero-gold-orbit::after {
  inset: 68px;
}

.founder-card-section {
  margin-top: -72px;
  position: relative;
  z-index: 3;
}

.founder-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  min-height: 330px;
  color: #fff;
  border: 1px solid rgba(243, 213, 138, 0.55);
  border-radius: 18px;
  background: radial-gradient(circle at 20% 0%, rgba(243, 213, 138, 0.16), transparent 30%), linear-gradient(115deg, #17231d, #061f19 58%, #04241d);
  box-shadow: 0 32px 90px rgba(4, 36, 29, 0.26);
}

.founder-portrait {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.04);
  transform: translateY(var(--parallax-y, 0)) scale(1.04);
}

.founder-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 22, 18, 0.12), rgba(5, 22, 18, 0.62));
}

.signature,
.founder-portrait p {
  position: absolute;
  left: 34px;
  z-index: 2;
}

.signature {
  bottom: 72px;
  color: #f2d587;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-style: italic;
}

.founder-portrait p {
  bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-copy {
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 70px);
}

.founder-copy h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
}

.founder-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
}

.founder-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.founder-values span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  text-align: center;
}

.founder-values svg {
  color: #d7aa55;
  font-size: 1.8rem;
}

.section-title-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.section-title-line span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 131, 50, 0.55), transparent);
}

.section-title-line h2 {
  margin: 0;
  font-size: clamp(1.1rem, 1.4vw, 1.45rem);
  text-transform: uppercase;
}

.gallery-strip-section {
  padding-top: 36px;
  padding-bottom: 26px;
}

.premium-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(183, 131, 50, 0.38);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(18, 34, 30, 0.06);
}

.premium-gallery img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 7px;
  transition: transform 450ms ease, filter 450ms ease;
}

.premium-gallery img:hover {
  transform: translateY(-6px) scale(1.03);
  filter: saturate(1.08) contrast(1.05);
}

.compact-center {
  margin-top: -12px;
  position: relative;
  z-index: 2;
}

.therapy-new {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.95fr 1fr;
  overflow: hidden;
  margin-top: 26px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(18, 34, 30, 0.08);
}

.therapy-new > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.therapy-new .therapy-copy,
.therapy-new .baby-copy {
  padding: clamp(28px, 4vw, 52px);
}

.therapy-new .therapy-copy {
  background: radial-gradient(circle at 0 0, rgba(243, 213, 138, 0.16), transparent 36%), linear-gradient(135deg, #092c23, #031d17);
}

.specialties-card {
  padding-top: 34px;
  padding-bottom: 20px;
}

.specialties-card .specialty-grid {
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 34, 30, 0.1);
  border-radius: 12px;
  background: #fff;
}

.specialties-card .specialty-item {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 118px;
  padding: 12px;
  border-right: 1px solid rgba(18, 34, 30, 0.08);
  text-align: center;
}

.specialties-card .specialty-item:hover svg {
  transform: translateY(-5px) scale(1.08);
}

.specialty-item svg {
  transition: transform 260ms ease;
}

.dermamedic-section {
  padding-top: 20px;
}

.dermamedic-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.dermamedic-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  overflow: hidden;
  min-height: 260px;
  color: #fff;
  border-radius: 12px;
  background: radial-gradient(circle at 8% 12%, rgba(243, 213, 138, 0.16), transparent 34%), linear-gradient(135deg, #10231d, #031d17);
}

.dermamedic-panel > div {
  align-self: center;
  padding: 36px;
}

.dermamedic-panel h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.dermamedic-panel p {
  color: rgba(255, 255, 255, 0.9);
}

.dermamedic-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctors-panel {
  padding: 28px;
  border: 1px solid rgba(18, 34, 30, 0.08);
  border-radius: 12px;
  background: #fff;
}

.doctors-panel .eyebrow {
  color: var(--ink);
  text-align: center;
}

.doctors-panel .doctor-grid {
  grid-template-columns: repeat(5, 1fr);
}

.doctors-panel .doctor-card {
  padding: 12px;
  border: 0;
  box-shadow: none;
}

.doctors-panel .doctor-avatar {
  width: 86px;
  height: 98px;
}

.trust-band {
  padding: 0 0 28px;
}

.trust-band .trust-grid {
  overflow: hidden;
  color: #fff;
  border: 0;
  background: linear-gradient(90deg, #08291f, #0d3a2e, #08291f);
  box-shadow: 0 18px 45px rgba(4, 36, 29, 0.16);
}

.trust-band .trust-item {
  min-height: 78px;
  color: #fff;
  background: transparent;
}

.trust-band .trust-item svg {
  color: #d7aa55;
}

.trust-band .trust-item span {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.25;
  text-align: left;
}

.trust-band .trust-item strong {
  color: #fff;
  font-size: 0.8rem;
}

.booking-section {
  padding: 42px 0;
  background:
    linear-gradient(90deg, rgba(4, 24, 19, 0.98) 0 72%, rgba(4, 24, 19, 0.62)),
    url("../images/hero-clinic.png") right center / cover no-repeat;
}

.reveal,
.animated-title {
  transition-duration: 820ms;
}

.is-visible.premium-gallery img,
.premium-gallery.is-visible img {
  animation: galleryRise 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.premium-gallery img:nth-child(2) { animation-delay: 80ms; }
.premium-gallery img:nth-child(3) { animation-delay: 160ms; }
.premium-gallery img:nth-child(4) { animation-delay: 240ms; }
.premium-gallery img:nth-child(5) { animation-delay: 320ms; }
.premium-gallery img:nth-child(6) { animation-delay: 400ms; }

@keyframes goldSheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes shineSweep {
  0%, 42% { left: -70%; }
  68%, 100% { left: 140%; }
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes galleryRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1180px) {
  .appointment-ticker-inner {
    grid-template-columns: 160px 1fr;
  }

  .ticker-all {
    display: none;
  }

  .ticker-slots {
    grid-template-columns: repeat(6, 150px);
    overflow-x: auto;
  }

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

  .therapy-new {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 920px) {
  .appointment-ticker {
    display: none;
  }

  .founder-card,
  .therapy-new,
  .dermamedic-panel {
    grid-template-columns: 1fr;
  }

  .founder-card-section {
    margin-top: -36px;
  }

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

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

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

@media (max-width: 680px) {
  .hero-premium h1 {
    font-size: 2.7rem;
  }

  .premium-gallery,
  .specialties-card .specialty-grid,
  .doctors-panel .doctor-grid,
  .founder-values {
    grid-template-columns: 1fr;
  }

  .premium-gallery img {
    height: 190px;
  }

  .section-title-line {
    grid-template-columns: 1fr;
  }

  .section-title-line span {
    display: none;
  }
}

/* Final correction pass requested on 2026-06-08 */
body {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
}

h1,
h2,
h3,
.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.site-header .container {
  width: min(1500px, calc(100% - 56px));
}

.header-inner {
  min-height: 64px;
  gap: 16px;
  flex-wrap: nowrap;
}

.brand {
  min-width: 164px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.7rem;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  font-size: 0.56rem;
}

.main-navigation {
  min-width: 0;
}

.menu {
  flex-wrap: nowrap;
  gap: clamp(9px, 0.78vw, 15px);
}

.menu a {
  white-space: nowrap;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.68rem;
  line-height: 1;
}

.header-actions {
  flex: 0 0 auto;
  gap: 8px;
}

.phone-pill,
.header-actions .btn {
  min-height: 38px;
  padding: 0 13px;
  white-space: nowrap;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  line-height: 1;
}

.phone-pill {
  min-width: 134px;
}

.header-actions .btn {
  min-width: 130px;
}

.appointment-ticker-inner {
  min-height: 54px;
  grid-template-columns: 180px 1fr 170px;
  gap: 12px;
}

.ticker-label,
.ticker-all {
  font-size: 0.68rem;
  line-height: 1.15;
}

.ticker-slots {
  grid-template-columns: repeat(6, minmax(106px, 1fr));
}

.ticker-slots a {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 54px;
  padding: 0 12px;
  white-space: nowrap;
  font-size: 0.74rem;
  line-height: 1;
}

.ticker-slots strong {
  color: #f5d68c;
  font-size: 1.05rem;
  font-weight: 900;
}

.ticker-slots span {
  display: none;
}

.hero-premium h1 {
  max-width: 600px;
  font-size: clamp(3.2rem, 4.25vw, 5.35rem);
}

.hero-premium .hero-lead {
  font-size: 0.98rem;
}

.founder-card {
  grid-template-columns: 1.16fr 1fr;
  min-height: 430px;
}

.founder-portrait {
  min-height: 430px;
}

.founder-portrait img {
  object-position: 33% center;
  transform: translateY(var(--parallax-y, 0)) scale(1.09);
}

.founder-portrait::after {
  background: linear-gradient(90deg, rgba(5, 22, 18, 0.02), rgba(5, 22, 18, 0.22) 58%, rgba(5, 22, 18, 0.64));
}

.signature {
  color: #ffe18f;
  font-family: "Parisienne", cursive;
  font-size: clamp(2.1rem, 2.6vw, 3.1rem);
  font-style: normal;
  line-height: 0.95;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.35);
}

.founder-portrait p {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.founder-copy .eyebrow {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-copy h2 {
  font-size: clamp(3rem, 3.6vw, 4.4rem);
}

.founder-copy p {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.98rem;
}

.founder-values span {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
}

.section-title-line h2 {
  font-size: 1.22rem;
}

.therapy-new {
  width: 100%;
  max-width: none;
  margin: 38px 0 0;
  border-radius: 0;
  grid-template-columns: 0.95fr 1fr 0.95fr 1.1fr;
}

.therapy-new .therapy-copy,
.therapy-new .baby-copy {
  min-height: 390px;
  padding: clamp(42px, 5vw, 78px);
}

.therapy-new h2 {
  font-size: clamp(2.25rem, 2.75vw, 3.55rem);
}

.therapy-new p,
.therapy-new li {
  font-size: 0.86rem;
}

.therapy-new > img {
  min-height: 390px;
}

.dermamedic-panel h2 {
  font-size: clamp(2.45rem, 3vw, 3.8rem);
}

.booking-copy h2 {
  font-size: clamp(2.6rem, 3.3vw, 4.1rem);
}

@media (max-width: 1280px) {
  .site-header .container {
    width: min(100% - 32px, 1500px);
  }

  .brand {
    min-width: 148px;
  }

  .menu {
    gap: 8px;
  }

  .menu a {
    font-size: 0.62rem;
  }

  .phone-pill,
  .header-actions .btn {
    min-width: auto;
    padding-inline: 10px;
    font-size: 0.7rem;
  }

  .therapy-new {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .therapy-new,
  .founder-card {
    grid-template-columns: 1fr;
  }
}

/* Reference adaptation pass: hero, founder, diagnostics, space carousel */
.hero-reference {
  min-height: 470px;
  color: #fff;
  background: #061b16;
}

.hero-reference .hero-media {
  inset: 0;
  opacity: 0.92;
  background-position: center;
}

.hero-reference::before {
  background:
    linear-gradient(90deg, rgba(2, 18, 15, 0.94) 0%, rgba(2, 18, 15, 0.78) 34%, rgba(2, 18, 15, 0.2) 68%, rgba(2, 18, 15, 0.04) 100%),
    radial-gradient(circle at 80% 28%, rgba(243, 213, 138, 0.12), transparent 26%);
}

.hero-reference .hero-inner {
  min-height: 470px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-reference .hero-copy {
  width: min(610px, 100%);
  padding: 64px 0 74px;
}

.hero-reference h1 {
  max-width: 560px;
  color: #fff;
  font-size: clamp(3rem, 4.05vw, 5rem);
  line-height: 0.98;
}

.hero-reference h1 span {
  display: block;
}

.hero-reference .hero-lead {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 600;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(105px, 1fr));
  gap: 20px;
  max-width: 650px;
  margin-top: 42px;
}

.hero-benefits span {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.hero-benefits svg {
  color: #d7aa55;
  font-size: 1.65rem;
}

.working-hours {
  position: absolute;
  right: 0;
  bottom: -28px;
  display: grid;
  gap: 10px;
  width: 178px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0b3a30, #06251f);
  border: 1px solid rgba(243, 213, 138, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(4, 36, 29, 0.24);
}

.working-hours strong {
  color: #f4d488;
}

.working-hours span {
  font-size: 0.88rem;
  line-height: 1.35;
}

.founder-reference-section {
  padding: 54px 0 34px;
}

.founder-reference-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.86fr 0.58fr;
  gap: 38px;
  align-items: center;
}

.founder-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 335px;
  border-radius: 8px;
  background: #06251f;
  box-shadow: 0 22px 48px rgba(18, 34, 30, 0.12);
}

.founder-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 335px;
  object-fit: cover;
  object-position: 38% center;
}

.founder-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 29, 23, 0.82));
}

.founder-photo-card .signature,
.founder-photo-card p {
  position: absolute;
  left: 30px;
  z-index: 2;
}

.founder-photo-card .signature {
  bottom: 58px;
}

.founder-photo-card p {
  bottom: 24px;
  margin: 0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-message .eyebrow {
  color: #0b2b23;
}

.founder-message h2 {
  max-width: 520px;
  color: #1a241f;
  font-size: clamp(2.2rem, 2.65vw, 3.2rem);
}

.founder-message p {
  color: #263a33;
  font-size: 0.93rem;
}

.signature-inline {
  margin-top: 18px;
  color: #bd8a3d;
  font-family: "Parisienne", cursive;
  font-size: 2.15rem;
}

.why-card {
  padding: 30px;
  border: 1px solid rgba(183, 131, 50, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.why-card h3 {
  font-size: 1.55rem;
}

.why-card .check-list {
  margin-bottom: 0;
}

.why-card li {
  font-size: 0.88rem;
}

.diagnostics-band {
  padding: 0 0 34px;
}

.diagnostics-band-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.2fr repeat(4, 1fr);
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(90deg, #07271f, #0d3b30 50%, #07271f);
  box-shadow: 0 20px 55px rgba(4, 36, 29, 0.16);
}

.diagnostics-item,
.diagnostics-title {
  min-height: 96px;
  padding: 18px 22px;
  border-right: 1px solid rgba(243, 213, 138, 0.18);
}

.diagnostics-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  align-content: center;
}

.diagnostics-item svg {
  grid-row: span 2;
  color: #d7aa55;
  font-size: 1.9rem;
}

.diagnostics-item strong {
  font-size: 0.88rem;
  line-height: 1.2;
}

.diagnostics-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.diagnostics-item.compact {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.diagnostics-title {
  display: grid;
  align-content: center;
  color: #f2d587;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.space-carousel-section {
  padding-top: 0;
  padding-bottom: 34px;
}

.space-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.space-heading h2 {
  font-size: 1.65rem;
  text-transform: uppercase;
}

.space-heading p {
  max-width: 700px;
  color: #46564f;
  font-size: 0.93rem;
}

.space-carousel {
  position: relative;
}

.space-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px;
}

.space-track::-webkit-scrollbar {
  display: none;
}

.space-track img {
  width: 100%;
  height: 162px;
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: 8px;
  border: 1px solid rgba(183, 131, 50, 0.16);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #bd8a3d;
  background: #fffaf2;
  border: 1px solid rgba(183, 131, 50, 0.4);
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(18, 34, 30, 0.1);
}

.carousel-btn.prev {
  left: -18px;
}

.carousel-btn.next {
  right: -18px;
}

.featured-services-section {
  padding-top: 24px;
}

.featured-services-section h2 {
  font-size: 1.45rem;
  text-transform: uppercase;
}

.featured-service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(18, 34, 30, 0.08);
  border-radius: 8px;
  background: #fff;
}

.service-tile img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 7px;
}

.service-tile h3 {
  margin-top: 14px;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.2;
}

.service-tile p {
  color: #5d6864;
  font-size: 0.78rem;
}

@media (max-width: 1180px) {
  .founder-reference-grid,
  .diagnostics-band-inner {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .hero-benefits,
  .founder-reference-grid,
  .diagnostics-band-inner,
  .featured-service-grid {
    grid-template-columns: 1fr;
  }

  .working-hours {
    position: static;
    margin-bottom: 24px;
  }

  .space-heading {
    display: grid;
  }

  .carousel-btn.prev {
    left: 4px;
  }

  .carousel-btn.next {
    right: 4px;
  }
}

/* Real Alpha Medic logo + uploaded space photos */
.brand {
  min-width: 205px;
}

.site-logo {
  display: block;
  width: 190px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.footer-logo {
  width: 210px;
  max-height: 62px;
}

.hero-logo-badge {
  position: absolute;
  right: clamp(70px, 12vw, 185px);
  top: 80px;
  width: min(330px, 26vw);
  opacity: 0.88;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.hero-reference .hero-media {
  background-position: center center;
}

.space-track {
  grid-auto-columns: minmax(265px, 1fr);
}

.space-track img {
  height: 190px;
}

.service-tile img[src*="diagnostic-ultrasound"] {
  object-position: center;
}

@media (max-width: 1280px) {
  .brand {
    min-width: 174px;
  }

  .site-logo {
    width: 165px;
  }

  .hero-logo-badge {
    width: min(260px, 28vw);
    right: 44px;
  }
}

@media (max-width: 920px) {
  .hero-logo-badge {
    display: none;
  }
}

/* Header logo containment fix */
.site-header .header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.site-header .brand {
  flex: 0 0 168px;
  min-width: 168px;
  max-width: 168px;
}

.site-header .site-logo {
  width: 158px;
  max-width: 158px;
  max-height: 54px;
  object-fit: contain;
}

.site-header .main-navigation {
  flex: 1 1 auto;
  min-width: 0;
}

.site-header .menu {
  justify-content: center;
}

.site-header .header-actions {
  flex: 0 0 auto;
}

.hero-logo-badge {
  display: none;
}

@media (min-width: 1281px) {
  .site-header .container {
    width: min(1500px, calc(100% - 48px));
  }

  .site-header .menu a {
    font-size: 0.72rem;
  }
}

/* Final navbar logo sizing */
.site-header .site-logo {
  display: block;
  max-width: 100%;
  max-height: 70px;
  margin: 10px;
  height: auto;
  width: auto;
}

.site-header .brand {
  flex: 0 0 190px;
  min-width: 190px;
  max-width: 190px;
}

.site-header .menu a {
  font-size: 0.8rem;
}

@media (max-width: 1280px) {
  .site-header .menu a {
    font-size: 0.72rem;
  }
}

.site-header .brand {
  flex: 0 0 158px !important;
  width: 158px !important;
  min-width: 158px !important;
  max-width: 158px !important;
  overflow: hidden;
}

.site-header .site-logo {
  width: 158px !important;
  max-width: 158px !important;
  max-height: 54px !important;
  margin: 0 !important;
}

/* Diagnostics icon tiles from provided reference */
.diagnostics-band-inner {
  border: 1px solid rgba(216, 173, 91, 0.22);
}

.diagnostics-item {
  gap: 6px 13px;
}

.diagnostics-icon {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(216, 173, 91, 0.18));
}

.diagnostics-item.compact .diagnostics-icon {
  grid-row: auto;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
}

.diagnostics-title {
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.diagnostics-title span {
  max-width: 170px;
}

.diagnostics-title-icon {
  width: 58px;
  height: 26px;
  object-fit: contain;
}

.diagnostics-item.compact strong {
  max-width: 150px;
}

.hero-reference {
  overflow: visible;
}

.hero-reference .hero-inner {
  padding-bottom: 42px;
}

.hero-reference .working-hours {
  bottom: -58px;
  z-index: 12;
  box-shadow: 0 24px 58px rgba(4, 36, 29, 0.28);
}

.founder-reference-section {
  position: relative;
  z-index: 1;
  padding-top: 82px;
}

.space-carousel {
  overflow: visible;
}

.space-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px;
}

.space-track img {
  flex: 0 0 calc((100% - 48px) / 5);
  min-width: 230px;
}

.carousel-btn {
  z-index: 20;
  pointer-events: auto;
}

.carousel-btn:hover {
  background: #f8e4b2;
  color: #062f26;
}

