:root {
  --ns-cream: #f6f1ea;
  --ns-ivory: #fbf8f4;
  --ns-sand: #e8ddd0;
  --ns-bronze: #8b6b54;
  --ns-bronze-deep: #5c4033;
  --ns-gold: #b08a5a;
  --ns-gold-deep: #8a6840;
  --ns-gold-mist: #f4eee4;
  --ns-muted: #4a3c35;
  --ns-ink: #2a211c;
  --ns-white: #fffcf8;
  --ns-font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --ns-font-sans: "Outfit", system-ui, sans-serif;
  --ns-font-ar: "Tajawal", "Noto Naskh Arabic", "Amiri", sans-serif;
  --ns-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ns-hover: 0.45s var(--ns-ease);
  --ns-header: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.ns-site {
  margin: 0;
  color: var(--ns-ink);
  background: var(--ns-cream);
  font-family: var(--ns-font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.ns-nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.ns-skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: 0;
  z-index: 80;
  padding: 0.5rem 1rem;
  background: var(--ns-white);
  transform: translateY(-160%);
  transition: transform 0.2s var(--ns-ease);
}

.ns-skip:focus,
.ns-skip:focus-visible {
  transform: translateY(0.75rem);
}

.ns-wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.ns-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  min-height: var(--ns-header);
  padding: 0.5rem 0;
  overflow: visible;
  background: rgba(246, 241, 234, 0.96);
  box-shadow: 0 6px 18px rgba(42, 33, 28, 0.06);
  transition: background var(--ns-hover), box-shadow var(--ns-hover);
}

.ns-header.is-scrolled {
  background: rgba(246, 241, 234, 0.97);
  box-shadow: 0 8px 24px rgba(42, 33, 28, 0.1);
}

.ns-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: min(1120px, calc(100% - 1.5rem));
  margin-inline: auto;
  min-width: 0;
}

.ns-header__brand {
  flex: none;
}

.ns-header__brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  transition: transform var(--ns-hover);
}

.ns-header__brand:hover img {
  transform: scale(1.06);
}

.ns-lang {
  flex: none;
  margin-inline-start: auto;
  margin-inline-end: 0.35rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ns-bronze-deep);
  border: 1px solid var(--ns-sand);
  border-radius: 999px;
  background: var(--ns-white);
  white-space: nowrap;
  transition: color var(--ns-hover), border-color var(--ns-hover), background var(--ns-hover);
}

.ns-lang:hover,
.ns-lang:focus-visible {
  color: var(--ns-white);
  border-color: var(--ns-gold);
  background: var(--ns-gold);
}

.ns-nav-toggle {
  position: relative;
  z-index: 62;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: grid;
  gap: 5px;
  place-content: center;
  cursor: pointer;
}

.ns-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ns-bronze-deep);
}

.ns-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(42, 33, 28, 0.42);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ns-ease), visibility 0.3s var(--ns-ease);
}

.ns-nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ns-nav {
  position: fixed;
  top: 0;
  inset-inline-end: 0;
  bottom: 0;
  z-index: 60;
  width: min(300px, 88vw);
  height: 100dvh;
  margin: 0;
  padding: 5.4rem 1.35rem 1.5rem;
  background: var(--ns-ivory);
  box-shadow: -16px 0 40px rgba(42, 33, 28, 0.14);
  transform: translateX(110%);
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.35s var(--ns-ease), visibility 0.35s var(--ns-ease);
}

html[dir="rtl"] .ns-nav {
  box-shadow: 16px 0 40px rgba(42, 33, 28, 0.14);
  transform: translateX(-110%);
}

html[dir="rtl"] .ns-nav.is-open {
  transform: translateX(0);
}

.ns-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

.ns-nav > a:not(.ns-btn):not(.ns-nav__brand) {
  position: relative;
  display: block;
  padding: 0.7rem 0.2rem;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ns-bronze-deep);
  transition: color var(--ns-hover), transform var(--ns-hover);
}

