/* Nevadent VIP (v1) — production theme.css (from preview.css)
 * Loaded only when active_pack=nevadent via NevadentThemeAssets.
 */
/* Nevadent Premium HTML preview — tokens + layout */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Noto+Sans+Arabic:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* Dark / black + gold / platinum */
  --nv-primary: #0e0e0e;
  --nv-primary-deep: #050505;
  --nv-accent: #c6a75e;
  --nv-accent-soft: #e4d4a8;
  --nv-platinum: #b8b8b4;
  --nv-fg: #121212;
  --nv-muted: #6a6a66;
  --nv-surface: #f4f3f0;
  --nv-white: #ffffff;
  --nv-line: rgba(14, 14, 14, 0.1);
  --nv-font-display: 'Outfit', system-ui, sans-serif;
  --nv-font-body: 'DM Sans', system-ui, sans-serif;
  --nv-container: 72rem;
  --nv-pad: clamp(1.25rem, 4vw, 2.5rem);
  --nv-header-h: 4.5rem;
  --nv-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[dir='rtl'] {
  --nv-font-display: 'Noto Sans Arabic', 'Outfit', system-ui, sans-serif;
  --nv-font-body: 'Noto Sans Arabic', 'DM Sans', system-ui, sans-serif;
}

html[dir='rtl'] body {
  letter-spacing: 0;
  line-height: 1.7;
}

html[dir='rtl'] .brand,
html[dir='rtl'] .eyebrow,
html[dir='rtl'] .amenity__label,
html[dir='rtl'] .journey__index,
html[dir='rtl'] .ba__tags span,
html[dir='rtl'] .preview-badge {
  letter-spacing: 0.02em;
}

html[dir='rtl'] .hero__shade {
  background:
    linear-gradient(255deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.52) 48%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(to top, rgba(5, 5, 5, 0.72), transparent 45%);
}

html[dir='rtl'] .film {
  direction: rtl;
}

html[dir='rtl'] .cta-band .btn-row {
  justify-content: center;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--nv-font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--nv-fg);
  background: var(--nv-white);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2 * var(--nv-pad), var(--nv-container));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nv-accent);
}

h1,
h2,
h3,
.display {
  font-family: var(--nv-font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.lead {
  margin: 0;
  color: var(--nv-muted);
  font-size: 1.125rem;
  max-width: 36rem;
}

/* —— Top bar —— */
.topbar {
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 45;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.55rem;
  flex-wrap: wrap;
}

.topbar__langs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.topbar__langs a,
.topbar__langs button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: color 0.2s var(--nv-ease), background 0.2s var(--nv-ease);
}

.topbar__langs a:hover,
.topbar__langs button:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
}

.topbar__langs a[aria-pressed='true'],
.topbar__langs a[aria-current='page'],
.topbar__langs button[aria-pressed='true'] {
  color: var(--nv-accent-soft);
  background: rgba(198, 167, 94, 0.16);
}

.topbar__langs-flag {
  font-size: 1rem;
  line-height: 1;
}

