﻿:root {
  --bg: #05070b;
  --bg-soft: #0f131d;
  --panel: #201912;
  --text: #f2f4f8;
  --muted: #b3bbc8;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #d1b89c;
  --accent-strong: #e2ccb4;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nc-lightbox-open,
body.nc-modal-open {
  overflow: hidden;
}

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

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

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

.nc-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 9999;
  background: #fff;
  color: #000;
  padding: 0.6rem 0.9rem;
}

.nc-skip:focus {
  left: 1rem;
  top: 1rem;
}

.nc-home h1,
.nc-home h2,
.nc-home h3 {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-transform: none;
}

.nc-home p {
  margin: 0;
}

/* Header */
.nc-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 260;
  pointer-events: none;
}

.nc-header-shell {
  width: min(var(--container), calc(100% - 2rem));
  min-height: 112px;
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
  pointer-events: auto;
}

.nc-brand,
.nc-menu-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.52);
}

.nc-brand img,
.nc-menu-brand img {
  width: auto;
  height: auto;
  max-height: 24px;
  max-width: min(86vw, 620px);
  object-fit: contain;
}

.nc-brand,
.nc-menu-brand {
  height: 44px;
  padding: 0 0.65rem;
}

.nc-header-tools {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nc-menu-toggle,
.nc-menu-close {
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  font: inherit;
}

.nc-menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nc-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  transition: 0.2s ease;
}

body.nc-menu-open .nc-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nc-menu-open .nc-menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nc-menu-open .nc-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Fullscreen menu */
.nc-menu-panel {
  position: fixed;
  inset: 0;
  z-index: 220;
  background: linear-gradient(180deg, rgba(1, 1, 1, 0.95) 0%, rgba(2, 2, 2, 0.985) 100%);
}

.nc-menu-panel[hidden] {
  display: none;
}

body.nc-menu-open {
  overflow: hidden;
}

body.nc-menu-open .nc-header {
  opacity: 1;
  visibility: visible;
}

body.nc-menu-open .nc-menu-head {
  visibility: hidden;
  pointer-events: none;
}

.nc-menu-inner {
  min-height: 100%;
  padding: 1.1rem 0 2rem;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 1rem;
}