.ns-nav > a:not(.ns-btn):not(.ns-nav__brand)::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  bottom: 0.35rem;
  width: 0;
  height: 1px;
  background: var(--ns-gold);
  transition: width 0.4s var(--ns-ease);
}

.ns-nav > a:not(.ns-btn):not(.ns-nav__brand):hover,
.ns-nav > a:not(.ns-btn):not(.ns-nav__brand):focus-visible {
  color: var(--ns-gold-deep);
  transform: translateX(4px);
}

.ns-nav > a:not(.ns-btn):not(.ns-nav__brand):hover::after,
.ns-nav > a:not(.ns-btn):not(.ns-nav__brand):focus-visible::after {
  width: 1.5rem;
}

.ns-nav__brand {
  display: block;
  margin: 0 0 1.1rem;
  width: 88px;
}

.ns-nav__brand img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
}

.ns-nav .ns-btn--primary {
  margin-top: 0.6rem;
  color: var(--ns-white);
  background: var(--ns-bronze-deep);
  border-color: var(--ns-bronze-deep);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.ns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--ns-bronze);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--ns-hover), color var(--ns-hover), transform var(--ns-hover), box-shadow var(--ns-hover);
}

.ns-btn--primary {
  background: var(--ns-bronze);
  color: var(--ns-white);
}

.ns-btn--ghost {
  background: transparent;
  color: var(--ns-bronze-deep);
  border-color: var(--ns-bronze);
}

.ns-btn--on-dark {
  color: var(--ns-white);
  border-color: rgba(255, 252, 248, 0.75);
}

.ns-btn--light {
  color: var(--ns-bronze-deep);
  border-color: var(--ns-bronze);
}

.ns-btn:hover,
.ns-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(92, 64, 51, 0.16);
}

.ns-btn--primary:hover,
.ns-btn--primary:focus-visible {
  background: var(--ns-bronze-deep);
}

.ns-hero {
  position: relative;
  min-height: 100svh;
  color: var(--ns-ink);
  overflow: hidden;
}

.ns-hero-swiper {
  position: absolute;
  inset: 0;
}

.ns-hero .swiper-wrapper,
.ns-hero .swiper-slide {
  height: 100%;
}

.ns-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transition: transform 8s var(--ns-ease);
}

.ns-hero .swiper-slide-active img {
  transform: scale(1);
}

.ns-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(246, 241, 234, 0.92) 0%, rgba(246, 241, 234, 0.86) 58%, rgba(246, 241, 234, 0.55) 100%);
  pointer-events: none;
}

.ns-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  padding: calc(var(--ns-header) + 2.5rem) 0 4.5rem;
}

.ns-kicker {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ns-gold);
  font-weight: 500;
}

.ns-hero h1 {
  margin: 0 0 0.7rem;
  width: 100%;
  max-width: 40rem;
  font-family: var(--ns-font-serif);
  font-size: clamp(2.1rem, 7.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1a120e;
  text-align: left;
}

.ns-hero__sub {
  margin: 0 0 1rem;
  font-family: var(--ns-font-serif);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--ns-ink);
}

.ns-hero__copy {
  margin: 0 0 0.7rem;
  max-width: 38rem;
  color: var(--ns-ink);
  font-size: 1.02rem;
}

.ns-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1.35rem 0 1.2rem;
}

.ns-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ns-gold-deep);
  font-weight: 500;
}

.ns-hero .swiper-pagination {
  bottom: 1.15rem;
}

.ns-hero .swiper-pagination-bullet {
  background: var(--ns-bronze-deep);
  opacity: 0.35;
}

.ns-hero .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--ns-gold);
}

.ns-section {
  padding: 3.4rem 0;
  overflow-x: hidden;
}

.ns-section--alt {
  background: var(--ns-ivory);
}

.ns-women {
  background: var(--ns-gold-mist);
}

.ns-section h2 {
  margin: 0 0 0.7rem;
  font-family: var(--ns-font-serif);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ns-bronze-deep);
}

