/* ============================================
   VARD - Employer Showcase
   Scoped under .vard-page
   ============================================ */

/* -- Local Fonts (match village / Nordoyane 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 ---- */
.vard-page {
  --w-content-max: 1100px;
  --w-content-narrow: 740px;
  --w-section-padding: clamp(80px, 10vh, 140px);
  --w-card-radius: 12px;
  --w-gold: var(--color-gold, #c4918a);
  --w-cream: var(--surface-story, #F1EBE3);
  --w-midnight: var(--surface-strong, #0a1628);
  --w-utility: var(--surface-utility, #243D4F);
  --w-fjord: #2d4a5e;
  --w-warm-white: var(--surface-explore, #FBF9F6);
  --w-aurora: var(--color-aurora, #7dd3c0);

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

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

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

/* Keep reveals as pure fade (no translateY jump) */
.vard-page [data-reveal] {
  opacity: 0;
  transition: opacity var(--duration-slower, 800ms) var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}

.vard-page [data-reveal].revealed {
  opacity: 1;
}

/* Stagger support */
.vard-page [data-reveal][data-delay="100"] { transition-delay: 100ms; }
.vard-page [data-reveal][data-delay="200"] { transition-delay: 200ms; }
.vard-page [data-reveal][data-delay="300"] { transition-delay: 300ms; }
.vard-page [data-reveal][data-delay="400"] { transition-delay: 400ms; }
.vard-page [data-reveal][data-delay="500"] { transition-delay: 500ms; }

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

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

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

.w-eyebrow--light { color: rgba(255,255,255,.55); }

.w-section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl, clamp(2.5rem, 1.8rem + 3.5vw, 4rem));
  font-weight: 300;
  line-height: 1.12;
  color: var(--color-text-primary, #1a1a1a);
}

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

.w-section-intro {
  font-family: var(--font-body);
  font-size: var(--text-lg, 1.15rem);
  line-height: 1.75;
  color: var(--color-text-secondary, #4a4a4a);
  max-width: 680px;
}

.w-section-intro--light {
  color: rgba(255,255,255,.8);
}

.w-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-full, 9999px);
  padding: 0.85em 2em;
  text-decoration: none;
  transition: all var(--duration-normal, 300ms) var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
  cursor: pointer;
  border: none;
}

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

.w-btn--primary:hover {
  background: #c89560;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0,0,0,.08));
}

.w-btn--outline {
  border: 1.5px solid currentColor;
  color: var(--color-text-primary, #1a1a1a);
  background: transparent;
}

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

.w-btn--outline-light {
  border: 1.5px solid rgba(255,255,255,.4);
  color: #fff;
  background: transparent;
}

.w-btn--outline-light:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.w-btn__arrow {
  transition: transform var(--duration-normal, 300ms) var(--ease-out-expo);
}

.w-btn:hover .w-btn__arrow {
  transform: translateX(4px);
}

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

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

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

.w-hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,22,40,.3) 0%, transparent 30%),
    linear-gradient(to top, rgba(10,22,40,.7) 0%, rgba(10,22,40,.2) 40%, transparent 70%);
  z-index: 1;
}

.w-hero__content {
  position: relative;
  z-index: 2;
  max-width: 85%;
  margin: 0 0 var(--space-3xl, 4rem) var(--space-4xl, 6rem);
  padding: 56px 48px 36px;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.72) 0%,
    rgba(10, 22, 40, 0.50) 40%,
    rgba(10, 22, 40, 0.20) 80%,
    transparent 100%
  );
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg, 8px);
}

.w-hero__logo {
  width: clamp(140px, 18vw, 230px);
  height: auto;
  margin-bottom: var(--space-xl, 2rem);
}

.w-hero__eyebrow {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--w-gold);
  margin-bottom: var(--space-md, 1rem);
}

.w-hero__title {
  font-family: var(--font-display);
  font-size: var(--text-6xl, clamp(3.5rem, 2.5rem + 6vw, 7rem));
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: var(--space-lg, 1.5rem);
}

.w-hero__tagline {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255,255,255,.8);
  max-width: 520px;
}

