/* Foundation World HQ — Foundation palette (crimson / parchment) */

/* ── Light tokens — clean, bright, relaxed ── */
.theme-world {
  --fw-dark-text: #2c1810;
  --fw-deep-crimson: #6b1818;
  --fw-crimson: #8c2020;
  --fw-instagram-red: #b4463e;
  --fw-dark-parchment: #ede4d3;
  --fw-parchment: #f4ede0;
  --fw-surface: #faf7f2;
  --fw-surface-alt: #f4ede0;
  --fw-text: #2c1810;
  --fw-text-muted: rgba(44, 24, 16, 0.58);
  --fw-border: rgba(44, 24, 16, 0.1);
  --fw-accent: #8c2020;
  --fw-white: #ffffff;
  --fw-dominant: #6b1818;
  --fw-accent-live: #8c2020;
  --fw-shadow: 0 12px 40px rgba(44, 24, 16, 0.07);
  --fw-header-fg: #2c1810;
  --fw-header-bg: #faf7f2;
  --fw-header-scrolled: rgba(250, 247, 242, 0.94);
  --fw-radius: 0;
  --fw-radius-lg: 2px;
  --fw-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --fw-ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.theme-world,
.theme-world body {
  background: var(--fw-surface);
  color: var(--fw-text);
}

/* ── Dark tokens ── */
html[data-theme="dark"] .theme-world {
  --fw-dark-text: #f4ede0;
  --fw-deep-crimson: #b4463e;
  --fw-crimson: #c45a52;
  --fw-instagram-red: #b4463e;
  --fw-surface: #14100e;
  --fw-surface-alt: #1c1613;
  --fw-text: #f4ede0;
  --fw-text-muted: rgba(244, 237, 224, 0.6);
  --fw-border: rgba(244, 237, 224, 0.12);
  --fw-accent: #b4463e;
  --fw-parchment: #14100e;
  --fw-dark-parchment: #1c1613;
  --fw-white: #0e0b0a;
  --fw-dominant: #b4463e;
  --fw-accent-live: #c45a52;
  --fw-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --fw-header-fg: #f4ede0;
  --fw-header-bg: #14100e;
  --fw-header-scrolled: rgba(20, 16, 14, 0.94);
}

html[data-theme="dark"] .theme-world,
html[data-theme="dark"] .theme-world body {
  background: var(--fw-surface);
  color: var(--fw-text);
}

/* ── Ambient ── */
.theme-world #fw-ambient {
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(180, 70, 62, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(237, 228, 211, 0.9), transparent 50%),
    var(--fw-surface);
}

html[data-theme="dark"] .theme-world #fw-ambient {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(180, 70, 62, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 100%, rgba(107, 24, 24, 0.28), transparent 50%),
    var(--fw-surface);
}

/* ── Header & nav ── */
.theme-world .fw-header {
  background: var(--fw-header-bg);
  border-bottom: 1px solid rgba(107, 24, 24, 0.22);
  transition: background 0.25s var(--fw-ease), border-color 0.25s var(--fw-ease), box-shadow 0.25s var(--fw-ease);
}

.theme-world .fw-header.is-scrolled {
  background: var(--fw-header-scrolled);
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.14);
  border-bottom-color: rgba(140, 32, 32, 0.3);
}

.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav > a,
.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav__trigger,
.theme-world .fw-header.is-scrolled .fw-site-nav > a,
.theme-world .fw-header.is-scrolled .fw-site-nav__trigger {
  color: var(--fw-header-fg);
}

/* Active must beat header-fg (same specificity chain as RE primary accent) */
.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav > a.is-active,
.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav__trigger.is-active,
.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav a.is-active,
.theme-world .fw-header.is-scrolled .fw-site-nav > a.is-active,
.theme-world .fw-header.is-scrolled .fw-site-nav__trigger.is-active,
.theme-world .fw-header.is-scrolled .fw-site-nav a.is-active,
.theme-world .fw-site-nav > a.is-active,
.theme-world .fw-site-nav__trigger.is-active,
.theme-world .fw-site-nav a.is-active {
  color: var(--fw-accent-live);
}

