﻿: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;
  --header-offset: 88px;
  --header-surface-rgb: 245, 240, 233;
  --header-tint-rgb: 230, 220, 208;
  --header-gloss-rgb: 255, 250, 246;
  --header-border-rgb: 30, 24, 17;
  --header-ink-rgb: 26, 23, 18;
  --header-shadow-rgb: 10, 9, 8;
  --header-logo-filter: brightness(0) saturate(100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 0.75rem);
}

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

@media (hover: hover) and (pointer: fine) {
  html {
    scrollbar-gutter: stable;
  }
}

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;
}

#main-content {
  padding-top: var(--header-offset);
  background: linear-gradient(#fff 0 0) top / 100% var(--header-offset) no-repeat;
}

.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;
  color: rgb(var(--header-ink-rgb));
  background-color: rgba(var(--header-surface-rgb), 0.48);
  border-bottom: 1px solid rgba(var(--header-border-rgb), 0.18);
  box-shadow: 0 10px 30px rgba(var(--header-shadow-rgb), 0.12);
  backdrop-filter: blur(20px) saturate(165%);
  -webkit-backdrop-filter: blur(20px) saturate(165%);
  isolation: isolate;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

.nc-header::before,
.nc-header::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: background 0.28s ease, opacity 0.28s ease;
}

.nc-header::before {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(var(--header-tint-rgb), 0.5) 0%, rgba(var(--header-surface-rgb), 0.22) 48%, rgba(var(--header-gloss-rgb), 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0.96;
}

.nc-header::after {
  inset: 0 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
  opacity: 0.75;
}

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

.nc-brand,
.nc-menu-brand {
  display: inline-flex;
  align-items: center;
}

.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;
}

.nc-brand {
  padding: 0;
  border: 0;
  background: transparent;
  height: auto;
}

.nc-brand img {
  max-height: 30px;
  filter: var(--header-logo-filter);
  transition: filter 0.28s ease;
}

.nc-menu-brand {
  padding: 0 0.65rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.52);
}

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

.nc-menu-toggle,
.nc-menu-close {
  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;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgb(var(--header-ink-rgb));
  transition: color 0.28s ease;
}

.nc-menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  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: var(--header-offset) 0 0;
  z-index: 220;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 243, 238, 0.72) 26%, rgba(241, 234, 226, 0.62) 100%);
  backdrop-filter: blur(26px) saturate(165%);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
  overscroll-behavior: contain;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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

body.nc-menu-open {
  overflow: hidden;
  position: fixed;
  inset: 0;
  --header-surface-rgb: 248, 244, 238;
  --header-tint-rgb: 240, 233, 224;
  --header-gloss-rgb: 255, 255, 255;
  --header-border-rgb: 30, 24, 17;
  --header-ink-rgb: 26, 23, 18;
  --header-shadow-rgb: 10, 9, 8;
  --header-logo-filter: brightness(0) saturate(100%);
}

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

body.nc-menu-open .nc-menu-head {
  display: none;
}

.nc-menu-inner {
  min-height: 100%;
  padding: clamp(1rem, 2.8vh, 1.8rem) 0;
  display: grid;
  align-content: center;
  gap: 0;
}

.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;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: rgb(var(--header-ink-rgb));
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.nc-menu-links {
  display: grid;
  align-content: center;
  justify-items: center;
  width: min(100%, 42rem);
  min-height: 100%;
  margin-inline: auto;
  gap: 0.72rem;
  text-align: center;
}

.nc-menu-group {
  display: grid;
  gap: 0;
  justify-items: center;
  width: 100%;
  margin-inline: auto;
}

