/* ==========================================================================
   Nippon Customs — Garage UI
   Charcoal asphalt + copper. Compact Japanese typography.
   ========================================================================== */

:root {
  --nc-asphalt: #0e1114;
  --nc-asphalt-2: #171b20;
  --nc-asphalt-3: #242a32;
  --nc-chalk: #f2efe9;
  --nc-chalk-2: #e8e4dc;
  --nc-bay: #f7f5f1;
  --nc-paper: #faf9f6;
  --nc-copper: #c4783a;
  --nc-copper-deep: #9e5c28;
  --nc-copper-soft: rgba(196, 120, 58, 0.12);
  --nc-steel: #6a727c;
  --nc-mist: #939aa5;
  --nc-line: rgba(14, 17, 20, 0.1);
  --nc-line-light: rgba(255, 255, 255, 0.1);
  --nc-text: #0e1114;
  --nc-text-inv: #f2efe9;
  --nc-font-brand: "Dela Gothic One", "M PLUS 1", sans-serif;
  --nc-font-body: "M PLUS 1", "Hiragino Sans", sans-serif;
  --nc-header-h: 64px;
  --nc-wrap: min(1080px, calc(100% - 1.75rem));
  --nc-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nc-fs: 0.9rem;
  --nc-fs-sm: 0.8rem;
  --nc-fs-xs: 0.72rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nc-header-h) + 0.75rem);
}

.nc-body {
  font-family: var(--nc-font-body);
  font-size: var(--nc-fs);
  font-weight: 400;
  line-height: 1.7;
  color: var(--nc-text);
  background: var(--nc-chalk);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; color: inherit; }
address { font-style: normal; }
iframe { border: 0; display: block; }

h1, h2, h3, h4 {
  font-family: var(--nc-font-brand);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.nc-skip {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--nc-copper); color: #fff; padding: 0.6rem 0.9rem;
  font-size: var(--nc-fs-sm);
}
.nc-skip:focus { left: 0.75rem; top: 0.75rem; }

.nc-container { width: var(--nc-wrap); margin-inline: auto; }
.nc-main { position: relative; z-index: 1; }
.nc-muted { color: var(--nc-steel); font-size: var(--nc-fs-sm); }

/* Atmosphere */
.nc-speedline {
  position: fixed; inset: 0 auto 0 0; width: 2px; z-index: 40; pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--nc-copper), transparent);
  opacity: 0.55;
}
.nc-scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100;
  background: var(--nc-copper); transform: scaleX(0); transform-origin: left center;
  pointer-events: none;
}

/* Header — solid bg (no backdrop-filter: it traps position:fixed children) */
.nc-header {
  position: sticky; top: 0; z-index: 100; height: var(--nc-header-h);
  background: #0e1114;
  border-bottom: 1px solid var(--nc-line-light);
  transition: box-shadow 0.3s;
}
.nc-header.is-scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28); }
.nc-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 0.75rem;
}
.nc-logo { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--nc-text-inv); position: relative; z-index: 102; }
.nc-logo__mark { color: var(--nc-copper); display: grid; place-items: center; transition: transform 0.4s var(--nc-ease); }
.nc-logo__mark svg { width: 28px; height: 28px; }
.nc-logo:hover .nc-logo__mark { transform: rotate(40deg); }
.nc-logo__brand {
  display: block; font-family: var(--nc-font-brand); font-size: 0.98rem; letter-spacing: 0.04em;
}
.nc-logo__text small {
  display: block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--nc-mist); margin-top: 0.05rem;
}

/* Desktop: nav overlays the header bar (nav lives outside header for mobile drawer) */
.nc-nav {
  display: flex; align-items: center; justify-content: flex-end; gap: 0.1rem;
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: var(--nc-wrap); height: var(--nc-header-h);
  z-index: 101; pointer-events: none; background: transparent;
}
.nc-nav > a { pointer-events: auto; }
.nc-nav__link {
  padding: 0.4rem 0.7rem; font-size: 0.78rem; font-weight: 500;
  color: rgba(242, 239, 233, 0.75); transition: color 0.2s;
}
.nc-nav__link:hover, .nc-nav__link.is-active { color: #fff; }
.nc-nav__link.is-active { box-shadow: inset 0 -2px 0 var(--nc-copper); }
.nc-nav-cta {
  margin-left: 0.4rem; padding: 0.45rem 0.9rem; background: var(--nc-copper); color: #fff;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.25s var(--nc-ease);
}
.nc-nav-cta:hover { background: var(--nc-copper-deep); transform: translateY(-1px); }

.nc-menu-toggle {
  display: none; position: relative; z-index: 102;
  width: 44px; height: 44px; border: 1px solid var(--nc-line-light);
  background: transparent; cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
.nc-menu-toggle span {
  display: block; width: 16px; height: 2px; background: #fff;
  transition: transform 0.3s var(--nc-ease), opacity 0.3s var(--nc-ease);
}
body.is-nav-open .nc-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.is-nav-open .nc-menu-toggle span:nth-child(2) { opacity: 0; }
body.is-nav-open .nc-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nc-nav-backdrop {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); opacity: 0;
  pointer-events: none; transition: opacity 0.3s; z-index: 98;
}
body.is-nav-open .nc-nav-backdrop { opacity: 1; pointer-events: auto; }

.nc-top {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 70; width: 40px; height: 40px;
  display: grid; place-items: center; border: none; background: var(--nc-asphalt);
  color: #fff; cursor: pointer; box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s, background 0.25s;
}
.nc-top:hover { background: var(--nc-copper); transform: translateY(-2px); }
.nc-top[hidden] { display: none; }

/* Buttons */
.nc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.7rem 1.2rem; border: 1.5px solid transparent;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; cursor: pointer;
  transition: transform 0.25s var(--nc-ease), background 0.25s, color 0.25s, border-color 0.25s;
}
.nc-btn--lg { padding: 0.82rem 1.45rem; font-size: 0.84rem; }
.nc-btn--copper { background: var(--nc-copper); color: #fff; }
.nc-btn--copper:hover { background: var(--nc-copper-deep); transform: translateY(-2px); }
.nc-btn--ghost { background: transparent; color: var(--nc-text); border-color: var(--nc-asphalt); }
.nc-btn--ghost:hover { background: var(--nc-asphalt); color: #fff; }
.nc-hero .nc-btn--ghost,
.nc-section--copperband .nc-btn--ghost,
.nc-section--bay .nc-btn--ghost {
  color: #fff; border-color: rgba(255, 255, 255, 0.5);
}
.nc-hero .nc-btn--ghost:hover,
.nc-section--copperband .nc-btn--ghost:hover {
  background: #fff; color: var(--nc-asphalt); border-color: #fff;
}

.nc-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: var(--nc-fs-sm); font-weight: 600; color: var(--nc-copper-deep);
  border-bottom: 1px solid transparent; transition: 0.2s;
}
.nc-link:hover { border-bottom-color: var(--nc-copper); gap: 0.45rem; }

.nc-label {
  display: inline-block; font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--nc-copper);
  margin-bottom: 0.55rem;
}