.nc-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nc-menu-head-tools {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nc-menu-close {
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nc-menu-links {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.95rem;
  text-align: center;
}

.nc-menu-group {
  display: grid;
  gap: 0.15rem;
  justify-items: center;
  width: fit-content;
  margin-inline: auto;
}

.nc-menu-main-link,
.nc-menu-links > a {
  border: 0;
  background: transparent;
  font-size: clamp(2rem, 6vw, 4.8rem);
  line-height: 0.9;
  color: #f6f8fb;
  padding: 0.1rem 0;
}

.nc-menu-main-link {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.nc-menu-main-label {
  cursor: default;
  text-transform: capitalize;
}

.nc-menu-main-link:hover,
.nc-menu-main-link:focus-visible,
.nc-menu-links > a:hover,
.nc-menu-links > a:focus-visible {
  color: var(--accent-strong);
}

.nc-menu-sub-links {
  display: grid;
  gap: 0.12rem;
  justify-items: start;
  width: max-content;
  max-width: 100%;
  margin-top: 0.3rem;
  margin-left: clamp(2.8rem, 4vw, 3.8rem);
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.nc-menu-sub-links a {
  font-size: clamp(1.05rem, 2.4vw, 1.55rem);
  color: #cbd2dd;
  line-height: 1.1;
  padding: 0.15rem 0;
}

.nc-menu-sub-links a:hover,
.nc-menu-sub-links a:focus-visible {
  color: var(--accent-strong);
}

.nc-menu-main-link::first-letter,
.nc-menu-links > a::first-letter,
.nc-menu-sub-links a::first-letter {
  text-transform: uppercase;
}

/* Main hero */
.nc-hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.nc-hero-bg {
  position: absolute;
  inset: 0;
  background: #000;
}

.nc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.nc-home .nc-hero-bg img {
  object-position: center top;
}

.nc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 70%, rgba(0, 0, 0, 0.86) 100%);
}

.nc-hero-content {
  position: relative;
  z-index: 2;
  padding: 8.8rem 0 4.2rem;
}

.nc-kicker {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.nc-hero-content h1 {
  margin-top: 0.6rem;
  font-size: clamp(2.1rem, 7.1vw, 6.2rem);
  line-height: 1.01;
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.nc-hero-title-line {
  display: block;
}

.nc-hero-divider {
  border: 0;
  height: 2px;
  margin: 0.1rem 0;
  width: 100%;
  transform: translateY(0.1em);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.62) 100%);
}

.nc-hero-content p {
  margin-top: 1rem;
  max-width: 58ch;
  color: #d0d6e0;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.nc-link-wave {
  display: inline-block;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.84rem;
  font-weight: 700;
  position: relative;
}

.nc-link-wave::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.36rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #fff 0 55%, var(--accent) 55% 100%);
}

/* Sections */
.nc-offer,
.nc-about,
.nc-reviews,
.nc-booking,
.nc-contact,
.nc-faq {
  padding: 4.2rem 0;
}

.nc-offer {
  background: #000;
}

.nc-offer h2,
.nc-about h2,
.nc-booking h2,
.nc-contact h2,
.nc-faq h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.nc-offer-list {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.nc-offer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem 0;
}

.nc-offer-row h3 {
  font-size: clamp(1.25rem, 2.6vw, 2.2rem);
}

.nc-offer-row h3 a:hover,
.nc-offer-row h3 a:focus-visible {
  color: var(--accent-strong);
}

.nc-offer-row p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.nc-offer-thumb {
  width: clamp(4.2rem, 10vw, 5.8rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  padding: 0.55rem;
}

.nc-offer-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nc-about {
  background: #fff;
  color: #12100d;
}

.nc-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.nc-about-copy p {
  margin-top: 0.9rem;
  color: #4f4338;
}

.nc-about-media {
  margin: 0;
}

.nc-about-media img {
  width: 100%;
  height: auto;
  max-height: min(84vh, 900px);
  object-fit: contain;
}

.nc-booking {
  background: #000;
}

.nc-reviews {
  position: relative;
  overflow: hidden;
  background: #000;
}

.nc-reviews .container {
  position: relative;
  z-index: 1;
}

.nc-reviews h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.nc-reviews-head {
  max-width: 68ch;
}

.nc-reviews-kicker {
  margin: 0;
  color: #6ed9b9;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nc-reviews-head > p:last-child {
  margin-top: 0.65rem;
  color: #c5ceda;
}

.nc-reviews-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.nc-review-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(20, 25, 37, 0.86) 100%);
  padding: clamp(0.95rem, 2vw, 1.3rem);
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.nc-review-card::before {
  content: "”";
  position: absolute;
  top: 0.45rem;
  right: 0.7rem;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.22);
}

.nc-review-card-wide {
  grid-column: span 2;
}

.nc-review-meta {
  display: grid;
  gap: 0.08rem;
}

.nc-review-stars {
  margin: 0;
  color: #06c18f;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.nc-review-author {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nc-review-date {
  margin: 0;
  color: #afbbcb;
  font-size: 0.95rem;
}

.nc-review-text {
  color: #e3e9f2;
  text-wrap: pretty;
}

.nc-review-reply {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(6, 11, 20, 0.74);
  padding: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.nc-review-reply-label {
  margin: 0;
  color: #d8bd9f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nc-reviews-link {
  margin-top: 1.35rem;
}

.nc-booking-layout {
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(0.9rem, 2vw, 1.6rem);
  align-items: stretch;
}

.nc-booking-layout > * {
  min-width: 0;
}

.nc-booking-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 48%, rgba(0, 0, 0, 0.4) 100%);
  padding: clamp(1rem, 2.2vw, 1.8rem);
  display: grid;
  align-content: start;
  gap: 0.95rem;
}

.nc-booking-label {
  margin: 0;
  color: #cdb392;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nc-booking-lead {
  color: #cad0db;
  max-width: 52ch;
}

.nc-booking-btn {
  justify-self: start;
  margin-top: 0.25rem;
}

.nc-booking-media {
  min-width: 0;
}

.nc-cert-carousel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-content: start;
}

