/* ============================================
   NORDOYANE - Regional Showcase
   Scoped under .nordoyane-page
   ============================================ */

/* -- Local Fonts (keep Nordoyane self-contained; match village pages) -- */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('/assets/fonts/GlacialIndifference-Regular.woff2') format('woff2'),
       url('/assets/fonts/GlacialIndifference-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('/assets/fonts/GlacialIndifference-Bold.woff2') format('woff2'),
       url('/assets/fonts/GlacialIndifference-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- Page-scoped tokens ---- */
.nordoyane-page {
  --n-content-max: 1060px;
  --n-content-narrow: 720px;
  --n-section-padding: clamp(80px, 10vh, 140px);
  --n-card-radius: 12px;
  --n-gold: var(--color-gold, #c4918a);
  --n-cream: var(--surface-story, #F1EBE3);
  --n-midnight: var(--surface-strong, #0a1628);
  --n-utility: var(--surface-utility, #243D4F);
  --n-warm-white: var(--surface-explore, #FBF9F6);

  --font-body: 'Glacial Indifference', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  /* Needed by village-glance.css (normally set in village-editorial.css on .village-page) */
  --color-dark-panel: var(--surface-utility, #243D4F);
  --color-cream: var(--surface-story, #F1EBE3);
  overflow-x: hidden;
  overflow-x: clip;
}

.nordoyane-page main {
  overflow-x: hidden;
  overflow-x: clip;
}

/* Avoid the "click into place" feeling after scroll: keep reveals as fade-only on this page. */
.nordoyane-page [data-reveal] {
  transform: none;
}

.nordoyane-page [data-reveal].revealed {
  transform: none;
}

/* Footer: match village page styling (border + gold column headings). */
.nordoyane-page .site-footer {
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  margin-top: 0;
}

.nordoyane-page .footer-column h4 {
  color: var(--color-gold);
}

/* ---- Shared elements ---- */
.n-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--n-gold);
  margin-bottom: var(--space-md);
}

.n-eyebrow--light { color: rgba(255,255,255,.6); }

.n-section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text-primary);
}

.n-section-title--light { color: #fff; }

.n-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full);
  padding: 0.85em 2em;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.n-btn--primary {
  background: var(--n-gold);
  color: var(--n-midnight);
}

.n-btn--primary:hover {
  background: #c89560;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.n-btn--outline {
  border: 1.5px solid var(--color-text-primary);
  color: var(--color-text-primary);
  background: transparent;
}

.n-btn--outline:hover {
  background: var(--color-text-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   1. HERO - Full-screen Video (village-style)
   ============================================ */
.n-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--n-midnight);
}

.n-hero__media {
  position: absolute;
  inset: 0;
}

.n-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Freysta logo - top-left, same as village hero */
.n-hero__logo-link {
  position: absolute;
  top: clamp(90px, 8vw, 110px);
  left: var(--space-4xl);
  z-index: 3;
  transition: opacity 0.3s var(--ease-out-quart);
}

.n-hero__logo-link:hover { opacity: 0.85; }

.n-hero__logo {
  width: clamp(64px, 8vw, 120px);
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(10, 22, 40, 0.5));
  object-fit: contain;
}

/* Signature placard - village-style bottom-left panel */
.n-hero__signature {
  position: relative;
  z-index: 2;
  max-width: 85%;
  margin: 0 0 var(--space-3xl) var(--space-4xl);
  padding: 56px 48px 36px;
  background: linear-gradient(
    to top,
    rgba(36, 61, 79, 0.72) 0%,
    rgba(36, 61, 79, 0.50) 40%,
    rgba(36, 61, 79, 0.20) 80%,
    transparent 100%
  );
  backdrop-filter: blur(2px);
  border-left: 2px solid rgba(250, 248, 245, 0.35);
  box-shadow: -4px 0 12px rgba(10, 22, 40, 0.28),
              -1px 0  4px rgba(10, 22, 40, 0.45);
  border-radius: var(--radius-lg);
}

/* Region eyebrow inside placard */
.n-hero__meta {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250, 248, 245, 0.22);
  opacity: 0;
  animation: n-signatureReveal 0.8s var(--ease-out-expo) 0.35s both;
}

.n-hero__region {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.65);
}

/* Title */
.n-hero__title {
  /* Main page H1 should be Glacial Indifference per brand typography. */
  font-family: var(--font-body);
  font-size: clamp(3.5rem, 11vw, 13rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 0.88;
  color: var(--color-warm-white);
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(10, 22, 40, 0.35);
  opacity: 0;
  animation: n-signatureReveal 0.9s var(--ease-out-expo) 0.5s both;
}

/* Tagline */
.n-hero__tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: rgba(250, 248, 245, 0.7);
  letter-spacing: -0.01em;
  opacity: 0;
  animation: n-signatureReveal 0.8s var(--ease-out-expo) 0.7s both;
}

@keyframes n-signatureReveal {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   2. GLANCE - hide snapshot facts + tune intro timing
   ============================================ */
.nordoyane-page .v-glance__facts-header,
.nordoyane-page .v-glance__facts {
  display: none;
}

/* Remove extra spacing between hero and glance */
.nordoyane-page .v-glance__intro {
  margin-top: 0;
}

/* Wider reading width for ingress on larger screens */
.nordoyane-page .v-glance__intro p {
  max-width: 860px;
}

/* Match glance bottom area to islands background - no visible seam */
.nordoyane-page .v-glance {
  background: var(--n-warm-white);
  padding-bottom: 0;
}

/* ============================================
   3. ISLAND GRID - Cinematic Fullbleed Cards
   ============================================ */
.n-islands {
  background: var(--n-warm-white);
  padding: var(--n-section-padding) clamp(24px, 5vw, 80px);
}

.n-islands__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 72px);
}

.n-islands__header .n-eyebrow {
  color: var(--color-text-secondary, #5a6a78);
}

.n-islands__header .n-section-title {
  color: var(--color-text-primary, #1a2a3a);
}

.n-grid-a {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  max-width: 1120px;
  margin: 0 auto;
}

.n-grid-a::after {
  content: '';
  grid-column: 3 / 4;
}
.n-grid-a .n-card-a:nth-child(4) { grid-column: 1 / 2; }
.n-grid-a .n-card-a:nth-child(5) { grid-column: 2 / 3; }

.n-card-a {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--n-card-radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.08),
              0 8px 24px rgba(10, 22, 40, 0.04);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-card-a:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.12),
              0 24px 56px rgba(10, 22, 40, 0.10),
              0 0 0 1px rgba(196, 145, 138, 0.15);
}

.n-card-a__image {
  position: absolute;
  inset: 0;
}

.n-card-a__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1),
              filter 0.8s ease;
}

