/* Page: index.html */
/* Page: index.html */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 5rem;
  background: var(--nude);
}
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-dark);
}
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--sans);
  text-decoration: none;
  width: fit-content;
}
.btn-primary:hover {
  background: var(--gold);
}
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  padding: 0.85rem 1.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--sans);
  text-decoration: none;
  width: fit-content;
  background: transparent;
}
.btn-wa:hover {
  background: var(--gold);
  color: var(--white);
}
.hero-microcopy {
  font-size: 0.7rem;
  color: var(--charcoal-light);
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.trust-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--blush-mid);
}
.trust-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-mid);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--blush-mid);
}
.hero-trust-item::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-right {
  background: #1e1b17;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
}
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  min-height: 100%;
  padding: 0;
  box-sizing: border-box;
}
.hero-bg-text {
  display: none;
}
.hero-doctor-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - var(--header-h));
  overflow: hidden;
}
.hero-doctor-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scale(1.78);
  transform-origin: center bottom;
  height: calc(100vh - var(--header-h) + 60px);
  width: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.form-row label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}
.form-row input,
.form-row select {
  border: none;
  border-bottom: 1px solid var(--blush-deep);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-family: var(--sans);
  background: transparent;
  color: var(--charcoal);
  outline: none;
  transition: border 0.2s;
}
.form-row input:focus,
.form-row select:focus {
  border-bottom-color: var(--gold);
}
.form-row select option {
  background: var(--white);
}
.btn-form {
  display: block;
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: var(--sans);
  transition: background 0.2s;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
}
.btn-form:hover {
  background: var(--gold);
}

/* TRUST BAR */
.trust-bar {
  background: var(--charcoal);
  padding: 1.5rem 5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}
.trust-item-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.trust-item-text {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* SECTIONS */
.section {
  padding: 6rem 5rem;
}
.section-alt {
  background: var(--nude);
}
.section-dark {
  background: var(--charcoal);
}
.section-blush {
  background: var(--blush);
}
.section-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-title {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}
.section-subtitle {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--charcoal-light);
  max-width: 540px;
}
.section-header {
  margin-bottom: 3.5rem;
}
.section-header-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-divider-center {
  margin: 1.5rem auto;
}

/* CONCERN CARDS SLIDER */
.concern-slider {
  position: relative;
}
.concern-slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.concern-slider-track::-webkit-scrollbar {
  display: none;
}
.concern-slider .concern-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: calc(25% - 1.125rem);
  scroll-snap-align: start;
}
.concern-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.concern-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--blush-mid);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.concern-slider-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}
.concern-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--blush-mid);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.concern-card:hover {
  border-color: rgba(201, 169, 110, 0.45);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  transform: translateY(-3px);
}
.concern-card-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  background: linear-gradient(160deg, #ecd9d0 0%, #f5ede8 100%);
  padding: 1.25rem;
  box-sizing: border-box;
}
.concern-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.concern-card-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.concern-card-desc {
  font-size: 0.78rem;
  color: var(--charcoal-light);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}
.concern-card-link {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

/* TREATMENTS TABS */
.treatments-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--blush-mid);
}
.tab-btn {
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--charcoal-light);
  transition: all 0.2s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: var(--sans);
}
.tab-btn.active {
  color: var(--charcoal);
  border-bottom-color: var(--gold);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.treatment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--blush-mid);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--charcoal);
}
.treatment-item:hover {
  border-color: var(--gold);
  background: var(--nude);
}
.treatment-item-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 110, 0.14);
  border-radius: 10px;
  color: var(--gold-dark);
}
.treatment-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.treatment-item:hover .treatment-item-icon {
  background: rgba(201, 169, 110, 0.22);
  color: var(--charcoal);
}
.treatment-item-name {
  font-size: 0.8rem;
  line-height: 1.35;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image {
  background: var(--blush-mid);
  height: 520px;
  position: relative;
  overflow: hidden;
}
.about-image-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-text p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--charcoal-light);
  margin-bottom: 1.25rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.about-stat {
  padding: 1.25rem;
  border-left: 2px solid var(--gold);
}
.about-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-top: 0.25rem;
}