.topbar__langs-code {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.topbar__contact {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar__contact a:hover {
  color: var(--nv-accent-soft);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
  color: var(--nv-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nv-header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand img {
  height: 2.5rem;
  width: auto;
  display: block;
}

.brand--text {
  font-family: var(--nv-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand--text span {
  color: var(--nv-accent);
}

.nav {
  display: none;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
  color: var(--nv-accent-soft);
}

.nav-toggle {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--nv-white);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.nav.is-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  inset-inline: var(--nv-pad);
  top: calc(var(--nv-header-h) + 0.35rem);
  background: var(--nv-primary-deep);
  color: var(--nv-white);
  padding: 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--nv-ease), background 0.25s, color 0.25s, border-color 0.25s;
}

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

.btn--gold {
  background: var(--nv-accent);
  color: var(--nv-primary-deep);
}

.btn--gold:hover {
  background: var(--nv-accent-soft);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--nv-white);
}

.btn--ghost:hover {
  border-color: var(--nv-accent);
  color: var(--nv-accent-soft);
}

.btn--outline {
  background: transparent;
  border-color: var(--nv-primary);
  color: var(--nv-primary);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

/* —— Hero —— full first viewport under overlay chrome —— */
.site-chrome {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.35), transparent);
  transition: background 0.35s var(--nv-ease), border-color 0.35s var(--nv-ease), backdrop-filter 0.35s;
}

.site-chrome .topbar {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-chrome .site-header {
  position: relative;
  top: auto;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.site-chrome.is-solid {
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-chrome.is-solid .site-header {
  background: transparent;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--nv-white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.52) 48%, rgba(5, 5, 5, 0.28) 100%),
    linear-gradient(to top, rgba(5, 5, 5, 0.72), transparent 45%);
}

.hero__content {
  padding: clamp(7.5rem, 14vh, 9rem) 0 clamp(3rem, 8vh, 5rem);
  max-width: 40rem;
  margin-inline-end: auto; /* LTR sol / RTL sağ — container pad korunur */
}

.hero__content h1 {
  font-size: clamp(2.4rem, 6vw, 4.25rem);
  margin-bottom: 1rem;
}

.hero__content .lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero__controls {
  position: absolute;
  inset-inline-end: var(--nv-pad);
  bottom: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

.hero__controls button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(5, 5, 5, 0.45);
  color: var(--nv-white);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.hero__controls button:hover {
  border-color: var(--nv-accent);
  color: var(--nv-accent-soft);
}

/* —— Sections —— */
.section {
  padding-block: clamp(3.5rem, 9vw, 6.5rem);
}

.section--surface {
  background: var(--nv-surface);
}

.section--deep {
  background: var(--nv-primary-deep);
  color: var(--nv-white);
}

.section--deep .lead {
  color: rgba(255, 255, 255, 0.7);
}

.section__head {
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
  max-width: 36rem;
}

.section__head h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

/* International journey — timeline */
.journey {
  display: grid;
  gap: 0;
  position: relative;
}

@media (min-width: 900px) {
  .journey {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
}

.journey__step {
  position: relative;
  padding: 1.5rem 0 1.75rem 1.25rem;
  border-inline-start: 1px solid rgba(198, 167, 94, 0.35);
}

@media (min-width: 900px) {
  .journey__step {
    padding: 0 1.25rem 0 0;
    border-inline-start: 0;
  }
  [dir='rtl'] .journey__step {
    padding: 0 0 0 1.25rem;
  }
}

.journey__rail {
  display: none;
}

@media (min-width: 900px) {
  .journey__rail {
    display: block;
    position: absolute;
    top: 1.35rem;
    inset-inline-start: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--nv-accent), rgba(198, 167, 94, 0.15));
  }
  .journey__step:last-child .journey__rail {
    width: 1.35rem;
  }
  [dir='rtl'] .journey__rail {
    background: linear-gradient(270deg, var(--nv-accent), rgba(198, 167, 94, 0.15));
  }
}

.journey__index {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 1.15rem;
  border-radius: 50%;
  border: 1px solid rgba(198, 167, 94, 0.55);
  background: var(--nv-white);
  font-family: var(--nv-font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--nv-accent);
  box-shadow: 0 0 0 6px var(--nv-surface);
  transition: background 0.35s var(--nv-ease), color 0.35s, border-color 0.35s;
}

.journey__step:hover .journey__index {
  background: var(--nv-primary);
  color: var(--nv-accent-soft);
  border-color: var(--nv-accent);
}

.journey__step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.journey__step p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.95rem;
  max-width: 14rem;
}

/* Treatments — edge-to-edge strips, no cards */
.treatments {
  display: grid;
  gap: 1px;
  background: var(--nv-line);
  margin-inline: calc(-1 * var(--nv-pad));
  width: calc(100% + 2 * var(--nv-pad));
}

@media (min-width: 900px) {
  .treatments {
    grid-template-columns: 1.2fr 1fr;
    margin-inline: 0;
    width: 100%;
  }
}

.treatment {
  position: relative;
  min-height: 16rem;
  display: grid;
  align-items: end;
  padding: 1.75rem;
  color: var(--nv-white);
  overflow: hidden;
  isolation: isolate;
  background: var(--nv-primary);
}

.treatment--wide {
  min-height: 22rem;
}

@media (min-width: 900px) {
  .treatment--wide {
    grid-row: span 2;
    min-height: 100%;
  }
}

.treatment__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1.1s var(--nv-ease);
}

.treatment:hover .treatment__bg {
  transform: scale(1.08);
}

.treatment__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.22));
}