.n-card-a:hover .n-card-a__image img {
  transform: scale(1.1);
  filter: brightness(1.08) saturate(1.1);
}

.n-card-a__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.72) 0%,
    rgba(10, 22, 40, 0.18) 45%,
    transparent 100%
  );
  transition: background 0.6s ease;
}

.n-card-a:hover .n-card-a__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.8) 0%,
    rgba(10, 22, 40, 0.25) 50%,
    rgba(10, 22, 40, 0.05) 100%
  );
}

.n-card-a__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(24px, 3vw, 40px);
  z-index: 2;
  color: #fff;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-card-a:hover .n-card-a__content {
  transform: translateY(-4px);
}

.n-card-a__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.n-card-a__tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  transition: color 0.4s ease;
}

.n-card-a:hover .n-card-a__tagline {
  color: rgba(255, 255, 255, 0.9);
}

/* Gull accent-linje som animerer inn ved hover */
.n-card-a__accent {
  display: block;
  width: 0;
  height: 2px;
  background: var(--n-gold);
  transition: width 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-card-a:hover .n-card-a__accent {
  width: 56px;
}

/* ============================================
   4. CULTURE - Editorial Magazine Features
   ============================================ */
.n-culture {
  background: var(--n-cream);
  padding: var(--n-section-padding) clamp(24px, 5vw, 80px);
  padding-top: clamp(48px, 6vh, 80px);
}

.n-culture__header {
  max-width: var(--n-content-max);
  margin: 0 auto clamp(16px, 3vh, 32px);
}

.n-culture__header .n-section-title {
  font-size: var(--text-5xl);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.n-culture__intro {
  max-width: var(--n-content-max);
  margin: 0 auto clamp(48px, 7vh, 80px);
  font-size: var(--text-lg);
  line-height: 1.85;
  color: var(--color-text-secondary);
}

/* Feature articles container */
.n-culture__features {
  max-width: var(--n-content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vh, 80px);
}

/* Decorative gold separator between features */
.n-feature + .n-feature {
  position: relative;
}

.n-feature + .n-feature::before {
  content: '';
  position: absolute;
  top: calc(-1 * clamp(24px, 3.5vh, 40px));
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--n-gold);
  opacity: 0.4;
}

/* Each feature: side-by-side image + text (asymmetric 55/45) */
.n-feature {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  text-decoration: none;
  color: var(--color-text-primary);
}

/* Reverse layout - image right, text left */
.n-feature--reverse {
  direction: rtl;
}

.n-feature--reverse > * {
  direction: ltr;
}

/* Image */
.n-feature__image {
  border-radius: var(--n-card-radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.08);
}

.n-feature:hover .n-feature__image {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.12),
              0 6px 16px rgba(10, 22, 40, 0.08);
}