.nc-cert-carousel-viewport {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
}

.nc-cert-carousel-track {
  display: flex;
  width: 100%;
  transform: translateX(0);
  transition: transform 260ms ease;
  will-change: transform;
}

.nc-cert-carousel-slide {
  margin: 0;
  flex: 0 0 100%;
  aspect-ratio: 4 / 5;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.45rem;
  overflow: hidden;
}

.nc-cert-carousel-slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.nc-cert-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.nc-cert-carousel-controls[hidden] {
  display: none;
}

.nc-cert-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 0;
}

.nc-cert-carousel-dots[hidden] {
  display: none;
}

.nc-cert-carousel-dot {
  width: 10px;
  height: 10px;
  min-height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.nc-cert-carousel-dot:hover,
.nc-cert-carousel-dot:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.44);
}

.nc-cert-carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nc-cert-carousel-dot.is-active {
  border-color: #f6f2ea;
  background: #f6f2ea;
  transform: scale(1.15);
}

.nc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1.2rem;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #131721;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nc-btn:hover,
.nc-btn:focus-visible {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.nc-contact {
  background: #fff;
  color: #12100d;
}

.nc-contact-main > p {
  margin-top: 0.55rem;
  color: #4f4338;
  max-width: 68ch;
}

.nc-contact-direct {
  margin-top: 1rem;
  max-width: 48rem;
  border: 1px solid rgba(18, 12, 8, 0.2);
  background: linear-gradient(145deg, #ffffff 0%, #f7f2eb 100%);
  padding: 0.95rem 1.05rem;
  display: grid;
  gap: 0.35rem;
}

.nc-contact-direct-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #6c5d4f;
}

.nc-contact-direct-mail {
  margin: 0;
  width: fit-content;
  color: #1f4f80;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-underline-offset: 2px;
}

.nc-contact-direct-mail:hover,
.nc-contact-direct-mail:focus-visible {
  color: #16395d;
}

.nc-contact-locations {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.nc-location-card {
  border: 1px solid rgba(18, 12, 8, 0.18);
  background: linear-gradient(145deg, #ffffff 0%, #f7f2eb 100%);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.nc-location-scope {
  margin: 0;
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #736557;
}

.nc-location-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  line-height: 1.25;
}

.nc-location-card p {
  margin: 0;
  color: #3f362d;
}

.nc-location-card a {
  color: #1f4f80;
  text-underline-offset: 2px;
}

.nc-location-map {
  margin-top: 0.7rem;
  border: 1px solid rgba(18, 12, 8, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f7f2eb 100%);
  aspect-ratio: 16 / 10;
}

.nc-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Subpages */
.nc-subpage .nc-sub-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8.6rem 0 3rem;
  background: #05070b;
}

.nc-subpage .nc-sub-hero-bg {
  position: absolute;
  inset: 0;
}

.nc-subpage .nc-sub-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.nc-subpage .nc-sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 12, 0.28) 0%, rgba(3, 5, 8, 0.72) 58%, rgba(2, 4, 7, 0.92) 100%);
}

.nc-subpage .nc-sub-hero-content {
  position: relative;
  z-index: 1;
}

.nc-subpage .nc-sub-hero h1 {
  margin-top: 0.5rem;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
}

.nc-subpage .nc-sub-hero p {
  margin-top: 0.85rem;
  color: #d7dce7;
  max-width: 66ch;
}

.nc-breadcrumb {
  margin-top: 0.7rem;
  color: #c5ccda;
  font-size: 0.9rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
}

.nc-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin: 0;
  padding: 0;
}

.nc-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.nc-breadcrumb li + li::before {
  content: "/";
  color: #c5ccda;
}

.nc-breadcrumb a {
  color: #f0f5ff;
}

.nc-breadcrumb [aria-current="page"] {
  color: #d7dce7;
}

.nc-service {
  padding: 2.2rem 0 4.4rem;
  background: #000;
}

.nc-procedures {
  padding: 0 0 2.2rem;
  background: #000;
}

.nc-service-grid {
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  gap: 1.2rem;
  align-items: start;
}

.nc-service-content {
  order: 1;
}

