.nd-hero {
  position: relative;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: clamp(48px, 7vw, 88px);
  background: #fff;
  border-bottom: 1px solid var(--border);
  clip-path: inset(0);
  overflow: hidden;
}

.nd-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.nd-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(28, 25, 23, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 75% 75% at 25% 50%, #000 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 25% 50%, #000 30%, transparent 95%);
}

.nd-hero__bg-glow {
  position: absolute;
  top: 50%;
  right: -8%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(28, 25, 23, .14) 0%,
      rgba(28, 25, 23, .04) 40%,
      rgba(28, 25, 23, 0) 70%);
  filter: blur(40px);
  transform: translateY(-50%);
  animation: nd-glow 8s ease-in-out infinite alternate;
}

@keyframes nd-glow {
  0% {
    opacity: .6;
    transform: translateY(-50%) scale(.9);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }
}

.nd-hero>.container {
  position: relative;
  z-index: 1;
}

.nd-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 44px);
  font-size: var(--t-xs);
  color: var(--text-muted);
}

.nd-crumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

.nd-crumbs a:hover {
  color: var(--text);
}

.nd-crumbs i {
  font-size: .75rem;
  color: var(--text-light);
}

.nd-crumbs span {
  color: var(--text);
  font-weight: 500;
}

/* 2-column hero grid: text left, photo right */
.nd-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.nd-hero__text {
  display: flex;
  flex-direction: column;
}

.nd-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.nd-hero__meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(28, 25, 23, .08);
  border: 1px solid rgba(28, 25, 23, .18);
  border-radius: 999px;
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--accent);
}

.nd-hero__meta-chip i {
  color: var(--accent);
  font-size: .9rem;
}

.nd-hero__meta-chip--ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.nd-hero__meta-chip--ghost i {
  color: var(--text-muted);
}

.nd-hero__title {
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.nd-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.55;
}

/* Sharp photo on the right — no overlay */
.nd-hero__media {
  margin: 0;
  aspect-ratio: 5 / 4;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow-md);
}

.nd-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   BODY — 2-column grid: content (left) + sticky meta (right)
   ========================================================= */
.nd-body {
  background: #fff;
  padding: clamp(48px, 7vw, 96px) 0;
}

.nd-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.nd-body__main {
  min-width: 0;
}

/* =========================================================
   SIDEBAR (sticky meta)
   ========================================================= */
.nd-meta {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}

.nd-meta__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nd-meta__label {
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  font-weight: 500;
}

.nd-meta__value {
  font-size: var(--t-sm);
  color: var(--text);
  font-weight: 500;
}

/* =========================================================
   CONTENT — class-less semantic HTML auto-styled
   ========================================================= */
.nd-detail__content {
  font-size: var(--t-md);
  line-height: 1.75;
  color: var(--text);
}

.nd-detail__content>*+* {
  margin-top: 1.1em;
}

.nd-detail__content>*+h2 {
  margin-top: 2em;
}

.nd-detail__content>*+h3 {
  margin-top: 1.6em;
}

.nd-detail__content>*+figure {
  margin-top: 2em;
}

.nd-detail__content>*+blockquote {
  margin-top: 1.6em;
}

.nd-detail__content>p:first-child {
  font-size: clamp(1.05rem, 1.35vw, 1.15rem);
  line-height: 1.65;
}

.nd-detail__content h2 {
  position: relative;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--text);
  padding-top: 6px;
}

.nd-detail__content h2::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 12px;
}

.nd-detail__content h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -.01em;
  line-height: 1.3;
  color: var(--text);
}

.nd-detail__content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.nd-detail__content p {
  color: var(--text);
}

.nd-detail__content p strong {
  color: var(--text);
  font-weight: 600;
}

.nd-detail__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--t-fast) var(--ease);
}