.w-hero__scroll-hint {
  position: absolute;
  bottom: var(--space-xl, 2rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: w-scroll-hint 2s ease-in-out infinite;
}

.w-hero__scroll-hint svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

@keyframes w-scroll-hint {
  0%, 100% { opacity: .5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   2. INTRO - Brand Statement
   ============================================ */
.w-intro {
  background: var(--w-cream);
  padding: clamp(48px, 6vh, 80px) var(--space-xl, 2rem) var(--w-section-padding);
}

.w-intro__inner {
  max-width: var(--w-content-max);
  margin: 0 auto;
  text-align: center;
}

.w-intro__text {
  font-family: var(--font-display);
  font-size: var(--text-2xl, clamp(1.5rem, 1.2rem + 1.5vw, 2rem));
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--color-text-primary, #1a1a1a);
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.w-intro__expand {
  margin-top: var(--space-xl, 2rem);
}

.w-intro__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body, 'Glacial Indifference', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--w-fjord);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.w-intro__toggle:hover {
  color: var(--w-midnight);
}

.w-intro__toggle-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.w-intro__toggle[aria-expanded="true"] .w-intro__toggle-icon {
  transform: rotate(180deg);
}

.w-intro__toggle[aria-expanded="true"] .w-intro__toggle-text {
  display: none;
}

.w-intro__toggle[aria-expanded="true"]::before {
  content: 'Read less';
}

.w-intro__details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease;
  opacity: 0;
}

.w-intro__details-inner {
  overflow: hidden;
}

.w-intro__details.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.w-intro__text--detail {
  font-family: var(--font-body, 'Glacial Indifference', sans-serif);
  font-size: var(--text-base, clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem));
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  color: var(--color-text-secondary, #4a4a4a);
  margin-top: var(--space-lg, 1.5rem);
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
}

.w-intro__text--detail a {
  color: var(--w-fjord);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1.5px;
}

.w-intro__text--detail a:hover {
  color: var(--w-midnight);
}

.w-intro__text--detail:first-child {
  margin-top: var(--space-lg, 1.5rem);
}

.w-intro__facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl, 2rem);
  margin-top: var(--space-3xl, 4rem);
  padding-top: var(--space-2xl, 3rem);
  border-top: 1px solid rgba(0,0,0,.08);
}

.w-fact {
  text-align: center;
}

.w-fact__value {
  font-family: var(--font-display);
  font-size: var(--text-3xl, clamp(2rem, 1.5rem + 2.5vw, 3rem));
  font-weight: 300;
  color: var(--w-fjord);
  line-height: 1.1;
  margin-bottom: 0.3em;
}

.w-fact__label {
  font-family: var(--font-body);
  font-size: var(--text-xs, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted, #737373);
}

/* ============================================
   3. PEOPLE - Full-bleed Feature Section
   ============================================ */
.w-people {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: var(--w-midnight);
  overflow: hidden;
}

.w-people__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.w-people__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurnsSlow 18s ease-in-out infinite;
}

.w-people__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.55) 0%, rgba(45,74,94,.35) 100%);
  z-index: 1;
}

.w-people__content {
  position: relative;
  z-index: 2;
  max-width: var(--w-content-max);
  margin: 0 auto;
  padding: var(--w-section-padding) var(--space-xl, 2rem);
}

.w-people__text {
  max-width: 560px;
  padding: 48px 44px 40px;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.72) 0%,
    rgba(10, 22, 40, 0.50) 40%,
    rgba(10, 22, 40, 0.20) 80%,
    transparent 100%
  );
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg, 8px);
}

.w-people__text p {
  font-family: var(--font-body);
  font-size: var(--text-lg, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin-top: var(--space-lg, 1.5rem);
}

.w-people__cta {
  margin-top: var(--space-2xl, 3rem);
}

/* ============================================
   4. EMPLOYEE STORIES - Profile Cards
   ============================================ */
.w-stories {
  background: #efe9e0;
  padding: var(--w-section-padding) var(--space-xl, 2rem);
}

.w-stories__header {
  max-width: var(--w-content-max);
  margin: 0 auto var(--space-3xl, 4rem);
}

.w-stories__grid {
  max-width: var(--w-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl, 3rem);
}

.w-profile {
  --_ease: cubic-bezier(0.19, 1, 0.22, 1);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: var(--w-card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 4px 12px rgba(10, 22, 40, 0.06),
    0 0 0 1px rgba(10, 22, 40, 0.09);
  will-change: transform;
}

.vard-page .w-profile[data-reveal] {
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s var(--_ease),
    box-shadow 1s var(--_ease);
}

.vard-page .w-profile[data-reveal].revealed {
  opacity: 1;
}

.w-profile:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px -8px rgba(10, 22, 40, 0.12),
    0 8px 16px -4px rgba(10, 22, 40, 0.06),
    0 0 0 1px rgba(10, 22, 40, 0.03);
}

.w-profile__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.w-profile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.4s var(--_ease);
}