.nc-service-aside {
  order: 2;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.nc-register-card {
  order: 2;
}

.nc-service-aside .nc-register-card {
  order: initial;
}

.nc-aside-profile {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  overflow: hidden;
}

.nc-aside-profile img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.nc-aside-profile-copy {
  padding: 0.9rem 1rem 1rem;
  border-top: 1px solid var(--line);
}

.nc-aside-profile-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nc-aside-profile-copy h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.3;
}

.nc-aside-profile-copy p {
  margin: 0.55rem 0 0;
  color: #c8cfdb;
}

.nc-aside-note {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 0.9rem 1rem 1rem;
}

.nc-aside-note h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.3;
}

.nc-aside-note p {
  margin: 0.55rem 0 0;
  color: #c8cfdb;
}

.nc-register-card,
.nc-service-content,
.nc-procedures-wrap,
.nc-faq-wrap {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 1rem;
}

.nc-register-card h3,
.nc-service-content h2,
.nc-procedures-wrap h2,
.nc-faq-wrap h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.nc-register-card p {
  margin-top: 0.6rem;
  color: #c8cfdb;
}

.nc-register-card .nc-btn {
  margin-top: 0.9rem;
}

.nc-service-content ul {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: #dde2ea;
}

.nc-service-content li {
  margin: 0.35rem 0;
}

.nc-service-content .nc-service-note {
  margin-top: 0.8rem;
  color: #b8c0cf;
}

.nc-procedures-intro {
  margin-top: 0.65rem;
  color: #c8cfdb;
  max-width: 72ch;
}

.nc-procedures-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.nc-procedure-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(7, 10, 16, 0.9) 0%, rgba(4, 7, 12, 0.95) 100%);
  padding: 0.9rem 0.95rem;
}

.nc-procedure-card h3 {
  font-size: clamp(1.02rem, 2vw, 1.28rem);
}

.nc-procedure-card p {
  margin-top: 0.55rem;
  color: #cfd6e2;
}

.nc-service-media {
  margin-top: 1rem;
}

.nc-single-image {
  margin: 1rem 0 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.nc-single-image img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-height: min(82vh, 920px);
  object-fit: contain;
}

.nc-image-grid,
.nc-before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.nc-image-box {
  border: 0;
  background: transparent;
  min-height: 0;
  display: block;
  padding: 0;
}

.nc-image-box img {
  width: 100%;
  height: auto;
  max-height: min(82vh, 920px);
  object-fit: contain;
}

.nc-image-hint {
  margin-top: 0.55rem;
  color: #aeb7c8;
  font-size: 0.85rem;
}

.nc-gallery-title {
  margin-top: 1.1rem;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.nc-gallery {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #04060a;
  padding: 0.5rem;
}

.nc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.55rem;
}

.nc-gallery-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #05070b;
}

.nc-gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #020307;
}

.nc-sensitive-hint {
  margin-top: 1rem;
  color: #d4b99d;
  font-size: 0.9rem;
  font-weight: 600;
}

.nc-sensitive-gallery {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #04060a;
  padding: 0.5rem;
}

.nc-sensitive-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.55rem;
}

.nc-sensitive-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #05070b;
}

.nc-sensitive-item::after {
  content: "18+";
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(5, 7, 11, 0.82);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nc-sensitive-image {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #020307;
}

.nc-sensitive-gallery.is-locked .nc-sensitive-image {
  filter: blur(20px) saturate(0.65);
  cursor: pointer;
}

.nc-sensitive-gallery.is-locked .nc-sensitive-item::after {
  opacity: 1;
  transform: none;
}

.nc-sensitive-gallery.is-locked .nc-sensitive-image:hover,
.nc-sensitive-gallery.is-locked .nc-sensitive-image:focus-visible {
  filter: blur(20px) saturate(0.65);
}

.nc-zoomable {
  cursor: zoom-in;
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.nc-zoomable:hover,
.nc-zoomable:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.nc-zoomable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2.8vw, 2rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nc-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nc-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.86);
  backdrop-filter: blur(6px);
}

.nc-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1024px, 100%);
  display: grid;
  justify-items: stretch;
  gap: 0.65rem;
  transform: translateY(10px) scale(0.985);
  transition: transform 0.3s ease;
}

