:root {
  color-scheme: light;
  --font-body:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;

  --ink: #111719;
  --ink-soft: #293135;
  --muted: #687176;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --surface-soft: #eef1ef;
  --line: #e1e5e2;
  --line-strong: #cdd3cf;
  --accent: #8b7057;
  --accent-deep: #68513c;
  --accent-soft: #eee7df;
  --dark: #111719;
  --dark-soft: #1b2326;

  --shadow-sm: 0 10px 28px rgba(17, 23, 25, 0.06);
  --shadow-md: 0 22px 60px rgba(17, 23, 25, 0.1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1500px;
  --container-text: 860px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-space: clamp(72px, 9vw, 132px);
  --header-height: 92px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  color: inherit;
}

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(17, 23, 25, 0.08);
  background: rgba(247, 248, 246, 0.94);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(17, 23, 25, 0.07);
}
.site-header__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}
.site-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.045em;
}
.site-brand__name {
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.11em;
}
.site-brand__role {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-brand--header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}

.site-brand__logo {
  display: block;
  width: clamp(180px, 15vw, 230px);
  height: auto;
  max-height: 84px;
  object-fit: contain;
  object-position: left center;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.6vw, 28px);
}
.desktop-nav__link {
  position: relative;
  padding: 34px 0 31px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 620;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.2s ease;
}
.desktop-nav__link:hover::after,
.desktop-nav__link.is-active::after {
  transform: scaleX(1);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.language-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.menu-toggle {
  display: none;
  align-items: center;
  gap: 11px;
  padding: 10px 0 10px 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle__label {
  font-size: 12px;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.menu-toggle__icon {
  width: 24px;
  display: grid;
  gap: 6px;
}
.menu-toggle__icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.22s ease,
    opacity 0.18s ease;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  overflow-y: auto;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.mobile-menu__inner {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 48px;
}
.mobile-nav {
  display: grid;
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(24px, 7vw, 34px);
  line-height: 1.15;
  text-decoration: none;
}
.mobile-nav__link.is-active {
  color: var(--accent-deep);
}
.mobile-menu__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
}
.mobile-menu__footer a {
  text-decoration: none;
}

/* Shared buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 19px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.button:hover {
  transform: translateY(-1px);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}
.button--header {
  min-height: 40px;
  padding: 9px 16px;
}
.button-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.button--light {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.button--light:hover {
  background: var(--accent-soft);
  color: var(--dark);
  border-color: var(--accent-soft);
}
.button-danger {
  background: #8e2020;
  border-color: #8e2020;
  color: #fff;
}
.button-small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 12px;
}

/* Page foundation */
.site-main {
  min-height: 60vh;
  overflow: clip;
}
.site-main > section,
.site-main > article {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}
.page-shell {
  min-height: 100vh;
}
.page-intro {
  padding: var(--section-space) 0;
}
.page-intro--compact {
  min-height: 52vh;
  display: flex;
  align-items: center;
}
.page-intro__inner {
  width: min(var(--container-text), 100%);
}
.hero,
.content-page {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding-block: var(--section-space);
}
.content-page {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow--light {
  color: #bda78f;
}
h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
}
h1 {
  max-width: 1000px;
  margin-bottom: 28px;
  font-size: clamp(46px, 6.8vw, 94px);
  line-height: 0.98;
}
h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.05;
}
h3 {
  margin-bottom: 12px;
  font-size: clamp(23px, 2.6vw, 32px);
  line-height: 1.15;
}
p {
  margin-top: 0;
}
.lead {
  width: min(780px, 100%);
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.52;
}
.prose {
  width: min(var(--container-text), 100%);
  color: #343d40;
  font-size: 17px;
  line-height: 1.8;
}
.prose > *:first-child {
  margin-top: 0;
}
.prose > *:last-child {
  margin-bottom: 0;
}
.prose h2 {
  margin-top: 64px;
  font-size: clamp(30px, 3.6vw, 46px);
}
.prose h3 {
  margin-top: 42px;
}
.prose p,
.prose ul,
.prose ol {
  margin-bottom: 1.35em;
}
.prose a {
  color: var(--accent-deep);
}
.prose img {
  width: 100%;
  height: auto;
  margin: 36px 0;
  border-radius: var(--radius-md);
}
.prose blockquote {
  margin: 38px 0;
  padding: 22px 26px;
  border-left: 2px solid var(--accent);
  background: var(--surface-soft);
  color: var(--ink-soft);
}

/* Current preview homepage */
.hero {
  min-height: 72vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .status-card {
  max-width: 680px;
}
.status-card {
  margin-top: 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: var(--dark);
  color: #fff;
}
.starter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.capabilities span {
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
}

/* Catalog + content lists */
.catalog-grid,
.content-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  margin-top: 38px;
}
@media (min-width: 1181px) {
  .catalog-grid,
  .content-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.catalog-card,
.content-list > article,
.treatment-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.catalog-card {
  display: block;
  padding: 0 0 24px;
  text-decoration: none;
}
.catalog-card:hover,
.content-list > article:hover,
.treatment-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.catalog-card img,
.content-list > article > img,
.treatment-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
}
.catalog-card h2,
.catalog-card p,
.content-list > article > h2,
.content-list > article > h3,
.content-list > article > p,
.treatment-card > h3,
.treatment-card > p {
  margin-left: 22px;
  margin-right: 22px;
}
.catalog-card h2,
.content-list > article > h2,
.content-list > article > h3,
.treatment-card > h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: clamp(23px, 2.1vw, 30px);
}
.catalog-card h2 a,
.content-list h2 a,
.content-list h3 a,
.treatment-card h3 a {
  text-decoration: none;
}
.catalog-card p,
.content-list > article > p,
.treatment-card > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Treatments */
.treatments-index > h1 {
  margin-bottom: 58px;
}
.treatment-group {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.treatment-group:first-of-type {
  border-top: 0;
}
.treatment-group h2 {
  width: min(720px, 100%);
  font-size: clamp(34px, 4vw, 54px);
}
.treatment-list {
  margin-top: 30px;
}
.treatment-card {
  padding-bottom: 24px;
}
.treatment-page > nav {
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 13px;
}
.treatment-page > nav a {
  text-decoration: none;
}
.hero-image {
  width: 100%;
  max-height: 720px;
  margin: 38px 0 48px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  background: var(--surface-soft);
}
.treatment-page > .lead {
  margin-bottom: 44px;
}
.treatment-page > .prose {
  margin-bottom: 70px;
}
.treatment-related,
.treatment-faq {
  width: min(var(--container-text), 100%);
  margin-top: 0;
  padding: 54px 0;
  border-top: 1px solid var(--line);
}
.treatment-related h2,
.treatment-faq h2 {
  font-size: clamp(30px, 3.4vw, 44px);
}
.treatment-related ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}
.treatment-related li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.treatment-related a {
  color: var(--ink);
  text-decoration: none;
}
.treatment-related a:hover {
  color: var(--accent-deep);
}
.treatment-faq details {
  border-top: 1px solid var(--line);
}
.treatment-faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.treatment-faq summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 680;
  list-style: none;
}
.treatment-faq summary::-webkit-details-marker {
  display: none;
}
.treatment-faq summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--accent-deep);
  font-size: 24px;
  font-weight: 400;
}
.treatment-faq details[open] summary::after {
  content: "−";
}
.treatment-faq details .prose {
  padding: 0 0 24px;
  font-size: 15px;
}

/* Generic module indexes */
.site-main > section:not(.hero):not(.page-intro):not(.content-page) {
  padding-block: var(--section-space);
}
.site-main > section:not(.hero):not(.page-intro):not(.content-page) > h1 {
  margin-bottom: 44px;
}
.content-list > article {
  padding-bottom: 22px;
}
.content-list > article > h2:last-child,
.content-list > article > h3:last-child {
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  margin-top: var(--section-space);
  background: var(--dark);
  color: #d7dcda;
}
.site-footer__inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) 0.75fr 0.75fr minmax(260px, 1fr);
  gap: clamp(36px, 5vw, 80px);
  padding: clamp(70px, 8vw, 116px) 0;
}
.site-brand--footer {
  color: #fff;
}
.site-brand--footer .site-brand__role {
  color: #9da7a3;
}
.site-footer__brand-block > p {
  max-width: 390px;
  margin: 26px 0 0;
  color: #9da7a3;
  font-size: 14px;
}
.site-footer__column {
  display: grid;
  align-content: start;
  gap: 9px;
}
.site-footer__column a {
  color: #cbd1ce;
  font-size: 14px;
  text-decoration: none;
}
.site-footer__column a:hover {
  color: #fff;
}
.site-footer__title {
  margin: 0 0 12px;
  color: #7f8c87;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-footer__cta {
  padding-left: clamp(0px, 2vw, 24px);
  border-left: 1px solid #2c3538;
}
.site-footer__cta-title {
  margin: 0 0 24px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}
.site-footer__bottom {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #2c3538;
  color: #7f8c87;
  font-size: 11px;
}
.site-footer__bottom a {
  color: inherit;
  text-decoration: none;
}

/* Forms / admin-compatible public primitives */
input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}
input:focus,
textarea:focus,
select:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.empty-state {
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--muted);
}

/* Admin styles retained from starter */
.admin-body {
  background: #efefeb;
  color: #151515;
  font-family: var(--font-body);
}
.admin-auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-login-card {
  width: min(480px, 100%);
}
.admin-card {
  padding: 28px;
  border: 1px solid #deded8;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.admin-title {
  font-size: clamp(34px, 5vw, 54px);
}
.admin-muted {
  color: #64645f;
  line-height: 1.6;
}
.admin-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.admin-form label {
  display: grid;
  gap: 7px;
  font-weight: 650;
}
.admin-form small {
  color: #9a2525;
  font-weight: 500;
}
.back-link {
  display: inline-block;
  margin-top: 22px;
  color: #5b5b57;
}
.alert {
  margin: 20px 0;
  padding: 13px 15px;
  border-radius: 10px;
}
.alert-error {
  background: #fff0f0;
  border: 1px solid #efc4c4;
}
.alert-success {
  background: #eff8ef;
  border: 1px solid #c7e2c7;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px;
  background: #151515;
  color: #fff;
}
.admin-header .brand {
  font-weight: 750;
  text-decoration: none;
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 14px;
}
.admin-user form {
  margin: 0;
}
.admin-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 42px auto;
}
.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.admin-grid p {
  margin-bottom: 0;
  color: #60605c;
  line-height: 1.6;
}
.admin-header-left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.admin-nav {
  display: flex;
  gap: 14px;
}
.admin-nav a {
  color: #d9d9d4;
  text-decoration: none;
  font-size: 14px;
}
.admin-page-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.summary-grid .admin-card {
  display: grid;
  gap: 6px;
  padding: 20px;
}
.summary-grid strong {
  font-size: 30px;
}
.summary-grid span {
  color: #686863;
}
.filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
  gap: 10px;
  margin: 20px 0;
}
.table-card {
  padding: 0;
  overflow: hidden;
}
.responsive-table {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid #e7e7e2;
  vertical-align: top;
}
th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #676762;
  background: #f8f8f5;
}
.row-unread td {
  background: #fffdf1;
}
.status-pill {
  display: inline-flex;
  border: 1px solid #d8d8d2;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 12px;
  white-space: nowrap;
}
.pagination {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}
.pagination a {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  border: 1px solid #d7d7d2;
  border-radius: 8px;
  text-decoration: none;
  background: #fff;
}
.pagination a.active {
  background: #151515;
  color: #fff;
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 18px;
}
.message-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: #666660;
  font-size: 13px;
}
.message-body {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e4e4df;
  line-height: 1.7;
}
.compact-form {
  margin-top: 14px;
}
.thread {
  margin-top: 32px;
  display: grid;
  gap: 12px;
}
.thread-item {
  box-shadow: none;
}
.reply-card {
  margin-top: 28px;
}
.form-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.checkbox-row {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  font-weight: 500 !important;
}
.checkbox-row input {
  width: auto !important;
  margin-top: 4px;
}
.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.contact-form {
  position: relative;
}
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 18px 0;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.content-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #deded8;
  border-radius: 14px;
  background: #fff;
}
.content-row h2,
.content-row h3 {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
}
.content-row p {
  margin: 0;
  color: #666660;
}
.translation-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.translation-card {
  padding: 20px;
  border: 1px solid #dfdfda;
  border-radius: 14px;
  background: #fafaf7;
}
.translation-card h3 {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
}
.admin-form .inline-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.admin-form .field-help {
  color: #6c6c67;
  font-size: 12px;
}
.admin-form input[type="checkbox"] {
  width: auto;
}
.media-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid #deded8;
  border-radius: 12px;
  background: #fff;
}
.media-preview img {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 9px;
  background: #eee;
}
.checkbox-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 14px;
  padding: 14px;
  border: 1px solid #d8d8d2;
  border-radius: 12px;
  background: #fff;
}
.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.checkbox-list input {
  width: auto;
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
  .site-header__actions {
    justify-content: flex-end;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .site-footer__inner {
    grid-template-columns: 1.35fr 0.75fr 0.75fr;
  }
  .site-footer__cta {
    grid-column: 1 / -1;
    padding: 34px 0 0;
    border-top: 1px solid #2c3538;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }
  .site-brand__name {
    font-size: 13px;
  }
  .site-brand__role {
    font-size: 9px;
  }
  .button--header {
    display: none;
  }
  .language-link {
    display: none;
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .treatment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
  .summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --section-space: 68px;
  }
  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }
  h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
  .lead {
    font-size: 19px;
  }
  .site-header__inner {
    width: calc(100% - 40px);
  }
  .menu-toggle__label {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-top: 82px;
  }
  .status-card {
    flex-direction: column;
    gap: 6px;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .content-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .content-list > article {
    border-radius: 14px;
  }
  .content-list > article > h2,
  .content-list > article > h3 {
    margin: 14px 14px 0;
    font-size: 19px;
  }
  .content-list > article > p {
    margin: 8px 14px 0;
    font-size: 13px;
  }
  .treatment-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .treatment-card > h3,
  .treatment-card > p {
    margin-left: 18px;
    margin-right: 18px;
  }
  .hero-image {
    margin: 28px 0 38px;
    border-radius: 18px;
  }
  .prose {
    font-size: 16px;
  }
  .treatment-related,
  .treatment-faq {
    padding: 42px 0;
  }
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px 26px;
  }
  .site-footer__brand-block {
    grid-column: 1 / -1;
  }
  .site-footer__cta {
    grid-column: 1 / -1;
  }
  .site-footer__bottom {
    flex-direction: column;
  }
  .admin-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-user {
    width: 100%;
    justify-content: space-between;
  }
  .admin-grid,
  .summary-grid,
  .filter-bar,
  .form-columns,
  .translation-tabs,
  .checkbox-list {
    grid-template-columns: 1fr;
  }
  .admin-page-heading,
  .admin-header-left {
    flex-direction: column;
    align-items: flex-start;
  }
  .content-row {
    grid-template-columns: 1fr;
  }
  .admin-form .inline-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .content-list {
    grid-template-columns: 1fr;
  }
}

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

.error-page {
  width: min(720px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding-block: var(--section-space);
}

/* Batch 8A revision: V1 visual parity foundation */
.visual-parity-v1 {
  --font-body: Roboto, Arial, Helvetica, sans-serif;
  --font-display: Roboto, Arial, Helvetica, sans-serif;
  --ink: #000000;
  --ink-soft: #333333;
  --muted: #666666;
  --paper: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --line: #e6e6e6;
  --line-strong: #cccccc;
  --accent: #bb8332;
  --accent-deep: #a4692a;
  --accent-soft: #f3eab1;
  --dark: #181a1a;
  --dark-soft: #232525;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 12px 34px rgba(0, 0, 0, 0.11);
  --header-height: 112px;
  background: #fff;
  color: #000;
}
.visual-parity-v1 .site-header {
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 0;
  backdrop-filter: none;
}
.visual-parity-v1 .site-header.is-scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.visual-parity-v1 .site-header__inner {
  width: min(1500px, calc(100% - 40px));
  min-height: var(--header-height);
  gap: 20px;
  grid-template-columns: minmax(210px, 0.9fr) minmax(0, 4fr) auto;
}
.visual-parity-v1 .site-brand {
  gap: 7px;
  letter-spacing: 0;
}

.visual-parity-v1 .site-brand--header-logo {
  min-width: 0;
}

.visual-parity-v1 .site-brand__logo {
  width: clamp(180px, 15vw, 230px);
  max-height: 84px;
}
.visual-parity-v1 .site-brand__name {
  color: #111;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.visual-parity-v1 .site-brand__role {
  max-width: 220px;
  color: #777;
  font-size: 9px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: none;
}
.visual-parity-v1 .desktop-nav {
  gap: clamp(10px, 1.25vw, 24px);
}
.visual-parity-v1 .desktop-nav__link {
  padding: 45px 0 42px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
.visual-parity-v1 .desktop-nav__link::after {
  bottom: 34px;
  height: 2px;
  background: #bb8332;
}
.visual-parity-v1 .site-header__actions {
  gap: 12px;
}
.visual-parity-v1 .language-link {
  color: #555;
  font-size: 12px;
}
.visual-parity-v1 .appointment-phone {
  min-width: 125px;
  padding-left: 14px;
  border-left: 1px solid #e5e5e5;
  color: #555;
  display: grid;
  gap: 2px;
  text-decoration: none;
  line-height: 1.15;
}
.visual-parity-v1 .appointment-phone span {
  font-size: 11px;
  font-weight: 400;
}
.visual-parity-v1 .appointment-phone strong {
  color: #000;
  font-size: 14px;
  font-weight: 600;
}
.visual-parity-v1 .gold-line {
  position: relative;
  z-index: 101;
  width: 100%;
  height: 2px;
  flex: 0 0 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}
.visual-parity-v1 h1,
.visual-parity-v1 h2,
.visual-parity-v1 h3,
.visual-parity-v1 h4 {
  color: #333;
  font-weight: 500;
  letter-spacing: 0;
}
.visual-parity-v1 h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.08;
}
.visual-parity-v1 h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
}
.visual-parity-v1 h3 {
  font-size: clamp(22px, 2.2vw, 30px);
}
.visual-parity-v1 .lead {
  color: #444;
  font-size: clamp(18px, 1.8vw, 23px);
}
.visual-parity-v1 .prose {
  color: #333;
  font-size: 16px;
  line-height: 1.75;
}
.visual-parity-v1 .eyebrow {
  color: #bb8332;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.visual-parity-v1 .button {
  min-height: 44px;
  border-color: #bb8332;
  border-radius: 4px;
  background: #bb8332;
  color: #fff;
}
.visual-parity-v1 .button:hover {
  background: #a4692a;
  border-color: #a4692a;
  transform: none;
}
.visual-parity-v1 .catalog-card,
.visual-parity-v1 .content-list > article,
.visual-parity-v1 .treatment-card {
  border-radius: 6px;
  border-color: #e5e5e5;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.visual-parity-v1 .catalog-card:hover,
.visual-parity-v1 .content-list > article:hover,
.visual-parity-v1 .treatment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.visual-parity-v1 .hero-image,
.visual-parity-v1 .prose img {
  border-radius: 8px;
}
.visual-parity-v1 .treatment-group {
  border-color: #e6e6e6;
}
.visual-parity-v1 .treatment-faq summary::after {
  color: #bb8332;
}
.visual-parity-v1 .treatment-related a:hover,
.visual-parity-v1 .prose a {
  color: #a4692a;
}
.visual-parity-v1 .site-footer {
  margin-top: var(--section-space);
  background: #181a1a;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.visual-parity-v1 .site-footer::before {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a,
    #be8c3c,
    #d3b15f,
    #faf0a0,
    #d3b15f,
    #be8c3c,
    #a4692a
  );
}
.visual-parity-v1 .site-footer__inner {
  padding: clamp(64px, 7vw, 96px) 0;
}
.visual-parity-v1 .site-brand--footer .site-brand__name {
  color: #fff;
}
.visual-parity-v1 .site-brand--footer .site-brand__role,
.visual-parity-v1 .site-footer__brand-block > p {
  color: rgba(255, 255, 255, 0.62);
}
.visual-parity-v1 .site-footer__title {
  color: #d3b15f;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.visual-parity-v1 .site-footer__column a {
  color: rgba(255, 255, 255, 0.75);
}
.visual-parity-v1 .site-footer__column a:hover {
  color: #fff;
  text-decoration: underline;
}
.visual-parity-v1 .site-footer__cta {
  border-left-color: rgba(255, 255, 255, 0.15);
}
.visual-parity-v1 .site-footer__cta-title {
  font-family: var(--font-body);
  font-weight: 300;
}
.visual-parity-v1 .footer-phone {
  display: block;
  margin: -10px 0 22px;
  color: #d3b15f;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
}
.visual-parity-v1 .site-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
}
.visual-parity-v1 .button--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}
.visual-parity-v1 .button--light:hover {
  background: #fff;
  color: #181a1a;
  border-color: #fff;
}