.ns-rule {
  width: 48px;
  height: 1px;
  margin: 0 0 1rem;
  border: 0;
  background: var(--ns-gold);
}

.ns-section p {
  margin: 0 0 0.85rem;
  color: var(--ns-ink);
}

.ns-visit a:not(.ns-btn) {
  transition: color var(--ns-hover);
}

.ns-visit a:not(.ns-btn):hover,
.ns-visit a:not(.ns-btn):focus-visible {
  color: var(--ns-gold-deep);
}

.ns-highlight {
  font-family: var(--ns-font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ns-gold-deep);
}

.ns-media {
  margin: 0 0 1.4rem;
  overflow: hidden;
  border-radius: 18px;
}

.ns-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 1.25s var(--ns-ease);
  will-change: transform;
}

.ns-media:hover img {
  transform: scale(1.045);
}

.ns-gallery .swiper-slide,
.ns-gallery figure.swiper-slide {
  /* Reset <figure> UA margins (≈1em 40px) — they break Swiper width/RTL math */
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}

.ns-gallery .swiper-slide img {
  transition: transform 1.25s var(--ns-ease);
  will-change: transform;
}

.ns-gallery .swiper-slide:hover img {
  transform: scale(1.045);
}

.ns-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.9s var(--ns-ease),
    transform 0.9s var(--ns-ease);
}

.ns-reveal.is-in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ns-hero__content > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.85s var(--ns-ease),
    transform 0.85s var(--ns-ease);
}

.ns-hero.is-ready .ns-hero__content > *:nth-child(1) {
  transition-delay: 0.08s;
}

.ns-hero.is-ready .ns-hero__content > *:nth-child(2) {
  transition-delay: 0.18s;
}

.ns-hero.is-ready .ns-hero__content > *:nth-child(3) {
  transition-delay: 0.28s;
}

.ns-hero.is-ready .ns-hero__content > *:nth-child(4) {
  transition-delay: 0.36s;
}

.ns-hero.is-ready .ns-hero__content > *:nth-child(5) {
  transition-delay: 0.44s;
}

.ns-hero.is-ready .ns-hero__content > *:nth-child(6) {
  transition-delay: 0.52s;
}

.ns-hero.is-ready .ns-hero__content > *:nth-child(7) {
  transition-delay: 0.6s;
}

.ns-hero.is-ready .ns-hero__content > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.ns-card {
  height: auto;
  background: var(--ns-white);
  border: 1px solid var(--ns-sand);
  border-radius: 16px;
  overflow: hidden;
  transition: transform var(--ns-hover), box-shadow var(--ns-hover), border-color var(--ns-hover);
}

.ns-card:hover {
  transform: translateY(-5px);
  border-color: rgba(176, 138, 90, 0.45);
  box-shadow: 0 18px 36px rgba(92, 64, 51, 0.12);
}

.ns-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 1.25s var(--ns-ease);
  will-change: transform;
}

.ns-card:hover img {
  transform: scale(1.045);
}

.ns-card__body {
  padding: 1rem 1rem 1.15rem;
}

.ns-card h3 {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ns-gold);
}