.nc-lightbox.is-open .nc-lightbox-dialog {
  transform: none;
}

.nc-lightbox-close,
.nc-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(15, 19, 29, 0.78);
  color: #fff;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  cursor: pointer;
}

.nc-lightbox-close {
  justify-self: end;
}

.nc-lightbox-media {
  position: relative;
  width: 100%;
}

.nc-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  min-height: 48px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.nc-lightbox-nav.is-prev {
  left: 0.75rem;
}

.nc-lightbox-nav.is-next {
  right: 0.75rem;
}

.nc-lightbox-nav[hidden] {
  display: none;
}

.nc-lightbox-media:hover .nc-lightbox-nav,
.nc-lightbox-media:focus-within .nc-lightbox-nav {
  opacity: 1;
  pointer-events: auto;
}

.nc-lightbox-close:hover,
.nc-lightbox-close:focus-visible,
.nc-lightbox-nav:hover,
.nc-lightbox-nav:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.nc-lightbox-image {
  width: 100%;
  max-height: min(84vh, 1200px);
  object-fit: contain;
  background: #030407;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.52);
}

@media (hover: none) {
  .nc-lightbox-nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.nc-age-gate {
  position: fixed;
  inset: 0;
  z-index: 280;
  display: grid;
  place-items: center;
  padding: clamp(0.8rem, 2.8vw, 1.4rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nc-age-gate.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nc-age-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.9);
  backdrop-filter: blur(7px);
}

.nc-age-gate-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, #111826 0%, #0b101a 100%);
  padding: clamp(0.95rem, 2.8vw, 1.25rem);
  display: grid;
  gap: 0.85rem;
  transform: translateY(8px) scale(0.985);
  transition: transform 0.25s ease;
}

.nc-age-gate.is-open .nc-age-gate-dialog {
  transform: none;
}

.nc-age-gate-dialog h3 {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: -0.02em;
  text-transform: none;
}

.nc-age-gate-dialog p {
  margin: 0;
  color: #c8cfdd;
}

.nc-age-gate-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.nc-age-gate-btn {
  min-height: 44px;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: lowercase;
  cursor: pointer;
}

.nc-age-gate-btn.is-confirm {
  border-color: var(--accent);
  background: var(--accent);
  color: #131721;
}

.nc-age-gate-btn:hover,
.nc-age-gate-btn:focus-visible {
  border-color: var(--accent-strong);
  color: var(--accent-strong);
}

.nc-age-gate-btn.is-confirm:hover,
.nc-age-gate-btn.is-confirm:focus-visible {
  border-color: var(--accent-strong);
  background: var(--accent-strong);
  color: #131721;
}

.nc-faq {
  background: #000;
  padding-top: 0;
}

.nc-faq-wrap {
  background: #0d121c;
}

.nc-faq-wrap > p {
  margin-top: 0.5rem;
  color: #c3cada;
}

.nc-faq details {
  margin-top: 0.65rem;
  border: 1px solid var(--line);
  background: #111826;
  padding: 0.65rem 0.75rem;
  overflow: hidden;
}