/* Sections */
.nc-section { padding: 3.75rem 0; position: relative; }
.nc-section--chalk { background: var(--nc-chalk-2); }
.nc-section--bay {
  background: var(--nc-asphalt-2); color: var(--nc-text-inv);
}
.nc-section--bay .nc-section__head p,
.nc-section--bay .nc-steel { color: rgba(242, 239, 233, 0.65); }
.nc-section--bay .nc-label { color: var(--nc-copper); }
.nc-section--copperband {
  background: linear-gradient(135deg, var(--nc-asphalt) 0%, #1a1612 55%, #2a2118 100%);
  color: var(--nc-text-inv);
}
.nc-section--copperband .nc-label { color: var(--nc-copper); }
.nc-section--copperband .nc-section__head p { color: rgba(242, 239, 233, 0.65); }
.nc-section--form { background: var(--nc-chalk-2); }

.nc-section__head { max-width: 34rem; margin-bottom: 2rem; }
.nc-section__head--left { margin-inline: 0; }
.nc-section__head h2 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); margin-bottom: 0.55rem; }
.nc-section__head p { color: var(--nc-steel); font-size: var(--nc-fs-sm); }
.nc-section__foot { margin-top: 2rem; text-align: center; }

.nc-reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s var(--nc-ease), transform 0.65s var(--nc-ease);
}
.nc-reveal.is-visible { opacity: 1; transform: none; }
.nc-reveal.is-visible .nc-reveal__media img,
.nc-reveal.is-visible img.nc-anim-img {
  animation: nc-img-in 1.1s var(--nc-ease) both;
}
@keyframes nc-img-in {
  from { transform: scale(1.08); opacity: 0.55; }
  to { transform: scale(1); opacity: 1; }
}

.nc-btn:active { transform: scale(0.97); }
.nc-btn--copper:active { background: var(--nc-copper-deep); }
.nc-social:active { transform: scale(0.92); background: var(--nc-copper); border-color: var(--nc-copper); }
.nc-nav-cta:active { transform: scale(0.97); }
.nc-link:active { gap: 0.5rem; }

/* Home hero */
.nc-hero {
  position: relative; min-height: min(92vh, 820px);
  display: flex; align-items: flex-end; padding: 0 0 4.5rem; color: #fff; overflow: hidden;
}
.nc-hero__media { position: absolute; inset: 0; z-index: 0; }
.nc-hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04); animation: nc-ken 16s var(--nc-ease) infinite alternate;
}
@keyframes nc-ken {
  from { transform: scale(1.04); }
  to { transform: scale(1.1) translate(-1%, -0.8%); }
}
.nc-hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(14, 17, 20, 0.35) 0%, rgba(14, 17, 20, 0.2) 40%, rgba(14, 17, 20, 0.9) 100%),
    linear-gradient(90deg, rgba(14, 17, 20, 0.55) 0%, transparent 55%);
}
.nc-hero__content {
  position: relative; z-index: 2; max-width: 36rem;
  padding-top: calc(var(--nc-header-h) + 1.5rem);
}
.nc-hero__brand {
  font-family: var(--nc-font-brand); font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  letter-spacing: 0.05em; margin-bottom: 0.7rem;
  text-shadow: 0 0 28px rgba(196, 120, 58, 0.4);
  animation: nc-rise 0.85s var(--nc-ease) both;
}
.nc-hero__title {
  font-size: clamp(1.7rem, 4.4vw, 2.6rem); margin-bottom: 0.7rem;
  animation: nc-rise 0.85s 0.1s var(--nc-ease) both;
}
.nc-hero__lead {
  font-size: 0.92rem; color: rgba(242, 239, 233, 0.8); margin-bottom: 1.35rem; max-width: 26rem;
  animation: nc-rise 0.85s 0.2s var(--nc-ease) both;
}
.nc-hero__actions {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  animation: nc-rise 0.85s 0.3s var(--nc-ease) both;
}
@keyframes nc-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
.nc-hero__scroll {
  position: absolute; left: 50%; bottom: 1.15rem; z-index: 2;
  width: 24px; height: 38px; border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px; transform: translateX(-50%);
  display: flex; justify-content: center; padding-top: 7px;
}
.nc-hero__scroll span {
  width: 3px; height: 7px; background: var(--nc-copper); border-radius: 2px;
  animation: nc-dot 1.5s ease-in-out infinite;
}
@keyframes nc-dot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Page hero */
.nc-page-hero {
  position: relative; min-height: 34vh; display: flex; align-items: flex-end;
  padding: 3.25rem 0 2.75rem; color: #fff; overflow: hidden;
}
.nc-page-hero__bg { position: absolute; inset: 0; }
.nc-page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05); animation: nc-ken 18s var(--nc-ease) infinite alternate;
}
.nc-page-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 17, 20, 0.4) 0%, rgba(14, 17, 20, 0.85) 100%);
}
.nc-page-hero__content { position: relative; z-index: 1; max-width: 36rem; }
.nc-page-hero__content .nc-label {
  animation: nc-rise 0.75s var(--nc-ease) both;
}
.nc-page-hero__content h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.2rem); margin-bottom: 0.5rem;
  animation: nc-rise 0.85s 0.08s var(--nc-ease) both;
}
.nc-page-hero__content p {
  color: rgba(242, 239, 233, 0.75); font-size: var(--nc-fs-sm); max-width: 30rem;
  animation: nc-rise 0.85s 0.16s var(--nc-ease) both;
}