.w-profile:hover .w-profile__image img {
  transform: scale(1.06);
}

.w-profile__body {
  display: flex;
  flex-direction: column;
  padding: var(--space-lg, 1.5rem) var(--space-xl, 2rem) var(--space-xl, 2rem);
}

.w-profile__role {
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #855d2f;
  margin-bottom: var(--space-sm, 0.5rem);
}

.w-profile__name {
  font-family: var(--font-display);
  font-size: var(--text-xl, 1.3rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-text-primary, #1a1a1a);
  margin-bottom: var(--space-sm, 0.5rem);
  min-height: calc(1.25em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-profile:hover .w-profile__name {
  color: #1a6b8a;
}

.w-profile__excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  line-height: 1.7;
  color: var(--color-text-secondary, #4a4a4a);
}

.w-profile__link {
  margin-top: auto;
  padding-top: var(--space-lg, 1.5rem);
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  font-weight: 600;
  color: var(--w-fjord);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition: gap 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-profile:hover .w-profile__link {
  gap: 0.8em;
}

.w-profile__link span {
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-profile:hover .w-profile__link span {
  transform: translateX(3px);
}

/* ============================================
   5. INNOVATION - Feature Cards
   ============================================ */
.w-innovation {
  background: var(--w-fjord);
  padding: var(--w-section-padding) var(--space-xl, 2rem);
}

.w-innovation__header {
  max-width: var(--w-content-max);
  margin: 0 auto var(--space-3xl, 4rem);
}

.w-innovation__cards {
  max-width: var(--w-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl, 2rem);
}

.w-feature {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--w-card-radius);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  will-change: transform;
}

.vard-page .w-feature[data-reveal] {
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 1s cubic-bezier(0.19, 1, 0.22, 1),
    background 1s cubic-bezier(0.19, 1, 0.22, 1),
    border-color 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-feature:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px -8px rgba(0, 0, 0, 0.25),
    0 8px 16px -4px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.w-feature__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.w-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-feature:hover .w-feature__image img {
  transform: scale(1.06);
}

.w-feature__body {
  padding: var(--space-xl, 2rem);
}

.w-feature__title {
  font-family: var(--font-display);
  font-size: var(--text-xl, 1.3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--space-sm, 0.5rem);
  transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-feature:hover .w-feature__title {
  color: var(--w-gold);
}

.w-feature__excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}

.w-feature__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--space-lg, 1.5rem);
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  font-weight: 600;
  color: var(--w-gold);
  transition: gap 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-feature:hover .w-feature__link {
  gap: 0.8em;
}

.w-feature__link span {
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-feature:hover .w-feature__link span {
  transform: translateX(3px);
}

/* ============================================
   6. VALUES & COMMITMENT
   ============================================ */
.w-values {
  background: var(--w-cream);
  padding: var(--w-section-padding) var(--space-xl, 2rem);
}

.w-values__header {
  max-width: var(--w-content-max);
  margin: 0 auto var(--space-3xl, 4rem);
}

.w-values__cards {
  max-width: var(--w-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl, 2rem);
}

.w-value-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--w-card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 2px 8px rgba(10, 22, 40, 0.05),
    0 0 0 1px rgba(10, 22, 40, 0.04);
  will-change: transform;
}

.vard-page .w-value-card[data-reveal] {
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-value-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px -8px rgba(10, 22, 40, 0.12),
    0 8px 16px -4px rgba(10, 22, 40, 0.06),
    0 0 0 1px rgba(10, 22, 40, 0.03);
}

.w-value-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.w-value-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-value-card:hover .w-value-card__image img {
  transform: scale(1.06);
}

.w-value-card__body {
  padding: var(--space-xl, 2rem);
}

.w-value-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl, 1.3rem);
  font-weight: 400;
  color: var(--color-text-primary, #1a1a1a);
  margin-bottom: var(--space-sm, 0.5rem);
  transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-value-card:hover .w-value-card__title {
  color: #1a6b8a;
}

.w-value-card__excerpt {
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  line-height: 1.65;
  color: var(--color-text-secondary, #4a4a4a);
}

.w-value-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-top: var(--space-lg, 1.5rem);
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  font-weight: 600;
  color: var(--w-fjord);
  transition: gap 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-value-card:hover .w-value-card__link {
  gap: 0.8em;
}

.w-value-card__link span {
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-value-card:hover .w-value-card__link span {
  transform: translateX(3px);
}

/* ============================================
   7. CHAMPIONS - Full-bleed Teaser
   ============================================ */
.w-champions {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--w-midnight);
}

.w-champions__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.w-champions__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurnsSlow 18s ease-in-out infinite;
}

.w-champions__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,22,40,.6) 0%, rgba(10,22,40,.3) 60%, transparent 100%);
  z-index: 1;
}

.w-champions__content {
  position: relative;
  z-index: 2;
  max-width: var(--w-content-max);
  margin: 0 auto;
  padding: var(--w-section-padding) var(--space-xl, 2rem);
}

.w-champions__text {
  max-width: 520px;
  padding: 48px 44px 40px;
  background: linear-gradient(
    to top,
    rgba(10, 22, 40, 0.72) 0%,
    rgba(10, 22, 40, 0.50) 40%,
    rgba(10, 22, 40, 0.20) 80%,
    transparent 100%
  );
  backdrop-filter: blur(2px);
  border-radius: var(--radius-lg, 8px);
}

.w-champions__text p {
  font-family: var(--font-body);
  font-size: var(--text-lg, 1.15rem);
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  margin-top: var(--space-lg, 1.5rem);
}

.w-champions__cta {
  margin-top: var(--space-2xl, 3rem);
}

/* ============================================
   8. YARDS - Location Cards
   ============================================ */
.w-yards {
  background: var(--w-midnight);
  padding: var(--w-section-padding) var(--space-xl, 2rem);
}

.w-yards__header {
  max-width: var(--w-content-max);
  margin: 0 auto var(--space-3xl, 4rem);
}

.w-yards__grid {
  max-width: var(--w-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl, 2rem);
}

.w-yard {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: var(--w-card-radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  will-change: transform;
}

.vard-page .w-yard[data-reveal] {
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-yard:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px -8px rgba(0, 0, 0, 0.3),
    0 8px 16px -4px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.w-yard__image {
  position: absolute;
  inset: 0;
}

.w-yard__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 1.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-yard:hover .w-yard__image img {
  transform: scale(1.06);
}

.w-yard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,.8) 0%, rgba(10,22,40,.2) 50%, transparent 100%);
  z-index: 1;
}