.treatment h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.treatment p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
  max-width: 22rem;
}

/* Film / tech band */
.film {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .film {
    grid-template-columns: 1fr 1.15fr;
    gap: 3.5rem;
  }
}

.film__frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0.25rem;
  background: #000;
}

.film__frame--video {
  aspect-ratio: 9 / 16;
  max-width: min(100%, 22rem);
  margin-inline: auto;
  border-radius: 1rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

@media (min-width: 900px) {
  .film__frame--video {
    margin-inline: 0 0 auto;
  }
}

.film__frame video,
.film__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film__video {
  display: block;
}

.film__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.film__list li {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  padding-block: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.film__list li::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--nv-accent);
  flex-shrink: 0;
  translate: 0 0.2rem;
}

/* Doctors */
.doctors {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .doctors {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .doctors--single {
    grid-template-columns: minmax(0, 20rem);
    justify-content: start;
  }
}

.doctor {
  color: inherit;
  text-decoration: none;
}

a.doctor:hover h3 {
  color: var(--nv-accent);
}

.doctor figure {
  margin: 0;
}

.doctor__photo {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  background: linear-gradient(160deg, #2a2a2a, #050505);
  margin-bottom: 1rem;
}

.doctor h3 {
  font-size: 1.1rem;
}

.doctor p {
  margin: 0.25rem 0 0;
  color: var(--nv-muted);
  font-size: 0.9rem;
}

/* Stories */
.stories {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .stories {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story {
  padding-block: 0.5rem;
  border-top: 2px solid var(--nv-accent);
}

.story blockquote {
  margin: 1rem 0;
  font-family: var(--nv-font-display);
  font-size: 1.25rem;
  line-height: 1.45;
  font-weight: 500;
}

.story cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--nv-muted);
}

/* CTA band */
.cta-band {
  padding-block: clamp(3rem, 8vw, 5rem);
  background:
    radial-gradient(ellipse at 20% 50%, rgba(198, 167, 94, 0.22), transparent 50%),
    var(--nv-primary);
  color: var(--nv-white);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.cta-band .lead {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.75);
}

.cta-band .btn-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(198, 167, 94, 0.12), transparent 45%),
    var(--nv-primary-deep);
  color: rgba(255, 255, 255, 0.72);
  padding-block: clamp(3.25rem, 8vw, 5rem) 1.75rem;
  font-size: 0.95rem;
}

.site-footer__accent {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nv-accent), transparent);
}

.site-footer__grid {
  display: grid;
  gap: 2.5rem 2rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 700px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.35fr 0.85fr 0.95fr 1.15fr;
    gap: 2.5rem;
  }
}

.site-footer .brand {
  color: var(--nv-white);
  margin-bottom: 1rem;
}

.site-footer .brand img {
  height: 2.75rem;
}

.site-footer__tag {
  margin: 0 0 1.25rem;
  max-width: 26rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(198, 167, 94, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer__rating strong {
  font-family: var(--nv-font-display);
  font-size: 1.5rem;
  color: var(--nv-accent);
  line-height: 1;
}

.site-footer__stars {
  display: block;
  color: var(--nv-accent-soft);
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  margin-bottom: 0.15rem;
}

.site-footer__rating span:last-child {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer__social a {
  color: var(--nv-platinum);
}

.site-footer__title {
  margin: 0 0 1.15rem;
  font-family: var(--nv-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--nv-white);
  letter-spacing: 0.04em;
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.site-footer__links a,
.site-footer__links span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.site-footer__links a:hover {
  color: var(--nv-accent-soft);
}

.site-footer__contact li {
  display: grid;
  gap: 0.2rem;
}

.site-footer__contact span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nv-accent);
}

.site-footer__contact a,
.site-footer__contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.site-footer__contact a:hover {
  color: var(--nv-accent-soft);
}

.site-footer__cta {
  margin-top: 1.35rem;
  padding: 0.75rem 1.15rem;
  font-size: 0.85rem;
}

.site-footer a:hover {
  color: var(--nv-accent-soft);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__legal a:hover {
  color: var(--nv-accent-soft);
}

/* Contact page */
.page-hero {
  background: var(--nv-primary-deep);
  color: var(--nv-white);
  padding: calc(6.5rem + 3.5rem) 0 3rem;
  text-align: start;
}

.page-hero > .container {
  text-align: start;
}

.page-hero h1 {
  text-align: start;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin-bottom: 0.75rem;
}

.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
  }
}

.form {
  display: grid;
  gap: 1rem;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nv-primary);
}