.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav > a.is-active::after,
.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-site-nav__trigger.is-active::after,
.theme-world .fw-header.is-scrolled .fw-site-nav > a.is-active::after,
.theme-world .fw-header.is-scrolled .fw-site-nav__trigger.is-active::after {
  background: var(--fw-accent-live);
}

.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-header__toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(180, 70, 62, 0.4);
}

.theme-world .fw-header:not(.is-scrolled):not(.is-menu-open) .fw-header__toggle-icon span,
.theme-world .fw-header.is-scrolled .fw-header__toggle-icon span {
  background: var(--fw-header-fg);
}

html[data-theme="dark"] .theme-world .fw-header {
  background: var(--fw-header-bg);
  border-bottom-color: rgba(180, 70, 62, 0.25);
}

html[data-theme="dark"] .theme-world .fw-header.is-scrolled {
  background: var(--fw-header-scrolled);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .theme-world .fw-header.is-menu-open {
  background: var(--fw-surface-alt);
}

html[data-theme="dark"] .theme-world .fw-header__menu,
html[data-theme="dark"] .theme-world .fw-header.is-menu-open {
  background: var(--fw-surface-alt);
}

html[data-theme="dark"] .theme-world .fw-site-nav > a,
html[data-theme="dark"] .theme-world .fw-site-nav__trigger {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-world .fw-header:not(.is-menu-open) .fw-site-nav > a,
html[data-theme="dark"] .theme-world .fw-header:not(.is-menu-open) .fw-site-nav__trigger {
  color: var(--fw-header-fg);
}

html[data-theme="dark"] .theme-world .fw-site-nav > a.is-active,
html[data-theme="dark"] .theme-world .fw-site-nav__trigger.is-active,
html[data-theme="dark"] .theme-world .fw-site-nav a.is-active,
html[data-theme="dark"] .theme-world .fw-header:not(.is-menu-open) .fw-site-nav > a.is-active,
html[data-theme="dark"] .theme-world .fw-header:not(.is-menu-open) .fw-site-nav__trigger.is-active,
html[data-theme="dark"] .theme-world .fw-header:not(.is-menu-open) .fw-site-nav a.is-active {
  color: var(--fw-accent-live);
}

/* ── Links & buttons ── */
.theme-world a {
  color: var(--fw-deep-crimson);
  transition: color 0.2s var(--fw-ease);
}

.theme-world a:hover {
  color: var(--fw-accent-live);
}

.theme-world .fw-btn {
  border-color: var(--fw-deep-crimson);
  background: var(--fw-deep-crimson);
  color: #fff;
  border-radius: var(--fw-radius);
  transition: background 0.25s var(--fw-ease), border-color 0.25s var(--fw-ease), transform 0.25s var(--fw-ease);
}

.theme-world .fw-btn:hover {
  background: var(--fw-accent-live);
  border-color: var(--fw-accent-live);
  color: #6b1818;
}

.theme-world .fw-btn--ghost {
  background: transparent;
  color: var(--fw-deep-crimson);
}

.theme-world .fw-btn--ghost:hover {
  background: rgba(180, 70, 62, 0.1);
  color: var(--fw-deep-crimson);
}

html[data-theme="dark"] .theme-world a {
  color: var(--fw-accent-live);
}

html[data-theme="dark"] .theme-world a:hover {
  color: #c45a52;
}

html[data-theme="dark"] .theme-world .fw-btn {
  background: var(--fw-accent-live);
  border-color: var(--fw-accent-live);
  color: #1a0f0c;
}

html[data-theme="dark"] .theme-world .fw-btn:hover {
  background: #c45a52;
  border-color: #c45a52;
  color: #1a0f0c;
}

html[data-theme="dark"] .theme-world .fw-btn--ghost {
  color: var(--fw-accent-live);
  border-color: rgba(194, 155, 64, 0.45);
}

/* ── Eyebrow & prose ── */
.theme-world .fw-eyebrow,
.theme-world .world-eyebrow {
  color: var(--fw-accent-live);
  letter-spacing: 0.18em;
}

.theme-world .fw-prose blockquote {
  border-left-color: var(--fw-accent-live);
  background: rgba(180, 70, 62, 0.08);
}

html[data-theme="dark"] .theme-world .fw-prose blockquote {
  background: rgba(180, 70, 62, 0.1);
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-world .fw-prose h1,
html[data-theme="dark"] .theme-world .fw-prose h2,
html[data-theme="dark"] .theme-world .fw-prose h3 {
  color: var(--fw-text);
}

/* ── Cards, blog, meta ── */
.theme-world .fw-card,
.theme-world .fw-blog-card {
  background: var(--fw-white);
  border-color: var(--fw-border);
  border-radius: var(--fw-radius-lg);
  transition: transform 0.25s var(--fw-ease), box-shadow 0.25s var(--fw-ease);
}

.theme-world .fw-card__label {
  color: var(--fw-accent-live);
}

.theme-world .fw-blog-card__title a:hover,
.theme-world .fw-blog-card__link {
  color: var(--fw-deep-crimson);
}

.theme-world .fw-blog-card__title a:hover {
  color: var(--fw-accent-live);
}

.theme-world .fw-article-meta {
  color: var(--fw-text-muted);
}

.theme-world .fw-strip {
  background: var(--fw-surface-alt);
  border-color: var(--fw-border);
}

.theme-world .fw-hero__panel {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--fw-border);
  border-radius: var(--fw-radius-lg);
}

html[data-theme="dark"] .theme-world .fw-card,
html[data-theme="dark"] .theme-world .fw-blog-card {
  background: var(--fw-surface-alt);
  border-color: var(--fw-border);
}

html[data-theme="dark"] .theme-world .fw-card p,
html[data-theme="dark"] .theme-world .fw-blog-card__excerpt,
html[data-theme="dark"] .theme-world .fw-blog-card__meta {
  color: var(--fw-text-muted);
}

html[data-theme="dark"] .theme-world .fw-blog-card__title a {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-world .fw-blog-card__title a:hover,
html[data-theme="dark"] .theme-world .fw-blog-card__link {
  color: var(--fw-accent-live);
}

html[data-theme="dark"] .theme-world .fw-hero__panel {
  background: rgba(0, 35, 73, 0.75);
  border-color: var(--fw-border);
}

html[data-theme="dark"] .theme-world .fw-strip {
  background: var(--fw-surface-alt);
}

/* ── Theme inner & footer ── */
.theme-world .theme-inner {
  background: var(--fw-surface);
}

.theme-world .fw-footer {
  background: var(--fw-surface-alt);
  border-top-color: var(--fw-border);
}

html[data-theme="dark"] .theme-world .theme-inner {
  background: var(--fw-surface);
}

html[data-theme="dark"] .theme-world .fw-footer {
  background: var(--fw-surface-alt);
}

html[data-theme="dark"] .theme-world .fw-footer a {
  color: var(--fw-text);
}

html[data-theme="dark"] .theme-world .fw-footer h4 {
  color: var(--fw-accent-live);
}

/* ── Hero (curtain) ── */
.world-hero--curtain {
  position: relative;
  min-height: calc(100svh - var(--fw-header-h));
  display: grid;
  align-items: end;
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

.world-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.world-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: world-ken-burns 38s var(--fw-ease-out) infinite alternate;
}

@keyframes world-ken-burns {
  from { transform: scale(1.05); }
  to { transform: scale(1.14) translate(-1.5%, -1%); }
}

.world-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 23, 49, 0.92) 0%,
    rgba(0, 35, 73, 0.55) 45%,
    rgba(0, 35, 73, 0.2) 100%
  );
}