/* Filmstrip */
.nc-filmstrip {
  display: flex; gap: 1rem; overflow-x: auto;
  padding: 0.35rem max(0.85rem, calc((100vw - var(--nc-wrap)) / 2)) 1.15rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: thin; scrollbar-color: var(--nc-copper) transparent;
}
.nc-strip-item {
  flex: 0 0 min(250px, 76vw); scroll-snap-align: start;
  background: var(--nc-paper); border: 1px solid var(--nc-line); overflow: hidden;
  transition: transform 0.3s var(--nc-ease), box-shadow 0.3s;
}
.nc-strip-item:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(14, 17, 20, 0.1); }
.nc-strip-item__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.nc-strip-item__media img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--nc-ease);
}
.nc-strip-item:hover .nc-strip-item__media img { transform: scale(1.05); }
.nc-strip-item__tag {
  position: absolute; top: 0.7rem; left: 0.7rem; padding: 0.22rem 0.5rem;
  background: var(--nc-asphalt); color: #fff; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.nc-strip-item__body { padding: 0.95rem 1rem 1.1rem; }
.nc-strip-item__body h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.nc-strip-item__body p { font-size: 0.78rem; color: var(--nc-steel); margin-bottom: 0.7rem; line-height: 1.6; }
.nc-strip-item__meta {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 600;
}
.nc-strip-item__meta a { color: var(--nc-copper-deep); }

/* Split / track / deep / materials / botm */
.nc-split, .nc-track, .nc-deep, .nc-materials, .nc-botm, .nc-access {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 2.25rem; align-items: center;
}
.nc-split--flip .nc-split__media { order: 2; }
.nc-split--flip .nc-split__copy { order: 1; }
.nc-deep--alt .nc-deep__media { order: 2; }
.nc-deep--alt .nc-deep__copy { order: 1; }

.nc-split__media, .nc-track__media, .nc-deep__media, .nc-materials__media, .nc-botm__media {
  overflow: hidden; border: 1px solid var(--nc-line);
}
.nc-split__media img, .nc-track__media img, .nc-deep__media img, .nc-botm__media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.7s var(--nc-ease);
}
.nc-materials__media img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  transition: transform 0.7s var(--nc-ease);
}
.nc-split:hover .nc-split__media img,
.nc-track:hover .nc-track__media img,
.nc-deep:hover .nc-deep__media img,
.nc-botm:hover .nc-botm__media img,
.nc-materials:hover .nc-materials__media img {
  transform: scale(1.04);
}
.nc-access h2,
.nc-split__copy h2,
.nc-track__copy h2,
.nc-deep__copy h2,
.nc-materials__copy h2,
.nc-botm__copy h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem); margin-bottom: 0.7rem;
}
.nc-access__list strong {
  display: inline-block; min-width: 2.75rem; margin-right: 0.45rem;
  color: var(--nc-asphalt-3); font-size: 0.72rem; letter-spacing: 0.06em;
}
.nc-split__copy p, .nc-track__copy p, .nc-deep__copy p, .nc-materials__copy p, .nc-botm__copy p {
  color: var(--nc-steel); font-size: var(--nc-fs-sm); margin-bottom: 1.15rem;
}
.nc-section--bay .nc-track__copy p { color: rgba(242, 239, 233, 0.7); }

/* Timeline */
.nc-timeline { border-top: 1px solid var(--nc-line-light); }
.nc-timeline__item {
  display: grid; grid-template-columns: 3.25rem 1fr auto auto; gap: 1rem;
  align-items: center; padding: 1.15rem 0; border-bottom: 1px solid var(--nc-line-light);
  transition: background 0.25s;
}
.nc-timeline__item:hover { background: rgba(196, 120, 58, 0.06); }
.nc-timeline__num { font-family: var(--nc-font-brand); font-size: 1.15rem; color: var(--nc-copper); }
.nc-timeline__content h3 { font-size: 0.98rem; margin-bottom: 0.2rem; }
.nc-timeline__content p { color: rgba(242, 239, 233, 0.65); font-size: 0.78rem; }
.nc-timeline__price { font-weight: 700; font-size: 0.84rem; white-space: nowrap; }

/* Specs */
.nc-specs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem;
}
.nc-specs__item {
  padding: 1.35rem 1rem; background: var(--nc-paper); border: 1px solid var(--nc-line);
  text-align: center; transition: border-color 0.25s, transform 0.3s;
}
.nc-specs__item:hover { border-color: var(--nc-copper); transform: translateY(-3px); }
.nc-specs__num {
  display: block; font-family: var(--nc-font-brand); font-size: 1.45rem;
  color: var(--nc-copper); margin-bottom: 0.35rem;
}
.nc-specs__label { font-size: 0.74rem; color: var(--nc-steel); }