.form input,
.form select,
.form textarea {
  border: 1px solid var(--nv-line);
  border-radius: 0.5rem;
  padding: 0.85rem 1rem;
  background: var(--nv-white);
  color: var(--nv-fg);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(198, 167, 94, 0.45);
  border-color: var(--nv-accent);
}

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form__note {
  font-size: 0.85rem;
  color: var(--nv-muted);
  margin: 0;
}

.map-placeholder {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, rgba(14, 14, 14, 0.05), rgba(198, 167, 94, 0.14)),
    var(--nv-surface);
  border: 1px solid var(--nv-line);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
  color: var(--nv-muted);
}

.vip-note {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--nv-line);
}

.vip-note h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.8s var(--nv-ease), transform 0.8s var(--nv-ease);
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

.preview-badge {
  position: fixed;
  inset-inline-start: 1rem;
  bottom: 1rem;
  z-index: 50;
  background: var(--nv-accent);
  color: var(--nv-primary-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
  border-radius: 0.35rem;
  pointer-events: none;
}

/* —— After-hero: trust / amenities / journey visual language —— */
.section--after-hero {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(198, 167, 94, 0.08), transparent 42%),
    var(--nv-surface);
}

.block-head {
  display: grid;
  gap: 1rem;
  margin: clamp(3rem, 7vw, 4.5rem) 0 clamp(1.75rem, 4vw, 2.5rem);
  align-items: end;
}

@media (min-width: 800px) {
  .block-head {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
  }
}

.block-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 18ch;
}

.block-head .lead {
  margin: 0;
}

.trust {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--nv-primary-deep);
  color: var(--nv-white);
  margin-top: -0.25rem;
}

.trust--no-score {
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .trust {
    grid-template-columns: auto 1fr;
    gap: 3rem;
    padding-inline: clamp(1.75rem, 4vw, 2.75rem);
  }

  .trust--no-score {
    grid-template-columns: 1fr;
  }
}

.trust__score {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--nv-font-display);
}

.trust__score strong {
  font-size: clamp(3rem, 7vw, 4.25rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--nv-accent);
}

.trust__meta {
  display: grid;
  gap: 0.25rem;
}

.trust__stars {
  color: var(--nv-accent-soft);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.trust__meta span:last-child {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  font-family: var(--nv-font-body);
}

.trust__list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  .trust__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.trust__list li {
  position: relative;
  padding: 0.85rem 0.9rem 0.85rem 1.15rem;
  border: 1px solid rgba(198, 167, 94, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.trust__list li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--nv-accent);
}

/* Amenities — image + copy panels */
.amenities {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .amenities {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.amenity {
  display: grid;
  grid-template-rows: 11rem auto;
  background: var(--nv-white);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s var(--nv-ease);
}

.amenity:hover {
  transform: translateY(-4px);
}

.amenity__media {
  background-size: cover;
  background-position: center;
  position: relative;
  transform: scale(1.02);
  transition: transform 0.9s var(--nv-ease);
}

.amenity:hover .amenity__media {
  transform: scale(1.08);
}

.amenity__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.45), transparent 55%);
}

.amenity__body {
  position: relative;
  padding: 1.35rem 1.25rem 1.5rem;
  border-top: 2px solid var(--nv-accent);
}

.amenity__num {
  position: absolute;
  inset-inline-end: 1rem;
  top: -1.1rem;
  font-family: var(--nv-font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(198, 167, 94, 0.28);
  letter-spacing: -0.03em;
  pointer-events: none;
}

.amenity__label {
  margin: 0 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nv-platinum);
}

