/* ─── Base ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  color: #1d1d1b;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── Site nav (header) ────────────────────────────────────────────────── */
.site-nav {
  position: relative;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid #ebebeb;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Brand */
.nav-brand-logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.nav-brand-logo picture,
.nav-brand-logo img {
  display: block;
  height: 48px;
  width: auto;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: #454444;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.52px;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #1d1d1b;
}

/* Phone link with gold dot */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
}
.nav-phone::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #997d4d;
  display: inline-block;
}

/* CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #1d1d1b;
  color: #1d1d1b !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.52px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover {
  background: #1d1d1b;
  color: #ffffff !important;
}

/* Mobile toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 32px;
  height: 26px;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #1d1d1b;
  border-radius: 2px;
}

/* ─── Hot Offers ticker ────────────────────────────────────────────────── */
.news-ticker {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 42px;
  background: #b3231b;
  color: #ffffff;
  overflow: hidden;
}

.news-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  background: #8c1813;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 16px 0 22px 0 rgba(140, 24, 19, 0.55);
  white-space: nowrap;
}

.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  animation: newsPulse 1.2s ease-in-out infinite;
}

@keyframes newsPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

.news-viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  height: 42px;
}

.news-track {
  display: inline-flex;
  align-items: center;
  height: 42px;
  white-space: nowrap;
  animation: newsSlide 45s linear infinite;
  padding-left: 24px;
}

@keyframes newsSlide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.news-track:hover { animation-play-state: paused; }

.news-item {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.news-title {
  font-size: 14px;
  font-weight: 500;
}

.news-item strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14px;
}

.news-item s {
  font-size: 14px;
  opacity: 0.75;
  margin-left: 2px;
}

.news-note {
  font-size: 12.5px;
  opacity: 0.9;
}

.news-sep {
  margin: 0 26px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
}

/* ─── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-inner { padding: 16px 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    padding: 12px 20px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid #f2f2f2;
  }
  .nav-cta { display: none; }
  .site-nav .nav-links .nav-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 14px 0 4px;
  }
  .site-nav .nav-links .nav-badges .rating-badge {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    gap: 6px;
    padding: 9px 8px;
  }
  .site-nav .nav-links .nav-badges .rating-badge .rb-stars { gap: 1px; }
  .site-nav .nav-links .nav-badges .rating-badge .rb-stars svg { width: 11px; height: 11px; }
  .news-label {
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 1.4px;
  }
  .news-item, .news-title, .news-item strong { font-size: 13px; }
}

/* ─── Hero ────────────────────────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero {
  padding: 60px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 553px; }

.eyebrow.hero-eyebrow {
  display: inline-block;
  margin-bottom: 28px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.42px;
  text-transform: uppercase;
  line-height: 1.6;
}

.hero-headline {
  margin: 0 0 32px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 74px;
  font-weight: 400;
  letter-spacing: -0.75px;
  line-height: 1.1;
}
.hero-headline em {
  color: #997d4d;
  font-style: italic;
  font-weight: 400;
  font-family: "Playfair Display", Georgia, serif;
}

.hero-body {
  margin: 0 0 44px;
  max-width: 480px;
  color: #454444;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.btn-primary {
  background: #1d1d1b;
  color: #ffffff;
  border-color: #1d1d1b;
}
.btn-primary:hover {
  background: #000000;
  border-color: #000000;
}
.btn-ghost {
  background: transparent;
  color: #1d1d1b;
  border-color: #1d1d1b;
}
.btn-ghost:hover {
  background: #1d1d1b;
  color: #ffffff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
/* Rating badges live inside the desktop top nav markup but only show inside the mobile hamburger menu */
.nav-links .nav-badges { display: none; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid #d9d6d0;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(20, 17, 15, 0.04);
}

.rb-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1px;
  color: #1d1d1b;
}

.rating-trustpilot .rb-brand { color: #191919; }
.rating-trustpilot .tp-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00b67a;
}