.ns-card h4 {
  margin: 0 0 0.55rem;
  font-family: var(--ns-font-serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.ns-card p,
.ns-card ul {
  margin: 0 0 0.7rem;
  color: var(--ns-ink);
  font-size: 0.92rem;
}

.ns-card ul {
  padding-left: 1.1rem;
}

.ns-why {
  display: grid;
  gap: 0.85rem;
}

.ns-why article {
  padding: 1rem 1.05rem;
  background: var(--ns-ivory);
  border: 1px solid var(--ns-sand);
  border-radius: 14px;
  transition: transform var(--ns-hover), border-color var(--ns-hover), box-shadow var(--ns-hover);
}

.ns-why article:hover {
  transform: translateY(-4px);
  border-color: var(--ns-gold);
  box-shadow: 0 12px 28px rgba(92, 64, 51, 0.08);
}

.ns-why h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.ns-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.ns-points li {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(176, 138, 90, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--ns-gold-deep);
  transition: background var(--ns-hover), color var(--ns-hover), border-color var(--ns-hover), transform var(--ns-hover);
}

.ns-points li:hover {
  background: var(--ns-gold);
  border-color: var(--ns-gold);
  color: var(--ns-white);
  transform: translateY(-2px);
}

.ns-book-grid,
.ns-visit-grid {
  display: grid;
  gap: 0.75rem;
}

.ns-moment {
  padding: 0 0 3.4rem;
}

.ns-moment__card {
  display: grid;
  overflow: hidden;
  border-radius: 22px;
  background: var(--ns-ivory);
  border: 1px solid var(--ns-sand);
  box-shadow: 0 18px 40px rgba(42, 33, 28, 0.08);
  transition: transform var(--ns-hover), box-shadow var(--ns-hover), border-color var(--ns-hover);
}

.ns-moment__card:hover {
  border-color: rgba(176, 138, 90, 0.45);
  box-shadow: 0 22px 48px rgba(42, 33, 28, 0.12);
}

.ns-moment__media {
  margin: 0;
  overflow: hidden;
}

.ns-moment__media img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  transition: transform 1.25s var(--ns-ease);
  will-change: transform;
}

.ns-moment__card:hover .ns-moment__media img {
  transform: scale(1.045);
}

.ns-moment__copy {
  padding: 1.6rem 1.25rem 1.75rem;
}

.ns-moment__copy .ns-kicker {
  color: var(--ns-gold);
}

.ns-moment__copy h2 {
  margin: 0 0 0.7rem;
  font-family: var(--ns-font-serif);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ns-bronze-deep);
}

.ns-moment__copy p {
  color: var(--ns-ink);
}

.ns-book {
  background: var(--ns-ivory);
  text-align: center;
}

.ns-book__head {
  max-width: 38rem;
  margin: 0 auto 1.6rem;
}

.ns-book__head .ns-rule {
  margin-inline: auto;
}

.ns-book-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.ns-book-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ns-white);
  border: 1px solid var(--ns-sand);
  transition: transform var(--ns-hover), box-shadow var(--ns-hover), border-color var(--ns-hover);
}

.ns-book-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 1.25s var(--ns-ease);
  will-change: transform;
}

.ns-book-card:hover img,
.ns-book-card:focus-visible img {
  transform: scale(1.045);
}

.ns-book-card span {
  display: block;
  padding: 0.75rem 0.6rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ns-bronze-deep);
  transition: color var(--ns-hover);
}

.ns-book-card:last-child {
  grid-column: 1 / -1;
  max-width: 220px;
  justify-self: center;
  width: 100%;
}

.ns-book-card:hover,
.ns-book-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(176, 138, 90, 0.45);
  box-shadow: 0 14px 28px rgba(42, 33, 28, 0.12);
}

.ns-book-card:hover span,
.ns-book-card:focus-visible span {
  color: var(--ns-gold-deep);
}

.ns-book__cta {
  margin-top: 1.5rem;
}

.ns-book__cta p {
  margin: 0.75rem 0 0;
}

.ns-gallery-block {
  margin-top: 1.6rem;
  overflow: hidden;
}

.ns-gallery-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ns-gold);
}

.ns-gallery-swiper {
  padding-bottom: 2.4rem;
}

.ns-gallery-block .ns-gallery-swiper--wide + .ns-gallery-swiper--tall {
  margin-top: -0.6rem;
}

.ns-gallery-swiper--wide .swiper-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 1.25s var(--ns-ease);
  will-change: transform;
}

.ns-gallery-swiper--tall .swiper-slide img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 14px;
  transition: transform 1.25s var(--ns-ease);
  will-change: transform;
}

.ns-gallery-pagination {
  position: static !important;
}

.ns-visit {
  background: var(--ns-ivory);
  color: var(--ns-ink);
}