.amenity h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.amenity p {
  margin: 0;
  color: var(--nv-muted);
  font-size: 0.95rem;
}

.block-head--center {
  text-align: center;
  margin-inline: auto;
  justify-items: center;
}

@media (min-width: 800px) {
  .block-head--center {
    grid-template-columns: 1fr;
    max-width: 36rem;
  }
  .block-head--center .lead {
    margin-inline: auto;
  }
  .block-head--center h2 {
    max-width: none;
  }
}

/* Partners — infinite logo strip for theme reuse */
.partners {
  padding-block: clamp(3rem, 7vw, 5rem);
  background: var(--nv-primary-deep);
  color: var(--nv-white);
  overflow: hidden;
}

.partners .eyebrow {
  color: var(--nv-accent);
}

.partners .lead {
  color: rgba(255, 255, 255, 0.65);
}

.partners__viewport {
  margin-top: 0.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners__track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: partners-marquee 42s linear infinite;
}

.partners__viewport:hover .partners__track,
.partners__viewport.is-paused .partners__track {
  animation-play-state: paused;
}

html[dir='rtl'] .partners__track {
  animation-name: partners-marquee-rtl;
}

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

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

.partners__list {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 3.5rem);
  list-style: none;
  margin: 0;
  padding: 1.5rem clamp(1.5rem, 4vw, 3rem);
}

.partners__item {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  min-width: 9.5rem;
  height: 4.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(198, 167, 94, 0.22);
  background: rgba(255, 255, 255, 0.03);
}

.partners__item span,
.partners__item img {
  font-family: var(--nv-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--nv-platinum);
  opacity: 0.85;
  transition: color 0.3s, opacity 0.3s;
}

.partners__item img {
  max-height: 2.25rem;
  width: auto;
  max-width: 8.5rem;
  object-fit: contain;
  filter: grayscale(1) brightness(1.35);
  opacity: 0.75;
}

.partners__item:hover span,
.partners__item:hover img {
  color: var(--nv-accent-soft);
  opacity: 1;
  filter: none;
}

.partners__note {
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .partners__list[aria-hidden='true'] {
    display: none;
  }
}

/* Before / after */
.ba-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .ba-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ba {
  position: relative;
  overflow: hidden;
  background: var(--nv-surface);
  margin: 0;
}

.ba:not(.ba--dual) {
  aspect-ratio: 4 / 5;
}

.ba:not(.ba--dual) > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--nv-ease);
}

.ba:not(.ba--dual):hover > img {
  transform: scale(1.06);
}

.ba__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.ba__shot {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.ba__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--nv-ease);
}

.ba--dual:hover .ba__shot img {
  transform: scale(1.04);
}

.ba__tag {
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.78);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba__caption {
  margin: 0.65rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--nv-ink, #1a1a1a);
}

.ba__tags {
  position: absolute;
  inset-inline: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  pointer-events: none;
}

.istanbul--caption .istanbul__content {
  max-width: 36rem;
}

.istanbul__caption {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
}

.ba__tags span {
  background: rgba(5, 5, 5, 0.78);
  color: var(--nv-accent-soft);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
}

/* Istanbul discovery — full-bleed photo band */
.istanbul {
  position: relative;
  min-height: min(58vh, 28rem);
  display: grid;
  align-items: end;
  color: var(--nv-white);
  overflow: hidden;
  isolation: isolate;
}

.istanbul__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.istanbul__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.28));
}

.istanbul__content {
  padding-block: clamp(3rem, 8vw, 5rem);
  max-width: 34rem;
  margin-inline-end: auto;
}

.istanbul__content h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.istanbul__content .lead {
  color: rgba(255, 255, 255, 0.8);
}

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero__rating strong {
  color: var(--nv-accent-soft);
  font-family: var(--nv-font-display);
  font-size: 1.15rem;
}