.n-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-feature:hover .n-feature__image img {
  transform: scale(1.04);
}

/* Text body */
.n-feature__body {
  padding: clamp(8px, 2vw, 24px) 0;
}

.n-feature__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-gold);
  margin-bottom: clamp(12px, 2vh, 20px);
}

.n-feature__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: clamp(12px, 2vh, 20px);
}

.n-feature__excerpt {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: clamp(10px, 1.5vh, 16px);
}

.n-feature__excerpt:last-of-type {
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

.n-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-moss, #5c7c5c);
  transition: gap 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-feature:hover .n-feature__link {
  gap: 12px;
}

.n-feature__link--light {
  color: rgba(255, 255, 255, 0.85);
}

.n-feature-hero:hover .n-feature__link--light {
  gap: 12px;
  color: #fff;
}

/* ---- Cinematic fullbleed feature (Havgaprock) ---- */
.n-feature-hero {
  margin-top: clamp(16px, 3vh, 32px);
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  border-radius: var(--n-card-radius);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.n-feature-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-feature-hero:hover > img {
  transform: scale(1.06);
}

.n-feature-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.75) 0%,
    rgba(10, 22, 40, 0.45) 40%,
    rgba(10, 22, 40, 0.1) 100%
  );
  transition: background 0.6s ease;
}

.n-feature-hero:hover .n-feature-hero__overlay {
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.8) 0%,
    rgba(10, 22, 40, 0.5) 45%,
    rgba(10, 22, 40, 0.15) 100%
  );
}

.n-feature-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 64px);
  max-width: 520px;
  z-index: 2;
}

.n-feature-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: clamp(12px, 2vh, 20px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.n-feature-hero__excerpt {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

.n-feature-hero .n-feature__tag {
  color: var(--n-gold);
}

/* ============================================
   VIDEO EMBEDS
   ============================================ */
.n-video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--n-card-radius);
  background: var(--n-midnight);
}

.n-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.n-video-embed__caption {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
  font-style: italic;
}

/* ============================================
   5. NATURE - The Wild Edge
   ============================================ */
.n-nature {
  background: var(--n-warm-white);
  /* Filmstrip already has its own padding; keep the section tail tight. */
  padding-bottom: clamp(12px, 2.5vh, 28px);
}

.n-nature__hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
}

.n-nature__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.n-nature__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,40,.05) 0%,
    rgba(10,22,40,.35) 50%,
    rgba(10,22,40,.65) 100%
  );
  pointer-events: none;
}

.n-nature__hero-text {
  position: absolute;
  bottom: clamp(32px, 6vh, 80px);
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  z-index: 2;
}

.n-nature__hero-text .n-section-title {
  font-size: var(--text-5xl);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.n-nature__hero-text .n-eyebrow {
  color: var(--n-gold);
}

.n-nature__hero-intro {
  max-width: 540px;
  margin-top: clamp(12px, 2vh, 20px);
  font-size: var(--text-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile fallback prose - hidden on desktop, shown on mobile */
.n-nature__prose-mobile {
  display: none;
}

/* ---- Nature Features: Summit + Terrain ---- */
.n-nature__features {
  padding: 0 clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vh, 72px);
}

.n-nature__features::before {
  content: '';
  display: block;
  width: 2px;
  height: 40px;
  background: var(--color-moss, #5c7c5c);
  opacity: 0.3;
  margin: 0 auto;
}

/* Shared nature tag (moss green instead of gold) */
.n-nature-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-moss, #5c7c5c);
  margin-bottom: clamp(12px, 2vh, 20px);
}

/* Shared nature link */
.n-nature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-moss, #5c7c5c);
  transition: gap 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              color 0.3s ease;
}

.n-nature-link__ext {
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Summit Card (Mountain Peaks - panoramic) ---- */
.n-nature-summit {
  position: relative;
  display: block;
  width: 100%;
  max-width: var(--n-content-max);
  margin: 0 auto;
  aspect-ratio: 5 / 2;
  border-radius: var(--n-card-radius);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border-left: 3px solid rgba(92, 124, 92, 0.6);
}

.n-nature-summit__image {
  position: absolute;
  inset: 0;
}

.n-nature-summit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-nature-summit:hover .n-nature-summit__image img {
  transform: scale(1.04);
}

.n-nature-summit__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.7) 0%,
    rgba(10, 22, 40, 0.3) 40%,
    rgba(10, 22, 40, 0.05) 100%
  );
  transition: background 0.6s ease;
}

.n-nature-summit:hover .n-nature-summit__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.78) 0%,
    rgba(10, 22, 40, 0.38) 45%,
    rgba(10, 22, 40, 0.08) 100%
  );
}

.n-nature-summit__content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 56px);
  max-width: 520px;
  z-index: 2;
}