.rb-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.rb-stars svg {
  width: 14px;
  height: 14px;
  fill: #00b67a;
}
.rating-google .rb-stars svg { fill: #fbbc05; }

.rb-score {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1d1d1b;
  letter-spacing: 0.1px;
}

.rating-google .rb-brand {
  gap: 0;
  font-family: "Product Sans", "Google Sans", "Inter", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.2px;
}
.g-letter { display: inline-block; }
.g-b { color: #4285f4; }
.g-r { color: #ea4335; }
.g-y { color: #fbbc05; }
.g-g { color: #34a853; }

.hero-media {
  position: relative;
  aspect-ratio: 360 / 640;
  max-width: 360px;
  margin-left: auto;
  background: #f2efea;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 60px 0 rgba(20, 44, 59, 0.18), 0 0 50px 0 rgba(212, 175, 55, 0.16);
}
.hero-media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}
.hero-media--mobile { display: none; }

@media (max-width: 960px) {
  .hero { padding: 40px 0 56px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-headline { font-size: 48px; }
  .hero-body { font-size: 16px; }
  .hero-media--desktop { display: none; }
  .hero-media--mobile {
    display: block;
    margin: 22px 0 18px;
    max-width: 100%;
    aspect-ratio: 16 / 11;
  }
  .hero-actions { margin-bottom: 40px; }
  .hero-actions .btn { flex: 1 1 100%; width: 100%; justify-content: center; }
  .hero-badges { flex-wrap: nowrap; gap: 10px; }
  .rating-badge {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    gap: 6px;
    padding: 9px 8px;
  }
  .rating-badge .rb-stars { gap: 1px; }
  .rating-badge .rb-stars svg { width: 11px; height: 11px; }
  .container { padding: 0 20px; }
}

/* ─── Layout helper ───────────────────────────────────────────────────── */
.site-main { }

/* ─── Stats / Figures (slider) ──────────────────────────────────────── */
.stats {
  padding: 80px 0;
  background: #14110f;
  border-top: 1px solid #241d17;
  border-bottom: 1px solid #241d17;
}

.stats-slider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stats-viewport {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}
.stats-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.stat-item {
  flex: 0 0 100%;                    /* 1 per view */
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 48px;
  text-align: left;
  padding: 4px 8px;
  min-width: 0;
}

.stat-number {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
  color: #ffffff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 116px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -3px;
}
.stat-title {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 10px;
  color: #ffffff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}
.stat-desc {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  max-width: 560px;
  color: #ffffff;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

/* Prev / next navigation */
.stats-nav {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.stats-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stats-nav:hover:not(:disabled) {
  background: #ffffff;
  border-color: #ffffff;
  color: #14110f;
}
.stats-nav:disabled { opacity: 0.25; cursor: default; }

@media (max-width: 900px) {
  .stat-item { column-gap: 32px; }
  .stat-number { font-size: 88px; }
  .stat-title { font-size: 26px; }
}
@media (max-width: 600px) {
  .stats { padding: 56px 0; }
  .stats-slider { gap: 10px; }
  .stats-nav { width: 42px; height: 42px; }
  .stat-item { grid-template-columns: 1fr; row-gap: 8px; }
  .stat-number { grid-row: auto; grid-column: 1; font-size: 72px; margin-bottom: 4px; }
  .stat-title { grid-column: 1; }
  .stat-desc { grid-column: 1; }
}

/* ─── Surgeon & Educator ─────────────────────────────────────────────── */
.educator {
  padding: 110px 0;
  background: #ffffff;
}

.educator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.educator-media {
  position: relative;
}

.educator-img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 6px;
}

/* Floating gold stat badge on the image */
.educator-badge {
  position: absolute;
  right: -22px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  background: #14110f;
  border-radius: 4px;
  box-shadow: 0 24px 50px -20px rgba(20, 17, 15, 0.55);
}
.educator-badge-num {
  color: #d8b477;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 58px;
  font-weight: 300;
  line-height: 1;
}
.educator-badge-label {
  color: #f4ede2;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.35;
  text-transform: uppercase;
}

.educator-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.42px;
  text-transform: uppercase;
}

.educator-headline {
  margin: 0 0 24px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.educator-headline em {
  color: #997d4d;
  font-style: italic;
  font-family: "Playfair Display", Georgia, serif;
}

.educator-body {
  margin: 0 0 28px;
  color: #454444;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.75;
}
.educator-body strong { color: #1d1d1b; font-weight: 600; }

.educator-list {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.educator-list li {
  position: relative;
  padding: 0 0 14px 30px;
  color: #2d2b29;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 15.5px;
  line-height: 1.5;
}
.educator-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #997d4d;
  /* checkmark drawn with a mask so it inherits the gold circle */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 11px no-repeat, linear-gradient(#000 0 0);
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 11px no-repeat, linear-gradient(#000 0 0);
  -webkit-mask-composite: destination-out;
          mask-composite: exclude;
}

.educator-cta {
  text-transform: none;
  letter-spacing: 0.3px;
}

@media (max-width: 900px) {
  .educator { padding: 70px 0; }
  .educator-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .educator-img { height: 440px; }
  .educator-badge { right: 20px; bottom: 20px; }
  .educator-headline { font-size: 38px; }
}

/* ─── References ─────────────────────────────────────────────────────── */
.references {
  padding: 72px 0;
  background: #ffffff;
  color: #4a4844;
}
.references-head {
  margin: 0 0 40px;
  text-align: center;
}
.references-title {
  margin: 0;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.14;
}
.references-title em {
  font-style: italic;
  color: #997d4d;
}

.references-stage {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}

/* Portrait */
.references-media {
  position: relative;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.references-media.is-fading { opacity: 0; transform: translateY(8px); }
.references-media::before {
  display: none;
}
.references-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 46 / 56;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
}
.references-flag {
  position: absolute;
  z-index: 2;
  left: -18px;
  bottom: 24px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: #ffffff;
  border: 1px solid #e2dccf;
  border-radius: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

/* Quote panel */
.references-panel {
  position: relative;
  transition: opacity 0.3s ease;
}
.references-panel.is-fading { opacity: 0; }
.references-mark {
  display: block;
  margin-bottom: -18px;
  color: #997d4d;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
}
.references-text {
  margin: 0 0 28px;
  color: #33322f;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.1px;
}
.references-rule {
  width: 54px;
  height: 2px;
  margin-bottom: 20px;
  background: #997d4d;
}
.references-name {
  margin: 0 0 4px;
  color: #1d1d1b;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.references-role {
  margin: 0 0 34px;
  color: #997d4d;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.references-country { color: #4a4844; }

/* Picker */
.references-picker {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.references-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  background: #ffffff;
  border: 1px solid #e0ddd6;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.references-chip:hover { transform: translateY(-2px); border-color: #c9b489; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06); }
.references-chip.is-active {
  background: #faf5ec;
  border-color: #997d4d;
}
.references-chip img {
  width: 42px;
  height: 42px;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  flex: 0 0 auto;
}
.references-chip-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.references-chip-name {
  color: #2a2926;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.references-chip-role {
  color: #8a877f;
  font-size: 11px;
  letter-spacing: 0.2px;
}
.references-chip.is-active .references-chip-name { color: #1d1d1b; }

@media (max-width: 900px) {
  .references { padding: 56px 0; }
  .references-title { font-size: 30px; }
  .references-stage { grid-template-columns: 1fr; gap: 44px; max-width: 560px; margin: 0 auto; }
  .references-media { max-width: 360px; }
  .references-text { font-size: 21px; }
}

@media (max-width: 520px) {
  .references-picker { flex-direction: column; }
  .references-chip { width: 100%; }
}

/* ─── Reviews wall ───────────────────────────────────────────────────── */
.revwall {
  padding: 100px 0 110px;
  background: linear-gradient(180deg, #ffffff 0%, #f4ece0 100%);
}

.revwall-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.revwall-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.42px;
  text-transform: uppercase;
}
.revwall-title {
  margin: 0 0 16px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.revwall-sub {
  margin: 0 auto;
  max-width: 520px;
  color: #5a534c;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.revwall-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
@media (max-width: 600px) {
  .revwall-badges { flex-wrap: nowrap; gap: 10px; }
  .revwall-badges .revwall-badge {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 10px 12px;
    gap: 8px;
  }
  .revwall-badges .revwall-badge-meta { white-space: nowrap; }
}
.revwall-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #e7dccb;
  border-radius: 0;
  text-decoration: none;
  box-shadow: 0 6px 18px -12px rgba(80, 55, 20, 0.4);
}
.revwall-badge-logo { width: 24px; height: 24px; flex: 0 0 auto; }
.revwall-badge-body { display: flex; flex-direction: column; text-align: left; }
.revwall-badge-score {
  color: #1d1d1b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.revwall-badge-meta {
  color: #857a6c;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}

.revwall-stars { letter-spacing: 1px; font-size: 14px; }
.revwall-stars--gold { color: #e0a83c; }
.revwall-stars--green { color: #00b67a; }

/* Masonry via CSS columns */
.revwall-masonry {
  column-count: 3;
  column-gap: 26px;
}

.revwall-card {
  position: relative;
  break-inside: avoid;
  margin: 0 0 26px;
  padding: 30px 30px 26px;
  background: #ffffff;
  border: 1px solid #ece3d7;
  border-radius: 10px;
  box-shadow: 0 10px 30px -22px rgba(60, 40, 15, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.revwall-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -24px rgba(60, 40, 15, 0.55);
}

.revwall-mark {
  position: absolute;
  top: 8px;
  right: 22px;
  color: #efe2cd;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 88px;
  line-height: 1;
  pointer-events: none;
}

.revwall-card .revwall-stars { display: block; margin-bottom: 14px; font-size: 15px; }

.revwall-text {
  position: relative;
  margin: 0 0 22px;
  color: #35302b;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
}

.revwall-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #f0e9dd;
}
.revwall-avatar {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b08144, #d8b477);
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}
.revwall-avatar--img {
  padding: 0;
  background: none;
  border: 1px solid #ece0cd;
  overflow: hidden;
}
.revwall-avatar--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.revwall-person { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }
.revwall-name {
  color: #1d1d1b;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.revwall-date {
  color: #948a7c;
  font-family: "Inter", sans-serif;
  font-size: 12px;
}
.revwall-src {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 0;
  border: 1px solid #e7ddcc;
  background: #fbf7f0;
}
.revwall-src svg { width: 17px; height: 17px; display: block; flex: 0 0 auto; }
.revwall-src-name {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
}
.revwall-src--google .revwall-src-name { color: #4285F4; }
.revwall-src--trustpilot .revwall-src-name { color: #00b67a; }

@media (max-width: 960px) {
  .revwall-masonry { column-count: 2; }
  .revwall-title { font-size: 38px; }
}
@media (max-width: 620px) {
  .revwall { padding: 70px 0 76px; }
  .revwall-masonry { column-count: 1; }
  .revwall-title { font-size: 32px; }
}

/* ─── Modal ───────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal[hidden] { display: none; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 17, 15, 0.55);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.modal.is-open .modal-backdrop { opacity: 1; }

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 24px 60px 0 rgba(20, 44, 59, 0.28);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  font-size: 26px;
  line-height: 1;
  color: #454444;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.modal-close:hover { background: #f2efea; }

.modal-body {
  padding: 40px 40px 36px;
}

.modal-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.42px;
  text-transform: uppercase;
}

.modal-title {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.4px;
  color: #1d1d1b;
}
.modal-title em {
  color: #997d4d;
  font-style: italic;
  font-weight: 400;
}

.modal-lead {
  margin: 0 0 24px;
  color: #454444;
  font-size: 15px;
  line-height: 1.6;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #454444;
}

.form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d6d0;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #1d1d1b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus {
  outline: none;
  border-color: #997d4d;
  box-shadow: 0 0 0 3px rgba(153, 125, 77, 0.15);
}

/* Phone number with country-code dropdown (shared by both contact forms) */
.phone-group { display: flex; gap: 8px; align-items: stretch; }
.form-field .phone-group .phone-code,
.ct-field .phone-group .phone-code { flex: 0 0 auto; width: 132px; min-width: 0; }
.form-field .phone-group input[type="tel"],
.ct-field .phone-group input[type="tel"] { flex: 1 1 auto; width: auto; min-width: 0; }
/* Appointment modal select styling to match its inputs */
.form-field .phone-code {
  padding: 12px 10px;
  border: 1px solid #d9d6d0;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #1d1d1b;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field .phone-code:focus {
  outline: none;
  border-color: #997d4d;
  box-shadow: 0 0 0 3px rgba(153, 125, 77, 0.15);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 0;
  font-size: 12px;
  color: #7a7a76;
  line-height: 1.5;
  text-align: center;
}

.form-success {
  margin: 0;
  padding: 14px 16px;
  background: #f5f1e8;
  border: 1px solid #e2d9c2;
  color: #6b5223;
  border-radius: 8px;
  font-size: 15px;
  text-align: center;
}

@media (max-width: 520px) {
  .modal-body { padding: 32px 24px 28px; }
  .modal-title { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── Blog / Latest articles ─────────────────────────────────────────── */
.blog {
  padding: 96px 0;
  background: #ffffff;
}
.blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.blog-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.blog-title {
  margin: 0;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.blog-all {
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.blog-all:hover { color: #1d1d1b; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #ece7de;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: #dcccb4;
  box-shadow: 0 20px 44px -22px rgba(80, 55, 20, 0.4);
}
.blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f4ece0;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  background: rgba(20, 17, 15, 0.85);
  color: #e8d6b6;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 24px 26px;
}
.blog-card-date {
  color: #a08b6a;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.blog-card-title {
  margin: 10px 0 12px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
}
.blog-card-excerpt {
  margin: 0 0 20px;
  color: #5c574f;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.65;
}
.blog-card-more {
  margin-top: auto;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: gap 0.2s ease;
}
.blog-card:hover .blog-card-more { color: #86693c; }

@media (max-width: 900px) {
  .blog { padding: 68px 0; }
  .blog-title { font-size: 34px; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .blog-grid > .blog-card:last-child { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid > .blog-card:last-child { grid-column: auto; }
}

/* ─── Instagram ──────────────────────────────────────────────────────── */
.instagram {
  padding: 40px 0 96px;
  background: #ffffff;
}
.instagram-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.instagram-title {
  margin: 0;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.ig-handle {
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-bottom: 1.5px solid #997d4d;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.ig-handle:hover { color: #1d1d1b; border-color: #1d1d1b; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.instagram-grid a {
  display: block;
  overflow: hidden;
  position: relative;
}
.instagram-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.instagram-grid a:hover img {
  transform: scale(1.05);
  filter: brightness(1.04);
}

@media (max-width: 900px) {
  .instagram { padding: 32px 0 68px; }
  .instagram-title { font-size: 32px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Site footer ──────────────────────────────────────────────────────── */
.site-footer {
  margin-top: 0;
  background: #1a1a18;
  color: #b7b6b2;
}

/* CTA band */
.footer-cta {
  background: linear-gradient(120deg, #b3231b 0%, #8c1813 100%);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 44px;
  padding-bottom: 44px;
  flex-wrap: wrap;
}
.footer-cta-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.footer-cta-title {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1.15;
}
.footer-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-btn-gold {
  background: #1d1d1b;
  color: #ffffff;
  border-color: #1d1d1b;
}
.footer-btn-gold:hover {
  background: #000000;
  border-color: #000000;
}
.footer-btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}
.footer-btn-outline:hover {
  background: #ffffff;
  color: #1d1d1b;
  border-color: #ffffff;
}

/* Main grid */
.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1.5fr 1.2fr;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 60px;
}

/* Brand */
.footer-logo {
  display: inline-block;
  line-height: 0;
}
.footer-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-tagline {
  margin: 24px 0 26px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.75;
  color: #9c9b96;
}

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #3a3a37;
  color: #b7b6b2;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
  background: #997d4d;
  border-color: #997d4d;
  color: #ffffff;
  transform: translateY(-2px);
}
.footer-social svg { width: 17px; height: 17px; }

/* Link columns */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-heading {
  margin: 0 0 22px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b79a68;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col a {
  position: relative;
  font-size: 14px;
  color: #b7b6b2;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-col a:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* Contact */
.footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #b7b6b2;
}
.footer-contact li svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: #b79a68;
}
.footer-contact a { color: #b7b6b2; transition: color 0.2s ease; }
.footer-contact a:hover { color: #ffffff; }

/* Center of Excellence */
.footer-coe {
  border-top: 1px solid #2c2c29;
}
.footer-coe-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-top: 34px;
  padding-bottom: 34px;
  flex-wrap: wrap;
}
.footer-coe-left {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-coe-head { flex: 0 0 auto; }
.footer-coe-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: #7f7e7a;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-coe-title {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}
.footer-coe-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-coe-img {
  height: 74px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-coe-img:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

/* USA & Canada support block */
.footer-coe-support {
  max-width: 340px;
  padding-left: 40px;
  border-left: 1px solid #2c2c29;
}
.footer-coe-support-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.footer-coe-support-text {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
  color: #9c9b96;
}
.footer-coe-support-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c8a86a;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.footer-coe-support-phone svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}
.footer-coe-support-phone:hover { color: #ffffff; }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #2c2c29;
  background: #141412;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  margin: 0;
  font-size: 13px;
  color: #7f7e7a;
}
.footer-legal {
  display: flex;
  gap: 26px;
}
.footer-legal a {
  font-size: 13px;
  color: #7f7e7a;
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: #ffffff; }

/* Floating action buttons (desktop) */
.floating-actions {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}
.fab-whatsapp {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
}
.fab-whatsapp svg { width: 30px; height: 30px; }
.fab-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: #1d1d1b;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.fab-whatsapp:hover .fab-tip { opacity: 1; }
.fab-contact {
  gap: 10px;
  padding: 16px 26px;
  border-radius: 40px;
  background: #b3231b;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.fab-contact:hover { background: #8c1813; }
.fab-contact svg { width: 19px; height: 19px; }

@media (max-width: 768px) {
  /* Full-width sticky contact bar */
  .floating-actions {
    right: 0;
    left: 0;
    bottom: 0;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    z-index: 95;
    box-shadow: 0 -6px 20px -8px rgba(0, 0, 0, 0.28);
  }
  .fab {
    flex: 1 1 0;
    min-width: 0;
    height: 49px;
    border-radius: 0;
    box-shadow: none;
    gap: 9px;
  }
  .fab:hover { transform: none; box-shadow: none; }
  .fab-whatsapp {
    width: auto;
    border-radius: 0;
    background: #25d366;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
  }
  .fab-whatsapp svg { width: 22px; height: 22px; }
  .fab-tip {
    position: static;
    transform: none;
    background: none;
    color: #ffffff;
    padding: 0;
    border-radius: 0;
    opacity: 1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
  }
  .fab-contact {
    padding: 0;
    border-radius: 0;
  }
  .fab-contact svg { width: 18px; height: 18px; }
  body { padding-bottom: 49px; }
}

@media (max-width: 900px) {
  .footer-cta-title { font-size: 27px; }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px 40px;
    padding-top: 56px;
    padding-bottom: 48px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .footer-cta-inner { padding-top: 36px; padding-bottom: 36px; }
  .footer-cta-actions { width: 100%; }
  .footer-cta-actions .btn { flex: 1 1 auto; justify-content: center; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 32px; }
  .footer-coe-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-coe-left { gap: 20px; }
  .footer-coe-img { height: 64px; }
  .footer-coe-support { max-width: none; padding-left: 0; border-left: 0; padding-top: 24px; border-top: 1px solid #2c2c29; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ─── Treatment detail page (penile implant) ─────────────────────────── */
.tx-h2 {
  margin: 0;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.12;
}
.tx-eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

/* Hero */
.tx-hero {
  padding: 64px 0 84px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2ea 100%);
  border-bottom: 1px solid #efe7da;
}
.tx-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.tx-hero-eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.tx-hero-headline {
  margin: 0 0 28px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 1.12;
}
.tx-hero-headline em { color: #997d4d; font-style: italic; }
.tx-hero-body {
  margin: 0 0 40px;
  max-width: 520px;
  color: #4d4841;
  font-size: 17px;
  line-height: 1.75;
}
.tx-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tx-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid #e7ddcd;
}
.tx-hero-stat { display: flex; flex-direction: column; gap: 3px; }
.tx-hero-stat-num {
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}
.tx-hero-stat-label {
  color: #857f76;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.tx-hero-media { position: relative; }
.tx-hero-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 560px;
  margin-left: auto;
  aspect-ratio: 56 / 62;
  object-fit: contain;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 30px 60px -30px rgba(60, 40, 15, 0.4);
}
/* Match the illustration's own background so contain letterboxing is invisible. */
.tx-hero-img--teal { background: #5c8084; }
.tx-hero-badges {
  position: absolute;
  left: -92px;
  bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tx-hero-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px 11px 14px;
  background: #ffffff;
  border: 1px solid #eee4d4;
  border-radius: 4px;
  box-shadow: 0 16px 36px -20px rgba(60, 40, 15, 0.45);
}
.tx-hero-badge-logo { width: 24px; height: 24px; flex: 0 0 auto; }
.tx-hero-badge-body { display: flex; flex-direction: column; gap: 1px; }
.tx-hero-badge-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: #1d1d1b;
  line-height: 1.1;
}
.tx-hero-badge-stars { color: #e0a83c; font-size: 12px; letter-spacing: 1px; }
.tx-hero-badge-stars--green { color: #00b67a; }
.tx-hero-badge-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #857f76;
}

/* Intro */
.tx-intro { padding: 88px 0; background: #ffffff; }
.tx-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
/* Intro'yu tek sütuna indirir: başlık ile metin arasında boş sütun kalmaz,
   metin doğrudan başlığın altından başlar. Yalnızca introStacked işaretli
   hizmet sayfalarında uygulanır. */
.tx-intro-grid--stacked {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 1080px;
}
.tx-intro-grid--stacked .tx-intro-lead .tx-h2 { margin-bottom: 0; }
.tx-intro-text p {
  margin: 0 0 18px;
  color: #4d4841;
  font-size: 17px;
  line-height: 1.75;
}
.tx-intro-text p:last-child { margin-bottom: 0; }

/* Generic band */
.tx-band { padding: 88px 0; background: #f5f0e8; }
.tx-band--soft { background: #ffffff; }
.tx-band--fade { background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%); }
.tx-band-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.tx-band-head--left { margin-left: 0; text-align: left; }
.tx-band-sub {
  margin: 16px 0 0;
  color: #5c574f;
  font-size: 16px;
  line-height: 1.7;
}

/* Candidacy checks */
.tx-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}
.tx-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: #ffffff;
  border: 1px solid #ebe2d3;
  border-radius: 4px;
}
.tx-check-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #997d4d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}
.tx-check p { margin: 3px 0 0; color: #403c36; font-size: 15px; line-height: 1.5; }

/* Types */
.tx-types { padding: 88px 0; background: #ffffff; }
.tx-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tx-type-card {
  padding: 32px 30px 34px;
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tx-type-card:hover {
  transform: translateY(-5px);
  border-color: #dcccb4;
  box-shadow: 0 22px 48px -26px rgba(80, 55, 20, 0.4);
}
.tx-type-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 12px;
  background: #efe4d2;
  color: #8a6a34;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 2px;
}
.tx-type-title {
  margin: 0 0 12px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}
.tx-type-card p { margin: 0; color: #5c574f; font-size: 15px; line-height: 1.65; }

/* Steps */
.tx-steps { padding: 88px 0; background: #14110f; }
.tx-steps .tx-h2, .tx-steps .tx-band-sub { color: #ffffff; }
.tx-steps .tx-band-sub { color: #b7b0a6; }
.tx-steps .tx-eyebrow { color: #b79a68; }
.tx-steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.tx-step { display: flex; gap: 22px; align-items: flex-start; }
.tx-step-num {
  flex: 0 0 auto;
  color: #b79a68;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}
.tx-step-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}
.tx-step-body p { margin: 0; color: #b7b0a6; font-size: 15px; line-height: 1.65; }

/* Timeline */
.tx-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tx-tl-item {
  padding: 26px 24px;
  background: #f7f2ea;
  border-top: 3px solid #997d4d;
  border-radius: 0 0 4px 4px;
}
.tx-tl-when {
  display: block;
  margin-bottom: 10px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.tx-tl-item p { margin: 0; color: #5c574f; font-size: 14.5px; line-height: 1.6; }

/* Why */
.tx-why { padding: 92px 0; background: #f5f0e8; }
.tx-why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.tx-why-img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  box-shadow: 0 30px 60px -32px rgba(60, 40, 15, 0.45);
}
.tx-why-lead { margin: 0 0 22px; color: #4d4841; font-size: 17px; line-height: 1.72; }
.tx-why-list { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.tx-why-list li {
  position: relative;
  padding-left: 30px;
  color: #4d4841;
  font-size: 15.5px;
  line-height: 1.55;
}
.tx-why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #997d4d;
  font-weight: 700;
}
.tx-why-list strong { color: #1d1d1b; }

/* FAQ */
.tx-faq { padding: 88px 0; background: #ffffff; }
.tx-faq-inner { max-width: 860px; }
.tx-faq-list { margin-top: 10px; }
.tx-faq-item {
  border-bottom: 1px solid #e8e0d3;
  padding: 6px 0;
}
.tx-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  position: relative;
  color: #1d1d1b;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
}
.tx-faq-item summary::-webkit-details-marker { display: none; }
.tx-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: #997d4d;
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.tx-faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.tx-faq-item p {
  margin: 0 0 18px;
  max-width: 720px;
  color: #5c574f;
  font-size: 15.5px;
  line-height: 1.7;
}

/* CTA */
.tx-cta { padding: 90px 0; background: linear-gradient(120deg, #14110f 0%, #241d17 100%); }
.tx-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.tx-cta-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.14;
}
.tx-cta-sub { margin: 0 0 32px; color: #c4beb4; font-size: 17px; line-height: 1.7; }
.tx-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.tx-cta-btn { background: #997d4d; color: #ffffff; border-color: #997d4d; }
.tx-cta-btn:hover { background: #86693c; border-color: #86693c; }
.tx-cta-btn-ghost { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.5); }
.tx-cta-btn-ghost:hover { background: #ffffff; color: #1d1d1b; border-color: #ffffff; }

/* Responsive */
@media (max-width: 960px) {
  .tx-hero-grid,
  .tx-intro-grid,
  .tx-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .tx-hero-headline { font-size: 44px; }
  .tx-hero-media { order: -1; }
  .tx-hero-img { margin: 0 auto; }
  .tx-hero-badges {
    position: static;
    flex-direction: row;
    gap: 12px;
    margin: 16px auto 0;
    max-width: 560px;
  }
  .tx-hero-badge {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 10px 12px;
    gap: 8px;
  }
  .tx-h2, .tx-cta-title { font-size: 32px; }
  .tx-type-grid { grid-template-columns: 1fr; }
  .tx-steps-list { grid-template-columns: 1fr; }
  .tx-timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tx-hero-headline { font-size: 36px; }
  .tx-check-grid { grid-template-columns: 1fr; }
  .tx-timeline { grid-template-columns: 1fr; }
  .tx-hero-stats { gap: 24px; }
}

/* ─── Treatment: detailed implant types ──────────────────────────────── */
.tx-detail-list { display: flex; flex-direction: column; gap: 20px; }
.tx-detail {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-radius: 6px;
  overflow: hidden;
}
.tx-detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: linear-gradient(140deg, #997d4d 0%, #7f6538 100%);
}
.tx-detail-badge {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-align: center;
}
.tx-detail-body { padding: 28px 32px; }
.tx-detail-title {
  margin: 0 0 10px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}
.tx-detail-body p { margin: 0; color: #5c574f; font-size: 15.5px; line-height: 1.7; }

/* ─── Treatment: day by day journey ──────────────────────────────────── */
.tx-journey {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
}
.tx-journey-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
  padding: 0 0 30px 0;
  position: relative;
}
.tx-journey-item::before {
  content: "";
  position: absolute;
  left: 129px;
  top: 8px;
  bottom: -4px;
  width: 1px;
  background: #e0d6c6;
}
.tx-journey-item:last-child { padding-bottom: 0; }
.tx-journey-item:last-child::before { display: none; }
.tx-journey-day {
  position: relative;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding-top: 2px;
}
.tx-journey-item > div { position: relative; padding-left: 28px; }
.tx-journey-item > div::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #997d4d;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #e0d6c6;
  transform: translateX(-30px);
}
.tx-journey-title {
  margin: 0 0 6px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}
.tx-journey-item p { margin: 0; color: #5c574f; font-size: 15px; line-height: 1.65; }

/* ─── Treatment: pricing table ───────────────────────────────────────── */
.tx-price { padding: 88px 0; background: #f5f0e8; }
.tx-price-wrap { overflow-x: auto; }
.tx-price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid #e7ddcd;
}
.tx-price-table th,
.tx-price-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #eee4d4;
  font-size: 15px;
  color: #4d4841;
}
.tx-price-table thead th {
  background: #14110f;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  vertical-align: bottom;
}
.tx-price-hl { background: #997d4d !important; }
.tx-price-hl-name { display: block; font-size: 14px; font-weight: 700; }
.tx-price-hl-sub { display: block; font-size: 11px; font-weight: 500; opacity: 0.85; margin-top: 2px; }
.tx-price-name { display: block; color: #1d1d1b; font-weight: 700; font-size: 15px; }
.tx-price-sub { display: block; color: #8a857c; font-size: 12px; margin-top: 2px; }
.tx-price-hl-cell {
  background: #faf3e8;
  color: #7f6538 !important;
  font-weight: 800;
  white-space: nowrap;
}
.tx-price-table tbody tr:last-child td { border-bottom: 0; }
.tx-price-note {
  margin: 18px 0 0;
  color: #857f76;
  font-size: 13.5px;
  line-height: 1.6;
}

/* ─── Treatment: reasons grid ────────────────────────────────────────── */
.tx-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tx-reason {
  padding: 28px 26px;
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-top: 3px solid #997d4d;
  border-radius: 0 0 6px 6px;
}
.tx-reason-title {
  margin: 0 0 10px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}
.tx-reason p { margin: 0; color: #5c574f; font-size: 14.5px; line-height: 1.6; }

@media (max-width: 900px) {
  .tx-detail { grid-template-columns: 1fr; }
  .tx-detail-media { padding: 16px; }
  .tx-reason-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .tx-journey-item { grid-template-columns: 1fr; gap: 6px; }
  .tx-journey-item::before { display: none; }
  .tx-journey-item > div { padding-left: 0; }
  .tx-journey-item > div::before { display: none; }
  .tx-reason-grid { grid-template-columns: 1fr; }
}

/* ─── Treatment: implant type tabs ───────────────────────────────────── */
.tx-tabs { margin-top: 8px; }
.tx-tabs-nav {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid #e5dccc;
  overflow-x: auto;
  scrollbar-width: none;
}
.tx-tabs-nav::-webkit-scrollbar { display: none; }
.tx-tab {
  flex: 0 0 auto;
  padding: 16px 22px;
  margin-bottom: -1px;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  color: #857f76;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tx-tab:hover { color: #1d1d1b; }
.tx-tab.is-active { color: #997d4d; border-bottom-color: #997d4d; }

.tx-tab-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: 44px;
}
.tx-tab-panel[hidden] { display: none; }
.tx-tab-body { order: 1; }
.tx-tab-media { order: 2; }
.tx-tab-media svg,
.tx-tab-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ece3d6;
}
.tx-tab-img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.tx-tab-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 13px;
  background: #efe4d2;
  color: #8a6a34;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 2px;
}
.tx-tab-title {
  margin: 0 0 16px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}
.tx-tab-body p {
  margin: 0 0 16px;
  color: #5c574f;
  font-size: 15.5px;
  line-height: 1.72;
}
.tx-tab-features {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.tx-tab-features li {
  position: relative;
  padding-left: 26px;
  color: #403c36;
  font-size: 14.5px;
  line-height: 1.5;
}
.tx-tab-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #997d4d;
  font-weight: 700;
}

@media (max-width: 900px) {
  .tx-tab-panel { grid-template-columns: 1fr; gap: 30px; padding-top: 32px; }
  .tx-tab-media { max-width: 480px; }
}
@media (max-width: 560px) {
  .tx-tab-features { grid-template-columns: 1fr; }
  .tx-tab { padding: 14px 16px; font-size: 13px; }
}

/* ─── Treatment: after surgery / usage ───────────────────────────────── */
.tx-after { padding: 88px 0; background: #ffffff; }
.tx-after-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tx-after-card {
  padding: 34px 32px 36px;
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-radius: 6px;
}
.tx-after-num {
  display: block;
  margin-bottom: 16px;
  color: #b79a68;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}
.tx-after-title {
  margin: 0 0 12px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}
.tx-after-card p { margin: 0; color: #5c574f; font-size: 15px; line-height: 1.7; }

@media (max-width: 900px) {
  .tx-after-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ─── Header: Treatments dropdown ────────────────────────────────────── */
.nav-dd { position: relative; display: inline-flex; align-items: center; padding: 8px 0; }
.nav-dd-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #454444;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.52px;
  cursor: default;
  transition: color 0.2s ease;
}
.nav-dd:hover .nav-dd-toggle,
.nav-dd-toggle.is-active { color: #1d1d1b; }
.nav-dd-caret { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s ease; }
.nav-dd:hover .nav-dd-caret { transform: rotate(180deg); }
.nav-dd-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 236px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 6px;
  box-shadow: 0 22px 46px -22px rgba(60, 40, 15, 0.35);
  padding: 8px;
  display: none;
  z-index: 60;
}
.nav-dd-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-dd:hover .nav-dd-menu { display: block; }
.nav-dd-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 4px;
  color: #454444;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dd-menu a:hover { background: #f6f1ea; color: #1d1d1b; }

@media (max-width: 960px) {
  .nav-dd { flex-direction: column; align-items: stretch; padding: 0; }
  .nav-dd-toggle { justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid #f2f2f2; }
  .nav-dd:hover .nav-dd-caret { transform: none; }
  .nav-dd-caret { transition: transform .2s ease; }
  .nav-dd.is-open .nav-dd-caret { transform: rotate(180deg); }
  .nav-dd-menu {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 4px 0 8px;
  }
  .nav-dd:hover .nav-dd-menu { display: none; }
  .nav-dd.is-open .nav-dd-menu { display: block; }
  .nav-dd-menu::before { display: none; }
  .nav-dd-menu a { padding: 10px 4px 10px 18px; color: #6a6a6a; }
  .nav-dd-menu a:hover { background: none; color: #1d1d1b; }
}

/* ─── Treatment: options grid (generic) ──────────────────────────────── */
.tx-opt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.tx-opt-card {
  padding: 30px 30px 32px;
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tx-opt-card:hover {
  transform: translateY(-4px);
  border-color: #dcccb4;
  box-shadow: 0 20px 44px -24px rgba(80, 55, 20, 0.4);
}
.tx-opt-tag {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  background: #efe4d2;
  color: #8a6a34;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 2px;
}
.tx-opt-title {
  margin: 0 0 10px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 500;
}
.tx-opt-card p { margin: 0; color: #5c574f; font-size: 15px; line-height: 1.65; }
/* Bir kartın başlığı bağlantı olduğunda (ilgili tedaviler) rengi ve altı çizgisi
   başlığın kendisinden devralınıyor; yalnızca üzerine gelindiğinde ayrışıyor. */
.tx-opt-title a { color: inherit; text-decoration: none; }
.tx-opt-title a:hover { color: #997d4d; text-decoration: underline; }

@media (max-width: 760px) {
  .tx-opt-grid { grid-template-columns: 1fr; }
}

/* ─── About page ─────────────────────────────────────────────────────── */
.ab-hero {
  background: radial-gradient(120% 130% at 85% 0%, #241d17 0%, #17130f 60%, #14100d 100%);
  color: #cfccc4;
  padding: 84px 0 96px;
}
.ab-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.ab-hero-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #b79a68;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.ab-hero-name {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -1px;
}
.ab-hero-name span { color: #c8a86a; font-style: italic; }
.ab-hero-role {
  margin: 0 0 26px;
  color: #b79a68;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
}
.ab-hero-lead {
  margin: 0 0 34px;
  max-width: 520px;
  color: #b7b2a8;
  font-size: 17px;
  line-height: 1.75;
}
.ab-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.ab-btn-gold { background: #997d4d; color: #fff; border-color: #997d4d; }
.ab-btn-gold:hover { background: #86693c; border-color: #86693c; }
.ab-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.ab-btn-outline:hover { background: #fff; color: #1d1d1b; border-color: #fff; }

.ab-hero-media { position: relative; }
.ab-hero-img {
  display: block;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  aspect-ratio: 48 / 60;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  border: 1px solid #4a3f2c;
}
.ab-hero-sign {
  position: absolute;
  left: -6px;
  bottom: -22px;
  color: rgba(200,168,106,0.22);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 76px;
  line-height: 1;
  pointer-events: none;
}

/* Stats strip */
.ab-stats { background: linear-gradient(120deg, #b3231b 0%, #8c1813 100%); }
.ab-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 40px;
}
.ab-stat { text-align: center; color: #fff; }
.ab-stat-num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}
.ab-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

/* Bio */
.ab-bio { padding: 92px 0; background: #ffffff; }
.ab-bio-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: start; }
.ab-bio-text p { margin: 0 0 20px; color: #4d4841; font-size: 17px; line-height: 1.78; }
.ab-bio-text p:last-child { margin-bottom: 0; }

/* Education timeline */
.ab-edu { padding: 88px 0; background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%); }
.ab-edu-list { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; }
.ab-edu-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-bottom: 1px solid #e5dccc;
}
.ab-edu-item:last-child { border-bottom: 0; }
.ab-edu-year {
  color: #997d4d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.ab-edu-title { margin: 0 0 6px; color: #1d1d1b; font-family: "Playfair Display", Georgia, serif; font-size: 21px; font-weight: 500; }
.ab-edu-body p { margin: 0; color: #5c574f; font-size: 15px; line-height: 1.6; }

/* Memberships */
.ab-mem { padding: 88px 0; background: #f5f0e8; }
.ab-mem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.ab-mem-card {
  padding: 26px 28px;
  background: #ffffff;
  border: 1px solid #ece3d6;
  border-left: 3px solid #997d4d;
  border-radius: 0 4px 4px 0;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
}

/* About CTA */
.ab-cta { padding: 90px 0; background: #14110f; }
.ab-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.ab-cta-eyebrow { display: inline-block; margin-bottom: 16px; color: #b79a68; font-family: "Inter", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; }
.ab-cta-title { margin: 0 0 16px; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 38px; font-weight: 400; line-height: 1.15; }
.ab-cta-sub { margin: 0 0 30px; color: #b7b2a8; font-size: 17px; line-height: 1.7; }
.ab-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .ab-hero-grid, .ab-bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .ab-hero-name { font-size: 44px; }
  .ab-hero-media { order: -1; max-width: 360px; }
  .ab-stats-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .ab-mem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .ab-edu-item { grid-template-columns: 1fr; gap: 6px; }
}

/* ─── Contact page ───────────────────────────────────────────────────── */
.ct-head { padding: 72px 0 40px; background: #ffffff; }
.ct-title { margin: 0 0 16px; color: #1d1d1b; font-family: "Playfair Display", Georgia, serif; font-size: 46px; font-weight: 400; letter-spacing: -0.5px; line-height: 1.1; }
.ct-lead { margin: 0; max-width: 620px; color: #4d4841; font-size: 17px; line-height: 1.7; }

.ct-body { padding: 0 0 96px; background: #ffffff; }
.ct-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 30px; align-items: stretch; }

.ct-info {
  background: radial-gradient(120% 120% at 100% 0%, #241d17 0%, #17130f 70%);
  color: #b7b2a8;
  border-radius: 8px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.ct-info-block { padding-bottom: 30px; border-bottom: 1px solid #2f281f; }
.ct-info-block:last-of-type { border-bottom: 0; padding-bottom: 0; }
.ct-info-eyebrow { display: block; margin-bottom: 12px; color: #b79a68; font-family: "Inter", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; }
.ct-info-lines { margin: 0 0 14px; color: #cfccc4; font-size: 15px; line-height: 1.7; }
.ct-info-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.ct-info-link svg { width: 17px; height: 17px; color: #b79a68; }
.ct-info-link:hover { color: #c8a86a; }
.ct-info-hours { margin: 12px 0 0; color: #8f8a80; font-size: 14px; }
.ct-social { display: flex; gap: 10px; margin-top: 4px; }
.ct-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid #3a3229; color: #b7b2a8;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ct-social a:hover { background: #997d4d; border-color: #997d4d; color: #fff; }
.ct-social svg { width: 16px; height: 16px; }

.ct-form-card {
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-radius: 8px;
  padding: 44px 44px 40px;
}
.ct-form-title { margin: 0 0 6px; color: #1d1d1b; font-family: "Playfair Display", Georgia, serif; font-size: 28px; font-weight: 500; }
.ct-form-sub { margin: 0 0 28px; color: #857f76; font-size: 15px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: block; margin-bottom: 16px; }
.ct-field > span {
  display: block;
  margin-bottom: 7px;
  color: #4d4841;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.ct-field input, .ct-field select, .ct-field textarea {
  width: 100%;
  padding: 13px 15px;
  background: #ffffff;
  border: 1px solid #e2d8c8;
  border-radius: 4px;
  color: #1d1d1b;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.ct-field textarea { resize: vertical; }
.ct-field input:focus, .ct-field select:focus, .ct-field textarea:focus {
  outline: none;
  border-color: #997d4d;
  box-shadow: 0 0 0 3px rgba(153, 125, 77, 0.15);
}
.ct-submit { width: 100%; margin-top: 6px; }
.ct-form-note { margin: 14px 0 0; color: #8f8a80; font-size: 12.5px; line-height: 1.5; }
.ct-form-success {
  margin: 8px 0 0;
  padding: 18px 20px;
  background: #eef5ec;
  border: 1px solid #cfe4c8;
  border-radius: 6px;
  color: #2f6b2a;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; }
  .ct-title { font-size: 34px; }
}
@media (max-width: 560px) {
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-form-card { padding: 30px 24px 28px; }
  .ct-info { padding: 32px 26px; }
}

/* ─── Treatment: causes grid + health callout ────────────────────────── */
.tx-causes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.tx-causes-col {
  padding: 30px 32px;
  background: #ffffff;
  border: 1px solid #ece3d6;
  border-radius: 6px;
}
.tx-causes-h {
  margin: 0 0 18px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}
.tx-causes-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.tx-causes-list li {
  position: relative;
  padding-left: 20px;
  color: #5c574f;
  font-size: 15px;
  line-height: 1.5;
}
.tx-causes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #997d4d;
}
.tx-callout {
  margin-top: 28px;
  padding: 26px 30px;
  background: #ffffff;
  border-left: 3px solid #b3231b;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 14px 36px -22px rgba(80, 55, 20, 0.4);
}
.tx-callout-title {
  margin: 0 0 8px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 500;
}
.tx-callout p { margin: 0; color: #5c574f; font-size: 15.5px; line-height: 1.7; max-width: 820px; }

@media (max-width: 760px) {
  .tx-causes-grid { grid-template-columns: 1fr; }
}

/* ─── Partnership page ───────────────────────────────────────────────── */
.pt-hero {
  padding: 84px 0 76px;
  background: radial-gradient(120% 130% at 85% 0%, #241d17 0%, #17130f 60%, #14100d 100%);
  color: #b7b2a8;
  text-align: center;
}
.pt-hero-inner { max-width: 820px; margin: 0 auto; }
.pt-hero-eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: #b79a68;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.pt-hero-title {
  margin: 0 0 22px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.8px;
}
.pt-hero-title em { color: #c8a86a; font-style: italic; }
.pt-hero-lead { margin: 0 auto 32px; max-width: 680px; color: #b7b2a8; font-size: 17px; line-height: 1.75; }
.pt-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.pt-btn-gold { background: #997d4d; color: #fff; border-color: #997d4d; }
.pt-btn-gold:hover { background: #86693c; border-color: #86693c; }
.pt-btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.pt-btn-outline:hover { background: #fff; color: #1d1d1b; border-color: #fff; }
.pt-btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.pt-btn-ghost:hover { background: #fff; color: #1d1d1b; border-color: #fff; }
.pt-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 36px;
  border-top: 1px solid #33291f;
}
.pt-hs { display: flex; flex-direction: column; gap: 4px; }
.pt-hs-num { color: #ffffff; font-family: "Playfair Display", Georgia, serif; font-size: 34px; font-weight: 400; line-height: 1; }
.pt-hs-label { color: #8f8a80; font-size: 12px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; }

/* Who */
.pt-who { padding: 90px 0; background: #ffffff; }
.pt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pt-card {
  padding: 30px 28px 32px;
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.pt-card:hover { transform: translateY(-5px); border-color: #dcccb4; box-shadow: 0 22px 48px -26px rgba(80,55,20,0.4); }
.pt-card-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #efe4d2;
  color: #997d4d;
}
.pt-card-ico svg { width: 24px; height: 24px; }
.pt-card-title { margin: 0 0 10px; color: #1d1d1b; font-family: "Playfair Display", Georgia, serif; font-size: 22px; font-weight: 500; }
.pt-card p { margin: 0; color: #5c574f; font-size: 15px; line-height: 1.65; }

/* Steps */
.pt-steps { padding: 90px 0; background: #14110f; }
.pt-steps .tx-h2 { color: #ffffff; }
.pt-steps .tx-band-sub { color: #b7b0a6; }
.pt-steps .tx-eyebrow { color: #b79a68; }
.pt-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pt-step {
  padding: 30px 26px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid #2c2620;
  border-radius: 6px;
}
.pt-step-num { display: block; margin-bottom: 12px; color: #b79a68; font-family: "Playfair Display", Georgia, serif; font-size: 40px; line-height: 1; }
.pt-step-title { margin: 0 0 8px; color: #ffffff; font-family: "Playfair Display", Georgia, serif; font-size: 21px; font-weight: 500; }
.pt-step p { margin: 0; color: #b7b0a6; font-size: 15px; line-height: 1.6; }

/* Why */
.pt-why { padding: 90px 0; background: linear-gradient(180deg, #ffffff 0%, #f5f0e8 100%); }
.pt-why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pt-why-card { padding: 26px 24px; background: #ffffff; border: 1px solid #ece3d6; border-left: 3px solid #997d4d; border-radius: 0 4px 4px 0; }
.pt-why-h { margin: 0 0 10px; color: #1d1d1b; font-family: "Playfair Display", Georgia, serif; font-size: 19px; font-weight: 500; }
.pt-why-card p { margin: 0; color: #5c574f; font-size: 14.5px; line-height: 1.6; }

/* CTA */
.pt-cta { padding: 92px 0; background: radial-gradient(120% 120% at 20% 0%, #241d17 0%, #14110f 70%); }
.pt-cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.pt-cta-eyebrow { display: inline-block; margin-bottom: 16px; color: #b79a68; font-family: "Inter", sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2.4px; text-transform: uppercase; }
.pt-cta-title { margin: 0 0 16px; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: 40px; font-weight: 400; line-height: 1.14; }
.pt-cta-sub { margin: 0 0 30px; color: #b7b2a8; font-size: 17px; line-height: 1.7; }
.pt-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pt-cta-note { margin: 24px 0 0; color: #7f7a70; font-size: 12.5px; line-height: 1.5; }

@media (max-width: 900px) {
  .pt-hero-title { font-size: 40px; }
  .pt-hero-stats { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
  .pt-grid { grid-template-columns: 1fr 1fr; }
  .pt-steps-grid { grid-template-columns: 1fr 1fr; }
  .pt-why-grid { grid-template-columns: 1fr 1fr; }
  .pt-hero-title, .pt-cta-title { font-size: 34px; }
}
@media (max-width: 560px) {
  .pt-grid, .pt-steps-grid, .pt-why-grid { grid-template-columns: 1fr; }
}

/* ─── Your Journey (interactive) ─────────────────────────────────────── */
.pj-section { padding: 88px 0 36px; background: #ffffff; }
.pj-track {
  position: relative;
  width: 100%;
  margin: 54px 0 8px;
}
.pj-rail {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 3px;
  background: #e7ddcd;
  border-radius: 3px;
}
.pj-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #b79a68, #997d4d);
  border-radius: 3px;
  transition: width 0.5s ease;
}
.pj-plane {
  position: absolute;
  top: 8px;
  left: 0;
  transform: translate(-50%, -50%);
  color: #997d4d;
  transition: left 0.5s ease;
  z-index: 3;
  pointer-events: none;
}
.pj-stops {
  position: relative;
  z-index: 2;
  display: flex;
}
.pj-stop {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.pj-stop-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #d8c6ab;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.pj-stop--visited .pj-stop-dot { background: #c9b489; border-color: #c9b489; }
.pj-stop--active .pj-stop-dot {
  background: #997d4d;
  border-color: #997d4d;
  box-shadow: 0 0 0 4px rgba(153, 125, 77, 0.16);
}
.pj-stop-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: #8a857c;
  transition: color 0.2s ease;
}
.pj-stop:hover .pj-stop-label { color: #1d1d1b; }
.pj-stop--active .pj-stop-label { color: #997d4d; }

.pj-panels { margin-top: 44px; }
.pj-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.pj-panel[hidden] { display: none; }
.pj-day-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.pj-panel-title {
  margin: 0 0 16px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
}
.pj-panel-body p { margin: 0; color: #5c574f; font-size: 15.5px; line-height: 1.75; }
.pj-panel-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #ece3d6;
}

@media (max-width: 820px) {
  .pj-panel { grid-template-columns: 1fr; gap: 28px; }
  .pj-panel-img { order: -1; max-width: 520px; }
  .pj-stop-label { font-size: 11px; }
}
@media (max-width: 560px) {
  .pj-stop-label { display: none; }
  .pj-track { margin-top: 40px; }
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────── */
.breadcrumb {
  background: #ffffff;
  border-bottom: 1px solid #f0ece4;
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 13px 0;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #8a857c;
}
.breadcrumb-item:not(:first-child)::before {
  content: "/";
  margin: 0 10px;
  color: #ccc4b6;
}
.breadcrumb-item a { color: #857f76; transition: color 0.2s ease; }
.breadcrumb-item a:hover { color: #997d4d; }
.breadcrumb-item span[aria-current="page"] { color: #1d1d1b; font-weight: 600; }

/* ─── Hero: medically reviewed badge ─────────────────────────────────── */
.tx-reviewed {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: -8px 0 32px;
  padding: 9px 17px 9px 11px;
  background: #faf4ea;
  border: 1px solid #ecdfca;
  border-radius: 40px;
}
.tx-reviewed-tick { width: 20px; height: 20px; flex: 0 0 auto; }
.tx-reviewed span {
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  color: #5c574f;
  line-height: 1.3;
}
.tx-reviewed strong { color: #1d1d1b; font-weight: 600; }

/* Penile enlargement page: single column intro */
.enl-intro-head { margin: 0 0 24px; max-width: none; }
.enl-intro-text p {
  margin: 0 0 18px;
  color: #4d4841;
  font-size: 17px;
  line-height: 1.8;
}
.enl-intro-text p:last-child { margin-bottom: 0; }

/* ─── Bladder cancer page: quick answer, cited evidence, quote, sources ── */
.tx-answer {
  padding: 38px 44px;
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-top: 3px solid #997d4d;
  border-radius: 0 0 6px 6px;
}
.tx-answer-list { list-style: none; margin: 0; padding: 0; }
.tx-answer-list li {
  position: relative;
  margin: 0 0 16px;
  padding-left: 22px;
  color: #5c574f;
  font-size: 15.5px;
  line-height: 1.7;
}
.tx-answer-list li:last-child { margin-bottom: 0; }
.tx-answer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #997d4d;
}
.tx-answer-list strong { color: #1d1d1b; font-weight: 600; }

.tx-ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tx-ev {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 28px 26px 24px;
  background: #ffffff;
  border: 1px solid #ece3d6;
  border-radius: 6px;
  box-shadow: 0 18px 40px -30px rgba(80, 55, 20, 0.45);
}
.tx-ev-stat {
  display: block;
  margin-bottom: 12px;
  color: #997d4d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}
.tx-ev-claim {
  flex: 1 1 auto;
  margin: 0 0 16px;
  padding: 0;
  color: #4d4841;
  font-size: 15px;
  line-height: 1.65;
}
.tx-ev-cite {
  padding-top: 14px;
  border-top: 1px solid #ece3d6;
  color: #857f76;
  font-size: 12.5px;
  line-height: 1.5;
  font-style: normal;
}

/* Not satırındaki site içi bağlantılar: gri gövde metninden ayrışmazsa
   bağlantı olduğu anlaşılmıyor. */
.tx-price-note a { color: #997d4d; text-decoration: underline; }
.tx-price-note a:hover { color: #7f6538; }

/* Wide, captioned in page illustration (kidney cancer stage diagram). Sits on
   a light card so a diagram with a white background does not float loose on
   the cream page. */
.tx-figure {
  max-width: 920px;
  margin: 0 auto 40px;
  padding: 26px 26px 20px;
  background: #ffffff;
  border: 1px solid #ece3d6;
  border-radius: 6px;
  box-shadow: 0 18px 40px -30px rgba(80, 55, 20, 0.45);
}
.tx-figure-img { display: block; width: 100%; height: auto; }
.tx-figure-cap {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #ece3d6;
  color: #857f76;
  font-size: 13.5px;
  line-height: 1.65;
}

/* Verbatim quotations from named sources, each with a short reading of what it
   means in practice. */
.tx-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tx-qcard {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 30px 28px 26px;
  background: #ffffff;
  border: 1px solid #ece3d6;
  border-top: 3px solid #997d4d;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 18px 40px -30px rgba(80, 55, 20, 0.45);
}
/* Alıntılar farklı uzunlukta; alıntı bloğu boşluğu yuttuğunda kaynak satırı ve
   altındaki ayraç üç kartta da aynı hizaya oturuyor. */
.tx-qcard-text {
  flex: 1 1 auto;
  margin: 0 0 14px;
  padding: 0;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18.5px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}
.tx-qcard-text::before { content: "\201C"; }
.tx-qcard-text::after { content: "\201D"; }
.tx-qcard-cite {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ece3d6;
  color: #857f76;
  font-size: 12.5px;
  line-height: 1.5;
  font-style: normal;
}
.tx-qcard-note {
  margin: 0;
  color: #4d4841;
  font-size: 15px;
  line-height: 1.65;
}

.tx-quote {
  margin: 0;
  padding: 0;
}
.tx-quote-text {
  margin: 0 0 18px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}
.tx-quote-text::before { content: "\201C"; }
.tx-quote-text::after { content: "\201D"; }
.tx-quote-cite {
  color: #857f76;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  font-style: normal;
}

/* North America section: a single, tight answer paragraph */
.tx-na {
  max-width: 820px;
  margin: 0 auto;
  padding: 34px 38px;
  background: #faf6f0;
  border: 1px solid #ece3d6;
  border-top: 3px solid #997d4d;
  border-radius: 0 0 6px 6px;
}
.tx-na p { margin: 0; color: #4d4841; font-size: 16.5px; line-height: 1.8; }

.tx-sources { padding: 72px 0 88px; background: #f5f0e8; }
.tx-sources-list {
  max-width: 820px;
  margin: 0 0 26px;
  padding-left: 22px;
  color: #5c574f;
}
.tx-sources-list li { margin-bottom: 10px; font-size: 14.5px; line-height: 1.6; }
.tx-sources-note {
  max-width: 820px;
  margin: 0;
  color: #857f76;
  font-size: 13.5px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .tx-ev-grid { grid-template-columns: 1fr 1fr; }
  .tx-quotes { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .tx-answer { padding: 28px 24px; }
  .tx-na { padding: 28px 24px; }
  .tx-quote-text { font-size: 21px; }
  .tx-figure { padding: 16px 16px 14px; }
  .tx-qcard { padding: 26px 24px 22px; }
}
@media (max-width: 560px) {
  .tx-ev-grid { grid-template-columns: 1fr; }
}

/* ─── Language switch (EN / AR) ─────────────────────────────────────────── */
/* Başlıktaki dil seçici: açık dilin kısaltmasını gösteren düğme ve altında
   açılan liste. Konum ölçüleri mantıksal (`order`, `margin-inline-*`)
   yazıldığı için Arapça sayfada RTL'e kendiliğinden uyuyor.

   Yerleşim: masaüstünde `order: 3` ile bağlantı grubunun ardına düşüyor;
   .nav-links'e verilen `margin-inline-start: auto` boşluğu yutup ikisini
   birlikte uca itiyor. Dar ekranda bağlantı grubu akıştan çıktığı için
   (position: absolute) seçici sıraya geri dönüp hamburgerin hemen yanında
   kalıyor. */
.lang-switch {
  position: relative;
  display: inline-flex;
  order: 3;
  margin-inline-start: 18px;
  flex-shrink: 0;
  font-family: "Inter", sans-serif;
}
.nav-links { margin-inline-start: auto; }

.lang-switch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 10px;
  border: 1px solid #e0e0e0;
  background: transparent;
  color: #1d1d1b;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.lang-switch-toggle:hover { border-color: #997d4d; color: #997d4d; }
.lang-switch-toggle:focus-visible { outline: 2px solid #997d4d; outline-offset: 2px; }
.lang-switch-toggle svg { width: 10px; height: 10px; transition: transform 0.25s ease; }
.lang-switch-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang-switch-menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  z-index: 60;
  min-width: 150px;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #ffffff;
  border: 1px solid #ebebeb;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.18);
}
/* Liste blok görünümlü olduğu için tarayıcının [hidden] kuralı tek başına
   yetmiyor, açıkça geçersiz kılınıyor. */
.lang-switch-menu[hidden] { display: none; }
.lang-switch-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: #454444;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch-menu a:hover { background: #faf8f5; color: #1d1d1b; }
.lang-switch-menu a[aria-current="page"] { color: #1d1d1b; font-weight: 600; }
.lang-switch-code {
  min-width: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #857f76;
}
.lang-switch-menu a[aria-current="page"] .lang-switch-code { color: #997d4d; }

@media (max-width: 960px) {
  .lang-switch { order: 0; margin-inline-start: auto; margin-inline-end: 16px; font-size: 11px; }
  .nav-toggle { order: 1; }
  .lang-switch-toggle { padding: 8px 9px; }
}

/* ─── Teşekkür sayfası ─────────────────────────────────────────────────── */
.ty-wrap { padding: 96px 0 110px; background: #fdfbf7; }
.ty-inner { max-width: 720px; text-align: center; }
.ty-tick { width: 72px; height: 72px; margin: 0 auto 26px; }
.ty-tick svg { width: 100%; height: 100%; display: block; }
.ty-title {
  margin: 12px 0 18px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.ty-lead { margin: 0 auto 44px; max-width: 560px; color: #5c574f; font-size: 17px; line-height: 1.75; }
.ty-next {
  margin: 0 auto 34px;
  padding: 30px 34px;
  max-width: 620px;
  text-align: left;
  background: #ffffff;
  border: 1px solid #ece3d6;
  border-radius: 6px;
  box-shadow: 0 18px 40px -30px rgba(80, 55, 20, 0.45);
}
.ty-next-title {
  margin: 0 0 16px;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ty-next-list { margin: 0; padding-left: 20px; color: #5c574f; }
.ty-next-list li { margin-bottom: 12px; font-size: 15.5px; line-height: 1.7; }
.ty-next-list li:last-child { margin-bottom: 0; }
.ty-urgent { margin: 0 auto 36px; max-width: 620px; color: #857f76; font-size: 14.5px; line-height: 1.7; }
.ty-urgent a { color: #997d4d; text-decoration: underline; }
.ty-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) {
  .ty-wrap { padding: 64px 0 76px; }
  .ty-title { font-size: 31px; }
  .ty-next { padding: 24px 22px; }
  .ty-actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ─── Before and after galerileri ─────────────────────────────────────── */
/* Palet sitenin geri kalanıyla ortak: altın #997d4d, koyu #1d1d1b, gövde
   metni #5c574f, krem bant #f5f0e8, çizgi #e8e0d3. Yeni bir renk
   tanıtılmıyor. Başlıklar Playfair, gövde Inter. */

.gal-hero { padding: 56px 0 44px; background: #ffffff; }
.gal-h1 {
  margin: 0 0 18px;
  max-width: 900px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1.12;
}
.gal-hero-body {
  margin: 0;
  max-width: 720px;
  color: #5c574f;
  font-size: 17px;
  line-height: 1.75;
}
.gal-reviewed { margin-top: 22px; }

/* Başlık solda, istatistik kartı sağda. Oran tedavi sayfasındaki
   .tx-hero-grid ile aynı aileden, ama sağ sütun bir görsel değil metin
   taşıdığı için biraz daha dar. */
.gal-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.gal-hero-content { min-width: 0; }

.gal-stats-card {
  padding: 30px 34px 26px;
  background: #faf6f0;
  border: 1px solid #e8e0d3;
  border-radius: 14px;
}
.gal-stats-title {
  display: block;
  padding-bottom: 18px;
  color: #997d4d;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.gal-stats { margin: 0; }
/* Her satır: solda etiket, sağda rakam. Rakamlar sağa hizalı olduğu için
   farklı uzunluktaki değerler ("20+" ile "88 to 97%") aynı eksende duruyor. */
.gal-stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid #e8e0d3;
}
.gal-stat-num {
  margin: 0;
  flex: none;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.gal-stat-label {
  margin: 0;
  color: #857f76;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1.5;
  text-transform: uppercase;
}
.gal-stats-foot {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e8e0d3;
  color: #857f76;
  font-size: 12.5px;
  line-height: 1.6;
}

/* Kategori sekmeleri */
.gal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding: 6px;
  background: #f5f0e8;
  border-radius: 999px;
  width: fit-content;
}
.gal-tab {
  padding: 11px 22px;
  border-radius: 999px;
  color: #5c574f;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background 0.2s ease, color 0.2s ease;
}
.gal-tab:hover { color: #1d1d1b; }
.gal-tab.is-active { background: #1d1d1b; color: #ffffff; }

/* Izgara */
.gal-grid-section { padding: 8px 0 76px; background: #ffffff; }
.gal-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #857f76;
  font-size: 13.5px;
  line-height: 1.6;
}
.gal-consent-mark {
  flex: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f5f0e8;
  color: #997d4d;
  font-size: 12px;
  font-weight: 700;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gal-item {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid #e8e0d3;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f5f0e8;
  cursor: zoom-in;
  font: inherit;
}
.gal-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Klinik görsel: örtü kalkana kadar bulanık. Ziyaretçi ne göreceğini
     bilerek açıyor. */
  filter: blur(20px) brightness(0.9);
  transform: scale(1.1);
  transition: filter 0.35s ease, transform 0.5s ease;
}
.gal-item:hover img,
.gal-item:focus-visible img { filter: blur(0) brightness(1); transform: scale(1.02); }
.gal-veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 8px;
  text-align: center;
  background: rgba(29, 29, 27, 0.42);
  transition: opacity 0.3s ease;
}
.gal-item:hover .gal-veil,
.gal-item:focus-visible .gal-veil { opacity: 0; }
.gal-veil-label {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gal-veil-hint { color: #e7d7bd; font-size: 12px; letter-spacing: 0.4px; }
.gal-item:focus-visible { outline: 2px solid #997d4d; outline-offset: 3px; }
.gal-empty { padding: 40px 0; color: #857f76; text-align: center; }

/* Görsellerin altındaki metin */
.gal-notes { padding: 76px 0; }
.gal-notes-inner { max-width: 860px; }
.gal-note + .gal-note { margin-top: 38px; }
.gal-note-h2 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 14px; }
.gal-note p {
  margin: 0;
  color: #5c574f;
  font-size: 16px;
  line-height: 1.78;
}
/* Genel kural `a { color: inherit; text-decoration: none }`, yani stilsiz bir
   satır içi bağlantı düz metinden ayırt edilemiyor. */
.gal-note p a,
.tx-intro-text p a,
.tx-faq-item p a {
  color: #997d4d;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.gal-note p a:hover,
.tx-intro-text p a:hover,
.tx-faq-item p a:hover { color: #b79a68; }

/* Görsel büyütücü */
.gal-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 40px 72px;
  background: rgba(20, 17, 15, 0.94);
}
.gal-lightbox[hidden] { display: none; }
.gal-lb-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.gal-lightbox button {
  position: absolute;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: inherit;
  cursor: pointer;
  line-height: 1;
}
.gal-lb-close { top: 20px; right: 26px; font-size: 40px; }
.gal-lb-prev, .gal-lb-next { top: 50%; transform: translateY(-50%); font-size: 54px; padding: 0 14px; }
.gal-lb-prev { left: 10px; }
.gal-lb-next { right: 10px; }
.gal-lightbox button:hover { color: #997d4d; }
.gal-lb-count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #a9a29a;
  font-size: 12px;
  letter-spacing: 1.6px;
}
body.gal-lb-open { overflow: hidden; }

@media (max-width: 900px) {
  .gal-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .gal-stats-card { padding: 24px 26px 22px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gal-notes { padding: 60px 0; }
}
@media (max-width: 560px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gal-tabs { width: 100%; }
  .gal-tab { flex: 1; text-align: center; padding: 11px 12px; font-size: 12.5px; }
  .gal-lightbox { padding: 20px 12px 56px; }
  .gal-lb-prev, .gal-lb-next { font-size: 40px; }
}

/* ─── Tedavi sayfasındaki before after şeridi ─────────────────────────── */
/* Sayfadaki bantlar 88px dolgulu; bu bölüm daha ince, çünkü içeriği
   anlatmıyor, galeriye yönlendiriyor. Kareler tam genişliğe yayılıyor:
   metnin yanına sıkıştırıldıklarında galeri sayfasındakilerin yarısı kadar
   kalıyorlardı. */
.tx-strip {
  padding: 56px 0 60px;
  /* Beyaz zemin: bir alttaki aday bandı (#f5f0e8) krem, şerit de krem
     olunca ikisi tek blok gibi okunuyordu. Üstteki beyaz tanıtım
     bölümünden ince çizgi ayırıyor, alttaki krem bant kendi kenarını
     zaten getiriyor. */
  background: #ffffff;
  border-top: 1px solid #ece3d6;
  border-bottom: 1px solid #ece3d6;
}
/* Komşu bölümlerin ikisi de beyazla başlıyorsa şerit krem oluyor; yoksa
   kendi sınırı yalnızca saç teli çizgiden ibaret kalıyor. */
.tx-strip--tint { background: #faf6f0; }
.tx-strip-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 26px;
}
.tx-strip-head .tx-eyebrow { margin-bottom: 10px; }
.tx-strip-title {
  margin: 0;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}
.tx-strip-link {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  color: #997d4d;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(153, 125, 77, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tx-strip-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.tx-strip-link:hover { color: #86693c; border-color: #86693c; }
.tx-strip-link:hover svg { transform: translateX(3px); }

.tx-strip-shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tx-strip-shot {
  position: relative;
  display: block;
  /* Before ve after kareleri yan yana duruyor, yani görseller geniş: 4/3
     kırpma çifti 1/1'den daha az kesiyor. */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #e8e0d3;
  border-radius: 10px;
  background: #f5f0e8;
}
.tx-strip-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Galeri sayfasındaki kuralın aynısı: klinik görsel, üzerine gelinene
     kadar bulanık. */
  filter: blur(18px) brightness(0.9);
  transform: scale(1.12);
  transition: filter 0.35s ease, transform 0.5s ease;
}
.tx-strip-shot:hover img,
.tx-strip-shot:focus-visible img { filter: blur(0) brightness(1); transform: scale(1.03); }
.tx-strip-veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  background: rgba(29, 29, 27, 0.4);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.tx-strip-shot:hover .tx-strip-veil,
.tx-strip-shot:focus-visible .tx-strip-veil { opacity: 0; }
.tx-strip-shot:focus-visible { outline: 2px solid #997d4d; outline-offset: 3px; }

@media (max-width: 960px) {
  .tx-strip-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .tx-strip-shots { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .tx-strip { padding: 44px 0 46px; }
  .tx-strip-title { font-size: 25px; }
  .tx-strip-shots { gap: 10px; }
}

/* ─── Penile implant course page ─────────────────────────────────────────
   Sayfanın büyük kısmı tedavi sayfalarının bileşenlerini (tx-*) yeniden
   kullanıyor. Burada yalnızca iki yeni parça var: eğitmen kartları ve
   laboratuvar fotoğrafları. */
.crs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

/* Eğitmen kartları. Üstteki altın çizgi ve krem yüzey tx-reason ile aynı
   dilde; fark yuvarlak portre ve rol satırı. */
.crs-faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.crs-faculty-card {
  padding: 30px 28px;
  background: #ffffff;
  border: 1px solid #ece3d6;
  border-top: 3px solid #997d4d;
  border-radius: 0 0 6px 6px;
}
.crs-faculty-photo {
  display: block;
  width: 104px;
  height: 104px;
  margin: 0 0 20px;
  border-radius: 50%;
  object-fit: cover;
  /* Portreler baştan çerçevelenmiş; üstten hizalanınca yüz ortada kalıyor. */
  object-position: top center;
  background: #f5f0e8;
}
.crs-faculty-role {
  display: inline-block;
  color: #997d4d;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.crs-faculty-name {
  margin: 10px 0 6px;
  color: #1d1d1b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}
.crs-faculty-title {
  margin: 0 0 12px;
  color: #8a8377;
  font-size: 14px;
}
.crs-faculty-card p {
  margin: 0;
  color: #5c574f;
  font-size: 15px;
  line-height: 1.7;
}

/* Laboratuvar fotoğrafları. Kliniğin before after kareleri gibi bulanık
   değiller: hasta görüntüsü değil, eğitim ortamı. */
.crs-photos { padding: 88px 0; background: #ffffff; }
/* Krem zemin. Bölüm intro (beyaz) ile müfredat bandının (beyazdan başlayan
   geçiş) arasında duruyor; iki komşusu da beyazla başladığı için kendi sınırı
   görünmez kalırdı. gallery-strip'teki `tint` kuralının aynısı. */
.crs-photos--tint { background: #f5f0e8; }
.crs-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.crs-photo { margin: 0; }
/* Kare büyütücüyü açan düğme. Görünürde düğme yok: sıfırlanıyor, görselin
   kendisi tıklanabilir alan oluyor. */
.crs-photo-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  font: inherit;
  /* Üzerine gelince görsel hafifçe büyüyor; taşmayı burada kırpıyoruz. */
  overflow: hidden;
  border-radius: 4px;
}
.crs-photo-btn:focus-visible { outline: 2px solid #997d4d; outline-offset: 3px; }
.crs-photo img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  background: #f5f0e8;
  transition: transform 0.4s ease;
}
.crs-photo-btn:hover img { transform: scale(1.02); }
.crs-photo figcaption {
  margin-top: 12px;
  color: #8a8377;
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 960px) {
  .crs-faculty-grid { grid-template-columns: 1fr; }
  .crs-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .crs-photos { padding: 52px 0; }
  .crs-photo img { height: 260px; }
  .crs-photo-grid { gap: 12px; }
  .crs-hero-actions .btn { flex: 1 1 auto; }
}