@media (max-width: 1350px) {
  .visual-parity-v1 .desktop-nav {
    gap: 12px;
  }
  .visual-parity-v1 .desktop-nav__link {
    font-size: 12px;
  }
  .visual-parity-v1 .appointment-phone {
    display: none;
  }
}
@media (max-width: 1100px) {
  .visual-parity-v1 {
    --header-height: 88px;
  }
  .visual-parity-v1 .site-header__inner {
    grid-template-columns: 1fr auto;
    width: min(100% - 32px, 900px);
  }
  .visual-parity-v1 .desktop-nav {
    display: none;
  }
  .visual-parity-v1 .menu-toggle {
    display: inline-flex;
  }
  .visual-parity-v1 .menu-toggle__icon {
    gap: 5px;
  }
  .visual-parity-v1 .menu-toggle__icon i {
    height: 2px;
  }
  .visual-parity-v1 .mobile-menu {
    background: #fff;
  }
  .visual-parity-v1 .mobile-nav__link {
    font-family: var(--font-body);
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 400;
    color: #222;
  }
  .visual-parity-v1 .mobile-nav__link.is-active {
    color: #a4692a;
  }
}
@media (max-width: 820px) {
  .doctor-v1-bio-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .doctor-v1-bio-row__body {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .visual-parity-v1 .site-brand__logo {
    width: min(180px, 56vw);
    max-height: 66px;
  }

  .visual-parity-v1 .site-brand__name {
    font-size: 14px;
  }
  .visual-parity-v1 .site-brand__role {
    max-width: 180px;
    font-size: 8px;
  }
  .visual-parity-v1 .language-link {
    display: none;
  }
  .visual-parity-v1 h1 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .visual-parity-v1 .site-footer__cta {
    border-left: 0;
    padding-left: 0;
  }
}
.visual-parity-v1
  .menu-toggle[aria-expanded="true"]
  .menu-toggle__icon
  i:nth-child(2) {
  opacity: 0;
}

/* ===== Batch 8C.1: treatment detail visual parity ===== */
.site-main > .treatment-v1-page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.treatment-v1-page {
  --treatment-gold-a: #a4692a;
  --treatment-gold-b: #be8c3c;
  --treatment-gold-c: #d3b15f;
  --treatment-gold-light: #faf0a0;
  --treatment-dark: #4f4f4f;
  --treatment-dark-deep: #3f3f3f;
  overflow: hidden;
  background: #fff;
  color: #333;
}

.treatment-v1-page *,
.treatment-v1-page *::before,
.treatment-v1-page *::after {
  box-sizing: border-box;
}

.treatment-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

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

.treatment-v1-container--text {
  width: min(900px, calc(100% - 48px));
}

.treatment-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2rem, 4vw, 3.65rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.treatment-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.treatment-v1-kicker {
  margin: 0 0 14px;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.treatment-v1-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(34px, 5vw, 62px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.treatment-v1-breadcrumb a {
  color: #efd9ad;
  text-decoration: none;
}
.treatment-v1-breadcrumb a:hover {
  text-decoration: underline;
}

.treatment-v1-hero,
.treatment-v1-story {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.9fr);
  min-height: clamp(520px, 58vw, 760px);
  background: radial-gradient(
    circle at 48% 42%,
    #737373 0%,
    #5f5f5f 34%,
    #4f4f4f 70%,
    #454545 100%
  );
}

.treatment-v1-hero__copy,
.treatment-v1-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 108px) clamp(32px, 7vw, 110px);
}

.treatment-v1-hero__copy {
  align-items: flex-start;
}

.treatment-v1-hero__media,
.treatment-v1-story__media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #ddd;
}

.treatment-v1-hero__media img,
.treatment-v1-story__media img,
.treatment-v1-media-fallback {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.treatment-v1-hero__media img {
  object-position: center;
}
.treatment-v1-story__media img {
  object-position: center;
}

.treatment-v1-media-fallback,
.treatment-v1-card-fallback {
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 38% 32%, #777, #555 58%, #444);
}

.treatment-v1-lead {
  max-width: 780px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.76;
}

.treatment-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.treatment-v1-actions--center {
  justify-content: center;
}

.treatment-v1-section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 3vw, 40px);
}

.treatment-v1-more-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid #bb8332;
  background: transparent;
  color: #8f6028;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.treatment-v1-more-link:hover,
.treatment-v1-more-link:focus-visible {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
}

.treatment-v1-more-link--dark {
  border-color: rgba(241, 207, 136, 0.78);
  color: #f1cf88;
}

.treatment-v1-more-link--dark:hover,
.treatment-v1-more-link--dark:focus-visible {
  border-color: #d3b15f;
  background: #bb8332;
  color: #fff;
}

.treatment-v1-page .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.treatment-v1-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
  transform: none;
}

.treatment-v1-page .treatment-v1-button--outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
}

.treatment-v1-page .treatment-v1-button--outline:hover {
  border-color: #bb8332;
  background: #bb8332;
  color: #fff;
}

.treatment-v1-story:nth-of-type(even) {
  background: radial-gradient(
    circle at 55% 38%,
    #676767 0%,
    #535353 45%,
    #464646 78%,
    #3f3f3f 100%
  );
}

.treatment-v1-story--reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.45fr);
}

.treatment-v1-story--reverse .treatment-v1-story__copy {
  order: 2;
}
.treatment-v1-story--reverse .treatment-v1-story__media {
  order: 1;
}

.treatment-v1-story--text-only {
  display: block;
  min-height: 0;
}

.treatment-v1-story--text-only .treatment-v1-story__copy {
  width: min(1050px, calc(100% - 48px));
  margin-inline: auto;
  padding-inline: 0;
}

.treatment-v1-prose {
  max-width: 820px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.87);
  font-size: 1rem;
  line-height: 1.82;
}

.treatment-v1-prose > *:first-child {
  margin-top: 0;
}
.treatment-v1-prose > *:last-child {
  margin-bottom: 0;
}
.treatment-v1-prose p,
.treatment-v1-prose ul,
.treatment-v1-prose ol {
  margin: 0 0 1.25em;
}
.treatment-v1-prose ul,
.treatment-v1-prose ol {
  padding-left: 1.35em;
}
.treatment-v1-prose li + li {
  margin-top: 0.55em;
}
.treatment-v1-prose h3,
.treatment-v1-prose h4 {
  margin: 2em 0 0.75em;
  color: #e0bd75;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-weight: 500;
}
.treatment-v1-prose a {
  color: #f1cf88;
}
.treatment-v1-prose strong {
  color: #fff;
}
.treatment-v1-prose img {
  max-width: 100%;
  height: auto;
  margin: 26px 0;
}

.treatment-v1-story__media p {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  margin: 0;
  padding: 9px 11px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.78rem;
}

.treatment-v1-band {
  padding: clamp(64px, 7vw, 96px) 0;
}

.treatment-v1-band--white,
.treatment-v1-band--faq {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.treatment-v1-band--dark {
  background: radial-gradient(
    circle at 50% 35%,
    #686868 0%,
    #555 40%,
    #4a4a4a 74%,
    #414141 100%
  );
  color: #fff;
}

.treatment-v1-heading {
  max-width: 860px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.treatment-v1-heading p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #555;
  line-height: 1.75;
}

.treatment-v1-heading--light p {
  color: rgba(255, 255, 255, 0.78);
}

.treatment-v1-before-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.treatment-v1-before-card {
  min-width: 0;
}
.treatment-v1-before-card {
  overflow: hidden;
  border: 1px solid #e7e0d6;
  background: #fff;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
}

.treatment-v1-before-card__image {
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: #f3f1ed;
  cursor: zoom-in;
  text-decoration: none;
}

.treatment-v1-before-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.treatment-v1-before-card__image:hover img {
  transform: scale(1.02);
  opacity: 0.94;
}

.treatment-v1-before-card__label {
  display: block;
  padding: 15px 16px 17px;
  color: #9d692a;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.treatment-v1-before-card .treatment-v1-card-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.treatment-v1-related-links {
  width: min(760px, 100%);
  margin: 0 auto;
  border-top: 1px solid #e5ddd1;
}
.treatment-v1-related-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid #e5ddd1;
  color: #333;
  text-decoration: none;
}
.treatment-v1-related-links a:hover {
  color: #a4692a;
}
.treatment-v1-related-links small {
  color: #9a7a56;
}

.treatment-v1-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.treatment-v1-video-grid--single {
  width: min(720px, 100%);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr);
}

.treatment-v1-video-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(32, 32, 32, 0.34);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
}

.treatment-v1-video-embed {
  aspect-ratio: 16 / 9;
  background: #222;
}
.treatment-v1-video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.treatment-v1-video-card__body {
  padding: 20px 20px 24px;
}
.treatment-v1-video-card__body h3 {
  margin: 0;
  color: #e0bd75;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: 1.18rem;
  font-weight: 500;
}
.treatment-v1-video-card__body p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}
.treatment-v1-video-card__body a {
  display: inline-block;
  margin-top: 16px;
  color: #f1cf88;
  text-decoration: none;
}

.treatment-v1-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}
.treatment-v1-article-card a {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid #e7e0d6;
  background: #fff;
  color: #333;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.treatment-v1-article-card a:hover {
  transform: translateY(-3px);
  border-color: #cfad70;
  box-shadow: 0 13px 28px rgba(37, 31, 25, 0.11);
}
.treatment-v1-article-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.treatment-v1-article-card__body {
  display: grid;
  gap: 10px;
  padding: 19px;
}
.treatment-v1-article-card__body strong {
  color: #9d692a;
  font-size: 1.04rem;
  line-height: 1.4;
}
.treatment-v1-article-card__body small {
  color: #666;
  line-height: 1.55;
}
.treatment-v1-article-card__body em {
  color: #8e632d;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 650;
}

.treatment-v1-faq {
  border-top: 1px solid #e4ddd3;
}
.treatment-v1-faq details {
  border-bottom: 1px solid #e4ddd3;
}
.treatment-v1-faq summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: #333;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.55;
  list-style: none;
}
.treatment-v1-faq summary::-webkit-details-marker {
  display: none;
}
.treatment-v1-faq summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: #bb8332;
  font-size: 1.6rem;
  font-weight: 400;
}
.treatment-v1-faq details[open] summary::after {
  content: "−";
}
.treatment-v1-faq__answer {
  padding: 0 0 24px;
  color: #555;
  line-height: 1.75;
}
.treatment-v1-faq__answer > *:last-child {
  margin-bottom: 0;
}

.treatment-v1-cta {
  padding: clamp(72px, 8vw, 110px) 0;
  background: radial-gradient(
    circle at 50% 45%,
    #626262 0%,
    #505050 48%,
    #424242 100%
  );
  color: #fff;
  text-align: center;
}
.treatment-v1-cta p {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

body:has(.treatment-v1-page) .site-footer,
body.visual-parity-v1:has(.treatment-v1-page) .site-footer {
  margin-top: 0;
}

/* Treatment CTA -> footer: remove global footer spacing on shared CTA pages. */
body:has(.treatment-overview-v1-page) .site-footer,
body.visual-parity-v1:has(.treatment-overview-v1-page) .site-footer,
body:has(.clinic-v1-page) .site-footer,
body.visual-parity-v1:has(.clinic-v1-page) .site-footer {
  margin-top: 0;
}

@media (max-width: 1050px) {
  .treatment-v1-hero,
  .treatment-v1-story,
  .treatment-v1-story--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .treatment-v1-hero__copy,
  .treatment-v1-story__copy {
    padding: clamp(48px, 8vw, 76px) clamp(26px, 6vw, 60px);
  }
  .treatment-v1-hero__media,
  .treatment-v1-story__media {
    min-height: min(70vw, 620px);
  }
  .treatment-v1-story--reverse .treatment-v1-story__copy {
    order: 1;
  }
  .treatment-v1-story--reverse .treatment-v1-story__media {
    order: 2;
  }
  .treatment-v1-before-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .treatment-v1-article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .treatment-v1-container,
  .treatment-v1-container--text,
  .treatment-v1-story--text-only .treatment-v1-story__copy {
    width: calc(100% - 36px);
  }
  .treatment-v1-hero__copy,
  .treatment-v1-story__copy {
    padding: 44px 20px;
  }
  .treatment-v1-hero__media,
  .treatment-v1-story__media {
    min-height: 78vw;
  }
  .treatment-v1-breadcrumb {
    margin-bottom: 34px;
  }
  .treatment-v1-before-grid,
  .treatment-v1-video-grid,
  .treatment-v1-article-grid {
    grid-template-columns: 1fr;
  }
  .treatment-v1-band {
    padding: 58px 0;
  }
  .treatment-v1-actions .button {
    width: 100%;
    text-align: center;
  }
  .treatment-v1-prose {
    font-size: 0.97rem;
  }
}

/* Batch 8C.2 — Treatment Admin Manager */
.treatment-admin-manager,
.treatment-admin-list {
  width: min(1480px, 100%);
  margin: 0 auto;
}
.treatment-admin-eyebrow {
  margin: 0 0 5px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.treatment-admin-heading {
  gap: 18px;
}
.treatment-admin-heading__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}
.treatment-admin-tabs {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin: 0 0 18px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(247, 248, 246, 0.96);
  box-shadow: var(--shadow-sm);
}
.treatment-admin-tabs button,
.treatment-language-tabs button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}
.treatment-admin-tabs button {
  min-height: 42px;
  padding: 9px 15px;
}
.treatment-admin-tabs button.is-active,
.treatment-language-tabs button.is-active {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}
.treatment-admin-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 23px;
  min-height: 23px;
  margin-left: 5px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(139, 112, 87, 0.14);
  color: inherit;
  font-size: 11px;
}
.treatment-admin-panel {
  margin-bottom: 18px;
}
.treatment-admin-panel[hidden],
.treatment-language-panel[hidden],
.treatment-faq-language[hidden] {
  display: none !important;
}
.treatment-admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}
.treatment-admin-section-head h2,
.treatment-related-box h3 {
  margin: 0;
}
.treatment-admin-section-head p,
.treatment-related-box__head span {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.treatment-admin-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}
.treatment-admin-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.treatment-admin-grid--3 {
  grid-template-columns: minmax(0, 1.4fr) minmax(150px, 0.55fr) minmax(
      220px,
      0.8fr
    );
}
.treatment-admin-switch,
.treatment-admin-radio,
.treatment-admin-danger-check {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
}
.treatment-admin-switch {
  align-self: end;
  min-height: 47px;
  padding: 0 2px;
}
.treatment-admin-switch input,
.treatment-admin-radio input,
.treatment-admin-danger-check input {
  width: auto !important;
  margin: 0;
}
.treatment-admin-danger-check {
  color: #9d2f2f;
}
.treatment-language-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}
.treatment-language-tabs button {
  min-width: 70px;
  min-height: 38px;
  padding: 7px 14px;
}
.treatment-language-panel {
  display: grid;
  gap: 18px;
}
.treatment-rich-field {
  display: grid;
  gap: 8px;
}
.treatment-rich-field__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}
.treatment-rich-field__head > label {
  margin: 0;
}
.treatment-rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.treatment-rich-toolbar button {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.treatment-rich-toolbar button:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}
.treatment-media-list,
.treatment-faq-list {
  display: grid;
  gap: 14px;
}
.treatment-media-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.treatment-media-item__preview {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--surface-soft);
}
.treatment-media-item__preview img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
}
.treatment-media-primary-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.treatment-media-item__fields {
  display: grid;
  gap: 11px;
}
.treatment-media-item__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.treatment-media-move {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 11px;
}
.treatment-upload-box,
.treatment-admin-empty {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  background: var(--surface-soft);
}
.treatment-upload-box {
  display: grid;
  gap: 10px;
}
.treatment-faq-item {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}
.treatment-faq-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}
.treatment-faq-item__header > div {
  display: flex;
  gap: 5px;
}
.treatment-faq-item__header .button {
  min-height: 31px;
  padding: 5px 9px;
}
.treatment-faq-remove {
  margin-left: 5px;
  color: #9d2f2f;
}
.treatment-related-manager {
  display: grid;
  gap: 18px;
}
.treatment-related-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  overflow: hidden;
}
.treatment-related-box__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: 16px;
  align-items: center;
  padding: 17px;
  border-bottom: 1px solid var(--line);
}
.treatment-related-box__head input {
  margin: 0;
}
.treatment-picker-list {
  max-height: 440px;
  overflow: auto;
}
.treatment-picker-row {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 !important;
  padding: 12px 17px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.treatment-picker-row:last-child {
  border-bottom: 0;
}
.treatment-picker-row.is-selected {
  background: #f8f4ef;
}
.treatment-picker-row[hidden] {
  display: none !important;
}
.treatment-picker-row > input {
  width: auto !important;
  margin: 0;
}
.treatment-picker-row__copy {
  display: grid;
  gap: 2px;
}
.treatment-picker-row__copy strong {
  font-size: 13px;
}
.treatment-picker-row__copy small {
  color: var(--muted);
  font-size: 11px;
}
.treatment-picker-row__order {
  display: flex;
  gap: 4px;
}
.treatment-picker-row__order button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  cursor: pointer;
}
.treatment-related-box > .field-help {
  display: block;
  margin: 0;
  padding: 12px 17px;
  border-top: 1px solid var(--line);
}
.treatment-admin-savebar {
  position: sticky;
  bottom: 14px;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 23, 25, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 50px rgba(17, 23, 25, 0.12);
  backdrop-filter: blur(14px);
}
.treatment-admin-savebar > div {
  display: grid;
  gap: 2px;
}
.treatment-admin-savebar span {
  color: var(--muted);
  font-size: 12px;
}
.treatment-admin-list__filters {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(180px, 260px);
  gap: 16px;
  margin-bottom: 16px;
}
.treatment-admin-table-wrap {
  overflow-x: auto;
}
.treatment-admin-table__slug {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}
.treatment-admin-table__actions {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.treatment-admin-table__actions form {
  margin: 0;
}
.treatment-admin-status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}
.treatment-admin-status.is-active {
  background: #eff7ed;
  color: #2d6a22;
}
.treatment-admin-status.is-inactive {
  background: #f0f1f1;
  color: #687176;
}

@media (max-width: 900px) {
  .treatment-admin-grid--2,
  .treatment-admin-grid--3,
  .treatment-related-box__head,
  .treatment-admin-list__filters {
    grid-template-columns: 1fr;
  }
  .treatment-media-item {
    grid-template-columns: 140px minmax(0, 1fr);
  }
  .treatment-admin-switch {
    align-self: auto;
  }
}