/* CTA */
.nc-cta {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 2.25rem; align-items: center;
}
.nc-cta__quote {
  font-size: 0.95rem; line-height: 1.7; border-left: 3px solid var(--nc-copper);
  padding-left: 1.05rem; color: rgba(242, 239, 233, 0.9);
}
.nc-cta__quote cite {
  display: block; margin-top: 0.85rem; font-size: 0.74rem; font-style: normal; color: var(--nc-mist);
}
.nc-cta__copy h2 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); margin-bottom: 0.55rem; }
.nc-cta__copy > p { color: rgba(242, 239, 233, 0.68); font-size: var(--nc-fs-sm); margin-bottom: 1rem; }
.nc-cta__perks {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; margin-bottom: 1.35rem;
}
.nc-cta__perks li {
  position: relative; padding-left: 0.95rem; font-size: 0.78rem; color: rgba(242, 239, 233, 0.82);
}
.nc-cta__perks li::before {
  content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; background: var(--nc-copper);
}
.nc-cta__actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }

/* Pillars / guides / vision / bays / history */
.nc-pillars, .nc-guides, .nc-vision, .nc-bays {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.nc-pillar {
  background: var(--nc-paper); border: 1px solid var(--nc-line); overflow: hidden;
  transition: transform 0.3s;
}
.nc-pillar:hover { transform: translateY(-3px); }
.nc-pillar__media img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; }
.nc-pillar h3 { padding: 0.95rem 0.95rem 0.3rem; font-size: 0.95rem; }
.nc-pillar p { padding: 0 0.95rem 1.1rem; color: var(--nc-steel); font-size: 0.78rem; }

.nc-guides__item {
  padding: 1.5rem 1.2rem; background: var(--nc-asphalt); color: var(--nc-text-inv);
}
.nc-section--bay .nc-guides__item { background: var(--nc-asphalt-3); }
.nc-guides__item--offset { transform: translateY(0.85rem); }
.nc-guides__name { font-size: 1.05rem; margin-bottom: 0.25rem; }
.nc-guides__role { color: var(--nc-copper); font-size: 0.76rem; font-weight: 600; margin-bottom: 0.55rem; }
.nc-guides__specialty { color: rgba(242, 239, 233, 0.68); font-size: 0.78rem; }

.nc-bay-cell {
  padding: 1.5rem 1.2rem; background: var(--nc-paper); border: 1px solid var(--nc-line);
  position: relative;
}
.nc-bay-cell::before {
  content: attr(data-bay); position: absolute; top: 0.85rem; right: 0.95rem;
  font-family: var(--nc-font-brand); font-size: 1.4rem; color: var(--nc-copper-soft);
  color: rgba(196, 120, 58, 0.25);
}
.nc-bay-cell h3 { font-size: 0.98rem; margin-bottom: 0.4rem; }
.nc-bay-cell p { color: var(--nc-steel); font-size: 0.78rem; }

.nc-history { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.nc-history__item {
  padding: 1.2rem 1rem; background: var(--nc-paper); border-top: 3px solid var(--nc-copper);
}
.nc-history__year {
  display: block; font-family: var(--nc-font-brand); font-size: 1.15rem;
  color: var(--nc-copper); margin-bottom: 0.45rem;
}
.nc-history__item p { color: var(--nc-steel); font-size: 0.78rem; }

.nc-vision__item {
  padding: 1.35rem 1.15rem; background: var(--nc-asphalt-3); border: 1px solid var(--nc-line-light);
}
.nc-vision__year {
  display: block; font-family: var(--nc-font-brand); font-size: 1.25rem;
  color: var(--nc-copper); margin-bottom: 0.55rem;
}
.nc-vision__item h3 { font-size: 0.95rem; margin-bottom: 0.35rem; }
.nc-vision__item p { color: rgba(242, 239, 233, 0.65); font-size: 0.78rem; }

/* Plan list / process / prices / kit / benefits */
.nc-plan-list { border-top: 1px solid var(--nc-line); }
.nc-plan-list__item {
  display: grid; grid-template-columns: 3rem 120px 1fr auto; gap: 1rem;
  align-items: center; padding: 1.15rem 0; border-bottom: 1px solid var(--nc-line);
}
.nc-plan-list__num { font-family: var(--nc-font-brand); font-size: 1.15rem; color: var(--nc-copper); }
.nc-plan-list__media { overflow: hidden; border: 1px solid var(--nc-line); }
.nc-plan-list__media img { width: 100%; aspect-ratio: 10 / 7; object-fit: cover; }
.nc-plan-list__body h3 { font-size: 0.98rem; margin-bottom: 0.2rem; }
.nc-plan-list__body p { color: var(--nc-steel); font-size: 0.78rem; }
.nc-plan-list__aside { display: flex; flex-direction: column; align-items: flex-end; gap: 0.55rem; }
.nc-plan-list__price { font-weight: 700; font-size: 0.84rem; white-space: nowrap; }

.nc-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.nc-process__item {
  padding: 1.2rem 1rem; background: var(--nc-asphalt-3); border-top: 3px solid var(--nc-copper);
}
.nc-process__num {
  display: block; font-family: var(--nc-font-brand); font-size: 1.3rem;
  color: var(--nc-copper); margin-bottom: 0.55rem;
}
.nc-process__item h3 { font-size: 0.92rem; margin-bottom: 0.3rem; }
.nc-process__item p { color: rgba(242, 239, 233, 0.65); font-size: 0.76rem; }

.nc-prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.nc-price {
  padding: 1.5rem 1.2rem; background: var(--nc-paper); border: 1px solid var(--nc-line);
  text-align: center;
}
.nc-price h3 { font-size: 0.98rem; margin-bottom: 0.55rem; }
.nc-price__range {
  display: block; font-family: var(--nc-font-brand); font-size: 1.25rem;
  color: var(--nc-copper); margin-bottom: 0.45rem;
}
.nc-price p { color: var(--nc-steel); font-size: 0.76rem; }

.nc-kit { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.nc-kit__item {
  padding: 1.15rem 1.05rem; background: var(--nc-paper); border: 1px solid var(--nc-line);
}
.nc-kit__item h3 { font-size: 0.92rem; margin-bottom: 0.3rem; }
.nc-kit__item p { color: var(--nc-steel); font-size: 0.78rem; }

.nc-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.85rem; }
.nc-benefit {
  padding: 1.2rem 1rem; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--nc-line-light);
}
.nc-benefit__num {
  display: block; font-family: var(--nc-font-brand); font-size: 1.35rem;
  color: var(--nc-copper); margin-bottom: 0.55rem;
}
.nc-benefit h3 { font-size: 0.9rem; margin-bottom: 0.3rem; }
.nc-benefit p { color: rgba(242, 239, 233, 0.65); font-size: 0.76rem; }