/* —— CMS legal / rich text —— */
body.nevadent-theme .legal-prose{
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  line-height: 1.75;
}
body.nevadent-theme .legal-prose h2{
  margin: 1.75rem 0 0.65rem;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
}
body.nevadent-theme .legal-prose a{
  color: var(--nv-accent, #c6a75e);
  font-weight: 600;
}

/* —— VIP blog listing —— */
.nv-blog__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .nv-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nv-blog__grid--listing {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nv-blog__card {
  background: var(--nv-surface, #f4f3f0);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nv-blog__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.nv-blog__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.nv-blog__card:hover .nv-blog__media img {
  transform: scale(1.04);
}
.nv-blog__body {
  padding: 1.15rem 1.25rem 1.35rem;
}
.nv-blog__body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  line-height: 1.35;
}
.nv-blog__body h3 a {
  color: inherit;
  text-decoration: none;
}
.nv-blog__body h3 a:hover {
  color: var(--nv-accent, #c6a75e);
}
.nv-blog__body p {
  margin: 0;
  color: var(--nv-muted, #6a6a66);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* —— VIP entry detail (service / blog / dentist) —— */
.nv-detail__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--nv-muted, #6a6a66);
}
.nv-detail__crumbs a {
  color: inherit;
  text-decoration: none;
}
.nv-detail__crumbs a:hover {
  color: var(--nv-accent, #c6a75e);
}
.nv-detail__layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 960px) {
  .nv-detail__layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr);
    align-items: start;
  }
}
.nv-detail__cover {
  margin: 0 0 1.5rem;
  border-radius: 1rem;
  overflow: hidden;
}
.nv-detail__cover img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.nv-detail__cover--portrait {
  max-width: 420px;
}
.nv-detail__meta {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.nv-detail__meta--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}
.nv-detail__meta li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: var(--nv-surface, #f4f3f0);
  border-radius: 0.75rem;
}
.nv-detail__meta--inline li {
  background: transparent;
  padding: 0;
  flex-direction: row;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--nv-muted, #6a6a66);
}
.nv-detail__meta span {
  font-size: 0.8rem;
  color: var(--nv-muted, #6a6a66);
}
.nv-detail__body.legal-prose {
  max-width: none;
  margin: 0;
  padding: 0;
}
.nv-detail__toc {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--nv-surface, #f4f3f0);
  border-radius: 0.75rem;
}
.nv-detail__toc ol {
  margin: 0.65rem 0 0;
  padding-left: 1.15rem;
}
.nv-detail__toc a {
  color: inherit;
  text-decoration: none;
}
.nv-detail__toc a:hover {
  color: var(--nv-accent, #c6a75e);
}
.nv-detail__faq {
  margin-top: 2.5rem;
}
.nv-detail__faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.85rem 0;
}
.nv-detail__faq-item summary {
  cursor: pointer;
  font-weight: 600;
}
.nv-detail__faq-item p,
.nv-detail__faq-item div {
  margin: 0.65rem 0 0;
  color: var(--nv-muted, #6a6a66);
  line-height: 1.65;
}
.nv-detail__list-block {
  margin-top: 1.75rem;
}
.nv-detail__list-block h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}
.nv-detail__list-block ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--nv-muted, #6a6a66);
  line-height: 1.7;
}
.nv-detail__aside .vip-note {
  position: sticky;
  top: 6rem;
}
.nv-detail__steps {
  margin-top: 2.5rem;
}

/* Sidebar CTA + feed */
.nv-detail__aside {
  display: grid;
  gap: 1.15rem;
  align-content: start;
}
@media (min-width: 960px) {
  .nv-detail__aside {
    position: sticky;
    top: 5.5rem;
  }
}
.nv-side-cta {
  padding: 1.5rem 1.35rem 1.4rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(198, 167, 94, 0.35), transparent 55%),
    linear-gradient(160deg, #1a1a1a 0%, #0a0a0a 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}
.nv-side-cta__eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nv-accent-soft, #e4d4a8);
}
.nv-side-cta__title {
  margin: 0 0 0.55rem;
  font-family: var(--nv-font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  color: #fff;
}
.nv-side-cta__lead {
  margin: 0 0 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.nv-side-cta__actions {
  display: grid;
  gap: 0.55rem;
}
.nv-side-cta__primary {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.nv-side-cta__ghost {
  display: grid;
  place-items: center;
  min-height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 94, 0.45);
  color: var(--nv-accent-soft, #e4d4a8);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.25s var(--nv-ease), border-color 0.25s var(--nv-ease);
}
.nv-side-cta__ghost:hover {
  background: rgba(198, 167, 94, 0.12);
  border-color: var(--nv-accent, #c6a75e);
}
.nv-side-cta__call {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  text-decoration: none;
}
.nv-side-cta__call span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.nv-side-cta__call strong {
  font-size: 0.98rem;
  color: #fff;
}
.nv-side-cta__hours {
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
  white-space: pre-line;
}
.nv-side-feed {
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 1rem;
  background: var(--nv-surface, #f4f3f0);
  border: 1px solid rgba(14, 14, 14, 0.06);
}
.nv-side-feed--secondary {
  background: #fff;
}
.nv-side-feed__title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-family: var(--nv-font-display);
}
.nv-side-feed__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.nv-side-feed__item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-radius: 0.65rem;
  padding: 0.2rem;
  transition: background 0.2s var(--nv-ease), transform 0.2s var(--nv-ease);
}
.nv-side-feed__item:hover {
  background: rgba(198, 167, 94, 0.12);
  transform: translateX(2px);
}
.nv-side-feed__thumb {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 0.55rem;
  background:
    linear-gradient(135deg, rgba(14, 14, 14, 0.08), rgba(198, 167, 94, 0.2)),
    var(--nv-primary, #0e0e0e);
  background-size: cover;
  background-position: center;
}
.nv-side-feed__text {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}
.nv-side-feed__text strong {
  font-size: 0.88rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nv-side-feed__text small {
  font-size: 0.75rem;
  color: var(--nv-muted, #6a6a66);
}
.nv-side-feed__all {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nv-accent, #c6a75e);
  text-decoration: none;
}
.nv-side-feed__all:hover {
  text-decoration: underline;
}

/* Full-bleed related cards */
.nv-related {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .nv-related {
    grid-template-columns: repeat(3, 1fr);
  }
}
.nv-related__card {
  position: relative;
  min-height: 240px;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  background:
    linear-gradient(135deg, #1a1a1a, #0e0e0e);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s var(--nv-ease);
}
.nv-related__card:hover {
  transform: translateY(-3px);
}
.nv-related__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0, 0, 0, 0.82) 100%);
}
.nv-related__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem 1.25rem;
}
.nv-related__body .eyebrow {
  color: var(--nv-accent-soft, #e4d4a8);
  margin: 0;
}
.nv-related__body strong {
  font-family: var(--nv-font-display);
  font-size: 1.15rem;
  line-height: 1.25;
}
.nv-related__body span:last-child {
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dentist detail extras */
.nv-dentist__photo {
  margin-bottom: 2rem;
}
.nv-dentist__focus,
.nv-dentist__story,
.nv-dentist__creds {
  margin-top: 2rem;
}
.nv-dentist__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nv-dentist__chips li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--nv-surface, #f4f3f0);
  border: 1px solid rgba(198, 167, 94, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--nv-fg, #121212);
}
.nv-dentist__cred-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .nv-dentist__cred-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.nv-dentist__cred {
  padding: 1.1rem 1.15rem;
  border-radius: 0.9rem;
  background: var(--nv-surface, #f4f3f0);
  border: 1px solid rgba(14, 14, 14, 0.06);
}
.nv-dentist__cred h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  color: var(--nv-accent, #c6a75e);
}
.nv-dentist__cred p,
.nv-dentist__cred ul {
  margin: 0;
  color: var(--nv-muted, #6a6a66);
  line-height: 1.6;
  font-size: 0.92rem;
}
.nv-dentist__cred ul {
  padding-left: 1.1rem;
}
.nv-dentist__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 1.75rem;
}
.nv-dentist__social a {
  color: var(--nv-accent, #c6a75e);
  font-weight: 600;
  text-decoration: none;
}
.nv-dentist__social a:hover {
  text-decoration: underline;
}
.nv-related--portrait .nv-related__card {
  min-height: 320px;
  background-position: center top;
}

/* —— Service detail composition —— */
.nv-svc__hero {
  position: relative;
  min-height: clamp(22rem, 58vh, 34rem);
  display: grid;
  align-items: end;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: calc(6.5rem + 2.5rem) 0 3.25rem;
  text-align: start;
}
.nv-svc__hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, rgba(5, 5, 5, 0.82) 70%, #050505 100%),
    radial-gradient(ellipse at 70% 20%, rgba(198, 167, 94, 0.18), transparent 50%);
}
.nv-svc__hero > .container {
  position: relative;
  z-index: 1;
}
.nv-svc__hero-inner {
  width: min(100%, 34rem);
  max-width: 34rem;
  margin: 0;
  margin-inline-end: auto;
  text-align: start;
}
.nv-svc__hero .btn-row {
  justify-content: flex-start;
}
.nv-svc__crumbs {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.15rem;
}
.nv-svc__crumbs a {
  color: rgba(255, 255, 255, 0.75);
}
.nv-svc__crumbs a:hover {
  color: var(--nv-accent-soft, #e4d4a8);
}
.nv-svc__hero h1 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 1.05;
  color: #fff;
  text-align: start;
}
.nv-svc__hero .lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 34rem;
  text-align: start;
}
.nv-svc__hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  margin: 1.1rem 0 1.35rem;
  justify-content: flex-start;
}
.nv-svc__hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(198, 167, 94, 0.35);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.88);
}
.nv-svc__hero .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.nv-svc__hero .btn--ghost:hover {
  border-color: var(--nv-accent, #c6a75e);
  color: var(--nv-accent-soft, #e4d4a8);
}
.nv-svc__body {
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
}
.nv-svc__intro {
  margin-bottom: 1.25rem;
}
.nv-svc__intro h2 {
  margin: 0.25rem 0 0;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}
.nv-svc__prose.legal-prose {
  max-width: none;
  padding: 0;
  margin: 0 0 2.5rem;
  color: var(--nv-fg, #121212);
}
.nv-svc__prose.legal-prose p {
  margin: 0 0 1rem;
  line-height: 1.8;
  color: var(--nv-muted, #6a6a66);
}
.nv-svc__prose.legal-prose h2,
.nv-svc__prose.legal-prose h3 {
  color: var(--nv-fg, #121212);
  margin-top: 1.75rem;
}
.nv-svc__steps {
  margin-top: 0.5rem;
  padding: 1.75rem 1.35rem;
  border-radius: 1.15rem;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(198, 167, 94, 0.1), transparent 55%),
    var(--nv-surface, #f4f3f0);
}
.nv-svc__step-grid {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) {
  .nv-svc__step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.nv-svc__step {
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(14, 14, 14, 0.06);
  box-shadow: 0 10px 28px rgba(14, 14, 14, 0.04);
  transition: transform 0.3s var(--nv-ease), border-color 0.3s var(--nv-ease);
}
.nv-svc__step:hover {
  transform: translateY(-3px);
  border-color: rgba(198, 167, 94, 0.45);
}
.nv-svc__step-num {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 94, 0.55);
  color: var(--nv-accent, #c6a75e);
  font-family: var(--nv-font-display);
  font-size: 0.85rem;
  font-weight: 600;
}
.nv-svc__step h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}
.nv-svc__step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--nv-muted, #6a6a66);
}
.nv-svc__faq {
  margin-top: 2.75rem;
}
.nv-svc__faq-list {
  display: grid;
  gap: 0.35rem;
}
.nv-svc__faq-item {
  border: 1px solid rgba(14, 14, 14, 0.08);
  border-radius: 0.85rem;
  padding: 0 1rem;
  background: #fff;
}
.nv-svc__faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 0.98rem;
}
.nv-svc__faq-item summary::-webkit-details-marker {
  display: none;
}
.nv-svc__faq-item[open] summary {
  color: var(--nv-accent, #c6a75e);
}
.nv-svc__faq-item p,
.nv-svc__faq-item div {
  margin: 0 0 1rem;
  color: var(--nv-muted, #6a6a66);
  line-height: 1.65;
  font-size: 0.92rem;
}
.nv-svc__cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.nv-svc__form-wrap .contact-layout {
  padding-top: 0.5rem;
}
.nv-svc__more {
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}
.nv-svc .nv-related__card {
  min-height: 280px;
}
@media (min-width: 960px) {
  .nv-svc .nv-detail__layout {
    gap: 2.5rem;
  }
}