@media (max-width: 620px) {
  .treatment-admin-heading__actions {
    width: 100%;
    justify-content: flex-start;
  }
  .treatment-admin-tabs {
    margin-inline: -4px;
    border-radius: 12px;
  }
  .treatment-rich-field__head,
  .treatment-admin-savebar,
  .treatment-faq-item__header {
    align-items: stretch;
    flex-direction: column;
  }
  .treatment-media-item {
    grid-template-columns: 1fr;
  }
  .treatment-media-item__preview {
    min-height: 210px;
  }
  .treatment-picker-row {
    grid-template-columns: auto minmax(0, 1fr);
  }
  .treatment-picker-row__order {
    grid-column: 2;
  }
  .treatment-admin-savebar {
    bottom: 8px;
  }
  .treatment-admin-savebar .button {
    width: 100%;
  }
}

/* Batch 8C.3 — Treatment Page Section Composer */
.treatment-v1-prose {
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.76;
}

.treatment-v1-prose--hero {
  margin-top: 24px;
}

.treatment-v1-hero-subtitle {
  margin: 30px 0 0;
  color: #e0bd75;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  font-weight: 500;
  line-height: 1.35;
}

.treatment-v1-band--reviews {
  background:
    radial-gradient(
      circle at 20% 12%,
      rgba(190, 140, 60, 0.06),
      transparent 30%
    ),
    #fffaf1;
}

.treatment-v1-review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.treatment-v1-review-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #eadbc4;
  background: #fff4df;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.06);
}

.treatment-v1-review-card__head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
}

.treatment-v1-review-avatar,
.treatment-v1-review-avatar-image {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
}

.treatment-v1-review-avatar {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #c69a55;
  color: #fff;
  font-weight: 600;
}

.treatment-v1-review-avatar-image {
  display: block;
  object-fit: cover;
}

.treatment-v1-review-card__head strong {
  min-width: 0;
  color: #8f612c;
  font-weight: 600;
}

.treatment-v1-review-google-logo {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-left: auto;
  object-fit: contain;
}

.treatment-v1-review-stars {
  margin-bottom: 14px;
  color: #bb8332;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
}

.treatment-v1-review-card blockquote {
  margin: 0;
  color: #3e3a35;
  font-size: 1.04rem;
  line-height: 1.75;
}

.treatment-section-composer {
  display: grid;
  gap: 12px;
}

.treatment-section-composer [data-section-composer-list] {
  display: grid;
  gap: 12px;
}

.treatment-section-composer__row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--admin-line, #ddd);
  border-radius: 12px;
  background: #fff;
}

.treatment-section-composer__row.is-fixed {
  margin-bottom: 6px;
  border-color: rgba(187, 131, 50, 0.35);
  background: rgba(187, 131, 50, 0.06);
}

.treatment-section-composer__position {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f3eee6;
  color: #77552f;
  font-weight: 700;
}

.treatment-section-composer__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.treatment-section-composer__copy strong {
  color: var(--admin-ink, #222);
}

.treatment-section-composer__copy small {
  color: var(--admin-muted, #777);
}

.treatment-section-composer__badge {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(191, 162, 122, 0.16);
  color: #795b36;
  font-size: 0.72rem;
  font-weight: 650;
}

.treatment-section-composer__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 760px) {
  .treatment-v1-prose {
    font-size: 1.04rem;
  }
  .treatment-v1-review-grid {
    grid-template-columns: 1fr;
  }
  .treatment-section-composer__row {
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .treatment-section-composer__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}
/* Batch 8C.3A — treatment text/media rhythm correction */
@media (min-width: 981px) {
  .treatment-v1-hero,
  .treatment-v1-story {
    align-items: center;
  }

  .treatment-v1-hero__media,
  .treatment-v1-story__media {
    align-self: center;
    width: 100%;
    height: clamp(520px, 43vw, 690px);
    min-height: 0;
  }

  .treatment-v1-hero__media img,
  .treatment-v1-story__media img,
  .treatment-v1-media-fallback {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .treatment-v1-hero__media,
  .treatment-v1-story__media {
    height: min(78vw, 620px);
    min-height: 0;
  }

  .treatment-v1-hero__media img,
  .treatment-v1-story__media img,
  .treatment-v1-media-fallback {
    min-height: 0;
  }
}

/* =========================================================
   Batch 8D.2A — Treatment overview alignment with Homepage V1
   Scope is intentionally limited to .treatment-overview-v1-page.
   ========================================================= */

.site-main > article.treatment-overview-v1-page {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.treatment-overview-v1-page {
  --overview-gold-a: #a4692a;
  --overview-gold-b: #be8c3c;
  --overview-gold-c: #d3b15f;
  --overview-gold-d: #faf0a0;
  --overview-gold-e: #bb8332;
  --overview-dark: #4f4f4f;
  --overview-dark-deep: #3f3f3f;
  overflow: hidden;
  background: #fff;
  color: #333;
}

.treatment-overview-v1-page *,
.treatment-overview-v1-page *::before,
.treatment-overview-v1-page *::after {
  box-sizing: border-box;
}

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

.treatment-overview-v1-container--text {
  width: min(860px, calc(100% - 48px));
}

.treatment-overview-v1-band {
  position: relative;
  padding: clamp(58px, 7vw, 96px) 0;
}

.treatment-overview-v1-band--dark {
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.treatment-overview-v1-band--dark-deep {
  color: #fff;
  background: radial-gradient(
    circle at 45% 32%,
    #656565 0%,
    #505050 45%,
    #444 77%,
    #3d3d3d 100%
  );
}

.treatment-overview-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

.treatment-overview-v1-heading {
  max-width: 1500px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.treatment-overview-v1-heading--center {
  margin-inline: auto;
  text-align: center;
}

.treatment-overview-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.treatment-overview-v1-page h1.treatment-overview-v1-gold-title {
  max-width: 1500px;
  margin-inline: auto;
}

.treatment-overview-v1-lead {
  max-width: 760px;
  margin: 22px auto 0;
  color: #555;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.treatment-overview-v1-lead--light {
  color: rgba(255, 255, 255, 0.82);
}

.treatment-overview-v1-grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 30px);
}

.treatment-overview-v1-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.treatment-overview-v1-card {
  min-width: 0;
}

.treatment-overview-v1-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(32, 32, 32, 0.34);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.treatment-overview-v1-card > a:hover {
  transform: translateY(-3px);
  border-color: rgba(211, 177, 95, 0.55);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.2);
}

.treatment-overview-v1-card img,
.treatment-overview-v1-card-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.treatment-overview-v1-card-fallback {
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 38% 32%, #777, #555 58%, #444);
}

.treatment-overview-v1-card__body {
  display: grid;
  gap: 9px;
  padding: 20px 18px 22px;
}

.treatment-overview-v1-card__body strong {
  color: #e0bd75;
  font-size: 1.03rem;
  font-weight: 500;
  line-height: 1.35;
}

.treatment-overview-v1-card__body small {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.55;
}

.treatment-overview-v1-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(32, 32, 32, 0.28);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.treatment-overview-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.treatment-overview-v1-actions--center {
  justify-content: center;
}

.treatment-overview-v1-page .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.treatment-overview-v1-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
  transform: none;
}

.treatment-overview-v1-page .treatment-overview-v1-button--outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
}

.treatment-overview-v1-page .treatment-overview-v1-button--outline:hover {
  border-color: #bb8332;
  background: #bb8332;
  color: #fff;
}

.treatment-overview-v1-cta .treatment-overview-v1-heading {
  margin-bottom: 0;
}

.treatment-overview-v1-page a:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .treatment-overview-v1-grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .treatment-overview-v1-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-overview-v1-container,
  .treatment-overview-v1-container--text {
    width: min(100% - 32px, 1240px);
  }
}

@media (max-width: 560px) {
  .treatment-overview-v1-container,
  .treatment-overview-v1-container--text {
    width: min(100% - 24px, 1240px);
  }

  .treatment-overview-v1-band {
    padding: 50px 0;
  }

  .treatment-overview-v1-grid--4 {
    grid-template-columns: 1fr;
  }

  .treatment-overview-v1-grid--4 .treatment-overview-v1-card img,
  .treatment-overview-v1-grid--4 .treatment-overview-v1-card-fallback {
    aspect-ratio: 16 / 10;
  }

  .treatment-overview-v1-card img,
  .treatment-overview-v1-card-fallback {
    aspect-ratio: 16 / 10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .treatment-overview-v1-page *,
  .treatment-overview-v1-page *::before,
  .treatment-overview-v1-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   Batch 8E.1A — Doctor biography parity enrichment
   Scope is intentionally limited to .doctor-v1-page.
   ========================================================= */

.doctor-v1-page {
  overflow: hidden;
  background: #fff;
  color: #333;
}

.doctor-v1-page *,
.doctor-v1-page *::before,
.doctor-v1-page *::after {
  box-sizing: border-box;
}

.site-main > article.doctor-v1-page {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

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

.doctor-v1-container--narrow {
  width: min(1120px, calc(100% - 48px));
}

.doctor-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

.doctor-v1-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.95fr);
  min-height: clamp(520px, 58vw, 700px);
}

.doctor-v1-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px);
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.doctor-v1-hero__media {
  min-height: 420px;
  overflow: hidden;
  background: #ddd;
}

.doctor-v1-hero__media img,
.doctor-v1-media-fallback {
  width: 100%;
  height: 100%;
}

.doctor-v1-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center top;
}

.doctor-v1-media-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #6b6b6b, #4b4b4b);
  color: #d3b15f;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
}

.doctor-v1-kicker {
  margin: 0 0 12px;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.doctor-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.doctor-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.doctor-v1-hero h1 {
  max-width: 820px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.doctor-v1-lead,
.doctor-v1-band-lead {
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.85;
}

.doctor-v1-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.doctor-v1-band-lead {
  max-width: 860px;
  margin: 18px auto 0;
  color: #5d5d5d;
}

.doctor-v1-band-lead--light {
  color: rgba(255, 255, 255, 0.82);
}

.doctor-v1-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.doctor-v1-highlight-list span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(24, 24, 24, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.45;
}

.doctor-v1-band {
  padding: clamp(60px, 7vw, 92px) 0;
}

.doctor-v1-band--white {
  color: #373737;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.doctor-v1-band--dark {
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.doctor-v1-heading {
  max-width: 980px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.doctor-v1-heading--center {
  margin-inline: auto;
  text-align: center;
}

.doctor-v1-bio-list {
  border-top: 1px solid rgba(190, 140, 60, 0.45);
}

.doctor-v1-bio-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(30px, 5vw, 74px);
  padding: clamp(34px, 4.5vw, 56px) 0;
  border-bottom: 1px solid rgba(190, 140, 60, 0.45);
}

.doctor-v1-bio-row__heading {
  align-self: start;
}

.doctor-v1-bio-row__number {
  display: block;
  margin-bottom: 12px;
  color: #bb8332;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.doctor-v1-bio-row h3 {
  margin: 0;
  color: #8f5b20;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
}

.doctor-v1-bio-row__body {
  max-width: 760px;
}

.doctor-v1-bio-row__body p {
  margin: 0 0 1.25em;
  color: #4c4c4c;
  font-size: 1rem;
  line-height: 1.85;
}

.doctor-v1-bio-row__body p:last-child {
  margin-bottom: 0;
}

.doctor-v1-team-grid,
.doctor-v1-treatment-grid,
.doctor-v1-review-grid {
  display: grid;
  gap: 20px;
}

.doctor-v1-team-grid,
.doctor-v1-review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doctor-v1-treatment-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.doctor-v1-team-card,
.doctor-v1-treatment-card,
.doctor-v1-treatment-card > a {
  height: 100%;
}

.doctor-v1-team-card,
.doctor-v1-treatment-card,
.doctor-v1-review-card {
  overflow: hidden;
}

.doctor-v1-team-card,
.doctor-v1-treatment-card > a {
  display: flex;
  flex-direction: column;
}

.doctor-v1-team-card,
.doctor-v1-treatment-card > a,
.doctor-v1-review-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.doctor-v1-team-card img,
.doctor-v1-treatment-card img,
.doctor-v1-card-fallback {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.doctor-v1-team-card img,
.doctor-v1-treatment-card img {
  display: block;
  object-fit: cover;
}

.doctor-v1-card-fallback {
  display: block;
  background: linear-gradient(145deg, #efefef, #dcdcdc);
}

.doctor-v1-card-fallback--dark {
  background: linear-gradient(145deg, #666, #4d4d4d);
}

.doctor-v1-team-card__body,
.doctor-v1-treatment-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 18px;
}

.doctor-v1-team-card__body strong,
.doctor-v1-treatment-card__body strong {
  color: #c99543;
  font-size: 1.05rem;
  line-height: 1.45;
}

.doctor-v1-team-card__body p,
.doctor-v1-treatment-card__body small {
  margin: 0;
  color: #4b4b4b;
  line-height: 1.7;
}

.doctor-v1-treatment-card > a {
  text-decoration: none;
}

.doctor-v1-treatment-card--dark > a {
  background: rgba(39, 39, 39, 0.55);
}

.doctor-v1-treatment-card--dark .doctor-v1-treatment-card__body small {
  color: rgba(255, 255, 255, 0.78);
}

.doctor-v1-treatment-card--dark .doctor-v1-treatment-card__body strong,
.doctor-v1-team-card__body strong {
  color: #d3b15f;
}

.doctor-v1-review-card {
  padding: 24px 22px;
}

.doctor-v1-review-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}

.doctor-v1-review-card__meta strong {
  color: #8f5b20;
  font-size: 1.02rem;
}

.doctor-v1-review-card__meta span {
  color: #8a8a8a;
  font-size: 0.92rem;
}

.doctor-v1-review-card p {
  margin: 0;
  color: #4e4e4e;
  line-height: 1.8;
}

.doctor-v1-feature-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 34px;
}

.doctor-v1-feature-split__media img,
.doctor-v1-feature-split__media .doctor-v1-card-fallback {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.doctor-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.doctor-v1-actions--center {
  justify-content: center;
}

.doctor-v1-page .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.doctor-v1-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
  transform: none;
}

.doctor-v1-page .doctor-v1-button--outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
}

.doctor-v1-page .doctor-v1-button--outline:hover {
  border-color: #d3b15f;
  background: rgba(211, 177, 95, 0.1);
}

.doctor-v1-page a:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .doctor-v1-team-grid,
  .doctor-v1-review-grid,
  .doctor-v1-treatment-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-v1-feature-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .doctor-v1-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .doctor-v1-hero__media {
    min-height: min(78vw, 620px);
  }
}

@media (max-width: 640px) {
  .doctor-v1-container,
  .doctor-v1-container--narrow {
    width: min(100% - 24px, 1240px);
  }

  .doctor-v1-hero__copy {
    padding: 54px 22px 60px;
  }

  .doctor-v1-team-grid,
  .doctor-v1-review-grid,
  .doctor-v1-treatment-grid--4,
  .doctor-v1-highlight-list {
    grid-template-columns: 1fr;
  }

  .doctor-v1-highlight-list {
    display: grid;
  }

  .doctor-v1-band {
    padding: 52px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .doctor-v1-page *,
  .doctor-v1-page *::before,
  .doctor-v1-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   Batch 8E.2 — Team page visual parity
   Scope is intentionally limited to .team-v1-page.
   ========================================================= */

.site-main > article.team-v1-page {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.team-v1-page {
  overflow: hidden;
  background: #fff;
  color: #333;
}

.team-v1-page *,
.team-v1-page *::before,
.team-v1-page *::after {
  box-sizing: border-box;
}

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

.team-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

.team-v1-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.9fr);
  min-height: clamp(520px, 58vw, 700px);
}

.team-v1-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 104px);
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.team-v1-hero__media {
  min-height: 440px;
  overflow: hidden;
  background: #ddd;
}

.team-v1-hero__media img,
.team-v1-media-fallback {
  width: 100%;
  height: 100%;
}

.team-v1-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-v1-media-fallback {
  display: grid;
  min-height: 100%;
  place-items: center;
  background: linear-gradient(145deg, #6b6b6b, #4b4b4b);
  color: #d3b15f;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
}

.team-v1-kicker {
  margin: 0 0 12px;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.team-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.team-v1-hero h1 {
  max-width: 820px;
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.team-v1-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.team-v1-band {
  padding: clamp(62px, 7vw, 96px) 0;
}

.team-v1-band--white {
  color: #373737;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.team-v1-band--dark {
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.team-v1-heading {
  max-width: 920px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.team-v1-heading--center {
  margin-inline: auto;
  text-align: center;
}

.team-v1-band-lead {
  max-width: 790px;
  margin: 20px auto 0;
  color: #5b5b5b;
  font-size: 1.02rem;
  line-height: 1.75;
}

.team-v1-band-lead--light {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.82);
}

.team-v1-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.team-v1-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e7e0d6;
  background: #fff;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
}

.team-v1-card img,
.team-v1-avatar-fallback {
  width: 100%;
  aspect-ratio: 4 / 4.5;
}

.team-v1-card img {
  display: block;
  object-fit: cover;
  object-position: center top;
}

.team-v1-avatar-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #6b6b6b, #4b4b4b);
  color: #d3b15f;
  font-size: 3.5rem;
  font-weight: 300;
}

.team-v1-card__body {
  padding: 20px 18px 22px;
}

.team-v1-card h3 {
  margin: 0;
  color: #8f6028;
  font-size: 1.13rem;
  line-height: 1.4;
}

.team-v1-card p {
  margin: 11px 0 0;
  color: #626262;
  font-size: 0.94rem;
  line-height: 1.7;
}

.team-v1-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}

.team-v1-feature-media {
  min-height: 360px;
  overflow: hidden;
}

.team-v1-feature-media a,
.team-v1-feature-media img,
.team-v1-feature-media .team-v1-media-fallback {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.team-v1-feature-media img {
  object-fit: cover;
}

.team-v1-copy {
  padding-block: 20px;
}

.team-v1-address {
  margin: 20px 0 0;
  color: #ead2a8;
  font-weight: 500;
}

.team-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.team-v1-page .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.team-v1-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
}

.team-v1-page .team-v1-button--outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
}

.team-v1-page .team-v1-button--outline:hover {
  border-color: #d3b15f;
  background: rgba(211, 177, 95, 0.1);
}

.team-v1-page a:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .team-v1-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .team-v1-hero,
  .team-v1-split {
    grid-template-columns: 1fr;
  }

  .team-v1-hero {
    min-height: 0;
  }

  .team-v1-hero__media {
    min-height: min(78vw, 620px);
  }
}

@media (max-width: 560px) {
  .team-v1-container {
    width: min(100% - 24px, 1240px);
  }

  .team-v1-hero__copy {
    padding: 54px 22px 60px;
  }

  .team-v1-grid {
    grid-template-columns: 1fr;
  }

  .team-v1-band {
    padding: 52px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-v1-page *,
  .team-v1-page *::before,
  .team-v1-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   Batch 8E.3 — Virtual Tour page
   Scope is intentionally limited to .virtual-tour-v1-page.
   ========================================================= */

.site-main > article.virtual-tour-v1-page {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.virtual-tour-v1-page {
  overflow: hidden;
  background: #fff;
  color: #333;
}

.virtual-tour-v1-page *,
.virtual-tour-v1-page *::before,
.virtual-tour-v1-page *::after {
  box-sizing: border-box;
}

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

.virtual-tour-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

.virtual-tour-v1-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 1fr);
  min-height: clamp(510px, 57vw, 690px);
}

.virtual-tour-v1-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 100px);
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.virtual-tour-v1-hero__media,
.virtual-tour-v1-feature-media {
  position: relative;
  overflow: hidden;
  background: #4a4a4a;
}