/* Blog */
.nc-featured {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.75rem; align-items: center;
}
.nc-featured__media { overflow: hidden; border: 1px solid var(--nc-line); }
.nc-featured__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.nc-featured__cat, .nc-featured__date {
  display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--nc-copper); margin-right: 0.75rem; margin-bottom: 0.55rem;
}
.nc-featured__copy h2 { font-size: clamp(1.2rem, 2.4vw, 1.55rem); margin-bottom: 0.55rem; }
.nc-featured__copy p { color: var(--nc-steel); font-size: var(--nc-fs-sm); margin-bottom: 0.95rem; }

.nc-posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.nc-post {
  background: var(--nc-asphalt-3); border: 1px solid var(--nc-line-light); overflow: hidden;
  transition: transform 0.3s;
}
.nc-post:hover { transform: translateY(-3px); }
.nc-post__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.nc-post__meta { padding: 1rem 1rem 1.15rem; }
.nc-post__meta span, .nc-post__meta time {
  font-size: 0.68rem; color: var(--nc-copper); font-weight: 600; margin-right: 0.55rem;
}
.nc-post__meta h3 { font-size: 0.92rem; margin: 0.4rem 0 0.35rem; }
.nc-post__meta p { color: rgba(242, 239, 233, 0.65); font-size: 0.76rem; margin-bottom: 0.65rem; }