.nc-faq summary {
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

.nc-faq summary::-webkit-details-marker {
  display: none;
}

.nc-faq summary::after {
  content: "+";
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.nc-faq details[open] summary::after {
  transform: rotate(45deg);
}

.nc-faq-answer {
  margin-top: 0;
  max-height: none;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.nc-faq details p {
  color: #cfd6e3;
  margin-top: 0;
}

/* Footer */
.nc-footer {
  border-top: 1px solid var(--line);
  background: #000;
  padding: 2.3rem 0;
}

.nc-footer-inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.95rem;
}

.nc-footer-brand {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.nc-footer-brand img {
  width: auto;
  height: auto;
  max-height: 76px;
  max-width: min(88vw, 520px);
  object-fit: contain;
}

.nc-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.nc-footer-nav a {
  color: #cad1dc;
}

.nc-footer-nav a:hover,
.nc-footer-nav a:focus-visible {
  color: #fff;
}

.nc-footer-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.48rem 0.95rem;
  max-width: min(980px, 100%);
}

.nc-footer-services a {
  color: #aeb7c7;
  font-size: 0.9rem;
}

.nc-footer-services a:hover,
.nc-footer-services a:focus-visible {
  color: #fff;
}

.nc-footer p {
  color: #98a1b2;
  margin: 0;
  font-size: 0.9rem;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {
  .nc-header-shell {
    min-height: 94px;
  }

  .nc-brand img,
  .nc-menu-brand img {
    max-height: 24px;
    max-width: min(82vw, 500px);
  }

  .nc-about-grid,
  .nc-contact-locations,
  .nc-service-grid {
    grid-template-columns: 1fr;
  }

  .nc-procedures-grid {
    grid-template-columns: 1fr;
  }

  .nc-subpage .nc-sub-hero {
    min-height: 56vh;
  }

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

  .nc-reviews-grid {
    grid-template-columns: 1fr;
  }

  .nc-review-card-wide {
    grid-column: auto;
  }

  .nc-menu-head {
    flex-direction: row;
    align-items: center;
  }

  .nc-menu-brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nc-menu-brand img {
    max-width: 100%;
  }

  .nc-menu-head-tools {
    width: auto;
    justify-content: flex-end;
    flex: 0 0 auto;
  }

  .nc-menu-links,
  .nc-menu-group,
  .nc-menu-sub-links {
    justify-items: flex-start;
    text-align: left;
  }

  .nc-menu-group {
    width: 100%;
    margin-inline: 0;
  }

  .nc-menu-sub-links {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    margin-left: 0;
  }
}

@media (max-width: 740px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .nc-header-shell {
    margin-top: 0.55rem;
    min-height: 82px;
    padding: 0;
  }

  .nc-brand,
  .nc-menu-brand {
    height: 44px;
    padding: 0 0.55rem;
  }

  .nc-brand img,
  .nc-menu-brand img {
    max-height: 24px;
    max-width: min(90vw, 460px);
  }

  .nc-menu-brand img {
    max-width: 100%;
  }

  .nc-header .nc-brand {
    height: 40px;
    padding: 0 0.5rem;
  }

  .nc-header .nc-brand img {
    max-height: 20px;
    max-width: min(72vw, 360px);
  }

  .nc-footer-brand img {
    max-height: 64px;
  }

  .nc-menu-main-link,
  .nc-menu-links > a {
    font-size: clamp(1.7rem, 10vw, 3.2rem);
  }

  .nc-menu-sub-links a {
    font-size: 1.08rem;
  }

  .nc-hero {
    min-height: 86vh;
  }

  .nc-subpage .nc-sub-hero {
    min-height: 68vh;
    padding: 7.2rem 0 2.4rem;
  }

  .nc-subpage .nc-sub-hero-bg img {
    object-position: center top;
  }

  .nc-home .nc-hero-bg img {
    object-position: center top;
  }

  .nc-hero-content {
    padding-top: 7.2rem;
    padding-bottom: 2.8rem;
  }

  .nc-hero-content h1 {
    font-size: clamp(1.95rem, 14.5vw, 3.6rem);
    line-height: 1.03;
    gap: 0.35rem;
  }

  .nc-hero-divider {
    height: 2px;
  }

  .nc-offer-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .nc-offer-thumb {
    justify-self: end;
  }

  .nc-image-grid,
  .nc-before-after-grid {
    grid-template-columns: 1fr;
  }

  .nc-gallery-grid,
  .nc-sensitive-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nc-lightbox-nav {
    width: 42px;
    min-height: 42px;
    font-size: 1.2rem;
  }

  .nc-lightbox-nav.is-prev {
    left: 0.5rem;
  }

  .nc-lightbox-nav.is-next {
    right: 0.5rem;
  }

  .nc-booking-btn {
    width: 100%;
  }

  .nc-review-reply {
    padding: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .nc-faq-answer,
  .nc-menu-sub-links,
  .nc-lightbox,
  .nc-lightbox-dialog,
  .nc-lightbox-nav,
  .nc-age-gate,
  .nc-age-gate-dialog,
  .nc-sensitive-item::after,
  .nc-cert-carousel-track,
  .nc-cert-carousel-dot,
  .nc-zoomable {
    transition: none;
  }
}