.virtual-tour-v1-hero__media > a,
.virtual-tour-v1-feature-media > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.virtual-tour-v1-hero__media img,
.virtual-tour-v1-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.virtual-tour-v1-hero__media img {
  min-height: 510px;
}

.virtual-tour-v1-feature-media img {
  min-height: 390px;
}

.virtual-tour-v1-kicker {
  margin: 0 0 12px;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.virtual-tour-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.virtual-tour-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.virtual-tour-v1-hero h1 {
  max-width: 850px;
  font-size: clamp(2.65rem, 5vw, 4.7rem);
}

.virtual-tour-v1-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
}

.virtual-tour-v1-band {
  padding: clamp(60px, 7vw, 94px) 0;
}

.virtual-tour-v1-band--white {
  color: #373737;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.virtual-tour-v1-band--dark {
  color: #fff;
  background: radial-gradient(
    circle at 45% 32%,
    #656565 0%,
    #505050 45%,
    #444 77%,
    #3d3d3d 100%
  );
}

.virtual-tour-v1-heading {
  max-width: 920px;
  margin-bottom: clamp(32px, 5vw, 54px);
}

.virtual-tour-v1-heading--center {
  margin-inline: auto;
  text-align: center;
}

.virtual-tour-v1-band-lead {
  max-width: 790px;
  margin: 20px auto 0;
  color: #5b5b5b;
  font-size: 1.02rem;
  line-height: 1.78;
}

.virtual-tour-v1-band-lead--light {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.82);
}

.virtual-tour-v1-band-lead--left {
  margin-inline: 0;
}

.virtual-tour-v1-space-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.virtual-tour-v1-space-card {
  min-height: 220px;
  padding: 26px 22px;
  border: 1px solid #e7e0d6;
  background: #fff;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
}

.virtual-tour-v1-space-card > span {
  display: block;
  margin-bottom: 20px;
  color: #c0954f;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.virtual-tour-v1-space-card h3 {
  margin: 0;
  color: #8f6028;
  font-size: 1.12rem;
}

.virtual-tour-v1-space-card p {
  margin: 12px 0 0;
  color: #626262;
  line-height: 1.7;
}

.virtual-tour-v1-split {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.virtual-tour-v1-feature-media {
  min-height: 390px;
}

.virtual-tour-v1-copy {
  padding-block: 20px;
}

.virtual-tour-v1-360-badge {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(44, 44, 44, 0.66);
  color: #f1d89e;
  font-size: 1.25rem;
  font-weight: 500;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}

.virtual-tour-v1-360-badge--large {
  width: 96px;
  height: 96px;
  font-size: 1.45rem;
}

.virtual-tour-v1-media-fallback {
  display: grid !important;
  min-height: 390px;
  place-items: center;
  background: linear-gradient(145deg, #686868, #424242);
  color: #d3b15f;
  text-decoration: none;
}

.virtual-tour-v1-media-fallback span {
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
}

.virtual-tour-v1-visit {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 40px;
}

.virtual-tour-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.virtual-tour-v1-actions--end {
  justify-content: flex-end;
  margin-top: 0;
}

.virtual-tour-v1-page .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.virtual-tour-v1-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
}

.virtual-tour-v1-page .virtual-tour-v1-button--outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
}

.virtual-tour-v1-page .virtual-tour-v1-button--outline:hover {
  border-color: #d3b15f;
  background: rgba(211, 177, 95, 0.1);
}

.virtual-tour-v1-page .virtual-tour-v1-button--light-outline {
  border-color: #c69a55;
  background: transparent;
  color: #795124;
}

.virtual-tour-v1-page .virtual-tour-v1-button--light-outline:hover {
  border-color: #a4692a;
  background: #fff4df;
  color: #6e481e;
}

.virtual-tour-v1-page a:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .virtual-tour-v1-space-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .virtual-tour-v1-visit {
    grid-template-columns: 1fr;
  }

  .virtual-tour-v1-actions--end {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .virtual-tour-v1-hero,
  .virtual-tour-v1-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .virtual-tour-v1-hero__media img {
    min-height: min(74vw, 600px);
  }
}

@media (max-width: 560px) {
  .virtual-tour-v1-container {
    width: min(100% - 24px, 1240px);
  }

  .virtual-tour-v1-hero__copy {
    padding: 54px 22px 60px;
  }

  .virtual-tour-v1-space-grid {
    grid-template-columns: 1fr;
  }

  .virtual-tour-v1-space-card {
    min-height: 0;
  }

  .virtual-tour-v1-band {
    padding: 52px 0;
  }

  .virtual-tour-v1-360-badge {
    right: 18px;
    bottom: 18px;
    width: 70px;
    height: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .virtual-tour-v1-page *,
  .virtual-tour-v1-page *::before,
  .virtual-tour-v1-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   Batch 8E.4A — Clinic page lightbox / gallery / contact polish
   Scope is intentionally limited to .clinic-v1-page.
   ========================================================= */

.site-main > article.clinic-v1-page {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.clinic-v1-page {
  overflow: hidden;
  background: #fff;
  color: #333;
}

.clinic-v1-page *,
.clinic-v1-page *::before,
.clinic-v1-page *::after {
  box-sizing: border-box;
}

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

.clinic-v1-container--text {
  width: min(940px, calc(100% - 48px));
}

.clinic-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

.clinic-v1-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 1fr);
  min-height: clamp(540px, 60vw, 720px);
}

.clinic-v1-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 104px);
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.clinic-v1-hero__media {
  min-height: 460px;
  overflow: hidden;
  background: #ddd;
}

.clinic-v1-hero__media img,
.clinic-v1-media-fallback {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.clinic-v1-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.clinic-v1-media-fallback {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #6b6b6b, #4b4b4b);
  color: #d3b15f;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
}

.clinic-v1-kicker {
  margin: 0 0 12px;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clinic-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.clinic-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.clinic-v1-hero h1 {
  max-width: 830px;
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
}

.clinic-v1-lead,
.clinic-v1-band-lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

.clinic-v1-lead {
  max-width: 790px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.clinic-v1-band-lead {
  max-width: 820px;
  margin: 18px auto 0;
  color: #5b5b5b;
}

.clinic-v1-band-lead--light {
  color: rgba(255, 255, 255, 0.8);
}

.clinic-v1-band-lead--left {
  margin-inline: 0;
}

.clinic-v1-band {
  padding: clamp(60px, 7vw, 96px) 0;
}

.clinic-v1-band--white {
  color: #373737;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.clinic-v1-band--dark {
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.clinic-v1-band--dark-deep {
  color: #fff;
  background: radial-gradient(
    circle at 45% 32%,
    #656565 0%,
    #505050 45%,
    #444 77%,
    #3d3d3d 100%
  );
}

.clinic-v1-heading {
  max-width: 940px;
  margin-bottom: clamp(30px, 5vw, 56px);
}

.clinic-v1-heading--center {
  margin-inline: auto;
  text-align: center;
}

.clinic-v1-prose {
  color: #474747;
  font-size: 1.04rem;
  line-height: 1.85;
}

.clinic-v1-prose p {
  margin: 0 0 1.35em;
}

.clinic-v1-prose p:last-child {
  margin-bottom: 0;
}

.clinic-v1-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.clinic-v1-gallery__item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(30, 30, 30, 0.32);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.clinic-v1-gallery__item a,
.clinic-v1-gallery__item img {
  display: block;
  width: 100%;
}

.clinic-v1-gallery__link {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.clinic-v1-gallery__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(25, 25, 25, 0.58);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    background-color 0.22s ease;
}

.clinic-v1-gallery__zoom > span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  transform: translate(-2px, -2px);
  border: 2px solid #f1d99d;
  border-radius: 50%;
}

.clinic-v1-gallery__zoom > span::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  background: #f1d99d;
  transform: rotate(45deg);
  transform-origin: left center;
}

.clinic-v1-gallery__link:hover .clinic-v1-gallery__zoom,
.clinic-v1-gallery__link:focus-visible .clinic-v1-gallery__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(164, 105, 42, 0.82);
}

.clinic-v1-gallery__item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.clinic-v1-gallery__item a:hover img {
  transform: scale(1.025);
  opacity: 0.92;
}

.clinic-v1-band--split {
  padding: 0;
}

.clinic-v1-band--split > .clinic-v1-container {
  width: 100%;
  max-width: none;
}

.clinic-v1-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 520px;
}

.clinic-v1-feature-media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #ddd;
}

.clinic-v1-feature-media > a,
.clinic-v1-feature-media img,
.clinic-v1-feature-media .clinic-v1-media-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.clinic-v1-feature-media img {
  object-fit: cover;
}

.clinic-v1-360-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(55, 55, 55, 0.62);
  color: #f1d99d;
  font-size: 1.4rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.clinic-v1-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 92px);
}

.clinic-v1-copy--light {
  background: #fff;
}

.clinic-v1-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clinic-v1-info-grid article {
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(30, 30, 30, 0.28);
}

.clinic-v1-info-grid__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(211, 177, 95, 0.45);
  border-radius: 50%;
  color: #d3b15f;
  font-size: 1.2rem;
}

.clinic-v1-info-grid h3 {
  margin: 0;
  color: #f4dfad;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.55;
}

.clinic-v1-info-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.clinic-v1-info-grid a {
  color: inherit;
}

.clinic-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.clinic-v1-actions--center {
  justify-content: center;
}

.clinic-v1-page .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.clinic-v1-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
  transform: none;
}

.clinic-v1-page .clinic-v1-button--outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
}

.clinic-v1-page .clinic-v1-button--light-outline {
  border-color: #c69a55;
  background: transparent;
  color: #8f6028;
}

.clinic-v1-page .clinic-v1-button--light-outline:hover {
  color: #fff;
}

.clinic-v1-page a:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

.clinic-v1-lightbox-open {
  overflow: hidden;
}

.clinic-v1-lightbox[hidden] {
  display: none;
}

.clinic-v1-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 58px 92px 34px;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(4px);
}

.clinic-v1-lightbox__stage {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: min(1500px, 100%);
  height: calc(100vh - 92px);
  min-width: 0;
  gap: 12px;
  justify-items: center;
}

.clinic-v1-lightbox__stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: transparent;
}

.clinic-v1-lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

/* Shared lightbox controls */
.clinic-v1-lightbox__close,
.clinic-v1-lightbox__nav {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(211, 177, 95, 0.58);
  border-radius: 50%;
  background: rgba(28, 28, 28, 0.72);
  color: #f1d99d;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.clinic-v1-lightbox__close:hover,
.clinic-v1-lightbox__nav:hover {
  border-color: #f1d99d;
  background: rgba(164, 105, 42, 0.9);
}

/* CSS X — no Font Awesome */
.clinic-v1-lightbox__close {
  top: 20px;
  right: 22px;
}

.clinic-v1-lightbox__close span {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

.clinic-v1-lightbox__close span::before,
.clinic-v1-lightbox__close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.clinic-v1-lightbox__close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.clinic-v1-lightbox__close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Navigation */
.clinic-v1-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
}

.clinic-v1-lightbox__nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.clinic-v1-lightbox__nav--prev {
  left: 22px;
}

.clinic-v1-lightbox__nav--next {
  right: 22px;
}

/* CSS arrows — always perfectly centred */
.clinic-v1-lightbox__nav span {
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.clinic-v1-lightbox__nav--prev span {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.clinic-v1-lightbox__nav--next span {
  transform: rotate(45deg);
  margin-right: 5px;
}

@media (max-width: 900px) {
  .clinic-v1-lightbox {
    padding: 54px 14px 22px;
  }

  .clinic-v1-lightbox__stage {
    width: 100%;
    height: calc(100vh - 78px);
  }

  .clinic-v1-lightbox__close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .clinic-v1-lightbox__nav {
    width: 46px;
    height: 46px;
    background: rgba(20, 20, 20, 0.7);
  }

  .clinic-v1-lightbox__nav--prev {
    left: 6px;
  }

  .clinic-v1-lightbox__nav--next {
    right: 6px;
  }

  .clinic-v1-lightbox__caption {
    padding-inline: 42px;
    font-size: 0.8rem;
  }
}

@media (max-width: 1100px) {
  .clinic-v1-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .clinic-v1-hero,
  .clinic-v1-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .clinic-v1-hero__media,
  .clinic-v1-feature-media {
    min-height: min(76vw, 620px);
  }

  .clinic-v1-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .clinic-v1-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .clinic-v1-container,
  .clinic-v1-container--text {
    width: min(100% - 24px, 1240px);
  }

  .clinic-v1-hero__copy,
  .clinic-v1-copy {
    padding: 52px 22px 58px;
  }

  .clinic-v1-gallery {
    grid-template-columns: 1fr;
  }

  .clinic-v1-gallery__item img {
    aspect-ratio: 16 / 10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .clinic-v1-page *,
  .clinic-v1-page *::before,
  .clinic-v1-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   Batch 8E.5 — drmoutsoudis-v2 project-specific Contact page
   Scope is intentionally limited to .contact-v1-page.
   ========================================================= */

.site-main > article.contact-v1-page {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.contact-v1-page {
  overflow: hidden;
  background: #fff;
  color: #333;
}

.contact-v1-page *,
.contact-v1-page *::before,
.contact-v1-page *::after {
  box-sizing: border-box;
}

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

.contact-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

.contact-v1-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, 0.9fr);
  min-height: clamp(560px, 62vw, 730px);
}

.contact-v1-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 108px);
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.contact-v1-hero__media {
  min-height: 500px;
  overflow: hidden;
  background: #d7d7d7;
}

.contact-v1-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.contact-v1-kicker {
  margin: 0 0 12px;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-v1-kicker--dark {
  color: #9b6224;
}

.contact-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.contact-v1-hero h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 5.1vw, 4.9rem);
}

.contact-v1-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

.contact-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-v1-page .button {
  gap: 9px;
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.contact-v1-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
  transform: none;
}

.contact-v1-page .contact-v1-button--outline {
  border-color: rgba(255, 255, 255, 0.68);
  background: transparent;
  color: #fff;
}

.contact-v1-page .contact-v1-button--light-outline {
  border-color: #c69a55;
  background: transparent;
  color: #8f6028;
}

.contact-v1-page .contact-v1-button--light-outline:hover {
  color: #fff;
}

.contact-v1-band {
  padding: clamp(64px, 7vw, 100px) 0;
}

.contact-v1-band--white {
  color: #373737;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.contact-v1-heading {
  max-width: 940px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.contact-v1-heading--center {
  margin-inline: auto;
  text-align: center;
}

.contact-v1-band-lead {
  max-width: 820px;
  margin: 18px auto 0;
  color: #5b5b5b;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

.contact-v1-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-v1-info-grid article {
  min-height: 260px;
  padding: 30px 28px;
  border: 1px solid #e6ded2;
  background: #fff;
  box-shadow: 0 12px 34px rgba(60, 48, 34, 0.06);
}

.contact-v1-info-grid__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(187, 131, 50, 0.42);
  border-radius: 50%;
  color: #bb8332;
  font-size: 1.2rem;
}

.contact-v1-info-grid h3 {
  margin: 0;
  color: #8f6028;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.contact-v1-info-grid p {
  margin: 14px 0 0;
  color: #555;
  line-height: 1.75;
}

.contact-v1-info-grid article > a {
  display: inline-block;
  margin-top: 16px;
  color: #8f6028;
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-v1-phone-list {
  display: grid;
  gap: 5px;
}

.contact-v1-phone-list a {
  width: fit-content;
  color: #444;
  text-decoration: none;
}

.contact-v1-phone-list a:hover,
.contact-v1-info-grid article > a:hover {
  color: #bb8332;
}

.contact-v1-form-band {
  padding: 0;
  background: #4a4a4a;
}

#contact-form {
  scroll-margin-top: calc(var(--header-height, 90px) + 20px);
}

.contact-v1-form-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  min-height: 720px;
}

.contact-v1-form-aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 92px);
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #686868 0%,
    #535353 44%,
    #444 78%,
    #3f3f3f 100%
  );
}

.contact-v1-form-aside > p:not(.contact-v1-kicker) {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.contact-v1-direct {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-v1-direct__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(211, 177, 95, 0.48);
  border-radius: 50%;
  color: #d3b15f;
}

.contact-v1-direct strong {
  display: block;
  color: #f0d69c;
  font-weight: 600;
}

.contact-v1-direct p {
  margin: 7px 0 4px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.contact-v1-direct a {
  color: #fff;
  font-size: 1.16rem;
  text-decoration: none;
}

.contact-v1-form-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 6vw, 86px);
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    #fff;
}

.contact-v1-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid;
  line-height: 1.6;
}

.contact-v1-alert--success {
  border-color: #b7d9b7;
  background: #f0f8f0;
  color: #2f6236;
}

.contact-v1-alert--error {
  border-color: #e2b7b7;
  background: #fff2f2;
  color: #812f2f;
}

.contact-v1-alert i {
  margin-top: 4px;
}

.contact-v1-form {
  position: relative;
}

.contact-v1-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.contact-v1-field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.contact-v1-field--full {
  grid-column: 1 / -1;
}

.contact-v1-field > span {
  color: #4b4b4b;
  font-size: 0.86rem;
  font-weight: 650;
}

.contact-v1-field b {
  color: #a66d2d;
  font-weight: 700;
}

.contact-v1-field em {
  margin-left: 5px;
  color: #8a8a8a;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 400;
}

.contact-v1-field input,
.contact-v1-field textarea {
  width: 100%;
  border: 1px solid #d9d3cb;
  border-radius: 0;
  padding: 14px 15px;
  background: #fff;
  color: #303030;
  box-shadow: none;
}

.contact-v1-field input {
  min-height: 50px;
}

.contact-v1-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-v1-field input:focus,
.contact-v1-field textarea:focus {
  border-color: #bb8332;
  outline: 2px solid rgba(187, 131, 50, 0.18);
  outline-offset: 1px;
}

.contact-v1-field small,
.contact-v1-consent-error {
  color: #a53838;
  font-size: 0.79rem;
  line-height: 1.5;
}

.contact-v1-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 22px;
  color: #5d5d5d;
  font-size: 0.86rem;
  line-height: 1.65;
}

.contact-v1-consent input {
  width: 17px;
  height: 17px;
  margin: 4px 0 0;
  accent-color: #bb8332;
}

.contact-v1-consent a {
  color: #8f6028;
}

.contact-v1-consent-error {
  display: block;
  margin-top: 8px;
}

.contact-v1-consent-error[hidden] {
  display: none !important;
}

.contact-v1-submit {
  margin-top: 28px;
}

.contact-v1-tour {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 520px;
  background: #fff;
}

.contact-v1-tour__media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: #ddd;
}

.contact-v1-tour__media > a,
.contact-v1-tour__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-v1-tour__media img {
  object-fit: cover;
}

.contact-v1-360-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(55, 55, 55, 0.62);
  color: #f1d99d;
  font-size: 1.4rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.contact-v1-tour__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 92px);
}

.contact-v1-tour__copy > p:not(.contact-v1-kicker) {
  max-width: 650px;
  margin: 24px 0 0;
  color: #555;
  line-height: 1.8;
}