.n-nature-summit__content .n-nature-tag {
  color: rgba(255, 255, 255, 0.6);
}

.n-nature-summit__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: clamp(8px, 1.5vh, 16px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.n-nature-summit__excerpt {
  font-size: var(--text-base);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: clamp(12px, 2vh, 24px);
}

.n-nature-summit .n-nature-link {
  color: rgba(255, 255, 255, 0.85);
}

.n-nature-summit:hover .n-nature-link {
  gap: 12px;
  color: #fff;
}

/* ---- Terrain Pair (staggered vertical cards) ---- */
.n-nature-terrain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 40px);
  max-width: var(--n-content-max);
  margin: 0 auto;
  margin-bottom: 60px;
}

.n-nature-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--n-card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.06),
              0 8px 24px rgba(10, 22, 40, 0.04);
  text-decoration: none;
  color: var(--color-text-primary);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-nature-card--staggered {
  transform: translateY(60px);
}

.n-nature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.1),
              0 24px 48px rgba(10, 22, 40, 0.06);
}

.n-nature-card__image {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.n-nature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-nature-card:hover .n-nature-card__image img {
  transform: scale(1.03);
}

/* Moss accent line on image bottom edge */
.n-nature-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-moss, #5c7c5c);
  transition: width 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-nature-card:hover .n-nature-card__image::after {
  width: 100%;
}

.n-nature-card__body {
  padding: clamp(20px, 3vw, 32px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.n-nature-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: clamp(8px, 1.5vh, 14px);
}

.n-nature-card__excerpt {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: clamp(14px, 2vh, 24px);
  flex: 1;
}

.n-nature-card:hover .n-nature-link {
  gap: 12px;
}

/* External link icon rotation */
.n-nature-card:hover .n-nature-link__ext {
  transform: rotate(45deg);
}

/* ============================================
   6. ARTICLES - Get to Know Nordoyane
   ============================================ */
.nordoyane-page .nordoyane-static-articles {
  background: var(--n-cream);
}

/* Make the StaticArticleSection header match Nordoyane section headers */
.nordoyane-page .nordoyane-static-articles .v-article-section__header {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nordoyane-page .nordoyane-static-articles .v-article-section__heading {
  max-width: var(--n-content-max);
}

.nordoyane-page .nordoyane-static-articles .v-article-section__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--n-gold);
  margin: 0 0 var(--space-md);
}

.nordoyane-page .nordoyane-static-articles .v-article-section__label::before,
.nordoyane-page .nordoyane-static-articles .v-article-section__label::after {
  content: none;
}

.nordoyane-page .nordoyane-static-articles .v-article-section__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin: 0;
}

.nordoyane-page .nordoyane-static-articles .v-article-section__intro {
  font-size: var(--text-lg);
  line-height: 1.75;
  margin-top: var(--space-lg);
  margin-left: auto;
  margin-right: auto;
}

.nordoyane-page .nordoyane-static-articles .v-article-section__nav {
  margin-top: var(--space-lg);
}

.nordoyane-page .nordoyane-static-articles .v-article-section__track-wrap {
  overflow: visible;
}

.nordoyane-page .nordoyane-static-articles .v-article-section__nav--overlay {
  top: 42%;
}

.nordoyane-page .nordoyane-static-articles .v-article-section__nav--overlay .v-article-nav-btn {
  width: 56px;
  height: 56px;
  background: rgba(10, 22, 40, 0.92);
  border-color: rgba(250, 248, 245, 0.75);
  box-shadow:
    0 14px 28px rgba(10, 22, 40, 0.28),
    0 6px 14px rgba(10, 22, 40, 0.24);
}

.nordoyane-page .nordoyane-static-articles .v-article-section__nav--overlay .v-article-nav-btn[data-article-next] {
  right: max(12px, env(safe-area-inset-right));
  animation: n-nextCue 2.2s ease-in-out infinite;
}

.nordoyane-page .nordoyane-static-articles .v-article-section__nav--overlay .v-article-nav-btn[data-article-prev] {
  left: max(12px, env(safe-area-inset-left));
}

@keyframes n-nextCue {
  0%,
  70%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  82% {
    transform: translateY(-50%) translateX(4px);
  }
}

.nordoyane-page .nordoyane-static-articles .v-article-card,
.nordoyane-page .nordoyane-static-articles .v-article-card__body {
  background: var(--surface-card-light);
}

.n-articles {
  background: var(--n-cream);
  padding: var(--n-section-padding) clamp(24px, 5vw, 80px);
}

.n-articles__header {
  max-width: var(--n-content-max);
  margin: 0 auto clamp(40px, 6vh, 72px);
}

.n-articles__label {
  display: flex;
  align-items: center;
  gap: var(--space-lg, 16px);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(92, 124, 92, 0.85);
  margin-bottom: clamp(16px, 3vh, 32px);
}