.world-hero__copy {
  position: relative;
  z-index: 3;
  max-width: 44rem;
  padding-top: calc(var(--fw-header-h) + 2rem);
}

.world-hero__eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fw-accent-live);
  margin-bottom: 0.75rem;
}

.world-hero__title {
  font-family: var(--fw-font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 0.5rem;
}

.world-hero__subtitle {
  font-family: var(--fw-font-accent);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(194, 155, 64, 0.92);
  margin: 0 0 1rem;
}

.world-hero__lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 38rem;
}

.world-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.world-btn {
  display: inline-flex;
  padding: 0.85rem 1.5rem;
  background: var(--fw-accent-live);
  color: #6b1818;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--fw-radius);
  border: 1px solid var(--fw-accent-live);
  transition: background 0.25s var(--fw-ease), color 0.25s var(--fw-ease), border-color 0.25s var(--fw-ease);
}

.world-btn:hover {
  background: #c45a52;
  border-color: #c45a52;
}

.world-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(194, 155, 64, 0.55);
}

.world-btn--ghost:hover {
  background: rgba(194, 155, 64, 0.12);
  border-color: var(--fw-accent-live);
}

.world-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fw-accent-live);
}

/* ── Branches ── */
.world-branches {
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--fw-surface-alt);
}

.world-branches__head {
  text-align: center;
  max-width: 42ch;
  margin: 0 auto 2.5rem;
}