.nc-menu-main-link,
.nc-menu-links > a,
.nc-menu-sub-links a {
  border: 0;
  background: transparent;
  font-size: clamp(1.45rem, 3.2vw, 2.5rem);
  line-height: 1.02;
  color: rgb(var(--header-ink-rgb));
  padding: 0.16rem 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,
.nc-menu-sub-links a:hover,
.nc-menu-sub-links a:focus-visible {
  color: var(--accent-strong);
}

.nc-menu-sub-links {
  display: grid;
  gap: 0.72rem;
  justify-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  text-align: center;
}

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

@media (min-width: 981px) {
  .nc-menu-links {
    padding-top: clamp(0.8rem, 2vh, 1.6rem);
    gap: 0.65rem;
  }

  .nc-menu-group {
    gap: 0;
  }

  .nc-menu-main-link,
  .nc-menu-links > a,
  .nc-menu-sub-links a {
    font-size: clamp(1.55rem, 2.45vw, 2.4rem);
    line-height: 1;
  }

  .nc-menu-sub-links {
    gap: 0.65rem;
  }

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

/* 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-home .nc-hero-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.14) 38%, rgba(0, 0, 0, 0.58) 72%, 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 {
  --offer-thumb-size: clamp(4.2rem, 10vw, 5.8rem);
  width: var(--offer-thumb-size);
  height: var(--offer-thumb-size);
  min-width: var(--offer-thumb-size);
  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;
  overflow: hidden;
}

.nc-offer-thumb:hover,
.nc-offer-thumb:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

.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-widget {
  width: 100%;
  min-height: 520px;
}

.nc-booking-widget .zl-url {
  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-booking-widget iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
}

.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-nav {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(15, 19, 29, 0.78);
  color: #fff;
  width: 34px;
  min-height: 34px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nc-cert-carousel-nav:hover,
.nc-cert-carousel-nav:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
  transform: scale(1.03);
}

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

.nc-cert-carousel-nav[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}

.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: #f4efe8;
  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-intro {
  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: #f4efe8;
  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: #f4efe8;
  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-blog-page .nc-sub-hero-bg img {
  object-position: center bottom;
}

.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-blog-listing {
  padding: 0 0 2.2rem;
  background: #000;
}

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

.nc-blog-roll h2 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.nc-blog-card {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(8, 11, 18, 0.94) 0%, rgba(4, 7, 12, 0.98) 100%);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.nc-blog-card:hover,
.nc-blog-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(209, 184, 156, 0.42);
}

.nc-blog-card-thumb {
  margin: 0;
  min-height: 100%;
  background: linear-gradient(160deg, #f6eadb 0%, #ead6bf 100%);
}

.nc-blog-card-thumb img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: right center;
  aspect-ratio: 4 / 3;
}

.nc-blog-card-copy {
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.nc-blog-card-meta,
.nc-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  color: #cfd6e2;
  font-size: 0.9rem;
}

.nc-blog-card-copy h3 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.nc-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.nc-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.3rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: #e4eaf4;
  font-size: 0.84rem;
}

.nc-blog-article .nc-sub-hero-bg img {
  object-position: right center;
}

.nc-pmos-article .nc-sub-hero-bg img {
  object-position: center center;
}

.nc-article-hero .nc-sub-hero-overlay {
  background: linear-gradient(180deg, rgba(7, 10, 16, 0.16) 0%, rgba(5, 8, 12, 0.58) 54%, rgba(3, 5, 9, 0.9) 100%);
}

.nc-article-meta {
  margin-top: 1rem;
}

.nc-article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.25rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
}

.nc-article-highlights {
  padding: 0 0 2rem;
  background: #000;
}

@media (min-width: 981px) {
  .nc-article-highlights {
    padding-top: 1rem;
  }
}

.nc-article-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.nc-article-highlight {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, rgba(8, 11, 18, 0.92) 0%, rgba(4, 7, 12, 0.98) 100%);
  padding: 0.95rem;
}

.nc-article-highlight strong {
  display: block;
  color: #f8fafc;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2.1vw, 1.45rem);
}

.nc-article-highlight span {
  display: block;
  margin-top: 0.45rem;
  color: #cad2de;
}

.nc-article {
  padding: 0 0 4.2rem;
  background: #000;
}

.nc-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.72fr);
  gap: 1.2rem;
  align-items: start;
}

.nc-article-content,
.nc-article-sidebar {
  display: grid;
  gap: 1rem;
}

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

.nc-article-panel h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.nc-article-panel h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.nc-article-panel p + p {
  margin-top: 0.8rem;
}

.nc-article-panel ul,
.nc-article-panel ol {
  margin: 0.9rem 0 0;
  padding-left: 1.1rem;
  color: #dfe5ef;
}

.nc-article-panel li + li {
  margin-top: 0.42rem;
}

.nc-article-panel a {
  color: #e2ccb4;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.nc-article-note {
  margin-top: 0.85rem;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 0.9rem;
  color: #eef2f8;
}

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

.nc-article-card,
.nc-article-step {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(8, 11, 18, 0.88) 0%, rgba(4, 7, 12, 0.98) 100%);
  padding: 0.95rem;
}

.nc-article-card.is-accent {
  background: linear-gradient(165deg, rgba(61, 43, 27, 0.72) 0%, rgba(17, 14, 11, 0.98) 100%);
}

.nc-article-card ul {
  margin-top: 0.75rem;
}

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

.nc-article-step-index {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  color: #14110d;
  font-family: "Outfit", "Segoe UI", sans-serif;
  font-weight: 700;
}

.nc-article-step p {
  margin-top: 0.5rem;
  color: #cfd6e2;
}

.nc-article-figure {
  margin: 1rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.55rem;
}

.nc-article-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.nc-article-figure figcaption {
  margin-top: 0.55rem;
  color: #afbacb;
  font-size: 0.88rem;
}

.nc-article-sticky {
  position: static;
  top: auto;
}

.nc-article-cta {
  background: linear-gradient(155deg, rgba(52, 35, 21, 0.92) 0%, rgba(11, 12, 16, 0.98) 100%);
}

.nc-article-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.nc-article-actions .nc-btn {
  color: #131721;
  text-decoration: none;
}

.nc-article-actions .nc-btn:hover,
.nc-article-actions .nc-btn:focus-visible {
  color: #131721;
  text-decoration: none;
}

.nc-btn-secondary {
  background: transparent;
  color: #fff;
}

.nc-article-actions .nc-btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
}

.nc-article-actions .nc-btn-secondary:hover,
.nc-article-actions .nc-btn-secondary:focus-visible {
  color: #131721;
  text-decoration: none;
}

.nc-article-source-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.nc-procedure-thumb {
  margin: 0;
  width: 100%;
  max-width: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 10, 16, 0.72);
  padding: 0.38rem;
}

.nc-procedure-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.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-gallery--med-est {
  padding: 0.3rem;
}

.nc-gallery--med-est .nc-gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
}

.nc-gallery--med-est .nc-gallery-item img {
  aspect-ratio: 1 / 1;
}

.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-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.nc-footer-social-link {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #cad1dc;
  display: inline-grid;
  place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nc-footer-social-link:hover,
.nc-footer-social-link:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.nc-footer-social-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nc-footer-social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.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) {
  :root {
    --header-offset: 82px;
  }

  .nc-header-shell {
    min-height: 82px;
    padding-block: 1rem;
  }

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

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

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

  .nc-procedures-grid,
  .nc-article-highlight-grid,
  .nc-article-steps,
  .nc-article-compare {
    grid-template-columns: 1fr;
  }

  .nc-procedure-thumb {
    justify-self: center;
    max-width: min(100%, 420px);
  }

  .nc-blog-card-thumb img {
    aspect-ratio: 16 / 10;
  }

  .nc-article-sticky {
    position: static;
  }

  .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 {
    justify-items: center;
    text-align: center;
  }

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

  .nc-menu-sub-links {
    justify-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    margin-left: 0;
  }

  .nc-menu-sub-links[aria-label="Podstrony oferty"] {
    gap: 0.62rem;
  }
}

@media (max-width: 740px) {
  :root {
    --header-offset: 74px;
  }

  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

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

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

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

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

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

  .nc-header .nc-brand {
    height: auto;
    padding: 0;
  }

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

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

  .nc-menu-main-link,
  .nc-menu-links > a,
  .nc-menu-sub-links a {
    font-size: clamp(1.28rem, 6vw, 2rem);
    line-height: 1.06;
  }

  .nc-menu-sub-links a {
    display: block;
    width: auto;
    min-height: 38px;
    padding: 0.18rem 0;
    touch-action: manipulation;
  }

  .nc-menu-links > a {
    touch-action: manipulation;
  }

  .nc-menu-inner {
    padding: 0.9rem 0 1.1rem;
  }

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

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

  .nc-article-highlights {
    padding-top: 0.8rem;
  }

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

  .nc-blog-page .nc-sub-hero-bg img {
    object-position: center bottom;
  }

  .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: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.55rem;
  }

  .nc-offer-row > :first-child {
    min-width: 0;
  }

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

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

  .nc-article-meta,
  .nc-article-actions,
  .nc-tag-row {
    gap: 0.55rem;
  }

  .nc-blog-card-copy,
  .nc-blog-roll,
  .nc-article-panel {
    padding: 0.9rem;
  }

  .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-nav,
  .nc-cert-carousel-dot,
  .nc-zoomable {
    transition: none;
  }
}