.ns-visit h2 {
  margin: 0 0 0.7rem;
  font-family: var(--ns-font-serif);
  font-size: clamp(2rem, 5.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ns-bronze-deep);
}

.ns-visit p,
.ns-visit a,
.ns-visit dd {
  color: var(--ns-ink);
}

.ns-visit .ns-rule {
  width: 64px;
  height: 2px;
  background: var(--ns-gold);
}

.ns-visit dt {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ns-gold);
}

.ns-visit dd {
  margin: 0.35rem 0 1rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.ns-map {
  margin: 0 0 1.4rem;
  overflow: hidden;
  border-radius: 18px;
  min-height: 280px;
  background: var(--ns-sand);
}

.ns-map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  height: 100%;
  border: 0;
  aspect-ratio: 4 / 5;
}

.ns-footer {
  padding: 2rem 0 2.4rem;
  text-align: center;
  background: var(--ns-ivory);
}

.ns-footer img {
  width: 64px;
  margin: 0 auto 0.7rem;
  border-radius: 50%;
  transition: transform var(--ns-hover);
}

.ns-footer p {
  margin: 0.3rem 0;
  color: var(--ns-ink);
  font-size: 0.88rem;
}

.ns-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1rem;
  margin: 0.9rem 0;
}

.ns-footer__links a {
  position: relative;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ns-bronze-deep);
  transition: color var(--ns-hover);
}

.ns-footer__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 1px;
  background: var(--ns-gold);
  transition: width 0.35s var(--ns-ease);
}

.ns-footer__links a:hover,
.ns-footer__links a:focus-visible {
  color: var(--ns-gold-deep);
}

.ns-footer__links a:hover::after,
.ns-footer__links a:focus-visible::after {
  width: 100%;
}

.ns-footer a:hover img,
.ns-footer a:focus-visible img {
  transform: scale(1.06);
}

.ns-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  transition: transform var(--ns-hover), box-shadow var(--ns-hover);
}

.ns-wa svg {
  width: 28px;
  height: 28px;
  display: block;
  flex: none;
  overflow: visible;
}

.ns-wa:hover,
.ns-wa:focus-visible {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.5);
}

.ns-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1rem 0 0.4rem;
}

.ns-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ns-sand);
  background: var(--ns-white);
  color: var(--ns-bronze-deep);
  transition: transform var(--ns-hover), background var(--ns-hover), color var(--ns-hover);
}

.ns-social a:hover,
.ns-social a:focus-visible {
  transform: translateY(-3px) scale(1.04);
  background: var(--ns-gold);
  border-color: var(--ns-gold);
  color: var(--ns-white);
}

.ns-social svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: none;
}

.ns-nav .ns-social {
  margin-top: auto;
  justify-content: flex-start;
  padding-top: 1rem;
}

.ns-services .swiper-pagination,
.ns-gallery .swiper-pagination {
  position: static;
  margin-top: 1rem;
}

.ns-services .swiper-pagination-bullet-active,
.ns-gallery .swiper-pagination-bullet-active {
  background: var(--ns-gold);
}