.n-articles__label::before,
.n-articles__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(92, 124, 92, 0.25), transparent);
}

.n-articles__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl, clamp(1.8rem, 1.4rem + 2vw, 2.8rem));
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-xs, 8px);
}

.n-articles__intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin: 0;
  max-width: 68ch;
}

.n-articles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  max-width: var(--n-content-max);
  margin: 0 auto;
}

/* Article card */
.n-article-card {
  border-radius: var(--n-card-radius);
  overflow: hidden;
  background: var(--n-warm-white, #faf8f5);
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.06),
              0 8px 24px rgba(10, 22, 40, 0.04);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-article-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.n-article-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(10, 22, 40, 0.08);
}

.n-article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-article-card__body {
  padding: clamp(16px, 2.5vw, 24px) clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
}

/* Chip / category badges */
.n-article-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: clamp(8px, 1.5vh, 14px);
}

.n-article-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 0.85em;
  border-radius: 100px;
  background: rgba(92, 124, 92, 0.12);
  color: rgba(92, 124, 92, 0.95);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.n-article-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem);
  font-weight: 400;
  color: var(--color-text-primary);
  margin: 0 0 clamp(6px, 1vh, 10px);
  line-height: 1.2;
}

.n-article-card__excerpt {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover states */
@media (hover: hover) {
  .n-article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.1),
                0 24px 48px rgba(10, 22, 40, 0.06);
  }

  .n-article-card:hover .n-article-card__image img {
    transform: scale(1.04);
  }
}

/* Desktop 3-column */
@media (min-width: 1200px) {
  .n-articles__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================================
   6b. FILMSTRIP - Nature Cinema
   ============================================ */
.n-filmstrip {
  background: var(--n-warm-white);
  padding: clamp(60px, 8vh, 100px) 0 clamp(20px, 3vh, 40px);
  position: relative;
  overflow: hidden;
}

.n-filmstrip__header {
  text-align: center;
  padding: 0 clamp(24px, 5vw, 80px);
  margin-bottom: clamp(32px, 5vh, 56px);
}

.n-filmstrip__viewport {
  position: relative;
}

.n-filmstrip__track {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 clamp(24px, 5vw, 80px);
}

.n-filmstrip__track::-webkit-scrollbar {
  display: none;
}

.n-filmstrip__frame {
  flex-shrink: 0;
  width: calc(50vh * 3 / 2);
  height: 50vh;
  min-height: 300px;
  max-height: 480px;
  border-radius: var(--n-card-radius);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  margin: 0;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1),
              0 12px 32px rgba(10, 22, 40, 0.06);
}

.n-filmstrip__frame--wide {
  width: calc(50vh * 5 / 3);
}

.n-filmstrip__frame--tall {
  width: calc(50vh * 2 / 3);
}

.n-filmstrip__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-filmstrip__frame:hover img {
  transform: scale(1.03);
}

/* Caption - slides up on hover */
.n-filmstrip__frame figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 24px 20px;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-filmstrip__frame:hover figcaption {
  transform: translateY(0);
}

/* Prev/Next buttons */
.n-filmstrip__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(10, 22, 40, 0.12);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--color-text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(10, 22, 40, 0.1);
}

.n-filmstrip__btn:hover {
  background: #fff;
  border-color: rgba(10, 22, 40, 0.2);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.15);
}

.n-filmstrip__btn--prev {
  left: clamp(8px, 2vw, 24px);
}

.n-filmstrip__btn--next {
  right: clamp(8px, 2vw, 24px);
}

.n-filmstrip__btn:disabled {
  opacity: 0.2;
  cursor: default;
}