.world-branches__head h2 {
  font-family: var(--fw-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--fw-text);
}

.world-branches__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.world-branch-card {
  position: relative;
  display: block;
  padding: 1.75rem;
  background: var(--fw-white);
  border: 1px solid var(--fw-border);
  border-radius: var(--fw-radius-lg);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--fw-ease), box-shadow 0.25s var(--fw-ease);
}

.world-branch-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--fw-shadow);
}

.world-branch-card__label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fw-accent-live);
}

.world-branch-card h3 {
  font-family: var(--fw-font-display);
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: var(--fw-text);
}

.world-branch-card p {
  font-size: 0.9375rem;
  color: var(--fw-text-muted);
  margin: 0;
}

.world-branch-card__arrow {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  color: var(--fw-deep-crimson);
  font-size: 1.25rem;
  transition: color 0.2s var(--fw-ease);
}

.world-branch-card:hover .world-branch-card__arrow {
  color: var(--fw-accent-live);
}

html[data-theme="dark"] .theme-world .world-branches {
  background: var(--fw-surface-alt);
}

html[data-theme="dark"] .theme-world .world-branch-card {
  background: var(--fw-white);
}

html[data-theme="dark"] .theme-world .world-branch-card h3 {
  color: var(--fw-text);
}

/* ── Cinematic footer ── */
.theme-footer--cinematic {
  position: relative;
  margin-top: 0;
  padding: 4rem 0 2rem;
  background: #1a0f0c;
  color: rgba(255, 255, 255, 0.88);
}

.theme-footer--cinematic .theme-footer__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 155, 64, 0.12), transparent 60%);
  pointer-events: none;
}

.theme-footer--cinematic .theme-footer__inner {
  position: relative;
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr;
}

.theme-footer--cinematic h4 {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fw-accent-live);
}

.theme-footer--cinematic a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s var(--fw-ease);
}

.theme-footer--cinematic a:hover {
  color: var(--fw-accent-live);
}

.theme-footer--cinematic ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-footer--cinematic li { margin-bottom: 0.45rem; }

.theme-footer__branch-grid {
  display: grid;
  gap: 0.35rem;
}