@media (min-width: 768px) {
  .ns-nav-toggle {
    display: none;
  }

  .ns-nav-backdrop {
    display: none;
  }

  .ns-lang {
    margin-inline-start: 0;
    margin-inline-end: 0;
    order: 3;
  }

  .ns-nav-toggle {
    order: 2;
  }

  .ns-header__inner {
    gap: 0.65rem;
  }

  .ns-header__brand {
    order: 0;
  }

  .ns-nav {
    order: 1;
    flex: 1 1 auto;
    margin-inline-start: auto;
    position: static;
    inset: auto;
    z-index: auto;
    width: auto;
    max-width: none;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
    min-width: 0;
  }

  html[dir="rtl"] .ns-nav,
  html[dir="rtl"] .ns-nav.is-open {
    transform: none;
    box-shadow: none;
    visibility: visible;
    pointer-events: auto;
  }

  .ns-nav > a:not(.ns-btn):not(.ns-nav__brand) {
    padding: 0.2rem 0;
    color: var(--ns-bronze-deep);
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .ns-nav > a:not(.ns-btn):not(.ns-nav__brand):hover,
  .ns-nav > a:not(.ns-btn):not(.ns-nav__brand):focus-visible {
    transform: none;
    color: var(--ns-gold-deep);
  }

  .ns-nav > a:not(.ns-btn):not(.ns-nav__brand)::after {
    left: 0;
    bottom: 0;
  }

  .ns-nav > a:not(.ns-btn):not(.ns-nav__brand):hover::after,
  .ns-nav > a:not(.ns-btn):not(.ns-nav__brand):focus-visible::after {
    width: 100%;
  }

  .ns-nav__brand {
    display: none;
  }

  .ns-nav .ns-btn--primary {
    margin-top: 0;
    min-width: 0;
    padding-inline: 0.9rem;
    white-space: nowrap;
  }

  .ns-nav .ns-social {
    display: none;
  }

  .ns-hero__veil {
    background:
      linear-gradient(90deg, rgba(246, 241, 234, 0.96) 0%, rgba(246, 241, 234, 0.88) 42%, rgba(246, 241, 234, 0.28) 68%, rgba(246, 241, 234, 0.06) 100%);
  }

  .ns-hero__actions {
    flex-direction: row;
  }

  .ns-split {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2.4rem;
    align-items: center;
  }

  .ns-split--rev {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .ns-split--rev .ns-media {
    order: 2;
  }

  .ns-why {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-moment__card {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 420px;
  }

  .ns-moment__media img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .ns-moment__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.4rem 2rem;
  }

  .ns-book-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-book-card:last-child {
    grid-column: 1 / -1;
    max-width: 280px;
    justify-self: center;
  }

  .ns-gallery-swiper--tall .swiper-slide img {
    height: 340px;
  }

  .ns-visit .ns-split {
    align-items: stretch;
  }

  .ns-visit-grid {
    grid-template-columns: 1fr;
  }

  .ns-media {
    margin: 0;
  }

  .ns-map {
    height: 100%;
    min-height: 380px;
  }

  .ns-map iframe {
    aspect-ratio: auto;
    min-height: 380px;
    height: 100%;
  }
}

@media (min-width: 960px) {
  .ns-hero__content {
    justify-content: center;
    padding-bottom: 5rem;
  }

  .ns-why {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ns-nav {
    gap: 1rem;
  }

  .ns-nav > a:not(.ns-btn):not(.ns-nav__brand) {
    font-size: 0.9rem;
  }

  .ns-nav .ns-social {
    display: flex;
    flex: none;
    margin: 0;
    padding: 0;
    gap: 0.35rem;
  }

  .ns-nav .ns-social a {
    width: 34px;
    height: 34px;
  }

  .ns-book-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ns-book-card:last-child {
    grid-column: auto;
    max-width: none;
    justify-self: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ns-reveal,
  .ns-hero__content > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ns-hero .swiper-slide img,
  .ns-media img,
  .ns-moment__media img,
  .ns-gallery .swiper-slide img,
  .ns-book-card img,
  .ns-card img,
  .ns-btn,
  .ns-card,
  .ns-why article,
  .ns-points li,
  .ns-moment__card,
  .ns-book-card,
  .ns-nav > a,
  .ns-footer__links a,
  .ns-social a,
  .ns-wa {
    transition: none;
  }

  .ns-hero .swiper-slide img,
  .ns-media:hover img,
  .ns-moment__card:hover .ns-moment__media img,
  .ns-gallery .swiper-slide:hover img,
  .ns-book-card:hover img,
  .ns-card:hover img,
  .ns-card:hover,
  .ns-why article:hover,
  .ns-points li:hover,
  .ns-book-card:hover,
  .ns-nav > a:hover {
    transform: none;
  }
}