/* Image counter */
.n-filmstrip__counter {
  text-align: center;
  margin-top: clamp(24px, 4vh, 40px);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.n-filmstrip__counter [data-filmstrip-current] {
  font-weight: 600;
  color: var(--color-moss, #5c7c5c);
  font-size: 1.1em;
}

.n-filmstrip__counter-sep {
  margin: 0 2px;
  opacity: 0.4;
}

/* ============================================
   7. MEET THE LOCALS - HONY-style Profiles
   ============================================ */
.n-locals {
  background: var(--n-cream);
  padding: var(--n-section-padding) clamp(24px, 5vw, 80px);
  /* Reduce perceived "dead air" between filmstrip and Community heading */
  padding-top: clamp(40px, 6vh, 88px);
}

.n-locals__header {
  text-align: center;
  margin-bottom: clamp(24px, 4vh, 40px);
}

.n-locals__intro {
  max-width: var(--n-content-narrow);
  margin: 0 auto clamp(48px, 7vh, 80px);
  font-size: var(--text-lg);
  line-height: 1.85;
  color: var(--color-text-secondary);
  text-align: center;
}

.n-locals__profiles {
  max-width: var(--n-content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vh, 80px);
}

/* Gold separator between profiles */
.n-local + .n-local {
  position: relative;
}

.n-local + .n-local::before {
  content: '';
  position: absolute;
  top: calc(-1 * clamp(24px, 3.5vh, 40px));
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--n-gold);
  opacity: 0.4;
}

/* Each profile: side-by-side image + text (55/45) */
.n-local {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  text-decoration: none;
  color: var(--color-text-primary);
}

/* Reverse layout */
.n-local--reverse {
  direction: rtl;
}

.n-local--reverse > * {
  direction: ltr;
}

/* Portrait image - 3:4 for tall, intimate feel */
.n-local__image {
  border-radius: var(--n-card-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.08);
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-local:hover .n-local__image {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.12),
              0 6px 16px rgba(10, 22, 40, 0.08);
}

.n-local__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-local__image--viktoria img {
  object-position: center 28%;
}

.n-local__image--linda img {
  object-position: center 72%;
}

.n-local:hover .n-local__image img {
  transform: scale(1.04);
}

/* Text body */
.n-local__body {
  padding: clamp(8px, 2vw, 24px) 0;
}

/* Pull-quote - the hero element */
.n-local__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-text-primary);
  margin: 0 0 clamp(16px, 2.5vh, 28px);
  padding-left: clamp(16px, 2vw, 24px);
  border-left: 2px solid var(--n-gold);
}

/* Name */
.n-local__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

/* Place tag */
.n-local__place {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-gold);
  margin-bottom: 0;
}

/* Teaser text */
.n-local__excerpt {
  font-size: var(--text-base);
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

/* Read story link - hidden until hover */
.n-local__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-moss, #5c7c5c);
  margin-top: clamp(8px, 1.5vh, 12px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              gap 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-local:hover .n-local__link {
  opacity: 1;
  transform: translateY(0);
  gap: 12px;
}


/* ============================================
   8. EXPLORE NORDOYANE - 360 Panorama
   ============================================ */
.n-panorama {
  background: var(--n-warm-white);
  padding: var(--n-section-padding) clamp(24px, 5vw, 80px);
  padding-top: clamp(56px, 7vh, 104px);
  padding-bottom: clamp(56px, 7vh, 104px);
}

.n-panorama__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vh, 48px);
}

.n-panorama__embed {
  max-width: var(--n-content-max);
  margin: 0 auto;
}

.n-panorama .n-video-embed {
  box-shadow: 0 18px 50px rgba(10, 22, 40, 0.14);
}


/* ============================================
   9. EMPLOYERS - Magazine Spread
   ============================================ */
.n-employers {
  background: var(--n-utility);
  padding: var(--n-section-padding) clamp(24px, 5vw, 80px);
  padding-top: clamp(44px, 6vh, 96px);
}

.n-employers__header {
  text-align: center;
  margin-bottom: clamp(48px, 7vh, 80px);
}

.n-employers__header .n-section-title {
  font-size: var(--text-4xl);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.n-employers__header .n-eyebrow--light {
  color: var(--n-gold);
}

.n-employers__list {
  max-width: var(--n-content-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 7vh, 80px);
}

/* Gold separator between cards */
.n-employer-card + .n-employer-card {
  position: relative;
}

.n-employer-card + .n-employer-card::before {
  content: '';
  position: absolute;
  top: calc(-1 * clamp(24px, 3.5vh, 40px));
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background: var(--n-gold);
  opacity: 0.4;
}

/* 60/40 split, image dominant */
.n-employer-card {
  position: relative;
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 0;
  border-radius: var(--n-card-radius);
  overflow: hidden;
  background: transparent;
  text-decoration: none;
  color: #fff;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-employer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(196, 145, 138, 0);
  border-radius: var(--n-card-radius);
  box-shadow: inset 0 0 0 0 rgba(196, 145, 138, 0);
  z-index: 3;
  pointer-events: none;
  transition: border-color 1s ease, box-shadow 1s ease;
}

.n-employer-card:hover::after {
  border-color: var(--n-gold);
  box-shadow: inset 0 0 20px rgba(196, 145, 138, 0.12);
}

.n-employer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(10, 22, 40, 0.3);
}

/* Reverse layout */
.n-employer-card--reverse {
  direction: rtl;
}

.n-employer-card--reverse > * {
  direction: ltr;
}

/* Image - stretches to match body height */
.n-employer-card__image {
  overflow: hidden;
  min-height: 280px;
}

.n-employer-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-employer-card:hover .n-employer-card__image img {
  transform: scale(1.06);
}

/* Body - gold left border accent, midnight interior */
.n-employer-card__body {
  padding: clamp(32px, 5vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--n-midnight);
  border-left: 2px solid rgba(196, 145, 138, 0.4);
  transition: border-color 0.5s ease;
}

