:root {
  --bg: #0f0e0d;
  --text: #f3efe8;
  --text-soft: rgba(243, 239, 232, 0.82);
  --text-dim: rgba(243, 239, 232, 0.58);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.16);
  --accent: rgba(156,133,101,0.72);
  --shadow: 0 28px 90px rgba(0,0,0,0.42);
  --max: 1420px;
  --body-pad: clamp(20px, 4vw, 42px);
  --header-height: 78px;
  --hero-height: min(86svh, 940px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(156,133,101,0.05), transparent 28%),
    linear-gradient(180deg, #141312 0%, #0f0e0d 46%, #0d0c0b 100%);
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.shell {
  width: min(var(--max), calc(100% - (var(--body-pad) * 2)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(13,12,11,0.88), rgba(13,12,11,0.64));
  border-bottom: 1px solid var(--line);
}
.admin-bar .site-header { top: 32px; }
.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  letter-spacing: 0.01em;
}
.nav .menu,
.site-footer__nav .menu,
.nh-menu-fallback {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  margin: 0;
  padding: 0;
}
.nav a,
.site-footer__nav a {
  color: var(--text-soft);
  position: relative;
  padding-bottom: 4px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: color 180ms ease;
}
.nav a::after,
.site-footer__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--accent), transparent 86%);
  transition: transform 220ms ease;
}
.nav a:hover,
.site-footer__nav a:hover { color: var(--text); }
.nav a:hover::after,
.site-footer__nav a:hover::after { transform: scaleX(1); }

.nh-home-main { padding-bottom: 80px; }
.nh-home-hero {
  min-height: calc(100svh - var(--header-height));
  padding: 28px 0 42px;
  display: flex;
  align-items: stretch;
}
.nh-home-hero__frame {
  position: relative;
  width: 100%;
  min-height: var(--hero-height);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #090909;
  box-shadow: var(--shadow);
}
.nh-home-hero__stage {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #050505;
}
.nh-home-hero__portrait-wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.nh-home-hero__portrait-shell {
  height: 100%;
  width: auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.nh-home-hero__portrait {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.97) contrast(1.03);
}
.nh-home-hero__veil {
  display: none;
}
.nh-home-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.nh-home-hero__copy {
  position: absolute;
  left: clamp(28px, 5vw, 68px);
  bottom: clamp(72px, 10vh, 132px);
  width: min(520px, calc(100% - 56px));
  margin: 0;
  pointer-events: auto;
}
.nh-home-hero__kicker {
  margin: 0 0 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--text-soft);
}
.nh-home-hero__title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(4rem, 8.6vw, 6.3rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 14px rgba(0,0,0,0.28);
  max-width: 520px;
}
.nh-home-hero__cta { margin-top: 20px; }
.button,
.nh-home-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.button:hover,
.nh-home-hero__button:hover {
  transform: scale(1.04);
  border-color: rgba(156,133,101,0.54);
  background: rgba(156,133,101,0.08);
  box-shadow: 0 0 0 1px rgba(156,133,101,0.08), 0 10px 24px rgba(0,0,0,0.18);
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
  border-top: 1px solid var(--line);
}
.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}
.section-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  position: sticky;
  top: 108px;
}
.section-label::before {
  content: '';
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.rep-wrap { max-width: 980px; }
.rep-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.rep-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 24px;
  min-height: 100%;
}
.rep-card h3 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.72rem;
  font-weight: 500;
}
.rep-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--text-soft);
}
.rep-card a.inline-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(156,133,101,0.45);
  text-underline-offset: 3px;
}
.rep-card a.inline-link:hover {
  text-decoration-color: rgba(156,133,101,0.8);
}

/* Interior pages */
.nh-page-shell {
  padding: clamp(54px, 8vw, 90px) 0 clamp(90px, 10vw, 130px);
}
.nh-section-page__header {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}
.nh-section-page__header--split {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
}
.nh-section-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nh-eyebrow {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--text-dim);
}
.nh-page-title {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.nh-page-content,
.nh-page-content p,
.nh-page-content li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.85;
}
.nh-page-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 2.2rem 0 0.8rem;
}
.nh-page-content ul { padding-left: 1.2rem; }
.nh-featured-clip,
.nh-card,
.nh-gallery-card,
.nh-page-article {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}
.nh-featured-clip { padding: 28px; margin-bottom: 34px; }
.nh-featured-clip__embed iframe,
.nh-clip-card__embed-link iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
.nh-clips-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.nh-clip-card__body { padding: 22px; }
.nh-clip-card__meta { color: var(--text-dim); margin: 0.3rem 0 1rem; }
.nh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.nh-gallery-card__image img { width: 100%; height: auto; }
.nh-gallery-card__caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 18px;
  color: var(--text-soft);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nh-empty-note {
  border: 1px dashed var(--line);
  padding: 28px;
  color: var(--text-dim);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0 34px;
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .section-grid,
  .rep-grid {
    grid-template-columns: 1fr;
  }
  .section-label {
    position: static;
  }
  .nh-clips-grid,
  .nh-gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .admin-bar .site-header { top: 46px; }
  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 16px 0;
    min-height: auto;
  }
  .nav .menu,
  .site-footer__nav .menu {
    gap: 16px;
    flex-wrap: wrap;
  }
  .nav a,
  .site-footer__nav a { font-size: 0.78rem; }

  .nh-home-hero {
    min-height: auto;
    padding-bottom: 24px;
  }
  .nh-home-hero__frame {
    min-height: 840px;
  }
  .nh-home-hero__copy {
    left: 24px;
    right: 24px;
    width: auto;
    bottom: 44px;
  }
  .nh-home-hero__title {
    max-width: 380px;
  }
}

@media (max-width: 560px) {
  .nh-home-hero__frame {
    min-height: 760px;
  }
  .nh-home-hero__copy {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }
  .button,
  .nh-home-hero__button {
    width: 100%;
  }
}