.contact-v1-page a:focus-visible,
.contact-v1-page button:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .contact-v1-hero,
  .contact-v1-form-layout,
  .contact-v1-tour {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-v1-hero__media,
  .contact-v1-tour__media {
    min-height: min(76vw, 620px);
  }

  .contact-v1-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-v1-info-grid article {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .contact-v1-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-v1-field--full {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .contact-v1-container {
    width: min(100% - 24px, 1240px);
  }

  .contact-v1-hero__copy,
  .contact-v1-form-aside,
  .contact-v1-form-panel,
  .contact-v1-tour__copy {
    padding: 52px 22px 58px;
  }

  .contact-v1-actions {
    display: grid;
  }

  .contact-v1-page .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-v1-page *,
  .contact-v1-page *::before,
  .contact-v1-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* Batch 8E.5A — Contact page clinic photo gallery */
.contact-v1-gallery-band {
  padding: clamp(64px, 7vw, 100px) 0;
  background: radial-gradient(
    circle at 50% 20%,
    #626262 0%,
    #535353 42%,
    #464646 100%
  );
}

.contact-v1-gallery-lead {
  max-width: 820px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.8;
}

.contact-v1-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.contact-v1-gallery__item {
  margin: 0;
  overflow: hidden;
  background: #393939;
}

.contact-v1-gallery__link {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-decoration: none;
}

.contact-v1-gallery__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}

.contact-v1-gallery__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(33, 33, 33, 0.16);
  color: #f2d99a;
  font-size: 1.15rem;
  opacity: 0;
  transition:
    opacity 0.22s ease,
    background-color 0.22s ease;
}

.contact-v1-gallery__link:hover img {
  transform: scale(1.035);
  filter: brightness(0.88);
}

.contact-v1-gallery__link:hover .contact-v1-gallery__zoom,
.contact-v1-gallery__link:focus-visible .contact-v1-gallery__zoom {
  opacity: 1;
  background: rgba(33, 33, 33, 0.36);
}

html.contact-v1-lightbox-open,
body.contact-v1-lightbox-open {
  overflow: hidden;
}

.contact-v1-lightbox[hidden] {
  display: none !important;
}

.contact-v1-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: minmax(54px, 96px) minmax(0, 1fr) minmax(54px, 96px);
  align-items: center;
  background: rgba(18, 18, 18, 0.96);
}

.contact-v1-lightbox__stage {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-height: 92vh;
  min-width: 0;
}

.contact-v1-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.contact-v1-lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  text-align: center;
}

.contact-v1-lightbox__close,
.contact-v1-lightbox__nav {
  border: 0;
  background: transparent;
  color: #f1d99d;
  cursor: pointer;
}

.contact-v1-lightbox__close {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  font-size: 1.25rem;
}

.contact-v1-lightbox__nav {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 1.4rem;
}

.contact-v1-lightbox__nav:hover,
.contact-v1-lightbox__close:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .contact-v1-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .contact-v1-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-v1-lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
  }

  .contact-v1-lightbox__close {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 520px) {
  .contact-v1-gallery {
    grid-template-columns: 1fr;
  }

  .contact-v1-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-v1-gallery__link img,
  .contact-v1-gallery__zoom {
    transition: none;
  }
}
/* =========================================================
   Batch 8E.5C — Contact feedback modal + email delivery status
   ========================================================= */
html.contact-v1-feedback-open,
body.contact-v1-feedback-open {
  overflow: hidden;
}

.contact-v1-feedback-modal[hidden] {
  display: none !important;
}

.contact-v1-feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-v1-feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.78);
  backdrop-filter: blur(4px);
}

.contact-v1-feedback-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: clamp(34px, 5vw, 56px);
  border-top: 3px solid #bb8332;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  color: #3f3f3f;
  outline: 0;
}

.contact-v1-feedback-modal__dialog--error {
  border-top-color: #a33d3d;
}

.contact-v1-feedback-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #777;
  cursor: pointer;
}

.contact-v1-feedback-modal__close:hover {
  color: #222;
}

.contact-v1-feedback-modal__icon {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(187, 131, 50, 0.46);
  border-radius: 50%;
  color: #a4692a;
  font-size: 1.65rem;
}

.contact-v1-feedback-modal__dialog--error .contact-v1-feedback-modal__icon {
  border-color: rgba(163, 61, 61, 0.34);
  color: #a33d3d;
}

.contact-v1-feedback-modal__dialog h2 {
  max-width: 520px;
  margin: 0;
  color: #8f6028;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.45rem);
  font-weight: 500;
  line-height: 1.15;
}

.contact-v1-feedback-modal__dialog--error h2 {
  color: #8d3434;
}

.contact-v1-feedback-modal__dialog > p:not(.contact-v1-kicker) {
  max-width: 520px;
  margin: 18px 0 0;
  color: #5c5c5c;
  line-height: 1.75;
}

.contact-v1-feedback-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-v1-feedback-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid;
  border-radius: 0;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.contact-v1-feedback-modal__button--primary {
  border-color: #bb8332;
  background: #bb8332;
  color: #fff;
}
.contact-v1-feedback-modal__button--primary:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
}
.contact-v1-feedback-modal__button--secondary {
  border-color: #cfc7bd;
  background: #fff;
  color: #555;
}
.contact-v1-feedback-modal__button--secondary:hover {
  border-color: #8f6028;
  color: #8f6028;
}

.email-delivery-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.email-delivery-pill--sent {
  border-color: #b9d9bd;
  background: #eff8f0;
  color: #2d6336;
}
.email-delivery-pill--failed {
  border-color: #e0b6b6;
  background: #fff1f1;
  color: #8d3030;
}
.email-delivery-pill--pending {
  border-color: #e4d3a6;
  background: #fff9e8;
  color: #7f641c;
}
.email-delivery-meta {
  display: -webkit-box;
  max-width: 300px;
  margin-top: 7px;
  overflow: hidden;
  color: #6b6b66;
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.email-delivery-meta--error {
  color: #8d3030;
}

.email-delivery-card {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e3e3dd;
}
.email-delivery-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.email-delivery-card__heading h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}
.email-delivery-card__details {
  display: grid;
  gap: 12px;
}
.email-delivery-card__details p {
  margin: 0;
  color: #5f5f5a;
  font-size: 13px;
  line-height: 1.6;
}
.email-delivery-card__details strong {
  display: block;
  margin-bottom: 3px;
  color: #2f2f2c;
}
.email-delivery-card__details code {
  display: block;
  padding: 8px 10px;
  border: 1px solid #e2e2dc;
  border-radius: 8px;
  background: #f8f8f5;
  color: #444;
  font-size: 11px;
  overflow-wrap: anywhere;
  white-space: normal;
}
.email-delivery-card__error {
  padding: 12px 14px;
  border: 1px solid #e2b9b9;
  border-radius: 10px;
  background: #fff3f3;
  color: #842f2f !important;
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .contact-v1-feedback-modal {
    padding: 14px;
  }
  .contact-v1-feedback-modal__dialog {
    max-height: calc(100vh - 28px);
    padding: 34px 22px 26px;
  }
  .contact-v1-feedback-modal__actions {
    display: grid;
  }
  .contact-v1-feedback-modal__button {
    width: 100%;
  }
}

/* =========================================================
   Batch 8E.5C FINAL — Hot Therapies page
   Scope is intentionally limited to .hot-therapies-v2-page.
   ========================================================= */
.site-main > article.hot-therapies-v2-page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hot-therapies-v2-page {
  overflow: hidden;
  background: #fff;
  color: #363636;
}

.hot-therapies-v2-page *,
.hot-therapies-v2-page *::before,
.hot-therapies-v2-page *::after {
  box-sizing: border-box;
}

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

.hot-therapies-v2-hero {
  padding: clamp(82px, 9vw, 138px) 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(190, 140, 60, 0.18),
      transparent 28%
    ),
    radial-gradient(circle at 20% 30%, #686868 0%, #525252 42%, #414141 100%);
}

.hot-therapies-v2-kicker {
  margin: 0 0 14px;
  color: #e2c287;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hot-therapies-v2-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #f0d293;
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.04;
}

.hot-therapies-v2-lead {
  max-width: 780px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.8;
}

.hot-therapies-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hot-therapies-v2-page .button {
  border-radius: 0;
  border-color: #bb8332;
  background: #bb8332;
}

.hot-therapies-v2-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  transform: none;
}

.hot-therapies-v2-page .hot-therapies-v2-button--outline {
  border-color: rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
}

.hot-therapies-v2-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 18%,
    #d3b15f 34%,
    #faf0a0 50%,
    #d3b15f 66%,
    #be8c3c 82%,
    #a4692a 100%
  );
}

.hot-therapies-v2-offers {
  padding: clamp(70px, 8vw, 118px) 0;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(190, 140, 60, 0.07),
      transparent 25%
    ),
    #f8f7f4;
}

.hot-therapies-v2-grid {
  display: grid;
  gap: 30px;
}

.hot-therapies-v2-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid #ded6ca;
  background: #fff;
  box-shadow: 0 18px 50px rgba(49, 39, 30, 0.07);
}

.hot-therapies-v2-card:nth-child(even) {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
}

.hot-therapies-v2-card:nth-child(even) .hot-therapies-v2-card__media {
  order: 2;
}

.hot-therapies-v2-card--no-image,
.hot-therapies-v2-card:nth-child(even).hot-therapies-v2-card--no-image {
  grid-template-columns: 1fr;
}

.hot-therapies-v2-card__media {
  min-height: 520px;
  background: #ddd;
}

.hot-therapies-v2-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hot-therapies-v2-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 70px);
}

.hot-therapies-v2-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e7e0d7;
}

.hot-therapies-v2-price > span {
  color: #8c7765;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hot-therapies-v2-price strong {
  color: #9b6224;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 500;
}

.hot-therapies-v2-price del {
  margin-right: 8px;
  color: #999;
  font-size: 0.58em;
  font-weight: 400;
}

.hot-therapies-v2-card__eyebrow {
  margin: 28px 0 8px;
  color: #a4692a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hot-therapies-v2-card h2 {
  margin: 0;
  color: #373737;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.8vw, 3.45rem);
  font-weight: 400;
  line-height: 1.08;
}

.hot-therapies-v2-description {
  margin: 22px 0 0;
  color: #5c5c5c;
  line-height: 1.8;
}

.hot-therapies-v2-facts {
  display: grid;
  gap: 0;
  margin-top: 30px;
  border-top: 1px solid #e7e0d7;
}

.hot-therapies-v2-facts > div {
  display: grid;
  grid-template-columns: minmax(150px, 0.7fr) 1.3fr;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #eee8e0;
}

.hot-therapies-v2-facts span {
  color: #887764;
  font-size: 0.8rem;
  font-weight: 650;
}

.hot-therapies-v2-facts strong {
  color: #444;
  font-size: 0.88rem;
  font-weight: 500;
}

.hot-therapies-v2-card__cta {
  width: fit-content;
  margin-top: 28px;
  color: #936128;
  font-weight: 700;
  text-decoration: none;
}

.hot-therapies-v2-card__cta:hover {
  color: #bb8332;
}

.hot-therapies-v2-note {
  margin: 24px 0 0;
  color: #777;
  font-size: 0.78rem;
}

.hot-therapies-v2-footer-cta {
  padding: clamp(72px, 8vw, 116px) 0;
  color: #fff;
  background: radial-gradient(
    circle at 50% 30%,
    #595959 0%,
    #484848 50%,
    #3e3e3e 100%
  );
}

.hot-therapies-v2-footer-cta h2 {
  max-width: 780px;
  margin: 0;
  color: #e5c684;
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
}

.hot-therapies-v2-footer-cta > div > p:not(.hot-therapies-v2-kicker) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .hot-therapies-v2-card,
  .hot-therapies-v2-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .hot-therapies-v2-card:nth-child(even) .hot-therapies-v2-card__media {
    order: 0;
  }

  .hot-therapies-v2-card__media {
    min-height: min(70vw, 520px);
  }
}

@media (max-width: 560px) {
  .hot-therapies-v2-container {
    width: min(100% - 24px, 1240px);
  }

  .hot-therapies-v2-actions {
    display: grid;
  }

  .hot-therapies-v2-page .button {
    width: 100%;
  }

  .hot-therapies-v2-facts > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hot-therapies-v2-card__body {
    padding: 34px 22px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hot-therapies-v2-page *,
  .hot-therapies-v2-page *::before,
  .hot-therapies-v2-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   Batch 8E.6A — Privacy Policy migration
   Scope is intentionally limited to .privacy-v2-page.
   ========================================================= */
.site-main > article.privacy-v2-page {
  width: 100%;
  max-width: none;
  margin: 0;
}
.privacy-v2-page {
  overflow: clip;
  background: #fff;
  color: #3f3f3f;
}
.privacy-v2-page *,
.privacy-v2-page *::before,
.privacy-v2-page *::after {
  box-sizing: border-box;
}
.privacy-v2-container {
  width: min(1500px, calc(100% - 40px));
  margin-inline: auto;
}
.privacy-v2-container--narrow {
  width: min(920px, calc(100% - 48px));
}
.privacy-v2-hero {
  padding: clamp(80px, 9vw, 132px) 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(190, 140, 60, 0.16),
      transparent 30%
    ),
    radial-gradient(circle at 18% 32%, #686868 0%, #535353 42%, #414141 100%);
}
.privacy-v2-kicker {
  margin: 0 0 14px;
  color: #e2c287;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.privacy-v2-hero h1 {
  margin: 0;
  color: #f0d293;
  font-family: var(--font-body);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
}
.privacy-v2-lead {
  max-width: 780px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}
.privacy-v2-updated {
  margin: 22px 0 0;
  color: #d9c49d;
  font-size: 0.82rem;
}
.privacy-v2-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 18%,
    #d3b15f 34%,
    #faf0a0 50%,
    #d3b15f 66%,
    #be8c3c 82%,
    #a4692a 100%
  );
}
.privacy-v2-content {
  padding: clamp(68px, 8vw, 116px) 0;
  background: #f8f7f4;
}
.privacy-v2-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
}
.privacy-v2-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid #d8c9b8;
  border-bottom: 1px solid #d8c9b8;
}
.privacy-v2-toc strong {
  margin-bottom: 12px;
  color: #98652c;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.privacy-v2-toc a {
  padding: 8px 0;
  color: #59544e;
  font-size: 0.82rem;
  line-height: 1.45;
  text-decoration: none;
}
.privacy-v2-toc a:hover {
  color: #9b6224;
}
.privacy-v2-prose {
  min-width: 0;
  max-width: 850px;
}
.privacy-v2-prose section {
  scroll-margin-top: calc(var(--header-height) + 26px);
  padding: 0 0 52px;
  margin: 0 0 52px;
  border-bottom: 1px solid #ded7ce;
}
.privacy-v2-prose section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.privacy-v2-prose h2 {
  margin: 0 0 22px;
  color: #99652b;
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  font-weight: 450;
  line-height: 1.2;
}
.privacy-v2-prose h3 {
  margin: 28px 0 12px;
  color: #444;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0;
}
.privacy-v2-prose p,
.privacy-v2-prose li {
  color: #55514d;
  font-size: 0.98rem;
  line-height: 1.85;
}
.privacy-v2-prose p {
  margin: 0 0 18px;
}
.privacy-v2-prose ul,
.privacy-v2-prose ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.privacy-v2-prose li + li {
  margin-top: 8px;
}
.privacy-v2-prose a {
  color: #8f5d27;
  text-underline-offset: 0.2em;
}
.privacy-v2-copyright {
  margin-top: 28px !important;
  padding: 18px 20px;
  border-left: 2px solid #bd8a43;
  background: #fff;
}
.privacy-v2-last-update {
  margin-top: 26px !important;
  color: #7a6652 !important;
}
@media (max-width: 900px) {
  .privacy-v2-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .privacy-v2-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
  }
  .privacy-v2-toc strong {
    grid-column: 1/-1;
  }
}
@media (max-width: 560px) {
  .privacy-v2-container,
  .privacy-v2-container--narrow {
    width: min(100% - 24px, 1240px);
  }
  .privacy-v2-toc {
    grid-template-columns: 1fr;
  }
  .privacy-v2-prose section {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .privacy-v2-page *,
  .privacy-v2-page *::before,
  .privacy-v2-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   Before & After — V1 category parity + gallery lightbox
   ========================================================= */

.site-main > article.before-after-v1-page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.before-after-v1-page {
  overflow: hidden;
  background: #fff;
  color: #363636;
}

.before-after-v1-page *,
.before-after-v1-page *::before,
.before-after-v1-page *::after {
  box-sizing: border-box;
}

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

.before-after-v1-hero {
  padding: clamp(76px, 8vw, 126px) 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(190, 140, 60, 0.16),
      transparent 30%
    ),
    radial-gradient(circle at 20% 30%, #686868 0%, #525252 42%, #414141 100%);
  color: #fff;
}

.before-after-v1-hero--category {
  padding-block: clamp(64px, 7vw, 108px);
}

.before-after-v1-kicker {
  margin: 0 0 14px;
  color: #e2c287;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.before-after-v1-hero h1 {
  max-width: 1050px;
  margin: 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.before-after-v1-lead {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
}

.before-after-v1-back {
  display: inline-flex;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
}

.before-after-v1-back:hover {
  color: #f0d293;
}

.before-after-v1-band {
  padding: clamp(64px, 7vw, 104px) 0;
}

.before-after-v1-band + .before-after-v1-band {
  padding-top: 0;
}

.before-after-v1-heading {
  margin-bottom: 34px;
}

.before-after-v1-heading h2 {
  margin: 0;
  color: #9b692e;
  font-family: var(--font-body);
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
}

.before-after-v1-category-grid,
.before-after-v1-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.before-after-v1-category-card {
  min-width: 0;
}

.before-after-v1-category-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e4ddd4;
  background: #fff;
  box-shadow: 0 8px 24px rgba(40, 31, 23, 0.07);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.before-after-v1-category-card > a:hover {
  transform: translateY(-4px);
  border-color: #cda76a;
  box-shadow: 0 15px 34px rgba(40, 31, 23, 0.12);
}

.before-after-v1-category-card__media {
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background: #f3f1ed;
}

.before-after-v1-category-card__media img,
.before-after-v1-media-fallback {
  display: block;
  width: 100%;
  height: 100%;
}

.before-after-v1-category-card__media img {
  object-fit: contain;
  transition: transform 0.3s ease;
}

.before-after-v1-category-card > a:hover img {
  transform: scale(1.025);
}

.before-after-v1-media-fallback {
  background: linear-gradient(145deg, #e8e4de, #d8d3cc);
}

.before-after-v1-category-card__body {
  display: grid;
  gap: 7px;
  padding: 19px 18px 22px;
}

.before-after-v1-category-card__body h2,
.before-after-v1-category-card__body h3 {
  margin: 0;
  color: #936128;
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.45;
}

.before-after-v1-category-card__body small {
  color: #777;
  font-size: 0.82rem;
}

.before-after-v1-empty {
  margin: 0;
  padding: 26px;
  border: 1px solid #e2ddd6;
  background: #faf9f7;
  color: #666;
}

/* Gallery ------------------------------------------------------------- */

.before-after-v1-gallery__item {
  min-width: 0;
  margin: 0;
}

.before-after-v1-gallery__link {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  border: 1px solid #ddd7cf;
  background: #f3f1ed;
  cursor: zoom-in;
}

.before-after-v1-gallery__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}

.before-after-v1-gallery__link:hover img {
  transform: scale(1.02);
  opacity: 0.94;
}

.before-after-v1-gallery__zoom {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.88);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(45, 45, 45, 0.68);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
}

.before-after-v1-gallery__zoom > span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  transform: translate(-2px, -2px);
  border: 2px solid #f1d99d;
  border-radius: 50%;
}

.before-after-v1-gallery__zoom > span::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  background: #f1d99d;
  transform: rotate(45deg);
  transform-origin: left center;
}

.before-after-v1-gallery__link:hover .before-after-v1-gallery__zoom,
.before-after-v1-gallery__link:focus-visible .before-after-v1-gallery__zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  background: rgba(164, 105, 42, 0.84);
}

.before-after-v1-gallery__item > figcaption {
  padding: 13px 4px 0;
  color: #65594d;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Lightbox ------------------------------------------------------------ */

.before-after-v1-lightbox[hidden] {
  display: none;
}

.before-after-v1-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  padding: 54px 78px 28px;
  place-items: center;
}

.before-after-v1-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(4px);
}