.w-yard__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-xl, 2rem);
}

.w-yard__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl, clamp(1.5rem, 1.2rem + 1.5vw, 2rem));
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.3em;
  transition: color 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-yard:hover .w-yard__name {
  color: var(--w-gold);
}

.w-yard__tagline {
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  color: rgba(255,255,255,.7);
}

.w-yard__accent {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--w-gold);
  margin-top: var(--space-md, 1rem);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-yard:hover .w-yard__accent {
  width: 56px;
}

/* ============================================
   9. CAREERS CTA
   ============================================ */
.w-careers {
  background: var(--w-warm-white);
  padding: var(--w-section-padding) var(--space-xl, 2rem);
}

.w-careers__inner {
  max-width: var(--w-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl, 4rem);
  align-items: center;
}

.w-careers__text h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl, clamp(2rem, 1.5rem + 2.5vw, 3rem));
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-text-primary, #1a1a1a);
  margin-bottom: var(--space-lg, 1.5rem);
}

.w-careers__text p {
  font-family: var(--font-body);
  font-size: var(--text-base, 1rem);
  line-height: 1.75;
  color: var(--color-text-secondary, #4a4a4a);
  margin-bottom: var(--space-lg, 1.5rem);
}

.w-careers__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md, 1rem);
  margin-top: var(--space-xl, 2rem);
}