.theme-footer__legal {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(107, 24, 24, 0.22);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

html[data-theme="dark"] .theme-world .theme-footer--cinematic {
  background: #2c1810;
}

@media (max-width: 768px) {
  .theme-footer--cinematic .theme-footer__inner { grid-template-columns: 1fr; }
}

.world-home-body { padding: 3rem 0 4rem; }

.wd-page { padding-top: var(--fw-header-h); min-height: 70vh; }
.wd-page h1 {
  font-family: var(--fw-font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0.4rem 0 0;
  color: var(--fw-text);
}
.wd-page__plain-head {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  border-bottom: 1px solid var(--fw-border);
}
.wd-page__body { padding: 2.5rem 0 4.5rem; max-width: 44rem; }

/* cinematic about */
.wd-page__cinema-head {
  position: relative; min-height: min(70vh, 36rem);
  display: flex; align-items: flex-end;
}
.wd-page__cinema-media { position: absolute; inset: 0; }
.wd-page__cinema-media img { width: 100%; height: 100%; object-fit: cover; }
.wd-page__cinema-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,35,73,0.92), rgba(0,35,73,0.35) 50%, rgba(0,35,73,0.15));
}
.wd-page__cinema-copy {
  position: relative; z-index: 1; padding-bottom: 2.5rem; color: #fff;
}
.wd-page__cinema-copy .world-eyebrow,
.wd-page__cinema-copy h1 { color: #fff; }

/* contact dual */
.wd-page__contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  min-height: calc(100vh - var(--fw-header-h));
}
.wd-page__contact-intro {
  background: #6b1818; color: #fff;
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.wd-page__contact-intro .world-eyebrow,
.wd-page__contact-intro h1 { color: #fff; }
.wd-page__contact-body {
  padding: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 800px) {
  .wd-page__contact-grid { grid-template-columns: 1fr; }
}

/* faq navy */
.wd-page__faq-navy {
  padding: 2.5rem 0 4.5rem;
  background: color-mix(in srgb, #6b1818 4%, var(--fw-surface));
}
.wd-page__faq-navy .fw-prose {
  max-width: 46rem;
  border-top: 3px solid #6b1818;
  padding-top: 2rem;
}

/* news mosaic */
.wd-news {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.5rem;
  padding: 2rem 0 4.5rem;
}
.wd-news__card {
  display: flex; flex-direction: column; gap: 0.65rem;
  text-decoration: none; color: inherit;
  border: 1px solid var(--fw-border);
  padding: 0 0 1.25rem;
  transition: transform 0.35s var(--fw-ease);
}
.wd-news__card:hover { transform: translateY(-3px); }
.wd-news__media { display: block; aspect-ratio: 16/10; overflow: hidden; }
.wd-news__media img { width: 100%; height: 100%; object-fit: cover; }
.wd-news__meta, .wd-news__card h2, .wd-news__card p { padding: 0 1rem; }
.wd-news__meta { font-size: 0.6875rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fw-text-muted); margin-top: 0.75rem; }
.wd-news__card h2 { font-family: var(--fw-font-display); font-size: 1.25rem; font-weight: 500; margin: 0; }
.wd-news__card p { margin: 0; color: var(--fw-text-muted); font-size: 0.9rem; }

/* network israel split */
.wd-page__network-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: min(60vh, 28rem);
  border-bottom: 1px solid var(--fw-border);
}
.wd-page__network-copy {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(2rem, 4vw, 3rem);
  background: #000;
  color: #fff;
}
.wd-page__network-copy .world-eyebrow,
.wd-page__network-copy h1 { color: #fff; }
.wd-page__network-media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); }
@media (max-width: 800px) {
  .wd-page__network-split { grid-template-columns: 1fr; }
  .wd-page__network-media { min-height: 14rem; }
}