.nc-cats { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.nc-cat {
  padding: 0.45rem 0.85rem; background: var(--nc-asphalt); color: #fff;
  font-size: 0.74rem; font-weight: 500; transition: background 0.2s;
}
.nc-cat:hover { background: var(--nc-copper); }

.nc-routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.nc-route {
  padding: 1.35rem 1.15rem; background: var(--nc-asphalt-3); border: 1px solid var(--nc-line-light);
}
.nc-route h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.nc-route p { color: rgba(242, 239, 233, 0.65); font-size: 0.78rem; }

.nc-glossary { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
.nc-glossary__item {
  padding: 1.15rem 1.05rem; background: var(--nc-paper); border: 1px solid var(--nc-line);
}
.nc-glossary__term {
  display: block; font-family: var(--nc-font-brand); font-size: 1rem;
  color: var(--nc-copper); margin-bottom: 0.35rem;
}
.nc-glossary__item p { color: var(--nc-steel); font-size: 0.78rem; }

.nc-newsletter {
  display: grid; grid-template-columns: 1fr auto; gap: 0.35rem 1.5rem; align-items: center;
  padding: 1.85rem; background: var(--nc-paper); border: 1px solid var(--nc-line);
}
.nc-newsletter .nc-label { grid-column: 1; }
.nc-newsletter h2 {
  grid-column: 1; font-size: 1.25rem; margin-bottom: 0.2rem;
}
.nc-newsletter > p {
  grid-column: 1; color: var(--nc-steel); font-size: var(--nc-fs-sm); margin-bottom: 0;
}
.nc-newsletter__form {
  grid-column: 2; grid-row: 1 / span 3; align-self: center;
  display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.nc-newsletter__form input {
  min-width: 200px; padding: 0.7rem 0.9rem; border: 1px solid var(--nc-line);
  background: #fff; font-size: var(--nc-fs-sm);
}
.nc-newsletter__form input:focus {
  outline: none; border-color: var(--nc-copper); box-shadow: 0 0 0 3px var(--nc-copper-soft);
}

/* Contact */
.nc-contact {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.25rem; align-items: start;
}
.nc-contact__form-panel h2, .nc-office h2 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.nc-contact__form-panel > .nc-muted { margin-bottom: 0.25rem; }
.nc-form { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.15rem; }
.nc-form label {
  display: flex; flex-direction: column; gap: 0.3rem;
  font-size: 0.76rem; font-weight: 600;
}
.nc-form input, .nc-form textarea {
  padding: 0.7rem 0.9rem; border: 1px solid var(--nc-line); background: #fff;
  font-size: var(--nc-fs-sm); transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 0;
}
.nc-form textarea { min-height: 140px; resize: vertical; }
.nc-form input:focus, .nc-form textarea:focus {
  outline: none; border-color: var(--nc-copper); box-shadow: 0 0 0 3px var(--nc-copper-soft);
}
.nc-form input.is-invalid, .nc-form textarea.is-invalid { border-color: #b33; }

.nc-notice { padding: 0.85rem 1rem; margin-top: 0.85rem; font-size: var(--nc-fs-sm); }
.nc-notice--success { background: rgba(40, 140, 80, 0.1); border: 1px solid rgba(40, 140, 80, 0.3); }
.nc-notice--error { background: rgba(180, 40, 40, 0.08); border: 1px solid rgba(180, 40, 40, 0.28); }
.nc-notice ul { padding-left: 1rem; list-style: disc; }

.nc-office__item { margin: 0.95rem 0; }
.nc-office__item strong {
  display: block; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--nc-copper); margin-bottom: 0.2rem;
}
.nc-office__item p { font-size: var(--nc-fs-sm); }
.nc-office__item a:hover { color: var(--nc-copper-deep); }

.nc-map {
  width: 100%; height: 320px; border: 1px solid var(--nc-line); background: var(--nc-chalk-2);
}

.nc-hours { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0.85rem; }
.nc-hours__best, .nc-hours__slot {
  padding: 1.25rem 1.05rem; background: var(--nc-asphalt-3); border: 1px solid var(--nc-line-light);
}
.nc-hours__best { border-color: var(--nc-copper); }
.nc-hours__best h3, .nc-hours__slot h3 { font-size: 0.92rem; margin: 0.35rem 0; }
.nc-hours__time {
  display: block; font-family: var(--nc-font-brand); font-size: 1.05rem; color: var(--nc-copper);
}
.nc-hours__best p, .nc-hours__slot p { color: rgba(242, 239, 233, 0.65); font-size: 0.76rem; }

.nc-channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.nc-channel {
  padding: 1.35rem 1.15rem; background: var(--nc-paper); border: 1px solid var(--nc-line);
}
.nc-channel h3 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.nc-channel p { color: var(--nc-steel); font-size: 0.78rem; }
.nc-channel a { color: var(--nc-copper-deep); font-weight: 600; }

.nc-access__list { margin: 0.85rem 0 0; display: flex; flex-direction: column; gap: 0.55rem; }
.nc-access__list li {
  padding-left: 0.95rem; position: relative; font-size: var(--nc-fs-sm); color: var(--nc-steel);
}
.nc-access__list li::before {
  content: ""; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; background: var(--nc-copper);
}
.nc-access__media { overflow: hidden; border: 1px solid var(--nc-line); }
.nc-access__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.nc-faq { display: flex; flex-direction: column; gap: 1.75rem; }
.nc-faq-block h3 {
  font-size: 0.98rem; margin-bottom: 0.85rem; padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--nc-copper); display: inline-block;
}
.nc-faq-block details {
  margin-bottom: 0.5rem; background: var(--nc-asphalt-3);
  border: 1px solid var(--nc-line-light);
}
.nc-faq-block summary {
  padding: 0.85rem 1rem; cursor: pointer; font-weight: 600; font-size: 0.84rem;
  list-style: none; display: flex; justify-content: space-between; gap: 0.75rem;
}
.nc-faq-block summary::-webkit-details-marker { display: none; }
.nc-faq-block summary::after {
  content: "+"; color: var(--nc-copper); font-family: var(--nc-font-brand); font-size: 1rem;
}
.nc-faq-block details[open] summary::after { content: "−"; }
.nc-faq-block details p {
  padding: 0 1rem 0.95rem; color: rgba(242, 239, 233, 0.65); font-size: 0.76rem;
}

/* Footer */
.nc-footer { background: var(--nc-asphalt); color: var(--nc-text-inv); }
.nc-footer__cta {
  background: linear-gradient(90deg, var(--nc-asphalt-2), #2a2118);
  border-bottom: 1px solid var(--nc-line-light);
}
.nc-footer__cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 2.15rem 0;
}
.nc-footer__cta-copy h2 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); margin-bottom: 0.3rem; }
.nc-footer__cta-copy p { color: rgba(242, 239, 233, 0.65); font-size: var(--nc-fs-sm); }
.nc-footer__grid {
  display: grid; grid-template-columns: 1.35fr 1fr 1.05fr 1fr; gap: 2rem; padding: 2.75rem 0 2rem;
}
.nc-footer__logo strong { font-family: var(--nc-font-brand); font-size: 1.05rem; }
.nc-footer__tagline { display: block; color: var(--nc-copper); font-size: 0.78rem; margin: 0.55rem 0; }
.nc-footer__about { color: rgba(242, 239, 233, 0.62); font-size: 0.78rem; margin-bottom: 0.85rem; }
.nc-footer__meta {
  display: flex; flex-direction: column; gap: 0.2rem; font-size: 0.72rem; color: var(--nc-mist);
}
.nc-footer__col h3 {
  font-family: var(--nc-font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--nc-copper); margin-bottom: 0.85rem;
}
.nc-footer__links { display: flex; flex-direction: column; gap: 0.4rem; }
.nc-footer__links a { color: rgba(242, 239, 233, 0.7); font-size: 0.8rem; transition: color 0.2s; }
.nc-footer__links a:hover { color: #fff; }
.nc-footer__contact-item { margin-bottom: 0.85rem; }
.nc-footer__contact-item strong {
  display: block; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--nc-mist); margin-bottom: 0.2rem;
}
.nc-footer__contact-item p, .nc-footer__contact-item a { font-size: 0.8rem; }
.nc-footer__contact-item a:hover { color: var(--nc-copper); }
.nc-footer__social-block { margin-top: 1.15rem; }
.nc-footer__social-label { font-size: 0.72rem; color: var(--nc-mist); margin-bottom: 0.5rem; }
.nc-footer__social { display: flex; gap: 0.5rem; }
.nc-social {
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--nc-line-light); color: #fff; transition: 0.25s;
}
.nc-social:hover { background: var(--nc-copper); border-color: var(--nc-copper); }
.nc-footer__bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 0.85rem;
  flex-wrap: wrap; padding: 1rem 0 1.5rem; border-top: 1px solid var(--nc-line-light);
  font-size: 0.72rem; color: var(--nc-mist);
}
.nc-footer__legal { display: flex; gap: 1rem; }
.nc-footer__legal a:hover { color: #fff; }

/* Responsive */
@media (max-width: 980px) {
  .nc-split, .nc-track, .nc-deep, .nc-materials, .nc-botm, .nc-access,
  .nc-cta, .nc-featured, .nc-contact, .nc-newsletter { grid-template-columns: 1fr; }
  .nc-split--flip .nc-split__media, .nc-deep--alt .nc-deep__media { order: 0; }
  .nc-split--flip .nc-split__copy, .nc-deep--alt .nc-deep__copy { order: 0; }
  .nc-pillars, .nc-guides, .nc-vision, .nc-bays, .nc-posts, .nc-routes,
  .nc-channels, .nc-prices { grid-template-columns: 1fr 1fr; }
  .nc-guides__item--offset { transform: none; }
  .nc-process, .nc-benefits, .nc-history, .nc-specs, .nc-hours { grid-template-columns: 1fr 1fr; }
  .nc-plan-list__item { grid-template-columns: 2.75rem 90px 1fr; }
  .nc-plan-list__aside {
    grid-column: 2 / -1; flex-direction: row; align-items: center; justify-content: space-between;
  }
  .nc-timeline__item { grid-template-columns: 2.75rem 1fr; gap: 0.55rem 0.85rem; }
  .nc-timeline__price, .nc-timeline__item .nc-link { grid-column: 2; }
  .nc-footer__grid { grid-template-columns: 1fr 1fr; }
  .nc-kit, .nc-glossary { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --nc-header-h: 58px;
    --nc-wrap: min(1080px, calc(100% - 1.25rem));
    --nc-fs: 0.88rem;
  }

  .nc-menu-toggle { display: flex; }

  .nc-nav {
    top: 0; left: auto; right: 0; bottom: 0;
    width: min(304px, 86vw); height: auto; max-height: none;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: calc(var(--nc-header-h) + 0.75rem) 1.15rem 2rem;
    background: var(--nc-asphalt-2);
    transform: translateX(105%);
    transition: transform 0.35s var(--nc-ease);
    z-index: 99; overflow-y: auto; overflow-x: hidden;
    pointer-events: auto;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.4);
  }
  body.is-nav-open .nc-nav { transform: translateX(0); }
  body.is-nav-open { overflow: hidden; }

  .nc-nav__link {
    padding: 1rem 0.55rem; border-bottom: 1px solid var(--nc-line-light);
    font-size: 0.95rem; opacity: 1; transform: none;
    min-height: 48px; display: flex; align-items: center;
  }
  .nc-nav-cta {
    margin: 1.15rem 0 0; text-align: center; padding: 0.95rem 1rem;
    font-size: 0.9rem; min-height: 48px;
    display: flex; align-items: center; justify-content: center;
    opacity: 1; transform: none;
  }

  .nc-section { padding: 2.5rem 0; }
  .nc-section__head { margin-bottom: 1.5rem; }
  .nc-section__head h2 { font-size: clamp(1.2rem, 5.5vw, 1.45rem); }

  .nc-hero {
    min-height: min(88vh, 720px); padding-bottom: 3.25rem;
    align-items: flex-end;
  }
  .nc-hero__content {
    max-width: none;
    width: 100%;
    box-sizing: border-box;
    padding-left: 1rem;
    padding-right: 0.35rem;
  }
  .nc-hero__brand { font-size: clamp(1.25rem, 6vw, 1.6rem); }
  .nc-hero__title { font-size: clamp(1.55rem, 7.2vw, 2.05rem); }
  .nc-hero__lead { font-size: 0.88rem; margin-bottom: 1.2rem; }
  .nc-hero__actions {
    flex-direction: column; align-items: stretch; gap: 0.55rem;
  }
  .nc-hero__actions .nc-btn {
    width: 100%; min-height: 48px; padding: 0.9rem 1.2rem; font-size: 0.86rem;
  }
  .nc-hero__scroll { bottom: 0.85rem; }

  .nc-page-hero {
    min-height: 46vh; padding: calc(var(--nc-header-h) + 1.75rem) 0 2.5rem;
  }
  .nc-page-hero__content { max-width: none; }
  .nc-page-hero__content .nc-label { margin-bottom: 0.65rem; }
  .nc-page-hero__content h1 {
    font-size: clamp(1.45rem, 6.8vw, 1.9rem); line-height: 1.35; margin-bottom: 0.65rem;
  }
  .nc-page-hero__content p { font-size: 0.86rem; line-height: 1.65; }

  .nc-btn, .nc-btn--lg {
    min-height: 46px; padding: 0.8rem 1.15rem;
  }
  .nc-cta__actions { flex-direction: column; align-items: stretch; }
  .nc-cta__actions .nc-btn { width: 100%; }
  .nc-cta__perks { grid-template-columns: 1fr; }
  .nc-footer__cta-inner .nc-btn { width: 100%; min-height: 48px; }

  .nc-filmstrip {
    gap: 0.75rem;
    padding: 0.25rem 0.65rem 1rem;
    scroll-padding-inline: 0.65rem;
  }
  .nc-strip-item {
    flex: 0 0 min(78vw, 280px);
    transition: transform 0.35s var(--nc-ease), box-shadow 0.35s;
  }
  .nc-strip-item.is-inview {
    animation: nc-rise 0.6s var(--nc-ease) both;
  }
  .nc-strip-item:active { transform: translateY(-3px) scale(0.99); }

  .nc-pillars, .nc-guides, .nc-vision, .nc-bays, .nc-posts, .nc-routes,
  .nc-channels, .nc-prices, .nc-process, .nc-benefits, .nc-history,
  .nc-specs, .nc-hours { grid-template-columns: 1fr; gap: 0.85rem; }

  .nc-plan-list__item {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1rem 0.85rem;
  }
  .nc-plan-list__media { max-width: none; }
  .nc-plan-list__aside {
    grid-column: 1; flex-direction: row; align-items: center;
    justify-content: space-between; width: 100%;
  }

  .nc-timeline__item {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.45rem 0.75rem;
    padding: 1rem 0;
  }

  .nc-featured__copy, .nc-botm__copy, .nc-split__copy, .nc-track__copy,
  .nc-deep__copy, .nc-materials__copy { padding-top: 0.35rem; }

  .nc-botm, .nc-split, .nc-track, .nc-deep, .nc-materials, .nc-access {
    gap: 1.35rem;
  }
  .nc-botm__media img, .nc-split__media img, .nc-track__media img,
  .nc-deep__media img {
    aspect-ratio: 16 / 11;
  }
  .nc-botm__copy h2, .nc-split__copy h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
  }
  .nc-botm__copy .nc-btn { width: 100%; min-height: 48px; }

  .nc-cats { gap: 0.45rem; }
  .nc-cat {
    min-height: 40px; padding: 0.55rem 0.85rem;
    display: inline-flex; align-items: center;
  }

  .nc-glossary { gap: 0.7rem; }
  .nc-glossary__item { padding: 1.05rem 0.95rem; }

  .nc-newsletter__form {
    grid-column: 1; grid-row: auto; width: 100%;
    flex-direction: column; align-items: stretch;
  }
  .nc-newsletter__form input {
    flex: 1; min-width: 0; width: 100%; min-height: 48px;
  }
  .nc-newsletter__form .nc-btn { width: 100%; min-height: 48px; }

  /* Contact — mobile form stack */
  .nc-contact { gap: 2.25rem; }
  .nc-contact__form-panel h2 {
    font-size: clamp(1.2rem, 5.2vw, 1.4rem); margin-bottom: 0.4rem;
  }
  .nc-form__row { grid-template-columns: 1fr; }
  .nc-form { gap: 1.05rem; margin-top: 1.35rem; }
  .nc-form label { font-size: 0.82rem; gap: 0.45rem; }
  .nc-form input, .nc-form textarea, .nc-form select {
    min-height: 48px; font-size: 16px; /* avoid iOS zoom */
    padding: 0.9rem 1rem; background: rgba(255, 255, 255, 0.72);
    border-color: transparent;
  }
  .nc-form input:focus, .nc-form textarea:focus {
    background: #fff; border-color: var(--nc-copper);
  }
  .nc-form textarea { min-height: 150px; }
  .nc-form .nc-btn,
  .nc-form button[type="submit"] { width: 100%; min-height: 50px; margin-top: 0.35rem; }

  .nc-map { height: 260px; }

  .nc-footer__cta-inner {
    flex-direction: column; align-items: stretch; gap: 1.15rem; padding: 1.75rem 0;
  }
  .nc-footer__grid { grid-template-columns: 1fr; gap: 1.75rem; padding: 2rem 0 1.5rem; }
  .nc-footer__social { flex-wrap: wrap; gap: 0.55rem; }
  .nc-social {
    width: 44px; height: 44px;
    transition: transform 0.25s var(--nc-ease), background 0.25s, border-color 0.25s;
  }
  .nc-footer__bottom {
    flex-direction: column; align-items: flex-start; gap: 0.65rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }
  .nc-footer__legal { flex-wrap: wrap; gap: 0.75rem; }

  .nc-top {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    width: 44px; height: 44px;
  }

  .nc-reveal {
    transform: translateY(28px);
    transition: opacity 0.7s var(--nc-ease), transform 0.7s var(--nc-ease);
  }
  .nc-reveal[data-delay="1"] { transition-delay: 0.06s; }
  .nc-reveal[data-delay="2"] { transition-delay: 0.12s; }
  .nc-reveal[data-delay="3"] { transition-delay: 0.18s; }
  .nc-reveal[data-delay="4"] { transition-delay: 0.24s; }

  .nc-stagger > * {
    opacity: 0; transform: translateY(18px);
    transition: opacity 0.55s var(--nc-ease), transform 0.55s var(--nc-ease);
  }
  .nc-reveal.is-visible.nc-stagger > *:nth-child(1) { transition-delay: 0.04s; }
  .nc-reveal.is-visible.nc-stagger > *:nth-child(2) { transition-delay: 0.1s; }
  .nc-reveal.is-visible.nc-stagger > *:nth-child(3) { transition-delay: 0.16s; }
  .nc-reveal.is-visible.nc-stagger > *:nth-child(4) { transition-delay: 0.22s; }
  .nc-reveal.is-visible.nc-stagger > *:nth-child(5) { transition-delay: 0.28s; }
  .nc-reveal.is-visible.nc-stagger > *:nth-child(6) { transition-delay: 0.34s; }
  .nc-reveal.is-visible.nc-stagger > * { opacity: 1; transform: none; }

  .nc-newsletter { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nc-hero { min-height: 78vh; padding-bottom: 2.75rem; }
  .nc-logo__text small { display: none; }
  .nc-strip-item { flex: 0 0 84vw; }
  .nc-access__media iframe { min-height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .nc-reveal,
  .nc-stagger > * {
    opacity: 1; transform: none; animation: none;
  }
  .nc-hero__media img,
  .nc-page-hero__bg img { animation: none; transform: none; }
}