.before-after-v1-lightbox__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 58px;
  width: min(1500px, 100%);
  height: calc(100vh - 82px);
  align-items: center;
  gap: 18px;
}

.before-after-v1-lightbox__figure {
  display: grid;
  min-width: 0;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
}

.before-after-v1-lightbox__image-wrap {
  display: grid;
  min-height: 0;
  place-items: center;
}

.before-after-v1-lightbox__image-wrap img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
}

.before-after-v1-lightbox__caption {
  padding: 16px 10px 0;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
}

.before-after-v1-lightbox__caption h2 {
  margin: 0;
  color: #f0d293;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.before-after-v1-lightbox__caption p {
  max-width: 800px;
  margin: 7px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.55;
}

.before-after-v1-lightbox__caption small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.5);
}

.before-after-v1-lightbox__close,
.before-after-v1-lightbox__nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(25, 25, 25, 0.64);
  color: #f1d99d;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.before-after-v1-lightbox__close:hover,
.before-after-v1-lightbox__nav:hover {
  border-color: #f1d99d;
  background: rgba(164, 105, 42, 0.84);
}

.before-after-v1-lightbox__close {
  position: absolute;
  top: -38px;
  right: 0;
  z-index: 2;
  width: 44px;
  height: 44px;
  font-size: 1.75rem;
  line-height: 1;
}

.before-after-v1-lightbox__nav {
  width: 54px;
  height: 54px;
  line-height: 1;
}

.before-after-v1-lightbox__nav > span {
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #f1d99d;
  border-right: 2px solid #f1d99d;
}

.before-after-v1-lightbox__nav--prev > span {
  transform: rotate(-135deg);
  margin-left: 5px;
}

.before-after-v1-lightbox__nav--next > span {
  transform: rotate(45deg);
  margin-right: 5px;
}

.before-after-v1-lightbox__nav--prev:hover {
  transform: translateX(-3px);
}

.before-after-v1-lightbox__nav--next:hover {
  transform: translateX(3px);
}

@media (max-width: 1100px) {
  .before-after-v1-category-grid,
  .before-after-v1-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .before-after-v1-container {
    width: min(100% - 32px, 1500px);
  }

  .before-after-v1-category-grid,
  .before-after-v1-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-v1-lightbox {
    padding: 58px 18px 20px;
  }

  .before-after-v1-lightbox__stage {
    grid-template-columns: 1fr;
    width: 100%;
    height: calc(100vh - 78px);
  }

  .before-after-v1-lightbox__nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    background: rgba(25, 25, 25, 0.72);
  }

  .before-after-v1-lightbox__nav--prev {
    left: 4px;
  }

  .before-after-v1-lightbox__nav--next {
    right: 4px;
  }

  .before-after-v1-lightbox__nav--prev:hover,
  .before-after-v1-lightbox__nav--next:hover {
    transform: translateY(-50%);
  }

  .before-after-v1-lightbox__close {
    top: -48px;
    right: 0;
  }
}