/* DOCTOR */
.doctor-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}
.doctor-photo {
  background: var(--blush);
  height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-photo-text {
  font-family: var(--serif);
  font-size: 9rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.12);
}
.doctor-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.doctor-credentials {
  margin-top: 1.5rem;
}
.credential {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.credential-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.credential-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.doctor-name {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.doctor-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.doctor-bio {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}
.doctor-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.specialty-tag {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: rgba(255, 255, 255, 0.7);
}

/* WHY CHOOSE */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.why-item {
  padding: 2rem;
  background: var(--white);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.why-item:hover {
  border-color: var(--gold);
}
.why-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--blush-mid);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-title {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.why-desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--charcoal-light);
}

/* JOURNEY */
.journey-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.journey-steps::before {
  content: "";
  position: absolute;
  top: 2rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.step-circle {
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  background: var(--nude);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.step-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.7rem;
  line-height: 1.6;
  color: var(--charcoal-light);
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--blush-mid);
  position: relative;
}
.review-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}
.review-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 36px;
  height: 36px;
  background: var(--blush-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 0.9rem;
  color: var(--charcoal-mid);
}
.review-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
}
.review-loc {
  font-size: 0.7rem;
  color: var(--charcoal-light);
}
.review-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--nude);
  padding: 0.2rem 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--blush-mid);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  gap: 1rem;
}
.faq-toggle {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--charcoal-light);
}
.faq-answer.open {
  max-height: 200px;
  padding-bottom: 1.25rem;
}
.faq-toggle.open {
  transform: rotate(45deg);
}

/* AEO */
.aeo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.aeo-card {
  padding: 1.75rem;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.aeo-q {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}
.aeo-a {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--charcoal-light);
}

/* LOCATION */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.location-map {
  background: var(--blush-mid);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.location-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
.map-placeholder {
  text-align: center;
}
.map-pin {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
  color: var(--gold);
}
.location-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.location-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.location-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}
.location-label {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  margin-bottom: 0.25rem;
}
.location-value {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.areas-served {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--nude);
}
.areas-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.areas-list {
  font-size: 0.8rem;
  color: var(--charcoal-light);
  line-height: 1.9;
}

/* BEFORE AFTER */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ba-card {
  background: var(--blush-mid);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.ba-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 27, 23, 0) 50%, rgba(30, 27, 23, 0.62) 100%);
  pointer-events: none;
  z-index: 1;
}
.ba-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.ba-card:hover .ba-card-img {
  transform: scale(1.04);
}
.ba-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.3rem 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ba-placeholder-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 300;
  color: var(--charcoal-mid);
  text-align: center;
  padding: 1rem;
}
.ba-disclaimer {
  font-size: 0.7rem;
  color: var(--charcoal-light);
  margin-top: 1.25rem;
  padding: 1rem;
  background: var(--nude);
  border-left: 2px solid var(--gold);
  line-height: 1.7;
}

/* BLOG SLIDER */
.blog-slider {
  position: relative;
}
.blog-slider-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.blog-slider-track::-webkit-scrollbar {
  display: none;
}
.blog-slider .blog-card {
  flex: 0 0 calc(33.333% - 1.334rem);
  min-width: calc(33.333% - 1.334rem);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.blog-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.blog-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: var(--blush-mid);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.blog-slider-dot.active {
  background: var(--gold);
  transform: scale(1.15);
}
a.blog-card {
  text-decoration: none;
  color: inherit;
}
.blog-card {
  border: 1px solid var(--blush-mid);
  transition: all 0.25s;
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--gold);
}
.blog-read-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.blog-img {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--blush-mid);
  overflow: hidden;
}
.blog-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.blog-body {
  padding: 1.5rem;
}
.blog-cat {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.blog-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--charcoal-light);
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 7rem 5rem;
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.final-cta::before {
  content: "SKIN";
  font-family: var(--serif);
  font-size: 20rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.04);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}
.final-cta-content {
  position: relative;
  z-index: 1;
}
.final-cta-title {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.final-cta-title em {
  font-style: italic;
  color: var(--gold);
}
.final-cta-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--sans);
  text-decoration: none;
  display: inline-block;
}
.btn-cta-light:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-cta-gold {
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--sans);
  display: inline-block;
  text-decoration: none;
}
.btn-cta-gold:hover {
  background: var(--gold-dark);
}
.disclaimer {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}
.fade-up-2 {
  animation: fadeUp 0.8s 0.2s ease forwards;
  opacity: 0;
}
.fade-up-3 {
  animation: fadeUp 0.8s 0.4s ease forwards;
  opacity: 0;
}