.w-careers__image {
  border-radius: var(--w-card-radius);
  overflow: hidden;
}

.w-careers__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: var(--w-card-radius);
}

/* ============================================
   10. MOVING GUIDE
   ============================================ */
.w-moving {
  position: relative;
  overflow: hidden;
  background: var(--w-midnight);
  border-bottom: 1px solid rgba(200, 170, 120, 0.25);
}

.w-moving__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(45, 106, 63, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(200, 170, 120, 0.08) 0%, transparent 60%);
}

.w-moving__inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-content-max);
  margin: 0 auto;
  padding: var(--w-section-padding) var(--space-xl, 2rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4xl, 6rem);
  align-items: center;
}

.w-moving__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl, clamp(2rem, 1.5rem + 2.5vw, 3rem));
  font-weight: 300;
  line-height: 1.2;
  color: var(--color-warm-white, #faf8f5);
  margin-bottom: var(--space-lg, 1.5rem);
}

.w-moving__text {
  font-family: var(--font-body);
  font-size: var(--text-base, 1rem);
  line-height: 1.75;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: var(--space-xl, 2rem);
  max-width: 38em;
}

.w-btn--gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 2em;
  font-family: var(--font-body);
  font-size: var(--text-sm, 0.9rem);
  font-weight: 600;
  color: var(--w-midnight);
  background: var(--w-gold);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  transition:
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    background 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: transform;
}

.w-btn--gold:hover {
  transform: translateY(-2px);
  background: #d4b476;
  box-shadow:
    0 8px 24px -4px rgba(200, 170, 120, 0.35),
    0 4px 8px -2px rgba(200, 170, 120, 0.2);
}

.w-btn--gold .w-btn__arrow {
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.w-btn--gold:hover .w-btn__arrow {
  transform: translateX(3px);
}

.w-moving__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.w-moving__icon {
  width: clamp(100px, 12vw, 160px);
  height: auto;
  opacity: 0.7;
  animation: compassSpin 60s linear infinite;
}

@keyframes compassSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes kenBurnsSlow {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ============================================
   RESPONSIVE - Mobile (<768px)
   ============================================ */
@media (max-width: 768px) {

  /* Hero */
  .w-hero__content {
    margin: 0 0 var(--space-2xl, 3rem) var(--space-xl, 2rem);
    max-width: 92%;
  }

  .w-hero__title {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .w-hero__scroll-hint {
    display: none;
  }

  /* Intro facts */
  .w-intro__facts {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg, 1.5rem);
  }

  /* Stories grid */
  .w-stories__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl, 2rem);
  }

  .w-profile__image {
    aspect-ratio: 4 / 3;
  }

  /* Innovation cards */
  .w-innovation__cards {
    grid-template-columns: 1fr;
  }

  /* Values cards */
  .w-values__cards {
    grid-template-columns: 1fr;
  }

  /* Yards grid */
  .w-yards__grid {
    grid-template-columns: 1fr;
  }

  .w-yard {
    aspect-ratio: 16 / 9;
  }

  /* Careers */
  .w-careers__inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl, 3rem);
  }

  .w-careers__image {
    order: -1;
  }

  /* Moving Guide */
  .w-moving__inner {
    grid-template-columns: 1fr;
    gap: var(--space-xl, 2rem);
    text-align: center;
  }

  .w-moving__text {
    max-width: none;
  }

  .w-moving__visual {
    order: -1;
  }

  .w-moving__icon {
    width: 90px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .vard-page [data-reveal] {
    opacity: 1;
    transition: none;
  }

  .w-hero__scroll-hint,
  .w-moving__icon,
  .w-people__image img,
  .w-champions__image img {
    animation: none;
  }

  .w-profile:hover,
  .w-feature:hover,
  .w-value-card:hover,
  .w-yard:hover {
    transform: none;
  }

  .w-profile:hover .w-profile__image img,
  .w-feature:hover .w-feature__image img,
  .w-value-card:hover .w-value-card__image img,
  .w-yard:hover .w-yard__image img {
    transform: none;
  }
}