@media (max-width: 560px) {
  .before-after-v1-container {
    width: min(100% - 24px, 1500px);
  }

  .before-after-v1-hero {
    padding-block: 58px;
  }

  .before-after-v1-band {
    padding-block: 52px;
  }

  .before-after-v1-category-grid,
  .before-after-v1-gallery {
    grid-template-columns: 1fr;
  }

  .before-after-v1-gallery__item > figcaption {
    padding-inline: 2px;
  }

  .before-after-v1-lightbox {
    padding-inline: 12px;
  }

  .before-after-v1-lightbox__image-wrap img {
    max-height: calc(100vh - 180px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .before-after-v1-page *,
  .before-after-v1-page *::before,
  .before-after-v1-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   Blog V3 — Homepage visual language
   ========================================================= */

.site-main > article.blog-v3-page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.blog-v3-page {
  overflow: hidden;
  background: #fff;
  color: #333;
}

.blog-v3-page *,
.blog-v3-page *::before,
.blog-v3-page *::after {
  box-sizing: border-box;
}

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

/* Hero ------------------------------------------------------- */

.blog-v3-hero {
  padding: clamp(54px, 6vw, 82px) 0;
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.blog-v3-hero__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(560px, 1.08fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}

.blog-v3-hero__grid--single {
  grid-template-columns: minmax(0, 760px);
}

.blog-v3-hero__copy {
  min-width: 0;
}

.blog-v3-kicker,
.blog-v3-featured__label {
  margin: 0;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-v3-gold-title {
  margin: 14px 0 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2.25rem, 3.8vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-v3-hero h1 {
  max-width: 690px;
}

.blog-v3-lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.8;
}

/* Featured --------------------------------------------------- */

.blog-v3-featured {
  min-width: 0;
}

.blog-v3-featured__label {
  margin-bottom: 13px;
}

.blog-v3-featured-card {
  display: grid;
  grid-template-columns:
    minmax(230px, 0.9fr)
    minmax(0, 1.1fr);
  min-height: 310px;
  overflow: hidden;
  border: 1px solid #e7e0d6;
  background: #fff;
  box-shadow: 0 12px 30px rgba(37, 31, 25, 0.13);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.blog-v3-featured-card:hover {
  transform: translateY(-3px);
  border-color: #cfad70;
  box-shadow: 0 17px 38px rgba(37, 31, 25, 0.18);
}

.blog-v3-featured-card__media {
  display: block;
  min-height: 310px;
  overflow: hidden;
  background: #e6e2dc;
}

.blog-v3-featured-card__media img,
.blog-v3-featured-card__media .blog-v3-image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.blog-v3-featured-card__media img {
  transition: transform 0.3s ease;
}

.blog-v3-featured-card:hover .blog-v3-featured-card__media img {
  transform: scale(1.025);
}

.blog-v3-image-fallback,
.blog-v3-card-fallback {
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 38% 32%, #777, #555 58%, #444);
}

.blog-v3-featured-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 38px);
}

.blog-v3-date {
  color: #96754e;
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-v3-featured-card h2 {
  margin: 10px 0 0;
  font-family: inherit;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
}

.blog-v3-featured-card h2 a {
  color: #8f6028;
  text-decoration: none;
}

.blog-v3-featured-card h2 a:hover {
  color: #bb8332;
}

.blog-v3-featured-card__body > p {
  display: -webkit-box;
  margin: 14px 0 0;
  overflow: hidden;
  color: #666;
  font-size: 0.9rem;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-v3-featured-card__more {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: #8f6028;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}

.blog-v3-featured-card__more span {
  transition: transform 0.2s ease;
}

.blog-v3-featured-card__more:hover {
  color: #bb8332;
}

.blog-v3-featured-card__more:hover span {
  transform: translateX(4px);
}

/* Gold line -------------------------------------------------- */

.blog-v3-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

/* Latest articles -------------------------------------------- */

.blog-v3-latest {
  padding: clamp(60px, 7vw, 92px) 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.blog-v3-latest__heading {
  max-width: 920px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.blog-v3-latest__kicker {
  margin: 0;
  color: #a4692a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-v3-gold-title--on-white {
  margin-top: 10px;
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.blog-v3-latest__heading h2.blog-v3-gold-title {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

/* Homepage-style cards --------------------------------------- */

.blog-v3-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.blog-v3-card {
  min-width: 0;
}

.blog-v3-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e7e0d6;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.blog-v3-card > a:hover {
  transform: translateY(-3px);
  border-color: #cfad70;
  box-shadow: 0 13px 28px rgba(37, 31, 25, 0.11);
}

.blog-v3-card > a > img,
.blog-v3-card-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-v3-card > a > img {
  transition: transform 0.3s ease;
}

.blog-v3-card > a:hover > img {
  transform: scale(1.025);
}

.blog-v3-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px 17px 20px;
}

.blog-v3-card h3 {
  margin: 9px 0 0;
  color: #8f6028;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.blog-v3-card__body > p {
  display: -webkit-box;
  margin: 9px 0 0;
  overflow: hidden;
  color: #666;
  font-size: 0.88rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.blog-v3-empty {
  margin: 0;
  padding: 28px;
  border: 1px solid #e7e0d6;
  background: #fff;
  color: #666;
  text-align: center;
}

.blog-v3-page a:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

/* Responsive ------------------------------------------------- */

@media (max-width: 1180px) {
  .blog-v3-hero__grid {
    grid-template-columns:
      minmax(0, 0.82fr)
      minmax(500px, 1.18fr);
    gap: 38px;
  }

  .blog-v3-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .blog-v3-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .blog-v3-hero__copy {
    max-width: 820px;
  }

  .blog-v3-featured {
    max-width: 820px;
  }

  .blog-v3-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .blog-v3-featured-card {
    grid-template-columns: 1fr;
  }

  .blog-v3-featured-card__media,
  .blog-v3-featured-card__media img,
  .blog-v3-featured-card__media .blog-v3-image-fallback {
    min-height: 0;
  }

  .blog-v3-featured-card__media img,
  .blog-v3-featured-card__media .blog-v3-image-fallback {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 560px) {
  .blog-v3-container {
    width: min(100% - 24px, 1500px);
  }

  .blog-v3-hero {
    padding: 50px 0;
  }

  .blog-v3-gold-title {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .blog-v3-grid {
    grid-template-columns: 1fr;
  }

  .blog-v3-card > a > img,
  .blog-v3-card-fallback {
    aspect-ratio: 16 / 10;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-v3-page *,
  .blog-v3-page *::before,
  .blog-v3-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   Article Detail V1 — unified editorial article page
   ========================================================= */

.site-main > article.article-v1-page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.article-v1-page {
  overflow: hidden;
  background: #fff;
  color: #3d3d3d;
}

.article-v1-page *,
.article-v1-page *::before,
.article-v1-page *::after {
  box-sizing: border-box;
}

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

.article-v1-container--reading {
  width: min(940px, calc(100% - 48px));
}

/* Hero ----------------------------------------------------- */

.article-v1-hero {
  padding: clamp(58px, 6.5vw, 92px) 0;
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.article-v1-hero__grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(420px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
}

.article-v1-hero__grid--single {
  grid-template-columns: minmax(0, 980px);
}

.article-v1-hero__copy {
  min-width: 0;
}

.article-v1-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  line-height: 1.5;
}

.article-v1-breadcrumb a {
  color: #ead2a8;
  text-decoration: none;
}

.article-v1-breadcrumb a:hover {
  text-decoration: underline;
}

.article-v1-breadcrumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-v1-kicker,
.article-v1-heading__kicker {
  margin: 0;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-v1-gold-title {
  margin: 14px 0 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.article-v1-hero h1.article-v1-gold-title {
  max-width: 900px;
}

.article-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.article-v1-date {
  display: block;
  margin-top: 22px;
  color: #dfc28d;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.article-v1-lead {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.82;
}

.article-v1-hero__media {
  margin: 0;
  overflow: hidden;
  background: #444;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.article-v1-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Divider -------------------------------------------------- */

.article-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

/* Editorial body ------------------------------------------ */

.article-v1-body {
  padding: clamp(64px, 7vw, 104px) 0;
  background:
    radial-gradient(
      circle at 15% 8%,
      rgba(190, 140, 60, 0.045),
      transparent 28%
    ),
    #fff;
}

.article-v1-sections {
  display: grid;
  gap: clamp(54px, 6vw, 82px);
}

.article-v1-section {
  min-width: 0;
}

.article-v1-section + .article-v1-section {
  padding-top: clamp(42px, 5vw, 64px);
  border-top: 1px solid #e7e0d6;
}

.article-v1-section > h2,
.article-v1-prose h2 {
  margin: 0 0 24px;
  color: #9a6529;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
  font-weight: 500;
  line-height: 1.2;
}

.article-v1-prose {
  color: #444;
  font-size: clamp(1rem, 1.15vw, 1.08rem);
  line-height: 1.9;
}

.article-v1-prose > *:first-child {
  margin-top: 0;
}

.article-v1-prose > *:last-child {
  margin-bottom: 0;
}

.article-v1-prose p,
.article-v1-prose ul,
.article-v1-prose ol {
  margin: 0 0 1.4em;
}

.article-v1-prose ul,
.article-v1-prose ol {
  padding-left: 1.4em;
}

.article-v1-prose li + li {
  margin-top: 0.55em;
}

.article-v1-prose h2 {
  margin-top: 2.2em;
}

.article-v1-prose h3 {
  margin: 1.9em 0 0.7em;
  color: #8f6028;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
}

.article-v1-prose h4 {
  margin: 1.7em 0 0.65em;
  color: #4b4b4b;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: 1.08rem;
  font-weight: 700;
}

.article-v1-prose a {
  color: #916028;
}

.article-v1-prose a:hover {
  color: #bb8332;
}

.article-v1-prose strong {
  color: #333;
}

.article-v1-prose img {
  display: block;
  width: 100%;
  height: auto;
  margin: 36px 0;
}

.article-v1-prose blockquote {
  margin: 36px 0;
  padding: 22px 26px;
  border-left: 3px solid #bb8332;
  background: #faf7f1;
  color: #555;
}

/*
 * Legacy articles may still contain structural wrappers such
 * as template-page-01 / section-block / card-soft.
 * Inside Article Detail they behave as editorial content, not
 * as a second independent page layout.
 */
.article-v1-prose--legacy .template-page-01,
.article-v1-prose--legacy .template-hero,
.article-v1-prose--legacy .section-block,
.article-v1-prose--legacy .card-soft,
.article-v1-prose--legacy .two-col {
  width: auto;
  max-width: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
}

.article-v1-prose--legacy .section-block + .section-block,
.article-v1-prose--legacy .card-soft + .card-soft {
  margin-top: 42px;
}

.article-v1-prose--legacy .two-col {
  display: block;
}

.article-v1-prose--legacy .template-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 30px;
}

.article-v1-prose--legacy .badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border: 1px solid #e2d6c5;
  background: #faf7f1;
  color: #77542d;
  font-size: 0.82rem;
}

/* FAQ ------------------------------------------------------ */

.article-v1-faq,
.article-v1-related {
  padding: clamp(60px, 7vw, 92px) 0;
  border-top: 1px solid #eee8df;
  background:
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #faf9f6;
}

.article-v1-heading {
  margin-bottom: clamp(30px, 4vw, 46px);
}

.article-v1-heading__kicker {
  color: #a4692a;
}

.article-v1-heading .article-v1-gold-title {
  margin-top: 10px;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.article-v1-faq__list {
  border-top: 1px solid #ded6ca;
}

.article-v1-faq__list details {
  border-bottom: 1px solid #ded6ca;
}

.article-v1-faq__list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: #3e3e3e;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.6;
  list-style: none;
}

.article-v1-faq__list summary::-webkit-details-marker {
  display: none;
}

.article-v1-faq__list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: #bb8332;
  font-size: 1.7rem;
  font-weight: 400;
}

.article-v1-faq__list details[open] summary::after {
  content: "−";
}

.article-v1-faq__answer {
  padding: 0 0 25px;
  color: #555;
  line-height: 1.8;
}

.article-v1-faq__answer > *:first-child {
  margin-top: 0;
}

.article-v1-faq__answer > *:last-child {
  margin-bottom: 0;
}

/* Related -------------------------------------------------- */

.article-v1-related {
  background: #fff;
}

.article-v1-related__group + .article-v1-related__group {
  margin-top: 38px;
}

.article-v1-related__group h3 {
  margin-bottom: 14px;
  color: #8f6028;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: 1.15rem;
  font-weight: 600;
}

.article-v1-related__group ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e3ddd4;
  list-style: none;
}

.article-v1-related__group li {
  border-bottom: 1px solid #e3ddd4;
}

.article-v1-related__group a {
  display: block;
  padding: 15px 0;
  color: #444;
  text-decoration: none;
}

.article-v1-related__group a:hover {
  color: #a4692a;
}

.article-v1-page a:focus-visible,
.article-v1-page summary:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

/* Article CTA --------------------------------------------- */

.article-v1-cta {
  padding: clamp(72px, 8vw, 110px) 0;
  background: radial-gradient(
    circle at 50% 45%,
    #626262 0%,
    #505050 48%,
    #424242 100%
  );
  color: #fff;
  text-align: center;
}

.article-v1-cta .article-v1-gold-title {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

.article-v1-cta p {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-v1-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.article-v1-cta .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.article-v1-cta .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
  transform: none;
}

.article-v1-cta .button.article-v1-cta__button--outline {
  border-color: rgba(241, 207, 136, 0.78);
  background: transparent;
  color: #f1cf88;
}

.article-v1-cta .button.article-v1-cta__button--outline:hover,
.article-v1-cta .button.article-v1-cta__button--outline:focus-visible {
  border-color: #d3b15f;
  background: #bb8332;
  color: #fff;
}

body:has(.article-v1-page) .site-footer,
body.visual-parity-v1:has(.article-v1-page) .site-footer {
  margin-top: 0;
}

/* Responsive ---------------------------------------------- */

@media (max-width: 980px) {
  .article-v1-hero__grid {
    grid-template-columns: 1fr;
  }

  .article-v1-hero__copy {
    max-width: 860px;
  }

  .article-v1-hero__media {
    max-width: 860px;
  }
}

@media (max-width: 560px) {
  .article-v1-container,
  .article-v1-container--reading {
    width: min(100% - 24px, 1500px);
  }

  .article-v1-hero {
    padding: 50px 0 54px;
  }

  .article-v1-gold-title {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .article-v1-hero__media img {
    aspect-ratio: 16 / 10;
  }

  .article-v1-body,
  .article-v1-faq,
  .article-v1-related {
    padding: 54px 0;
  }

  .article-v1-cta {
    padding: 58px 0;
  }

  .article-v1-cta__actions .button {
    width: 100%;
  }

  .article-v1-sections {
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-v1-page *,
  .article-v1-page *::before,
  .article-v1-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   Article Admin UX A — Milanos-style editor usability pass
   Scope intentionally limited to the Articles admin form.
   ========================================================= */
.article-admin-manager {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.article-admin-heading {
  gap: 20px;
}

.article-admin-eyebrow {
  margin: 0 0 5px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-admin-subtitle {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.article-admin-heading__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.article-admin-form {
  gap: 0;
  margin-top: 0;
}

.article-admin-errors {
  margin-bottom: 18px;
}

.article-admin-errors strong {
  display: block;
  margin-bottom: 8px;
}

.article-admin-errors ul {
  margin: 0;
  padding-left: 20px;
}

.article-admin-tabs {
  position: sticky;
  top: 0;
  z-index: 24;
  display: flex;
  gap: 7px;
  overflow-x: auto;
  margin: 0 0 18px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(247, 248, 246, 0.97);
  box-shadow: var(--shadow-sm);
}

.article-admin-tabs button,
.article-language-tabs button {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.article-admin-tabs button {
  min-height: 42px;
  padding: 9px 16px;
}

.article-admin-tabs button.is-active,
.article-language-tabs button.is-active {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.article-admin-panel {
  margin: 0 0 18px;
}

.article-admin-panel[hidden],
.article-language-panel[hidden],
.article-related-row[hidden] {
  display: none !important;
}

.article-admin-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.article-admin-section-head h2,
.article-related-box h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: 0;
}

.article-admin-section-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.article-admin-grid {
  display: grid;
  gap: 18px;
}

.article-admin-grid--3 {
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.8fr) minmax(
      280px,
      0.95fr
    );
}

.article-admin-switches {
  display: grid;
  align-content: start;
  gap: 12px;
}

.article-admin-switch {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafaf7;
}

.article-admin-switch span {
  display: grid;
  gap: 2px;
}

.article-admin-switch .field-help {
  margin: 0;
}

.article-admin-media-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-admin-media-preview {
  display: grid;
  width: 190px;
  min-height: 125px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.article-admin-media-preview img {
  width: 100%;
  height: 125px;
  object-fit: cover;
}

.article-admin-media-field {
  align-self: center;
}

.article-language-tabs {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}

.article-language-tabs button {
  min-width: 70px;
  min-height: 38px;
  padding: 7px 14px;
}

.article-language-panel {
  display: grid;
  gap: 18px;
}

.article-field-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.article-field-meta > small:last-child {
  color: var(--muted);
  white-space: nowrap;
}

.article-rich-field {
  display: grid;
  gap: 8px;
}

.article-rich-field__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.article-rich-field__head > label {
  margin: 0;
  font-weight: 650;
}

.article-rich-field__head .field-help {
  max-width: 640px;
  text-align: right;
}

.article-rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  background: #f8f8f5;
}

.article-rich-toolbar button {
  min-height: 32px;
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.article-rich-toolbar button:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.article-rich-editor {
  min-height: 500px;
  border-radius: 0 0 10px 10px;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.65;
  resize: vertical;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.article-related-box {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.article-related-box__head {
  display: grid;
  gap: 12px;
  padding: 17px;
  border-bottom: 1px solid var(--line);
}

.article-related-box__head > div {
  display: grid;
  gap: 3px;
}

.article-related-box__head input {
  margin: 0;
}

.article-related-list {
  max-height: 460px;
  overflow: auto;
}

.article-related-row {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px !important;
  align-items: start;
  margin: 0 !important;
  padding: 12px 17px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  font-weight: 500 !important;
}

.article-related-row:last-child {
  border-bottom: 0;
}

.article-related-row:hover {
  background: #faf8f4;
}

.article-related-row input {
  width: auto !important;
  margin: 4px 0 0;
}

.article-related-row span {
  display: grid;
  gap: 2px;
}

.article-related-row strong {
  color: var(--ink);
  font-size: 13px;
}

.article-related-row small {
  color: var(--muted) !important;
  font-size: 11px !important;
}

.article-admin-savebar {
  position: sticky;
  bottom: 14px;
  z-index: 26;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 23, 25, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 50px rgba(17, 23, 25, 0.12);
  backdrop-filter: blur(14px);
}

.article-admin-savebar > div {
  display: grid;
  gap: 2px;
}

.article-admin-savebar span {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 980px) {
  .article-admin-grid--3,
  .article-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .article-admin-heading__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .article-admin-tabs {
    margin-inline: -4px;
    border-radius: 12px;
  }

  .article-admin-media-card {
    grid-template-columns: 1fr;
  }

  .article-admin-media-preview {
    width: 100%;
    min-height: 220px;
  }

  .article-admin-media-preview img {
    height: 220px;
  }

  .article-rich-field__head,
  .article-field-meta,
  .article-admin-savebar {
    align-items: stretch;
    flex-direction: column;
  }

  .article-rich-field__head .field-help {
    text-align: left;
  }

  .article-admin-savebar {
    bottom: 8px;
  }

  .article-admin-savebar .button {
    width: 100%;
  }
}

/* =========================================================
   Article Admin Step 1B — real sections / FAQ / rich header
   ========================================================= */

.article-admin-form input,
.article-admin-form textarea,
.article-admin-form select {
  font-weight: 400;
}

.article-rich-editor--compact {
  min-height: 180px;
}

.article-rich-editor--faq {
  min-height: 150px;
}

.article-structured-status {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.article-structured-status strong {
  font-size: 13px;
}

.article-structured-status span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.article-structured-status.is-structured {
  border-color: #d7c5aa;
  background: #fbf7f1;
}

.article-structured-status.is-structured strong {
  color: var(--accent-deep);
}

.article-section-list,
.article-faq-editor-list {
  display: grid;
  gap: 14px;
}

.article-structure-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.article-structure-card__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.article-structure-position {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
}

.article-structure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.article-structure-actions .button {
  min-width: 36px;
}

.article-structure-remove {
  color: #8e2020;
}

.article-add-row {
  width: fit-content;
  margin-top: 14px;
}

.article-legacy-editor {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  background: #fafaf7;
}

.article-legacy-editor summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 750;
}

.article-legacy-editor > .field-help {
  display: block;
  margin: 10px 0 14px;
  color: var(--muted);
}

.article-faq-status {
  width: fit-content;
  padding-top: 2px;
}

.article-admin-empty {
  padding: 16px 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 13px;
}

.article-admin-empty[hidden] {
  display: none !important;
}

.article-v1-lead > * {
  color: inherit;
}

.article-v1-lead > *:first-child {
  margin-top: 0;
}

.article-v1-lead > *:last-child {
  margin-bottom: 0;
}

.article-v1-lead p {
  margin: 0 0 0.8em;
}

.article-v1-lead a {
  color: #f3d79a;
  text-decoration: underline;
}

.article-v1-lead strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 720px) {
  .article-structure-card__head {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .article-structure-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .article-add-row {
    width: 100%;
  }
}

/* =========================================================
   Article Admin Step 2 — inline media groups + public gallery/carousel
   ========================================================= */
.article-inline-media-manager {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-inline-media-manager__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.article-inline-media-manager__head h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 750;
}

.article-inline-media-manager__head p {
  max-width: 780px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.article-inline-media-list,
.article-media-items {
  display: grid;
  gap: 14px;
}

.article-media-group-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfbf8;
}

.article-media-group-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.article-media-group-card__head > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-media-group-settings {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.65fr);
  gap: 14px;
  margin-bottom: 16px;
}

.article-media-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.article-media-item__preview {
  display: grid;
  min-height: 112px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
}

.article-media-item__preview img {
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.article-media-item__fields {
  display: grid;
  gap: 10px;
}

.article-media-item__action-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 10px;
}

.article-media-item__actions {
  display: flex;
  gap: 6px;
}

.article-media-add-image {
  margin-top: 14px;
}

/* Public inline article media */
.article-media-group {
  width: 100%;
  margin: clamp(28px, 4vw, 48px) 0;
}

.article-media-grid {
  display: grid;
  gap: clamp(10px, 1.6vw, 18px);
}

.article-media-grid--cols-1 {
  grid-template-columns: 1fr;
}
.article-media-grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.article-media-grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-media-grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-media-card {
  min-width: 0;
  margin: 0;
}

.article-media-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
}

.article-media-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.article-media-card__media:hover img {
  transform: scale(1.02);
  filter: brightness(0.94);
}

.article-media-card__zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(38, 38, 38, 0.62);
  color: #f2d99a;
  font-size: 22px;
  line-height: 1;
}

.article-media-card figcaption {
  margin-top: 8px;
  color: #777;
  font-size: 12px;
  line-height: 1.55;
}

.article-media-carousel {
  position: relative;
}

.article-media-carousel__track {
  display: grid;
  grid-auto-columns: minmax(240px, 31%);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: hidden;
  padding: 2px 52px 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.article-media-carousel__track::-webkit-scrollbar {
  display: none;
}

.article-media-carousel__track .article-media-card {
  scroll-snap-align: start;
}

.article-media-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid #cfae75;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #8f6028;
  cursor: pointer;
  padding: 0;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.article-media-carousel__nav--prev {
  left: 0;
}
.article-media-carousel__nav--next {
  right: 0;
}

html.article-media-lightbox-open,
html.article-media-lightbox-open body {
  overflow: hidden;
}

.article-media-lightbox[hidden] {
  display: none !important;
}

.article-media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 14000;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 70px;
  align-items: center;
  padding: 54px 18px 24px;
  background: rgba(15, 15, 15, 0.96);
}

.article-media-lightbox__stage {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-width: 0;
  margin: 0;
}

.article-media-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 110px);
  object-fit: contain;
}

.article-media-lightbox__stage figcaption {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  text-align: center;
}

.article-media-lightbox__close,
.article-media-lightbox__nav {
  border: 0;
  background: transparent;
  color: #f1d99d;
  cursor: pointer;
}

.article-media-lightbox__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 30px;
}

.article-media-lightbox__nav {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 0;
  font-size: 42px;
  line-height: 1;
}

@media (max-width: 900px) {
  .article-media-group-settings,
  .article-media-item__action-row {
    grid-template-columns: 1fr;
  }

  .article-media-item {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .article-media-item__actions {
    grid-column: 1 / -1;
  }

  .article-media-grid--cols-3,
  .article-media-grid--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-media-carousel__track {
    grid-auto-columns: minmax(230px, 72%);
  }
}

@media (max-width: 620px) {
  .article-inline-media-manager__head,
  .article-media-group-card__head {
    align-items: stretch;
    flex-direction: column;
  }

  .article-media-item {
    grid-template-columns: 1fr;
  }

  .article-media-item__preview,
  .article-media-item__preview img {
    min-height: 190px;
    height: 190px;
  }

  .article-media-grid--cols-2,
  .article-media-grid--cols-3,
  .article-media-grid--cols-4 {
    grid-template-columns: 1fr;
  }

  .article-media-carousel__track {
    grid-auto-columns: 86%;
    padding-inline: 42px;
  }

  .article-media-lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding-inline: 6px;
  }
}

/* =========================================================
   Videos V2 — modal index + SEO detail + FAQ + related
   ========================================================= */

.site-main > article.videos-v2-page,
.site-main > article.video-seo-v2-page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.videos-v2-page,
.video-seo-v2-page {
  overflow: hidden;
  background: #fff;
  color: #363636;
}

.videos-v2-page *,
.videos-v2-page *::before,
.videos-v2-page *::after,
.video-seo-v2-page *,
.video-seo-v2-page *::before,
.video-seo-v2-page *::after {
  box-sizing: border-box;
}

.videos-v2-container,
.video-seo-v2-container {
  width: min(1500px, calc(100% - 40px));
  margin-inline: auto;
}

.videos-v2-container--reading,
.video-seo-v2-container--text {
  width: min(980px, calc(100% - 48px));
}

.videos-v2-gold-line,
.video-seo-v2-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

.videos-v2-gold-title {
  max-width: 1050px;
  margin: 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.videos-v2-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.videos-v2-kicker,
.videos-v2-list__kicker {
  margin: 0 0 14px;
  color: #e2c287;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.videos-v2-hero {
  padding: clamp(58px, 6.5vw, 92px) 0;
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #6e6e6e 0%,
    #565656 38%,
    #4f4f4f 72%,
    #474747 100%
  );
}

.videos-v2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.videos-v2-hero__grid--single {
  grid-template-columns: 1fr;
}

.videos-v2-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.8;
}

.videos-v2-featured__label {
  margin: 0 0 13px;
  color: #e2c287;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.videos-v2-featured-card {
  display: grid;
  grid-template-columns: minmax(230px, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(34, 34, 34, 0.34);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.videos-v2-featured-card__media,
.videos-v2-card__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #3f3f3f;
  cursor: pointer;
}

.videos-v2-featured-card__media {
  min-height: 250px;
}

.videos-v2-featured-card__media--static,
.videos-v2-card__media--static {
  cursor: default;
}

.videos-v2-featured-card__media img,
.videos-v2-featured-card__media .videos-v2-image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.videos-v2-featured-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 24px;
}

.videos-v2-featured-card__body strong {
  color: #e0bd75;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 500;
  line-height: 1.28;
}

.videos-v2-featured-card__body small {
  display: -webkit-box;
  margin-top: 15px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.62;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.videos-v2-list {
  padding: clamp(64px, 7vw, 104px) 0;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.05),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.videos-v2-list__heading {
  max-width: 1000px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.videos-v2-list__kicker {
  color: #9b6224;
}

.videos-v2-list__heading .videos-v2-gold-title {
  font-size: clamp(2rem, 3.7vw, 3.35rem);
}

.videos-v2-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.videos-v2-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e4ddd4;
  background: #fff;
  box-shadow: 0 8px 24px rgba(40, 31, 23, 0.07);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.videos-v2-card:hover {
  transform: translateY(-4px);
  border-color: #cda76a;
  box-shadow: 0 15px 34px rgba(40, 31, 23, 0.12);
}

.videos-v2-card__media {
  aspect-ratio: 16 / 9;
}

.videos-v2-card__media img,
.videos-v2-card__media .videos-v2-image-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videos-v2-image-fallback {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent),
    radial-gradient(circle at 40% 30%, #707070, #4e4e4e 60%, #414141);
}

.videos-v2-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.58);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.3);
  color: #f2d798;
  font-size: 1.18rem;
  line-height: 1;
  padding-left: 4px;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.videos-v2-featured-card__media:hover .videos-v2-play,
.videos-v2-card__media:hover .videos-v2-play {
  transform: translate(-50%, -50%) scale(1.08);
  border-color: #f2d798;
  background: rgba(164, 105, 42, 0.9);
}

.videos-v2-featured-card__media img,
.videos-v2-card__media img {
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.videos-v2-featured-card__media:hover img,
.videos-v2-card__media:hover img {
  transform: scale(1.025);
  filter: brightness(0.9);
}

.videos-v2-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 19px 18px 21px;
}

.videos-v2-card__body strong {
  color: #8f6028;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
}

.videos-v2-card__body small {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  color: #626262;
  font-size: 0.88rem;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.videos-v2-more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: #8f6028;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.videos-v2-more-link--dark {
  color: #f1cf88;
}

.videos-v2-more-link span {
  transition: transform 0.2s ease;
}

.videos-v2-more-link:hover span {
  transform: translateX(4px);
}

.videos-v2-more-link:hover {
  color: #a4692a;
}

.videos-v2-more-link--dark:hover {
  color: #fff1c8;
}

.videos-v2-empty {
  margin: 0;
  padding: 26px;
  border: 1px solid #e2ddd6;
  background: #faf9f7;
  color: #666;
  text-align: center;
}

.videos-v2-cta {
  padding: clamp(72px, 8vw, 110px) 0;
  color: #fff;
  text-align: center;
  background: radial-gradient(
    circle at 50% 45%,
    #626262 0%,
    #505050 48%,
    #424242 100%
  );
}

.videos-v2-cta .videos-v2-gold-title {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
}

.videos-v2-cta p {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

.videos-v2-actions {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.videos-v2-page .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.videos-v2-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
  transform: none;
}

/* Modal */
.videos-v2-modal[hidden] {
  display: none;
}

.videos-v2-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  padding: clamp(18px, 4vw, 48px);
  place-items: center;
}

.videos-v2-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(4px);
}

.videos-v2-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  background: #111;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
}

.videos-v2-modal__player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.videos-v2-modal__player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.videos-v2-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: #222;
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.35);
}

.videos-v2-modal__close:hover {
  border-color: #d3b15f;
  background: #a4692a;
}

.videos-v2-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* SEO detail */
.video-seo-v2-main {
  padding: clamp(58px, 7vw, 96px) 0 clamp(64px, 7vw, 96px);
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.05),
      transparent 28%
    ),
    #fff;
}

.video-seo-v2-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: #8f6028;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.video-seo-v2-title {
  max-width: 1180px;
  margin: 0 0 clamp(30px, 4vw, 44px);
  color: #9b6626;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2.35rem, 4.6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.video-seo-v2-player {
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 46px rgba(27, 22, 18, 0.12);
}

.video-seo-v2-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-seo-v2-description {
  width: min(980px, 100%);
  margin-top: clamp(42px, 5vw, 64px);
}

.video-seo-v2-section-title {
  margin: 0 0 26px;
  color: #9b6626;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
}

.video-seo-v2-section-title--center {
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 52px);
  text-align: center;
}

.video-seo-v2-prose {
  color: #444;
  font-size: 1.04rem;
  line-height: 1.82;
}

.video-seo-v2-prose > *:first-child {
  margin-top: 0;
}

.video-seo-v2-prose > *:last-child {
  margin-bottom: 0;
}

.video-seo-v2-prose h2,
.video-seo-v2-prose h3,
.video-seo-v2-prose h4 {
  color: #8f6028;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
}

.video-seo-v2-prose a {
  color: #8f6028;
}

.video-seo-v2-band {
  padding: clamp(62px, 7vw, 96px) 0;
}

.video-seo-v2-band--faq {
  background: #fffaf1;
}

.video-seo-v2-band--related {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.05),
      transparent 28%
    ),
    #fff;
}

.video-seo-v2-faq {
  border-top: 1px solid #e4d8c8;
}

.video-seo-v2-faq details {
  border-bottom: 1px solid #e4d8c8;
}

.video-seo-v2-faq summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: #3d3a36;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.55;
  list-style: none;
}

.video-seo-v2-faq summary::-webkit-details-marker {
  display: none;
}

.video-seo-v2-faq summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: #bb8332;
  font-size: 1.6rem;
  font-weight: 400;
}

.video-seo-v2-faq details[open] summary::after {
  content: "−";
}

.video-seo-v2-faq__answer {
  padding: 0 0 24px;
  color: #555;
  line-height: 1.78;
}

.video-seo-v2-faq__answer > *:last-child {
  margin-bottom: 0;
}

.video-seo-v2-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.video-seo-v2-related-card {
  min-width: 0;
}

.video-seo-v2-related-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e4ddd4;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(40, 31, 23, 0.07);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.video-seo-v2-related-card > a:hover {
  transform: translateY(-4px);
  border-color: #cda76a;
  box-shadow: 0 15px 34px rgba(40, 31, 23, 0.12);
}

.video-seo-v2-related-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #444;
}

.video-seo-v2-related-card__media img,
.video-seo-v2-related-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-seo-v2-related-fallback {
  background: radial-gradient(circle at 40% 30%, #707070, #4e4e4e 60%, #414141);
}

.video-seo-v2-related-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.58);
  color: #f2d798;
  padding-left: 3px;
}

.video-seo-v2-related-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 18px;
}

.video-seo-v2-related-card__body strong {
  color: #8f6028;
  line-height: 1.45;
}

.video-seo-v2-related-card__body em {
  margin-top: auto;
  padding-top: 16px;
  color: #8f6028;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 650;
}

/* Videos admin FAQ */
.video-admin-faq {
  display: grid;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.video-admin-faq__head h2 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
}

.video-admin-faq__head p {
  margin: 7px 0 0;
  color: var(--muted);
}

.video-admin-faq__language {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fafaf7;
}

.video-admin-faq__language h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.video-admin-faq__list {
  display: grid;
  gap: 12px;
}

.video-admin-faq__item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.video-admin-faq__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.video-admin-faq__item-head > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.videos-v2-page button:focus-visible,
.videos-v2-page a:focus-visible,
.video-seo-v2-page a:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

body:has(.videos-v2-page) .site-footer,
body.visual-parity-v1:has(.videos-v2-page) .site-footer,
body:has(.video-seo-v2-page) .site-footer,
body.visual-parity-v1:has(.video-seo-v2-page) .site-footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .videos-v2-grid,
  .video-seo-v2-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .videos-v2-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1.18fr);
    gap: 38px;
  }
}

@media (max-width: 980px) {
  .videos-v2-grid,
  .video-seo-v2-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .videos-v2-hero__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .videos-v2-featured {
    max-width: 820px;
  }
}