/* Mobile overrides (from former inline <style>) */
/* index.html ? mobile */
      @media (max-width: 1024px) {
        :root {
          --header-h: 72px;
        }
        html {
          overflow-x: hidden;
        }
        body {
          overflow-x: hidden;
          padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px));
          -webkit-text-size-adjust: 100%;
        }
        .header {
          display: flex !important;
          align-items: center !important;
          justify-content: space-between !important;
          padding: 0 1rem !important;
          height: 72px !important;
          gap: 0.5rem;
          min-width: 0;
          width: 100%;
        }
        .header.scrolled {
          height: 64px !important;
        }
        .header .nav {
          display: none !important;
          position: absolute !important;
          width: 0 !important;
          height: 0 !important;
          overflow: hidden !important;
          opacity: 0 !important;
          pointer-events: none !important;
        }
        .logo-wrap {
          flex: 0 1 48%;
          min-width: 0;
          max-width: 48%;
        }
        .logo-img {
          height: 46px !important;
          max-width: 100% !important;
          width: auto !important;
        }
        .header-cta {
          display: flex !important;
          align-items: center !important;
          gap: 0.4rem !important;
          margin-left: auto !important;
          flex: 0 0 auto !important;
        }
        .btn-book-header {
          display: none !important;
        }
        .btn-header-wa {
          width: 40px !important;
          height: 40px !important;
          flex-shrink: 0;
        }
        .hamburger {
          display: flex !important;
          flex-direction: column !important;
          align-items: center !important;
          justify-content: center !important;
          width: 44px !important;
          height: 44px !important;
          flex-shrink: 0 !important;
          z-index: 201;
          padding: 0.5rem !important;
          background: none !important;
          border: none !important;
          cursor: pointer;
        }
        .hamburger span {
          display: block !important;
          width: 22px !important;
          height: 1.5px !important;
          background: var(--charcoal) !important;
        }
        .mobile-nav {
          display: block !important;
          top: 72px !important;
        }
        .mob-bar {
          display: grid !important;
          padding-bottom: env(safe-area-inset-bottom, 0px);
        }
        .float-wa {
          display: none !important;
        }
        .sticky-book {
          display: none !important;
        }
        .hero {
          display: flex !important;
          flex-direction: column !important;
          grid-template-columns: 1fr !important;
          min-height: auto !important;
          height: auto !important;
          padding-top: 72px !important;
          overflow: hidden;
        }
        .hero-left {
          padding: 1.75rem 1.25rem 1.5rem !important;
          order: 1;
          width: 100%;
          box-sizing: border-box;
        }
        .hero-right {
          padding: 0 !important;
          min-height: min(74vh, 800px) !important;
          order: 2;
          width: 100%;
          box-sizing: border-box;
          background: #1e1b17 !important;
        }
        .hero-eyebrow {
          font-size: 0.58rem !important;
          letter-spacing: 0.18em !important;
          line-height: 1.6;
          margin-bottom: 1rem !important;
        }
        .hero-h1 {
          font-size: clamp(1.65rem, 7.5vw, 2.15rem) !important;
          line-height: 1.15 !important;
          margin-bottom: 1rem !important;
        }
        .hero-sub {
          max-width: 100% !important;
          font-size: 0.9rem !important;
          line-height: 1.75 !important;
          margin-bottom: 1.5rem !important;
        }
        .hero-ctas {
          width: 100%;
          gap: 0.65rem !important;
        }
        .btn-primary,
        .btn-wa,
        .btn-form,
        .btn-cta-gold,
        .btn-cta-light {
          width: 100% !important;
          max-width: 100% !important;
          justify-content: center !important;
          box-sizing: border-box;
          text-align: center;
        }
        .hero .btn-primary,
        .hero .btn-wa {
          padding: 0.85rem 1rem !important;
          font-size: 0.72rem !important;
        }
        .hero-microcopy {
          font-size: 0.65rem !important;
          line-height: 1.65 !important;
          margin-top: 0.75rem !important;
        }
        .trust-pills {
          display: grid !important;
          grid-template-columns: 1fr 1fr !important;
          gap: 0.5rem !important;
          margin-top: 1.15rem !important;
          width: 100%;
        }
        .trust-pill {
          font-size: 0.62rem !important;
          letter-spacing: 0.04em !important;
          line-height: 1.45 !important;
          justify-content: flex-start !important;
          align-items: flex-start !important;
          text-align: left !important;
          padding: 0.55rem 0.65rem !important;
          background: var(--white);
          border: 1px solid var(--blush-deep);
          box-sizing: border-box;
          min-height: 2.5rem;
        }
        .trust-pill::before {
          margin-top: 0.3em;
          flex-shrink: 0;
        }
        .trust-pill:nth-child(3),
        .trust-pill:nth-child(4) {
          grid-column: 1 / -1;
          align-items: center !important;
          justify-content: center !important;
          text-align: center !important;
          min-height: auto;
          padding: 0.5rem 0.75rem !important;
        }
        .hero-image-placeholder {
          min-height: min(74vh, 800px) !important;
          padding: 0 !important;
        }
        .hero-doctor-image {
          position: relative !important;
          width: 100% !important;
          max-width: none !important;
          margin: 0 auto !important;
          min-height: min(74vh, 800px) !important;
          max-height: none !important;
          aspect-ratio: unset !important;
          overflow: hidden !important;
        }
        .hero-doctor-img {
          position: absolute !important;
          left: 50% !important;
          bottom: 0 !important;
          transform: translateX(-50%) scale(1.45) !important;
          transform-origin: center bottom !important;
          height: min(74vh, 800px) !important;
          max-height: none !important;
          max-width: none !important;
          width: auto !important;
        }
        .section {
          padding: 3rem 1.25rem !important;
        }
        .section-header {
          margin-bottom: 2rem !important;
        }
        .section-title {
          font-size: clamp(1.5rem, 5.5vw, 1.9rem) !important;
        }
        .section-subtitle {
          max-width: 100% !important;
        }
        .about-grid,
        .doctor-section,
        .location-grid {
          grid-template-columns: 1fr !important;
          gap: 2rem !important;
        }
        .about-stat-row {
          flex-wrap: wrap !important;
          gap: 1.25rem !important;
        }
        .doctor-section {
          gap: 1.75rem !important;
        }
        .doctor-photo {
          height: auto !important;
          min-height: 280px;
          max-height: 52vh;
          aspect-ratio: 4 / 5;
        }
        .doctor-name {
          font-size: 1.85rem !important;
        }
        .doctor-specialties {
          gap: 0.5rem !important;
        }
        .specialty-tag {
          font-size: 0.65rem !important;
        }
        .concern-slider .concern-card {
          flex: 0 0 calc(50% - 0.75rem) !important;
          min-width: calc(50% - 0.75rem) !important;
        }
        .concern-card-img {
          height: 150px !important;
        }
        .blog-slider .blog-card {
          flex: 0 0 calc(50% - 0.75rem) !important;
          min-width: calc(50% - 0.75rem) !important;
        }
        .why-grid,
        .reviews-grid,
        .services-grid,
        .journey-steps,
        .tab-content.active,
        .ba-grid,
        .aeo-grid {
          grid-template-columns: 1fr !important;
        }
        .journey-steps::before {
          display: none !important;
        }
        .trust-bar {
          flex-direction: column !important;
          align-items: flex-start !important;
          padding: 1.25rem 1.25rem !important;
          gap: 0.85rem !important;
        }
        .trust-item {
          width: 100%;
        }
        .service-tabs {
          flex-wrap: wrap !important;
          justify-content: center !important;
          gap: 0.5rem !important;
          padding: 0 0.25rem;
        }
        .service-tab {
          font-size: 0.65rem !important;
          padding: 0.5rem 0.75rem !important;
        }
        .faq-question {
          font-size: 0.92rem !important;
          line-height: 1.45 !important;
          text-align: left;
        }
        .faq-answer {
          font-size: 0.88rem !important;
        }
        .areas-list {
          line-height: 1.85 !important;
          word-break: break-word;
        }
        .map-placeholder {
          padding: 2rem 1.25rem !important;
        }
        .blog-slider-track {
          gap: 1.25rem !important;
        }
        .final-cta {
          padding: 2.75rem 1.25rem !important;
        }
        .final-cta-title {
          font-size: 1.75rem !important;
        }
        .final-cta-sub {
          max-width: 100% !important;
          font-size: 0.9rem !important;
        }
        .cta-buttons {
          flex-direction: column !important;
          width: 100% !important;
          gap: 0.65rem !important;
          align-items: stretch !important;
        }
        .cta-buttons a {
          width: 100% !important;
          box-sizing: border-box;
        }
        .disclaimer {
          font-size: 0.65rem !important;
          line-height: 1.65 !important;
        }
        .footer-top {
          grid-template-columns: 1fr !important;
          gap: 2rem !important;
        }
        .f-map-iframe {
          height: 220px !important;
        }
        img,
        video {
          max-width: 100%;
          height: auto;
        }
        .f-map-iframe,
        .location-map-iframe {
          height: 220px !important;
          min-height: 220px !important;
        }
      }
      @media (max-width: 480px) {
        .concern-slider .concern-card {
          flex: 0 0 100% !important;
          min-width: 100% !important;
        }
        .blog-slider .blog-card {
          flex: 0 0 100% !important;
          min-width: 100% !important;
        }
      }
      @media (max-width: 380px) {
        .hero-left,
        .hero-right {
          padding-left: 1rem !important;
          padding-right: 1rem !important;
        }
        .hero-h1 {
          font-size: 1.55rem !important;
        }
        .trust-pills {
          grid-template-columns: 1fr !important;
          gap: 0.4rem !important;
        }
        .trust-pill,
        .trust-pill:nth-child(3),
        .trust-pill:nth-child(4) {
          grid-column: auto !important;
          justify-content: flex-start !important;
          text-align: left !important;
          align-items: center !important;
          font-size: 0.6rem !important;
          padding: 0.5rem 0.7rem !important;
        }
        .logo-img {
          height: 40px !important;
        }
        .logo-wrap {
          max-width: 44%;
        }
      }