.nd-detail__content a:hover {
  color: var(--accent-deep, #44403c);
}

.nd-detail__content ul,
.nd-detail__content ol {
  padding-left: 1.4em;
  color: var(--text);
}

.nd-detail__content ul li,
.nd-detail__content ol li {
  margin-bottom: .4em;
}

.nd-detail__content ul li::marker {
  color: var(--accent);
}

.nd-detail__content blockquote {
  margin: 0;
  padding: 18px 24px;
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.nd-detail__content blockquote p {
  margin: 0;
}

.nd-detail__content blockquote cite,
.nd-detail__content blockquote footer {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  font-weight: 500;
}

.nd-detail__content code {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: .92em;
  padding: 2px 6px;
  background: var(--bg-softer);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.nd-detail__content pre {
  padding: 16px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow-x: auto;
  font-size: .92em;
}

.nd-detail__content pre code {
  background: none;
  border: none;
  padding: 0;
}

.nd-detail__content hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2em 0;
}

.nd-detail__content figure {
  margin: 0;
}

.nd-detail__content figure img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  display: block;
}

.nd-detail__content figcaption {
  margin-top: 10px;
  font-size: var(--t-xs);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.nd-detail__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--t-sm);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.nd-detail__content th,
.nd-detail__content td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.nd-detail__content th {
  background: var(--bg-soft);
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 600;
}

.nd-detail__content tr:last-child td {
  border-bottom: none;
}

/* =========================================================
   SECTION HEADER — used by video + gallery sections
   ========================================================= */
.nd-block-head {
  margin-bottom: clamp(24px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nd-block-head__eyebrow {
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--text-muted);
  font-weight: 500;
}

.nd-block-head__title {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--text);
}

/* =========================================================
   VIDEO SECTION
   ========================================================= */
.nd-video-sect {
  background: var(--bg-soft);
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--border);
}

.nd-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1c1917;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
}

.nd-video__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow) var(--ease);
}

.nd-video:hover .nd-video__thumb {
  transform: scale(1.03);
}

.nd-video__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, .35) 100%);
}

.nd-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .95);
  border-radius: 50%;
  color: var(--text);
  font-size: 1.8rem;
  z-index: 2;
  transition: transform var(--t-base-d) var(--ease),
    background var(--t-fast) var(--ease);
}

.nd-video:hover .nd-video__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
  color: #fff;
}

.nd-video__tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(28, 25, 23, .8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 999px;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 500;
}

.nd-video__tag i {
  color: var(--accent);
}

.nd-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

.nd-video.is-playing .nd-video__thumb,
.nd-video.is-playing .nd-video__play,
.nd-video.is-playing .nd-video__tag {
  display: none;
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */
.nd-gallery-sect {
  background: #fff;
  padding: clamp(48px, 7vw, 88px) 0;
}

.nd-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.nd-gallery__item {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-soft);
  text-decoration: none;
  transition: transform var(--t-base-d) var(--ease);
}

.nd-gallery__item:hover {
  transform: scale(1.02);
}

.nd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
  display: block;
}

.nd-gallery__item:hover img {
  transform: scale(1.05);
}

.nd-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base-d) var(--ease);
}

.nd-gallery__item:hover .nd-gallery__item-overlay {
  opacity: 1;
}

.nd-gallery__item-overlay i {
  color: #fff;
  font-size: 1.4rem;
}

/* =========================================================
   LIGHTBOX — same component as product-detail / about
   ========================================================= */
.nd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(28, 25, 23, .92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity var(--t-base-d) var(--ease);
}

.nd-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.nd-lightbox__inner {
  position: relative;
  max-width: 1100px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.nd-lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  border-radius: var(--r-md);
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .4);
  display: block;
}

.nd-lightbox__caption {
  color: rgba(255, 255, 255, .85);
  font-size: var(--t-sm);
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}

.nd-lightbox__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}

.nd-lightbox__close:hover {
  background: rgba(255, 255, 255, .25);
}

.nd-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 5;
  transition: background var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}

.nd-lightbox__nav:hover {
  background: rgba(255, 255, 255, .3);
  transform: translateY(-50%) scale(1.05);
}

.nd-lightbox__nav--prev {
  left: 24px;
}

.nd-lightbox__nav--next {
  right: 24px;
}

.nd-lightbox__counter {
  position: absolute;
  top: -38px;
  left: 0;
  font-size: var(--t-xs);
  color: rgba(255, 255, 255, .7);
  letter-spacing: .04em;
}

/* =========================================================
   RELATED — bottom strip
   ========================================================= */
.nd-related {
  background: var(--bg-soft);
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid var(--border);
}

.nd-related__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.nd-related__title {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--text);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .nd-hero__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nd-hero__media {
    order: -1;
    aspect-ratio: 16 / 10;
  }

  .nd-body__grid {
    grid-template-columns: 1fr;
  }

  .nd-meta {
    position: static;
    order: -1;
  }

  .nd-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nd-video__play {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .nd-lightbox {
    padding: 16px;
  }

  .nd-lightbox__close {
    top: -38px;
    right: 0;
  }

  .nd-lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .nd-lightbox__nav--prev {
    left: 12px;
  }

  .nd-lightbox__nav--next {
    right: 12px;
  }
}

@media (max-width: 576px) {
  .nd-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}