/* network NY banner */
.wd-page__ny-banner {
  position: relative; min-height: min(55vh, 26rem);
  display: flex; align-items: flex-end;
}
.wd-page__ny-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.wd-page__ny-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,35,73,0.85), transparent 60%);
}
.wd-page__ny-title { position: relative; z-index: 1; padding-bottom: 2rem; color: #fff; }
.wd-page__ny-title .world-eyebrow, .wd-page__ny-title h1 { color: #fff; }

/* ukraine strip */
.wd-page__ua-strip { height: clamp(10rem, 28vw, 16rem); overflow: hidden; }
.wd-page__ua-strip img { width: 100%; height: 100%; object-fit: cover; }

/* incubator columns */
.wd-page__inc-head {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: #08090a; color: #f7f8f8;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wd-page__inc-head .world-eyebrow, .wd-page__inc-head h1 { color: #f7f8f8; }
.wd-page__inc-columns {
  display: grid; grid-template-columns: minmax(12rem, 20rem) 1fr;
  gap: 0; min-height: 50vh;
}
.wd-page__inc-aside {
  border-right: 1px solid var(--fw-border);
  background: var(--fw-surface-alt);
}
.wd-page__inc-aside img { width: 100%; height: 100%; object-fit: cover; min-height: 20rem; filter: grayscale(0.5); }
.wd-page__inc-columns .fw-prose { padding: clamp(2rem, 4vw, 3rem); max-width: 40rem; }
@media (max-width: 800px) {
  .wd-page__inc-columns { grid-template-columns: 1fr; }
  .wd-page__inc-aside { min-height: 12rem; border-right: none; border-bottom: 1px solid var(--fw-border); }
}

/* ═══════════════════════════════════════════════════════════
   Design v2 - Sotheby's private-client editorial network
   ═══════════════════════════════════════════════════════════ */

.world-hero__goldline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #b4463e 20%, #c45a52 50%, #b4463e 80%, transparent 100%);
  opacity: 0.85;
  z-index: 2;
}

.world-hero--curtain {
  min-height: 100svh;
  align-items: end;
}

.world-hero__title {
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
}

.world-hero__lead {
  font-size: 1.0625rem;
  max-width: 36rem;
}

/* Editorial network rail - not a card dashboard */
.world-network {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  background: var(--fw-surface);
  border-top: 1px solid rgba(180, 70, 62, 0.25);
}

.world-network__head {
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.world-network__head h2 {
  font-family: var(--fw-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #6b1818;
  margin: 0.5rem 0 1rem;
}

html[data-theme="dark"] .theme-world .world-network__head h2 {
  color: var(--fw-text);
}

.world-network__lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fw-text-muted);
  margin: 0;
  max-width: 40ch;
}

.world-network__rail {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 35, 73, 0.12);
}

html[data-theme="dark"] .theme-world .world-network__rail {
  border-top-color: rgba(180, 70, 62, 0.25);
}

.world-destination {
  display: grid;
  grid-template-columns: 0.5rem 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(0, 35, 73, 0.1);
  text-decoration: none;
  color: inherit;
  transition: background 0.35s var(--fw-ease), padding 0.35s var(--fw-ease);
}

html[data-theme="dark"] .theme-world .world-destination {
  border-bottom-color: rgba(194, 155, 64, 0.12);
}

.world-destination:hover {
  padding-left: 0.75rem;
  background: linear-gradient(90deg, rgba(180, 70, 62, 0.08), transparent 60%);
}

.world-destination__mark {
  width: 2px;
  height: 100%;
  min-height: 3rem;
  background: #b4463e;
  opacity: 0.35;
  transition: opacity 0.3s var(--fw-ease), height 0.3s var(--fw-ease);
  align-self: stretch;
}

.world-destination:hover .world-destination__mark {
  opacity: 1;
}

.world-destination__label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b4463e;
  margin-bottom: 0.4rem;
}

.world-destination__title {
  font-family: var(--fw-font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: #6b1818;
  letter-spacing: -0.01em;
}

html[data-theme="dark"] .theme-world .world-destination__title {
  color: var(--fw-text);
}

.world-destination__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--fw-text-muted);
  max-width: 42rem;
}

.world-destination__go {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b1818;
  padding-top: 0.35rem;
  opacity: 0.45;
  transition: opacity 0.3s var(--fw-ease), color 0.3s var(--fw-ease);
  white-space: nowrap;
}

.world-destination:hover .world-destination__go {
  opacity: 1;
  color: #b4463e;
}

html[data-theme="dark"] .theme-world .world-destination__go {
  color: var(--fw-accent-live);
}

/* Editorial body measure */
.world-body {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 9vw, 6.5rem);
  background: var(--fw-surface);
}

.world-body__measure {
  max-width: 44rem;
}

