:root {
    --sky:      #4A90C4;
    --sky-lt:   #EBF4FB;
    --sky-pale: #F4F9FD;
    --sky-mid:  #2970A2;
    --sky-dk:   #1A4F78;
    --white:    #FFFFFF;
    --cream:    #FAFAF8;
    --ink:      #1C1C1A;
    --muted:    #6B6A66;
    --border:   #E4EEF7;
    --gold:     #4A90C4;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', system-ui, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body { font-family: var(--font-sans); background: #0a1520; color: var(--ink); line-height: 1.6; -webkit-font-smoothing: antialiased; }

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }

  .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--sky); margin-bottom: 16px;
  }
  .eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--sky); display: block; }
  .eyebrow.light { color: #7ab8d9; }
  .eyebrow.light::before { background: #7ab8d9; }

  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 100px;
    font-size: 0.875rem; font-weight: 600;
    text-decoration: none; transition: all 0.22s ease;
    letter-spacing: 0.02em; border: 2px solid transparent;
    cursor: pointer; font-family: var(--font-sans);
  }
  .btn-solid   { background: var(--sky); color: #fff; }
  .btn-solid:hover   { background: var(--sky-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,112,162,0.4); }
  .btn-ghost   { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
  .btn-ghost:hover   { background: rgba(255,255,255,0.08); }
  .btn-white   { background: #fff; color: var(--sky-dk); font-weight: 700; }
  .btn-white:hover   { background: var(--sky-lt); transform: translateY(-2px); }
  .btn-outline-sky { background: transparent; color: var(--sky); border-color: var(--sky); }
  .btn-outline-sky:hover { background: var(--sky-lt); transform: translateY(-2px); }

  /* ── PAGE HERO — FULL BLEED CINEMATIC ── */
  .page-hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    background: #050d14;
    padding-top: 68px;
  }
  .hero-bg-grid {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    opacity: 0.45;
  }
  .hbg-cell { overflow: hidden; }
  .hbg-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 8s ease; }
  .hbg-cell:nth-child(odd)  img { animation: slowzoom 14s ease-in-out infinite alternate; }
  .hbg-cell:nth-child(even) img { animation: slowzoom 18s 4s ease-in-out infinite alternate-reverse; }
  @keyframes slowzoom {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
  }
  .hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(5,13,20,0.5) 0%, rgba(5,13,20,0.88) 100%);
    z-index: 1;
  }
  .hero-overlay-bottom {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to top, #0a1520 0%, transparent 100%);
    z-index: 2;
  }
  .hero-inner {
    position: relative; z-index: 3;
    max-width: 1180px; margin: 0 auto;
    padding: 0 40px; width: 100%;
    text-align: center;
  }
  .hero-bread {
    display: flex; justify-content: center; align-items: center; gap: 8px;
    font-size: 0.75rem; color: rgba(255,255,255,0.35);
    margin-bottom: 28px; font-weight: 500;
  }
  .hero-bread a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
  .hero-bread a:hover { color: rgba(255,255,255,0.7); }
  .hero-bread .sep { opacity: 0.35; }
  .hero-bread .cur { color: rgba(255,255,255,0.7); }
  .hero-inner h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700; color: #fff;
    line-height: 1.06; margin-bottom: 22px;
  }
  .hero-inner h1 em { font-style: italic; font-weight: 400; color: #7ab8d9; }
  .hero-inner p {
    font-size: 1.1rem; color: rgba(255,255,255,0.58);
    max-width: 560px; line-height: 1.82;
    font-weight: 300; margin: 0 auto 38px;
  }
  .hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .hero-scroll-hint {
    position: absolute; bottom: 36px; left: 50%;
    transform: translateX(-50%); z-index: 4;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.3); font-size: 0.68rem;
    letter-spacing: 0.14em; text-transform: uppercase;
    animation: bob 2.4s ease-in-out infinite;
  }
  @keyframes bob {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
  }

  @keyframes riseIn {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-inner > * { animation: riseIn 0.75s ease both; }
  .hero-bread     { animation-delay: 0.08s; }
  .hero-inner h1  { animation-delay: 0.2s; }
  .hero-inner p   { animation-delay: 0.34s; }
  .hero-btns      { animation-delay: 0.48s; }

  /* ── FILTER TABS ── */
  .filter-bar {
    background: #0e1d2a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky; top: 68px; z-index: 40;
  }
  .filter-inner {
    display: flex; align-items: center; gap: 6px;
    padding: 14px 0; overflow-x: auto; scrollbar-width: none;
  }
  .filter-inner::-webkit-scrollbar { display: none; }
  .f-chip {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 8px 18px; border-radius: 100px;
    font-size: 0.78rem; font-weight: 600;
    white-space: nowrap; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(74, 144, 196, 0.18); color: #fff;
    transition: all 0.2s; text-decoration: none;
    font-family: var(--font-sans);
  }
  .f-chip:hover { background: var(--sky); color: #fff; border-color: var(--sky); }
  .f-chip.active { background: var(--sky); color: #fff; border-color: var(--sky); }

  .f-search {
    margin-left: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  }
  .f-search input {
    min-width: 220px; padding: 10px 14px; border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px; outline: none; font-size: 0.92rem;
    color: #fff; background: rgba(255,255,255,0.08);
  }
  .f-search button {
    padding: 10px 18px;
  }

  /* ── STATS STRIP (dark) ── */
  .stats-strip { background: #0e1d2a; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
  .s-stat { padding: 26px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); }
  .s-stat:last-child { border-right: none; }
  .s-stat strong { display: block; font-family: var(--font-serif); font-size: 1.9rem; color: var(--sky); line-height: 1; margin-bottom: 5px; }
  .s-stat span   { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 0.07em; }

  /* ── MASONRY GALLERY ── */
  .gallery-sec { padding: 72px 0; background: #0a1520; }
  .sec-head { margin-bottom: 44px; }
  .sec-head h2 { font-family: var(--font-serif); font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1.18; }
  .sec-head h2 em { font-style: italic; font-weight: 400; color: #7ab8d9; }
  .sec-head p  { font-size: 0.96rem; color: rgba(255,255,255,0.42); line-height: 1.78; max-width: 500px; font-weight: 300; margin-top: 10px; }

  /* Masonry grid — CSS columns */
  .masonry {
    columns: 3;
    column-gap: 14px;
  }
  .m-item {
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: block;
  }
  .m-item img { width: 100%; display: block; transition: transform 0.55s ease; }
  .m-item:hover img { transform: scale(1.05); }
  .m-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,13,20,0.85) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 20px 18px;
  }
  .m-item:hover .m-overlay { opacity: 1; }
  .m-label {
    color: #fff; font-size: 0.82rem; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
  }
  .m-cat-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--sky); flex-shrink: 0;
  }
  /* Zoom icon */
  .m-zoom {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    display: grid; place-items: center;
    opacity: 0; transition: opacity 0.3s;
    font-size: 0.9rem; color: #fff;
  }
  .m-item:hover .m-zoom { opacity: 1; }

  /* ── GALLERY MORE BUTTON ── */
  .gallery-more-btn-wrap {
    display: flex; justify-content: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .btn-more {
    background: linear-gradient(135deg, var(--sky) 0%, var(--sky-mid) 100%);
    color: #fff;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  .btn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(74, 144, 196, 0.4);
  }

  /* ── CATEGORY SHOWCASES ── */
  .categories-sec { padding: 0 0 72px; background: #0a1520; }
  .cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

  .cat-card {
    border-radius: 22px; overflow: hidden;
    position: relative; min-height: 300px;
    display: flex; align-items: flex-end;
    cursor: pointer; transition: transform 0.3s, box-shadow 0.3s;
  }
  .cat-card:hover { transform: translateY(-7px); box-shadow: 0 24px 56px rgba(0,0,0,0.5); }
  .cat-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transition: transform 0.55s ease;
  }
  .cat-card:hover .cat-bg { transform: scale(1.06); }
  .cat-shade {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,13,20,0.9) 0%, rgba(5,13,20,0.15) 55%, transparent 100%);
  }
  /* Category accent line */
  .cat-card::before {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--sky); z-index: 3;
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
  }
  .cat-card:hover::before { transform: scaleX(1); }

  .cat-body { position: relative; z-index: 2; padding: 24px 22px; color: #fff; }
  .cat-icon-wrap {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
    display: grid; place-items: center; font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .cat-body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; line-height: 1.25; }
  .cat-body p  { font-size: 0.82rem; color: rgba(255,255,255,0.62); line-height: 1.62; margin-bottom: 14px; }
  .cat-count {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700;
    color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase;
    border-top: 1px solid rgba(255,255,255,0.12); padding-top: 12px; width: 100%;
  }

  /* ── FEATURED VIDEO ── */
  .video-sec { padding: 72px 0; background: #0e1d2a; }
  .video-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
  .video-text { }
  .video-text h2 { font-family: var(--font-serif); font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 700; color: #fff; line-height: 1.18; margin-bottom: 16px; }
  .video-text h2 em { font-style: italic; font-weight: 400; color: #7ab8d9; }
  .video-text p  { font-size: 0.96rem; color: rgba(255,255,255,0.5); line-height: 1.82; font-weight: 300; margin-bottom: 28px; }
  .video-playlist { display: flex; flex-direction: column; gap: 0; }
  .vp-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
    cursor: pointer; transition: all 0.2s;
  }
  .vp-item:last-child { border-bottom: none; }
  .vp-item:hover { padding-left: 6px; }
  .vp-thumb {
    width: 72px; height: 48px; border-radius: 8px;
    overflow: hidden; flex-shrink: 0; position: relative;
  }
  .vp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .vp-play-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
    display: grid; place-items: center;
    font-size: 0.9rem; color: #fff;
    transition: background 0.2s;
  }
  .vp-item:hover .vp-play-overlay { background: rgba(74,144,196,0.6); }
  .vp-meta strong { display: block; font-size: 0.845rem; font-weight: 600; color: rgba(255,255,255,0.82); line-height: 1.3; }
  .vp-meta span   { font-size: 0.75rem; color: rgba(255,255,255,0.38); }

  /* Main video player mockup */
  .video-player {
    border-radius: 20px; overflow: hidden;
    position: relative; aspect-ratio: 16/9;
    background: #050d14;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    cursor: pointer;
  }
  .video-player img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7; }
  .vp-center {
    position: absolute; inset: 0;
    display: grid; place-items: center;
  }
  .play-btn {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px); border: 2px solid rgba(255,255,255,0.3);
    display: grid; place-items: center;
    color: #fff; font-size: 1.6rem;
    transition: all 0.25s;
  }
  .video-player:hover .play-btn { background: var(--sky); border-color: var(--sky); transform: scale(1.08); }
  .vp-title-bar {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(5,13,20,0.9) 0%, transparent 100%);
    padding: 20px 20px 16px; color: #fff;
  }
  .vp-title-bar span { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.1em; }
  .vp-title-bar p { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; margin-top: 4px; }

  /* ── HIGHLIGHTS CAROUSEL STRIP ── */
  .highlights-sec { padding: 72px 0; background: #0a1520; overflow: hidden; }
  .hl-track-wrap { overflow: hidden; margin-top: 40px; }
  .hl-track {
    display: flex; gap: 16px;
    animation: slide 30s linear infinite;
    width: max-content;
  }
  .hl-track:hover { animation-play-state: paused; }
  @keyframes slide {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .hl-card {
    flex-shrink: 0; width: 280px; border-radius: 18px; overflow: hidden;
    position: relative; height: 200px; cursor: pointer;
  }
  .hl-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
  .hl-card:hover img { transform: scale(1.07); }
  .hl-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(5,13,20,0.8) 0%, transparent 55%);
  }
  .hl-card-body { position: absolute; bottom: 14px; left: 14px; right: 14px; color: #fff; }
  .hl-card-body span { font-size: 0.7rem; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: 0.08em; }
  .hl-card-body p { font-size: 0.845rem; font-weight: 600; line-height: 1.35; margin-top: 3px; }

  /* ── PRESS / COVERAGE ── */
  .press-sec { padding: 72px 0; background: #0e1d2a; }
  .press-head { margin-bottom: 44px; }
  .press-head h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 2.8vw, 2.3rem); font-weight: 700; color: #fff; }
  .press-head h2 em { font-style: italic; font-weight: 400; color: #7ab8d9; }
  .press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .press-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px; padding: 28px 24px;
    transition: all 0.25s; cursor: default;
  }
  .press-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); transform: translateY(-4px); }
  .press-source { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); margin-bottom: 14px; }
  .press-card blockquote {
    font-family: var(--font-serif); font-style: italic;
    font-size: 0.97rem; color: rgba(255,255,255,0.72);
    line-height: 1.72; margin-bottom: 16px; font-weight: 400;
  }
  .press-date { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

  /* ── CTA ── */
  .cta-band {
    background: linear-gradient(130deg, #050d14 0%, var(--sky-dk) 50%, var(--sky-mid) 100%);
    padding: 88px 0; position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px; background: rgba(255,255,255,0.03); border-radius: 50%;
  }
  .cta-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr auto;
    gap: 60px; align-items: center;
  }
  .cta-text h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: 12px; }
  .cta-text h2 em { font-style: italic; font-weight: 400; color: #a8cce8; }
  .cta-text p  { color: rgba(255,255,255,0.55); font-size: 0.96rem; line-height: 1.8; max-width: 480px; font-weight: 300; }
  .cta-btns { display: flex; flex-direction: column; gap: 12px; min-width: 210px; }

  /* ── LIGHTBOX (CSS only) ── */
  .lightbox-trigger { display: block; }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .wrap { padding: 0 24px; }
    .hero-bg-grid { grid-template-columns: 1fr 1fr; }
    .masonry { columns: 2; }
    .cat-grid { grid-template-columns: 1fr 1fr; }
    .video-inner { grid-template-columns: 1fr; }
    .press-grid { grid-template-columns: 1fr 1fr; }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-btns  { flex-direction: row; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .s-stat:nth-child(2) { border-right: none; }
    .btn-more { font-size: 0.95rem; padding: 14px 36px; }
  }
  @media (max-width: 600px) {
    .hero-bg-grid { grid-template-columns: 1fr; }
    .masonry { columns: 1; }
    .cat-grid { grid-template-columns: 1fr; }
    .press-grid { grid-template-columns: 1fr; }
    .filter-inner { gap: 6px; }
    .gallery-more-btn-wrap { margin-top: 32px; padding-top: 24px; }
    .btn-more { font-size: 0.9rem; padding: 12px 28px; width: 100%; justify-content: center; }
  }