@media (max-width: 680px) {
  .videos-v2-featured-card {
    grid-template-columns: 1fr;
  }

  .videos-v2-featured-card__media,
  .videos-v2-featured-card__media img,
  .videos-v2-featured-card__media .videos-v2-image-fallback {
    min-height: 0;
  }

  .videos-v2-featured-card__media img,
  .videos-v2-featured-card__media .videos-v2-image-fallback {
    aspect-ratio: 16 / 10;
  }

  .video-admin-faq__item-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .videos-v2-container,
  .videos-v2-container--reading,
  .video-seo-v2-container,
  .video-seo-v2-container--text {
    width: min(100% - 24px, 1500px);
  }

  .videos-v2-hero,
  .videos-v2-list,
  .video-seo-v2-main,
  .video-seo-v2-band {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .videos-v2-grid,
  .video-seo-v2-related-grid {
    grid-template-columns: 1fr;
  }

  .videos-v2-play {
    width: 58px;
    height: 58px;
  }

  .videos-v2-modal {
    padding: 14px;
  }

  .videos-v2-modal__close {
    top: -12px;
    right: -8px;
    width: 42px;
    height: 42px;
  }

  .videos-v2-actions .button {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .videos-v2-page *,
  .videos-v2-page *::before,
  .videos-v2-page *::after,
  .video-seo-v2-page *,
  .video-seo-v2-page *::before,
  .video-seo-v2-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* =========================================================
   Laser Areas Dedicated Template + Group Admin UX V1
   Scope: .laser-area-v1-* and Treatment Admin group/template UX
   ========================================================= */

.site-main > article.laser-area-v1-page {
  width: 100%;
  max-width: none;
  margin: 0;
}

.laser-area-v1-page {
  --laser-area-gold-a: #a4692a;
  --laser-area-gold-b: #be8c3c;
  --laser-area-gold-c: #d3b15f;
  --laser-area-gold-light: #faf0a0;
  overflow: hidden;
  background: #fff;
  color: #333;
}

.laser-area-v1-page *,
.laser-area-v1-page *::before,
.laser-area-v1-page *::after {
  box-sizing: border-box;
}

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

.laser-area-v1-container--content {
  width: min(1180px, calc(100% - 48px));
}

.laser-area-v1-container--faq {
  width: min(980px, calc(100% - 48px));
}

.laser-area-v1-gold-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    #a2682a 0%,
    #be8c3c 12%,
    #d3b15f 27%,
    #faf0a0 40%,
    #ffffc2 49%,
    #d3b15f 58%,
    #be8c3c 70%,
    #b17b32 80%,
    #d4a245 90%,
    #a4692a 100%
  );
}

.laser-area-v1-gold-title {
  margin: 0;
  color: #d6b15f;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  background: linear-gradient(
    105deg,
    #ffdfbc 0%,
    #be8c3c 16%,
    #d3b15f 32%,
    #faf0a0 50%,
    #d3b15f 68%,
    #bb8332 86%,
    #e1b453 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.laser-area-v1-gold-title--on-white {
  background-image: linear-gradient(
    105deg,
    #9b6224 0%,
    #be8c3c 22%,
    #d3b15f 42%,
    #a4692a 72%,
    #bb8332 100%
  );
}

.laser-area-v1-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.92fr);
  min-height: clamp(540px, 58vw, 720px);
  background: radial-gradient(
    circle at 48% 42%,
    #6f6f6f 0%,
    #585858 44%,
    #454545 100%
  );
}

.laser-area-v1-hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(54px, 7vw, 108px) clamp(32px, 7vw, 110px);
}

.laser-area-v1-hero__media {
  min-height: 460px;
  overflow: hidden;
  background: #ddd;
}

.laser-area-v1-hero__media img,
.laser-area-v1-media-fallback {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.laser-area-v1-hero__media img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.laser-area-v1-media-fallback,
.laser-area-v1-card-fallback,
.laser-area-v1-team-fallback {
  display: block;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 38% 32%, #777, #555 58%, #444);
}

.laser-area-v1-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(34px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.laser-area-v1-breadcrumb a {
  color: #efd9ad;
  text-decoration: none;
}

.laser-area-v1-breadcrumb a:hover {
  text-decoration: underline;
}

.laser-area-v1-kicker {
  margin: 0 0 14px;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.laser-area-v1-kicker--dark {
  color: #9b6224;
}

.laser-area-v1-hero h1 {
  max-width: 900px;
  font-size: clamp(2.65rem, 5vw, 4.75rem);
}

.laser-area-v1-lead {
  max-width: 790px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.76;
}

.laser-area-v1-lead a {
  color: #f1cf88;
}

.laser-area-v1-lead strong {
  color: #fff;
}

.laser-area-v1-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.laser-area-v1-actions--center {
  justify-content: center;
}

.laser-area-v1-page .button {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid #bb8332;
  border-radius: 0;
  background: #bb8332;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
}

.laser-area-v1-page .button:hover {
  border-color: #a4692a;
  background: #a4692a;
  color: #fff;
  transform: none;
}

.laser-area-v1-band {
  padding: clamp(64px, 7vw, 96px) 0;
}

.laser-area-v1-band--white,
.laser-area-v1-band--faq,
.laser-area-v1-band--other {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.laser-area-v1-band--dark {
  color: #fff;
  background: radial-gradient(
    circle at 50% 35%,
    #686868 0%,
    #555 40%,
    #484848 74%,
    #3f3f3f 100%
  );
}

.laser-area-v1-band--content {
  background: #f7f5f1;
}

.laser-area-v1-heading {
  max-width: 900px;
  margin: 0 0 clamp(34px, 5vw, 56px);
}

.laser-area-v1-heading--center {
  margin-inline: auto;
  text-align: center;
}

.laser-area-v1-heading p {
  max-width: 760px;
  margin: 20px auto 0;
  color: #5c5c5c;
  line-height: 1.75;
}

.laser-area-v1-heading--light p {
  color: rgba(255, 255, 255, 0.78);
}

.laser-area-v1-before-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.laser-area-v1-before-card {
  overflow: hidden;
  border: 1px solid #e7e0d6;
  background: #fff;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
}

.laser-area-v1-before-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f1ed;
  cursor: zoom-in;
}

.laser-area-v1-before-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.laser-area-v1-before-card__image:hover img {
  transform: scale(1.02);
  opacity: 0.94;
}

.laser-area-v1-before-card__label {
  display: block;
  padding: 14px 16px 16px;
  color: #9d692a;
  font-weight: 600;
  text-align: center;
}

.laser-area-v1-team-grid {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
}

.laser-area-v1-team-grid--1 {
  grid-template-columns: minmax(0, 1fr);
}

.laser-area-v1-team-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.laser-area-v1-team-grid--3 {
  width: min(980px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.laser-area-v1-team-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.laser-area-v1-team-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.laser-area-v1-team-grid--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.laser-area-v1-team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.laser-area-v1-team-card img,
.laser-area-v1-team-fallback {
  width: 100%;
  aspect-ratio: 4 / 4.5;
}

.laser-area-v1-team-card img {
  display: block;
  object-fit: cover;
  object-position: center top;
}

.laser-area-v1-team-card__body {
  padding: 19px 18px 22px;
}

.laser-area-v1-team-card h3 {
  margin: 0;
  color: #9b672a;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
}

.laser-area-v1-team-card p {
  margin: 11px 0 0;
  color: #595959;
  font-size: 0.92rem;
  line-height: 1.68;
}

.laser-area-v1-content-list {
  border-top: 1px solid rgba(190, 140, 60, 0.42);
}

.laser-area-v1-content-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 58px);
  padding: clamp(34px, 4.5vw, 56px) 0;
  border-bottom: 1px solid rgba(190, 140, 60, 0.42);
}

.laser-area-v1-content-row__number {
  color: #bb8332;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.laser-area-v1-content-row__copy h2 {
  margin: 0 0 18px;
  color: #8f5b20;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 500;
  line-height: 1.25;
}

.laser-area-v1-prose {
  max-width: 850px;
  color: #4b4b4b;
  font-size: 1rem;
  line-height: 1.85;
}

.laser-area-v1-prose > *:first-child {
  margin-top: 0;
}

.laser-area-v1-prose > *:last-child {
  margin-bottom: 0;
}

.laser-area-v1-prose p,
.laser-area-v1-prose ul,
.laser-area-v1-prose ol {
  margin: 0 0 1.25em;
}

.laser-area-v1-prose a {
  color: #8f5b20;
}

.laser-area-v1-faq {
  border-top: 1px solid #e4ddd3;
}

.laser-area-v1-faq details {
  border-bottom: 1px solid #e4ddd3;
}

.laser-area-v1-faq summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: #333;
  cursor: pointer;
  font-weight: 650;
  line-height: 1.55;
  list-style: none;
}

.laser-area-v1-faq summary::-webkit-details-marker {
  display: none;
}

.laser-area-v1-faq summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 4px;
  color: #bb8332;
  font-size: 1.6rem;
  font-weight: 400;
}

.laser-area-v1-faq details[open] summary::after {
  content: "−";
}

.laser-area-v1-faq__answer {
  padding: 0 0 24px;
  color: #555;
  line-height: 1.75;
}

.laser-area-v1-faq__answer > *:last-child {
  margin-bottom: 0;
}

.laser-area-v1-other-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.laser-area-v1-other-card {
  min-width: 0;
}

.laser-area-v1-other-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #e7e0d6;
  background: #fff;
  color: #333;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.laser-area-v1-other-card > a:hover {
  transform: translateY(-3px);
  border-color: #cfad70;
  box-shadow: 0 13px 28px rgba(37, 31, 25, 0.11);
}

.laser-area-v1-other-card img,
.laser-area-v1-card-fallback {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.laser-area-v1-other-card img {
  display: block;
  object-fit: cover;
}

.laser-area-v1-other-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 17px 16px 18px;
}

.laser-area-v1-other-card h3 {
  margin: 0;
  color: #8f6028;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.laser-area-v1-other-card p {
  margin: 10px 0 0;
  color: #626262;
  font-size: 0.86rem;
  line-height: 1.6;
}

.laser-area-v1-other-card__body > span {
  margin-top: auto;
  padding-top: 14px;
  color: #9b672a;
  font-size: 0.82rem;
  font-weight: 650;
}

.laser-area-v1-cta {
  padding: clamp(72px, 8vw, 110px) 0;
  background: radial-gradient(
    circle at 50% 45%,
    #626262 0%,
    #505050 48%,
    #424242 100%
  );
  color: #fff;
  text-align: center;
}

.laser-area-v1-cta p {
  max-width: 740px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.75;
}

body:has(.laser-area-v1-page) .site-footer,
body.visual-parity-v1:has(.laser-area-v1-page) .site-footer {
  margin-top: 0;
}

.laser-area-v1-page a:focus-visible,
.laser-area-v1-page button:focus-visible {
  outline: 3px solid #d3b15f;
  outline-offset: 3px;
}

/* Treatment admin — group filters */
.treatment-admin-group-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.treatment-admin-group-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.treatment-admin-group-tabs button span {
  display: inline-grid;
  min-width: 22px;
  min-height: 22px;
  place-items: center;
  padding: 1px 6px;
  border-radius: 999px;
  background: rgba(139, 112, 87, 0.12);
  font-size: 10px;
}

.treatment-admin-group-tabs button.is-active {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.treatment-admin-template-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 16px;
  padding: 15px 17px;
  border: 1px solid rgba(187, 131, 50, 0.32);
  border-radius: 14px;
  background: rgba(187, 131, 50, 0.07);
}

.treatment-admin-template-banner > div {
  display: grid;
  gap: 2px;
}

.treatment-admin-template-banner span {
  color: #8f6028;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.treatment-admin-template-banner strong {
  color: #3b3126;
}

.treatment-admin-template-banner small {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.55;
}

.laser-area-admin-template-flow {
  display: grid;
  gap: 10px;
}

.laser-area-admin-template-flow article {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.laser-area-admin-template-flow article > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #f3eee6;
  color: #77552f;
  font-size: 12px;
  font-weight: 800;
}

.laser-area-admin-template-flow article > div {
  display: grid;
  gap: 3px;
}

.laser-area-admin-template-flow article small {
  color: var(--muted);
  font-size: 11px;
}

.laser-area-admin-template-flow article em {
  padding: 5px 9px;
  border-radius: 999px;
  background: #f5f2ed;
  color: #7b654b;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.laser-area-admin-template-note {
  margin-top: 18px;
  padding: 16px 17px;
  border-left: 3px solid #bb8332;
  background: #faf7f1;
}

.laser-area-admin-template-note p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.laser-area-admin-template-note a {
  color: #8f6028;
}

@media (max-width: 1240px) {
  .laser-area-v1-team-grid--5,
  .laser-area-v1-team-grid--6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .laser-area-v1-other-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .laser-area-v1-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .laser-area-v1-hero__copy {
    padding: clamp(48px, 8vw, 76px) clamp(26px, 6vw, 60px);
  }

  .laser-area-v1-hero__media {
    min-height: min(74vw, 620px);
  }

  .laser-area-v1-team-grid--4,
  .laser-area-v1-team-grid--5,
  .laser-area-v1-team-grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .laser-area-v1-other-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .laser-area-v1-before-grid,
  .laser-area-v1-team-grid--3,
  .laser-area-v1-team-grid--4,
  .laser-area-v1-team-grid--5,
  .laser-area-v1-team-grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .laser-area-v1-other-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .treatment-admin-template-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .laser-area-v1-container,
  .laser-area-v1-container--content,
  .laser-area-v1-container--faq {
    width: calc(100% - 28px);
  }

  .laser-area-v1-hero__copy {
    padding: 48px 20px 54px;
  }

  .laser-area-v1-hero__media {
    min-height: 82vw;
  }

  .laser-area-v1-before-grid,
  .laser-area-v1-team-grid {
    grid-template-columns: 1fr;
  }

  .laser-area-v1-content-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
  }

  .laser-area-v1-other-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .laser-area-v1-other-card__body {
    padding: 14px 12px 15px;
  }

  .laser-area-v1-other-card h3 {
    font-size: 0.94rem;
  }

  .laser-area-v1-other-card p {
    display: none;
  }

  .laser-area-admin-template-flow article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .laser-area-admin-template-flow article em {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 420px) {
  .laser-area-v1-other-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .laser-area-v1-page *,
  .laser-area-v1-page *::before,
  .laser-area-v1-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   Generic Treatment Price Pages V1
   ========================================================= */

.treatment-v1-price-links {
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(48px, 6vw, 78px);
}

.treatment-v1-price-link-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.site-main > .price-page-v1 {
  width: 100%;
  max-width: none;
  margin: 0;
}

.price-page-v1 {
  overflow: hidden;
  background: #fff;
  color: #333;
}

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

.price-page-v1-container--text {
  width: min(920px, calc(100% - 48px));
}

.price-page-v1-hero {
  padding: clamp(72px, 8vw, 116px) 0;
  background: radial-gradient(
    circle at 50% 36%,
    #6e6e6e 0%,
    #565656 40%,
    #494949 76%,
    #404040 100%
  );
  color: #fff;
}

.price-page-v1-hero__grid {
  display: block;
}

.price-page-v1-hero__grid--with-media {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
}

.price-page-v1-hero__copy {
  min-width: 0;
}

.price-page-v1-hero__media {
  margin: 0;
  min-height: clamp(360px, 34vw, 520px);
  overflow: hidden;
  background: #3f3f3f;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.price-page-v1-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.price-page-v1-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(34px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
}

.price-page-v1-breadcrumb a {
  color: #efd9ad;
  text-decoration: none;
}

.price-page-v1-kicker {
  margin: 0 0 14px;
  color: #ead2a8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-page-v1-lead {
  max-width: 900px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.5vw, 1.25rem);
  line-height: 1.76;
}

.price-page-v1-band {
  padding: clamp(64px, 7vw, 96px) 0;
}

.price-page-v1-band--white {
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(190, 140, 60, 0.055),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 72%,
      rgba(164, 105, 42, 0.04),
      transparent 30%
    ),
    #fff;
}

.price-page-v1-band--dark {
  background: radial-gradient(
    circle at 50% 35%,
    #686868 0%,
    #555 40%,
    #4a4a4a 74%,
    #414141 100%
  );
  color: #fff;
}

.price-page-v1-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.price-page-v1-card {
  overflow: hidden;
  border: 1px solid #e7e0d6;
  background: #fff;
  box-shadow: 0 8px 22px rgba(37, 31, 25, 0.07);
}

.price-page-v1-card > h2 {
  margin: 0;
  padding: 20px 22px;
  border-bottom: 1px solid #eee7dc;
  color: #9d692a;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.price-page-v1-table-wrap {
  overflow-x: auto;
}

.price-page-v1-card table {
  width: 100%;
  border-collapse: collapse;
}

.price-page-v1-card th,
.price-page-v1-card td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee8df;
  text-align: left;
  vertical-align: top;
}

.price-page-v1-card th:last-child,
.price-page-v1-card td:last-child {
  width: 92px;
  text-align: right;
  white-space: nowrap;
}

.price-page-v1-card td a {
  color: #8f6028;
  text-decoration: none;
}

.price-page-v1-card td small {
  display: block;
  margin-top: 4px;
  color: #777;
}

.price-page-v1-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
}

.price-page-v1-package-grid article {
  display: grid;
  align-content: center;
  min-height: 180px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(32, 32, 32, 0.34);
  text-align: center;
}

.price-page-v1-package-grid h3 {
  margin: 0;
  color: #e0bd75;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: 1.18rem;
  font-weight: 500;
}

.price-page-v1-package-grid strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 500;
}

.price-page-v1-team-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
}

.price-page-v1-team-grid--1 {
  grid-template-columns: minmax(0, 1fr);
}
.price-page-v1-team-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.price-page-v1-team-grid--3 {
  width: min(980px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.price-page-v1-team-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.price-page-v1-team-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.price-page-v1-team-grid--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.price-page-v1-team-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(32, 32, 32, 0.34);
}

.price-page-v1-team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.price-page-v1-team-card > div {
  padding: 18px;
}

.price-page-v1-team-card h3 {
  margin: 0;
  color: #e0bd75;
  font-family: var(--font-body, Roboto, Arial, Helvetica, sans-serif);
  font-size: 1rem;
  font-weight: 600;
}

.price-page-v1-team-card p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  line-height: 1.55;
}

.price-page-v1-cta {
  padding: clamp(72px, 8vw, 110px) 0;
  background: radial-gradient(
    circle at 50% 45%,
    #626262 0%,
    #505050 48%,
    #424242 100%
  );
  color: #fff;
  text-align: center;
}

.price-page-v1-cta p {
  max-width: 720px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.price-page-v1-cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

body:has(.price-page-v1) .site-footer,
body.visual-parity-v1:has(.price-page-v1) .site-footer {
  margin-top: 0;
}

/* Admin */
.price-admin-list,
.price-admin-manager {
  width: min(1480px, 100%);
  margin: 0 auto;
}

.price-admin-panel[hidden] {
  display: none !important;
}

.price-admin-switches {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 8px;
}

.price-admin-item-list,
.price-admin-faq-list {
  display: grid;
  gap: 16px;
}

.price-admin-item,
.price-admin-faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.price-admin-item__toolbar,
.price-admin-faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.price-admin-item__toolbar > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.price-admin-remove {
  color: #9d2f2f;
}

.price-admin-inline-checks {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.price-admin-faq-language + .price-admin-faq-language {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.price-admin-template-flow {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.4em;
}

.price-admin-template-flow li {
  padding: 10px 0;
}

.price-admin-template-flow li span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1240px) {
  .price-page-v1-team-grid--5,
  .price-page-v1-team-grid--6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1050px) {
  .price-page-v1-hero__grid--with-media {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 30px;
  }

  .price-page-v1-grid,
  .price-page-v1-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-page-v1-team-grid--4,
  .price-page-v1-team-grid--5,
  .price-page-v1-team-grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .price-page-v1-hero__grid--with-media {
    grid-template-columns: 1fr;
  }

  .price-page-v1-hero__media {
    min-height: min(70vw, 520px);
  }

  .price-page-v1-team-grid--3,
  .price-page-v1-team-grid--4,
  .price-page-v1-team-grid--5,
  .price-page-v1-team-grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .price-page-v1-container,
  .price-page-v1-container--text {
    width: calc(100% - 36px);
  }

  .price-page-v1-hero {
    padding: 58px 0;
  }

  .price-page-v1-hero__media {
    min-height: 76vw;
  }

  .price-page-v1-grid,
  .price-page-v1-package-grid,
  .price-page-v1-team-grid {
    grid-template-columns: 1fr;
  }

  .price-page-v1-band {
    padding: 58px 0;
  }

  .treatment-v1-price-link-grid .button {
    width: 100%;
  }
}