.theme-world .world-body .fw-prose {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.theme-world .world-body .fw-prose h2 {
  font-family: var(--fw-font-display);
  font-weight: 500;
  color: #6b1818;
  margin-top: 2.5rem;
}

html[data-theme="dark"] .theme-world .world-body .fw-prose h2 {
  color: var(--fw-text);
}

/* Refined UI motion for World */
.theme-world .fw-immerse {
  transition-duration: 0.45s, 0.55s;
}

.theme-world .fw-header {
  border-bottom: 1px solid rgba(180, 70, 62, 0.28);
}

@media (max-width: 700px) {
  .world-destination {
    grid-template-columns: 0.35rem 1fr;
  }
  .world-destination__go {
    display: none;
  }
}

/* ============================================================
   World HQ — equal-gap header (logo | centered nav | tools)
   Same geometry as Israel bar; World navy/gold chrome.
   ============================================================ */

@media (min-width: 1100px) {
  .theme-world .fw-header__shell {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: min(100rem, calc(100% - 1rem));
    padding-inline: clamp(0.85rem, 1.6vw, 1.75rem);
    gap: 0 !important;
    column-gap: 0 !important;
  }

  .theme-world .fw-header__bar {
    flex: 0 0 auto !important;
    display: flex !important;
    justify-content: flex-start;
    align-items: center;
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding-inline-end: clamp(0.75rem, 1.4vw, 1.25rem);
  }

  .theme-world .fw-header__menu {
    display: contents !important;
  }

  .theme-world .fw-header__menu-scroll {
    flex: 1 1 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible;
    margin: 0 !important;
    padding: 0 clamp(0.35rem, 0.8vw, 0.75rem);
  }

  .theme-world .fw-site-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: clamp(0.32rem, 0.65vw, 0.7rem);
    flex: 0 1 auto !important;
    width: max-content;
    max-width: 100%;
  }

  .theme-world .fw-site-nav > a,
  .theme-world .fw-site-nav__trigger {
    font-size: clamp(0.52rem, 0.58vw, 0.68rem) !important;
    letter-spacing: 0.06em !important;
    white-space: nowrap;
    text-transform: none !important;
  }

  .theme-world .fw-header__menu-foot {
    flex: 0 0 auto !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-end !important;
    align-items: center !important;
    margin: 0 !important;
    gap: 0.4rem;
    padding-inline-start: clamp(0.75rem, 1.4vw, 1.25rem);
    width: auto !important;
    border: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  .theme-world .fw-header__tools {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.4rem !important;
    height: 2.15rem;
    margin: 0 !important;
    flex-shrink: 0;
  }

  .theme-world .fw-header__menu-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.45rem;
    flex-shrink: 0;
    height: 2.15rem;
  }

  .theme-world .fw-header__cta-secondary {
    display: none !important;
  }

  .theme-world .fw-color-mode,
  .theme-world .fw-lang-switcher {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    height: 2.15rem !important;
    margin: 0 !important;
  }
}

/* Color mode on navy header */
.theme-world .fw-header .fw-color-mode {
  border: 1px solid rgba(180, 70, 62, 0.4);
  background: rgba(255, 255, 255, 0.06);
}
.theme-world .fw-header .fw-color-mode__btn {
  color: rgba(255, 255, 255, 0.78);
}
.theme-world .fw-header .fw-color-mode__btn.is-active,
.theme-world .fw-header .fw-color-mode__btn[aria-pressed="true"] {
  background: rgba(107, 24, 24, 0.18);
  color: #fff;
}
.theme-world .fw-header .fw-btn--platform {
  background: #6b1818 !important;
  color: #f4ede0 !important;
  border-color: #6b1818 !important;
}
.theme-world .fw-header .fw-btn--platform:hover {
  background: #8c2020 !important;
  color: #f4ede0 !important;
}



/* Light header: ink logo; dark header: pale logo (matches foundation-chrome base) */
.theme-world .fw-header__logo-img--ink { display: block !important; }
.theme-world .fw-header__logo-img--pale { display: none !important; }
html[data-theme="dark"] .theme-world .fw-header__logo-img--ink { display: none !important; }
html[data-theme="dark"] .theme-world .fw-header__logo-img--pale { display: block !important; }