/* Inline attribute styles moved from index.html */
.section-header-center .section-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.section-cta--lg {
  text-align: center;
  margin-top: 3.5rem;
}
.section-cta .btn-primary,
.doctor-section-cta .btn-primary,
.section-cta--lg .btn-primary {
  text-decoration: none;
}
.doctor-section-cta {
  margin-top: 2rem;
}
.journey-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.journey-note {
  font-size: 0.7rem;
  color: var(--charcoal-light);
  margin-top: 1rem;
}
.final-cta .section-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
}
.section-header-center .section-subtitle--spaced {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Homepage hero trust badges — mobile (high specificity, end of file) */
@media (max-width: 1024px) {
  .home-page .hero,
  .home-page .hero-left {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  .home-page .hero-left .trust-pills {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.5rem !important;
    margin-top: 1.25rem !important;
    margin-bottom: 0.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .home-page .hero-left .trust-pill {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    font-size: 0.64rem !important;
    letter-spacing: 0.05em !important;
    line-height: 1.4 !important;
    padding: 0.55rem 0.5rem !important;
    background: #fff !important;
    border: 1px solid #d4b5a8 !important;
    border-radius: 3px;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    min-height: 2.65rem !important;
    box-sizing: border-box !important;
    box-shadow: 0 1px 3px rgba(44, 40, 37, 0.06);
  }
  .home-page .hero-left .trust-pill::before {
    width: 5px !important;
    height: 5px !important;
    margin-top: 0 !important;
    flex-shrink: 0 !important;
  }
  .home-page .hero-left .trust-pill:nth-child(3),
  .home-page .hero-left .trust-pill:nth-child(4) {
    grid-column: 1 / -1 !important;
    padding: 0.5rem 0.75rem !important;
    min-height: auto !important;
    font-size: 0.62rem !important;
  }
}

@media (max-width: 520px) {
  .home-page .hero-left .trust-pills {
    grid-template-columns: 1fr !important;
    gap: 0.4rem !important;
  }
  .home-page .hero-left .trust-pill,
  .home-page .hero-left .trust-pill:nth-child(3),
  .home-page .hero-left .trust-pill:nth-child(4) {
    grid-column: auto !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 0.55rem 0.75rem !important;
    font-size: 0.66rem !important;
    min-height: auto !important;
  }
}