.n-employer-card:hover .n-employer-card__body {
  border-left-color: var(--n-gold);
}

.n-employer-card--reverse .n-employer-card__body {
  border-left: none;
  border-right: 2px solid rgba(196, 145, 138, 0.4);
}

.n-employer-card--reverse:hover .n-employer-card__body {
  border-right-color: var(--n-gold);
}

/* Featured Employer eyebrow */
.n-employer-card__eyebrow {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-moss, #5c7c5c);
  margin-bottom: clamp(16px, 2vh, 24px);
}

/* Logo - cream tinted rounded rectangle */
.n-employer-card__logo {
  width: 72px;
  height: 72px;
  border-radius: var(--n-card-radius);
  overflow: hidden;
  margin-bottom: clamp(16px, 2vh, 24px);
  background: rgba(255, 255, 255, 0.9);
}

.n-employer-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.n-employer-card__logo--transparent {
  background: transparent;
}

.n-employer-card__logo--transparent img {
  padding: 0;
  object-fit: cover;
}

/* Industry tag */
.n-employer-card__industry {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--n-gold);
  margin-bottom: var(--space-sm);
}

/* Company name - headline treatment */
.n-employer-card__body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: clamp(12px, 2vh, 20px);
}

/* Description */
.n-employer-card__body p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: clamp(16px, 2.5vh, 28px);
}

/* View employer link - hidden until hover */
.n-employer-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--n-gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              gap 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-employer-card:hover .n-employer-card__link {
  opacity: 1;
  transform: translateY(0);
  gap: 12px;
}

/* ============================================
   9. MOVING / NEWCOMERS - Unified Invitation
   ============================================ */
.n-move {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(540px, 65vh, 780px);
  overflow: hidden;
  color: #fff;
}

.n-move__bg {
  position: absolute;
  inset: 0;
}

.n-move__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.n-move__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.55) 0%,
    rgba(10, 22, 40, 0.62) 40%,
    rgba(10, 22, 40, 0.78) 100%
  );
}

.n-move__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 680px;
  padding: clamp(56px, 8vh, 104px) clamp(24px, 5vw, 48px);
}

.n-move__content .n-eyebrow {
  margin-bottom: clamp(12px, 2vh, 20px);
}

.n-move__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: clamp(16px, 2.5vh, 28px);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.n-move__text {
  font-size: var(--text-base);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: clamp(6px, 1vh, 12px);
}

.n-move__welcome {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-style: normal;
  font-weight: 500;
  color: var(--color-aurora, #7dd3c0);
  margin-bottom: clamp(32px, 4.5vh, 52px);
}

/* ---- Two guide cards side by side ---- */
.n-move__guides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  margin-top: clamp(10px, 2vh, 18px);
}

.n-move__card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--n-card-radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: #fff;
  transition: background 0.4s ease,
              border-color 0.4s ease,
              transform 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-move__card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(196, 145, 138, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.n-move__card-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--n-gold);
  margin-bottom: clamp(8px, 1.5vh, 14px);
}

.n-move__card-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: clamp(8px, 1.5vh, 14px);
}

.n-move__card-desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(14px, 2vh, 22px);
  flex: 1;
}

.n-move__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--n-gold);
  transition: gap 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.n-move__card:hover .n-move__card-link {
  gap: 12px;
}

/* (Section nav is now v-page-nav from VillageGlance, styled by village-glance.css) */

/* ============================================
   RESPONSIVE - Mobile-first adjustments
   ============================================ */

/* Tablets (< 1024px) */
@media (max-width: 1024px) {
  .n-grid-a {
    grid-template-columns: repeat(2, 1fr);
  }
  .n-grid-a .n-card-a:nth-child(4) { grid-column: auto; }
  .n-grid-a .n-card-a:nth-child(5) { grid-column: auto; }
  .n-grid-a::after { display: none; }
  .n-grid-a .n-card-a:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .n-feature {
    gap: clamp(24px, 3vw, 40px);
  }

  .n-employer-card {
    grid-template-columns: 1fr;
  }

  .n-employer-card--reverse {
    direction: ltr;
  }

  .n-employer-card__image {
    aspect-ratio: 16 / 9;
    min-height: auto;
  }

  .n-employer-card__body {
    border-left: none;
    border-top: 2px solid rgba(196, 145, 138, 0.4);
  }

  .n-employer-card--reverse .n-employer-card__body {
    border-right: none;
    border-top: 2px solid rgba(196, 145, 138, 0.4);
  }

  .n-employer-card:hover .n-employer-card__body,
  .n-employer-card--reverse:hover .n-employer-card__body {
    border-top-color: var(--n-gold);
    border-left-color: transparent;
    border-right-color: transparent;
  }

  .n-nature-summit {
    aspect-ratio: 16 / 9;
  }

  .n-nature-card--staggered {
    transform: translateY(40px);
  }

  .n-nature-terrain {
    margin-bottom: 40px;
  }

}

/* Mobile (< 768px) */
@media (max-width: 768px) {
  .n-hero {
    min-height: 480px;
  }

  .n-hero__signature {
    max-width: none;
    padding: 40px 20px 20px;
    margin: 0 14px 18px;
    background: linear-gradient(
      to top,
      rgba(36, 61, 79, 0.78) 0%,
      rgba(36, 61, 79, 0.50) 60%,
      rgba(36, 61, 79, 0.15) 100%
    );
  }

  .n-hero__title {
    font-size: clamp(3rem, 11vw, 7rem);
  }

  .n-hero__tagline {
    font-size: 1.3rem;
  }

  .n-hero__logo-link {
    top: 86px;
    left: var(--space-lg);
  }

  .n-hero__logo {
    width: clamp(64px, 18vw, 100px);
  }

  .n-grid-a {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .n-grid-a .n-card-a:last-child { max-width: 100%; }
  .n-card-a { aspect-ratio: 16 / 9; }

  .n-feature {
    grid-template-columns: 1fr;
  }

  .n-feature--reverse {
    direction: ltr;
  }

  .n-feature__image {
    aspect-ratio: 4 / 3;
  }

  .n-feature-hero {
    aspect-ratio: 16 / 9;
  }

  .n-articles__grid {
    grid-template-columns: 1fr;
  }

  /* Filmstrip - shorter, touch-friendly */
  .n-filmstrip__frame {
    height: 40vh;
    min-height: 240px;
    max-height: 360px;
    width: calc(40vh * 3 / 2);
  }

  .n-filmstrip__frame--wide {
    width: calc(40vh * 5 / 3);
  }

  .n-filmstrip__frame--tall {
    width: calc(40vh * 2 / 3);
  }

  .n-filmstrip__frame figcaption {
    transform: translateY(0);
  }

  .n-filmstrip__btn {
    display: none;
  }

  /* Locals -> Culture: both sections share the same cream background.
     On mobile the combined section paddings read as excessive "dead air". */
  .n-locals {
    padding-bottom: clamp(40px, 6vh, 64px);
  }

  .n-culture {
    padding-top: clamp(32px, 5vh, 56px);
  }

  .n-local {
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 40px);
  }

  .n-local--reverse {
    direction: ltr;
  }

  .n-local__image {
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 0 auto;
  }

  .n-local__quote {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  /* Hover-only CTA doesn't work on touch. Show it on mobile to avoid a "blank" bottom. */
  .n-local__link {
    opacity: 1;
    transform: none;
  }

  .n-nature-summit {
    aspect-ratio: 4 / 3;
    border-left: none;
    border-bottom: 3px solid rgba(92, 124, 92, 0.6);
  }

  .n-nature-terrain {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .n-nature-card--staggered {
    transform: none;
  }

  .n-nature__hero {
    height: 50vh;
    min-height: 300px;
  }

  .n-nature__hero-intro {
    display: none;
  }

  .n-nature__prose-mobile {
    display: block;
    max-width: var(--n-content-narrow);
    margin: 0 auto;
    padding: clamp(32px, 5vh, 48px) clamp(24px, 5vw, 80px) clamp(24px, 4vh, 40px);
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--color-text-secondary);
  }

  .n-move {
    min-height: auto;
  }

  .n-move__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .n-move__content {
    padding: clamp(40px, 6vh, 64px) clamp(20px, 5vw, 40px);
  }

  .n-move__guides {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .n-hero__meta,
  .n-hero__title,
  .n-hero__tagline {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .n-card-a__image img,
  .n-feature__image img,
  .n-feature__image,
  .n-feature-hero > img,
  .n-feature-hero__overlay,
  .n-nature-summit__image img,
  .n-nature-summit__overlay,
  .n-nature-card,
  .n-nature-card__image img,
  .n-nature-card__image::after,
  .n-nature-link,
  .n-nature-link__ext,
  .n-article-card,
  .n-article-card__image img,
  .n-employer-card,
  .n-employer-card::after,
  .n-employer-card__body,
  .n-employer-card__image img,
  .n-employer-card__link,
  .n-filmstrip__frame img,
  .n-filmstrip__frame figcaption,
  .n-local__image,
  .n-local__image img,
  .n-local__link,
  .n-move__card {
    transition: none;
  }

  .n-filmstrip__frame figcaption {
    transform: translateY(0);
  }

  .n-card-a {
    transition: none;
  }

  .n-card-a__content,
  .n-card-a__overlay,
  .n-card-a__tagline,
  .n-card-a__accent,
  .n-feature__link {
    transition: none;
  }
}


