/* ---------- TOKENS ---------- */
  :root {
    --navy:        #07182A;
    --navy-2:      #0B2236;
    --petrol:      #143F3E;
    --petrol-2:    #1B5453;
    --gold:        #C9A961;
    --gold-soft:   #E2C998;
    --bone:        #F5F2EC;
    --bone-2:      #EAE5DA;
    --line:        rgba(245, 242, 236, 0.14);
    --line-dark:   rgba(7, 24, 42, 0.10);
    --ink:         #07182A;
    --ink-soft:    #3A4A5A;
    --serif:       "Instrument Serif", "Times New Roman", serif;
    --sans:        "Manrope", system-ui, -apple-system, sans-serif;
    --r-sm: 10px;
    --r-md: 18px;
    --r-lg: 28px;
    --r-xl: 40px;
    --shadow-soft: 0 30px 60px -30px rgba(7, 24, 42, 0.35);
    --shadow-card: 0 24px 48px -28px rgba(7, 24, 42, 0.45);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* ---------- RESET ---------- */
  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--sans);
    color: var(--ink);
    background: var(--bone);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  /* ---------- TYPOGRAPHY ---------- */
  .eyebrow {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink-soft);
  }
  .eyebrow::before {
    content: "";
    width: 24px; height: 1px;
    background: currentColor;
    opacity: 0.5;
  }
  .eyebrow.on-dark { color: var(--gold-soft); }

  .display {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
  }
  .display em {
    font-style: italic;
    color: var(--gold);
  }

  /* ---------- LAYOUT ---------- */
  .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
  }
  section { position: relative; }

  /* ---------- NAV ---------- */
  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    padding: 22px 0;
    transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s var(--ease);
    border-bottom: 1px solid transparent;
  }
  .nav.scrolled {
    background: rgba(7, 24, 42, 0.78);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    padding: 14px 0;
    border-bottom-color: var(--line);
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--bone);
  }
  .logo-mark {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: grid; place-items: center;
    position: relative;
    overflow: hidden;
  }
  .logo-mark::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent);
  }
  .logo-mark svg { width: 14px; height: 14px; color: var(--gold); }
  .logo-word {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.28em;
  }
  .logo-word small {
    display: block;
    font-size: 9px;
    letter-spacing: 0.32em;
    font-weight: 400;
    opacity: 0.65;
    margin-top: 2px;
  }
  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0; padding: 0;
  }
  .nav-links a {
    color: var(--bone);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    position: relative;
    padding: 6px 0;
    opacity: 0.85;
    transition: opacity .3s;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
  }
  .nav-links a:hover { opacity: 1; }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--bone);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all .4s var(--ease);
  }
  .nav-cta:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
  }
  .nav-cta .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent);
  }
  .nav-cta:hover .dot { background: var(--navy); box-shadow: 0 0 0 3px rgba(7,24,42,0.18); }

  .burger { display: none; }

  /* ---------- HERO ---------- */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    color: var(--bone);
    isolation: isolate;
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.6s var(--ease), transform 8s linear;
  }
  .hero-slide.active {
    opacity: 1;
    transform: scale(1);
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, rgba(7,24,42,0.55) 0%, rgba(7,24,42,0.35) 45%, rgba(7,24,42,0.92) 100%),
      radial-gradient(ellipse at 70% 30%, rgba(20,63,62,0.35) 0%, transparent 60%);
  }
  .hero-noise {
    position: absolute; inset: 0; z-index: -1;
    opacity: 0.06;
    pointer-events: none;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  }

  .hero-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 88px;
    padding-top: 160px;
    position: relative;
  }

  .hero-meta {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 10px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-soft);
    opacity: 0.7;
    white-space: nowrap;
  }

  .hero-title {
    font-size: clamp(40px, 5vw, 86px);
    line-height: 1.05;
    margin: 0 0 28px;
    max-width: 22ch;
  }
  .hero-title .line {
    display: block;
    overflow: hidden;
    padding: 0.08em 0 0.08em;  /* breathing room for serif ascenders/descenders */
  }
  .hero-title .line > span {
    display: inline-block;
    transform: translateY(110%);
    animation: rise 1.2s var(--ease) forwards;
  }
  .hero-title .line:nth-child(1) > span { animation-delay: 0.2s; }
  .hero-title .line:nth-child(2) > span { animation-delay: 0.4s; }
  .hero-title .line:nth-child(3) > span { animation-delay: 0.6s; }
  @keyframes rise { to { transform: translateY(0); } }

  .hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s var(--ease) 1s forwards;
  }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  .hero-lede {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(245,242,236,0.78);
    font-weight: 300;
  }

  .cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px 18px 32px;
    border-radius: 100px;
    background: var(--gold);
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: all .5s var(--ease);
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
  }
  .cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bone);
    transform: translateY(100%);
    transition: transform .5s var(--ease);
    z-index: 0;
  }
  .cta > * { position: relative; z-index: 1; }
  .cta:hover::before { transform: translateY(0); }
  .cta .arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: grid; place-items: center;
    transition: transform .5s var(--ease);
  }
  .cta:hover .arrow { transform: translateX(6px) rotate(-45deg); }
  .cta .arrow svg { width: 12px; height: 12px; }

  .cta.ghost {
    background: transparent;
    color: var(--bone);
    border-color: var(--line);
  }
  .cta.ghost::before { background: rgba(245,242,236,0.06); }
  .cta.ghost .arrow { background: var(--bone); color: var(--navy); }

  /* hero indicators */
  .hero-indicators {
    position: absolute;
    bottom: 36px;
    left: 32px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.6);
  }
  .hero-progress {
    flex: 1;
    height: 1px;
    background: rgba(245,242,236,0.18);
    position: relative;
    max-width: 480px;
  }
  .hero-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: var(--gold);
    animation: bar 6s linear infinite;
  }
  @keyframes bar { from { width: 0; } to { width: 100%; } }

  .scroll-cue {
    display: flex; align-items: center; gap: 10px;
  }
  .scroll-cue .line {
    width: 32px; height: 1px;
    background: var(--gold);
    position: relative;
    overflow: hidden;
  }
  .scroll-cue .line::after {
    content: ""; position: absolute; inset: 0;
    background: var(--bone);
    transform: translateX(-100%);
    animation: slide 2.5s var(--ease) infinite;
  }
  @keyframes slide {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
  }

  /* ---------- MARQUEE GALLERY (running images) ---------- */
  .marquee {
    background: var(--navy);
    padding: 56px 0 56px;
    overflow: hidden;
    position: relative;
    border-top: 1px solid var(--line);
  }
  .marquee::before,
  .marquee::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
  }
  .marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy) 0%, transparent 100%);
  }
  .marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--navy) 0%, transparent 100%);
  }
  .marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 50s linear infinite;
  }
  .marquee:hover .marquee-track { animation-play-state: paused; }
  .marquee-card {
    position: relative;
    width: 380px;
    height: 260px;
    border-radius: var(--r-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    transition: transform .6s var(--ease);
  }
  .marquee-card::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7,24,42,0.78) 100%);
  }
  .marquee-card .tag {
    position: absolute;
    bottom: 18px; left: 20px; right: 20px;
    z-index: 2;
    color: var(--bone);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
  }
  .marquee-card .tag .t {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .marquee-card .tag .n {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
  }
  .marquee-card:hover { transform: translateY(-4px); }
  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  .marquee-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
    color: var(--bone);
  }
  .marquee-head h3 {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(28px, 3.5vw, 44px);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin: 12px 0 0;
    max-width: 22ch;
  }
  .marquee-head .hint {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .marquee-head .hint .arr {
    width: 38px; height: 1px; background: var(--gold); position: relative; overflow: hidden;
  }
  .marquee-head .hint .arr::after {
    content: ""; position: absolute; inset: 0;
    background: var(--bone);
    animation: slide 2.5s var(--ease) infinite;
  }

  /* ---------- TICKER ---------- */
  .ticker {
    background: var(--navy);
    color: var(--bone);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    padding: 22px 0;
  }
  .ticker-track {
    display: flex;
    gap: 64px;
    animation: ticker 40s linear infinite;
    width: max-content;
  }
  .ticker-item {
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 64px;
    white-space: nowrap;
  }
  .ticker-item em { color: var(--gold); font-style: italic; }
  .ticker-item::after {
    content: "✦";
    color: var(--gold);
    font-size: 12px;
  }
  @keyframes ticker { to { transform: translateX(-50%); } }

  /* ---------- STATS ---------- */
  .stats {
    background: var(--navy);
    color: var(--bone);
    padding: 110px 0 130px;
    position: relative;
    overflow: hidden;
  }
  .stats::after {
    content: "";
    position: absolute;
    inset: auto -200px -200px auto;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--gold) 10%, transparent) 0%, transparent 60%);
    pointer-events: none;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    border-top: 1px solid var(--line);
  }
  .stat {
    padding: 36px 24px 36px 0;
    border-right: 1px solid var(--line);
  }
  .stat:last-child { border-right: 0; }
  .stat-num {
    font-family: var(--serif);
    font-size: clamp(54px, 5vw, 78px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--bone);
  }
  .stat-num em { color: var(--gold); font-style: italic; }
  .stat-label {
    margin-top: 16px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.6);
    max-width: 22ch;
  }
  .stats-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
  }
  .stats h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    margin: 14px 0 0;
    max-width: 16ch;
  }

  /* ---------- ABOUT ---------- */
  .about {
    padding: 140px 0;
    background: var(--bone);
    position: relative;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--r-lg);
    overflow: hidden;
    background:
      linear-gradient(180deg, transparent 0%, rgba(7,24,42,0.25) 100%),
      url("https://images.unsplash.com/photo-1577416598669-ee9f5dd6e1ec?auto=format&fit=crop&w=1200&q=80") center/cover;
    box-shadow: var(--shadow-soft);
  }
  .about-visual .badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(245,242,236,0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245,242,236,0.25);
    border-radius: var(--r-md);
    padding: 18px 22px;
    color: var(--bone);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .about-visual .badge-text {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1.4;
  }
  .about-visual .badge-text strong {
    display: block;
    font-family: var(--serif);
    font-size: 24px;
    letter-spacing: -0.01em;
    text-transform: none;
    font-weight: 400;
    margin-top: 4px;
  }
  .about-visual .badge .seal {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: grid; place-items: center;
    font-family: var(--serif);
    font-style: italic;
    font-size: 20px;
    flex-shrink: 0;
  }

  .about h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.04;
    margin: 22px 0 28px;
    letter-spacing: -0.02em;
  }
  .about p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 18px;
    max-width: 56ch;
  }
  .about-list {
    list-style: none;
    margin: 36px 0 40px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
  }
  .about-list li {
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--line-dark);
  }
  .about-list li::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }
  .about-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    padding: 16px 24px;
    border-radius: 100px;
    border: 1px solid var(--navy);
    transition: all .4s var(--ease);
  }
  .about-cta:hover {
    background: var(--navy);
    color: var(--bone);
  }

  /* ---------- SERVICES ---------- */
  .services {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--bone);
    padding: 140px 0 150px;
    position: relative;
    overflow: hidden;
  }
  .services::before {
    content: "";
    position: absolute;
    top: -100px; left: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(20,63,62,0.45) 0%, transparent 60%);
    pointer-events: none;
  }
  .services-head {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
  }
  .services h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 1.02;
    margin: 18px 0 0;
    letter-spacing: -0.02em;
  }
  .services-lede {
    color: rgba(245,242,236,0.75);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 52ch;
  }
  .service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .service {
    background: rgba(245,242,236,0.04);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 32px 30px 36px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: transform .6s var(--ease), background .6s var(--ease), border-color .6s var(--ease);
    min-height: 360px;
    display: flex;
    flex-direction: column;
  }
  .service::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 220px; height: 220px;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--gold) 18%, transparent) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .6s var(--ease);
    pointer-events: none;
  }
  .service:hover {
    transform: translateY(-6px);
    background: rgba(245,242,236,0.07);
    border-color: color-mix(in srgb, var(--gold) 40%, transparent);
  }
  .service:hover::after { opacity: 1; }
  .service-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--gold) 40%, transparent);
    display: grid; place-items: center;
    color: var(--gold);
    margin-bottom: 28px;
    transition: transform .6s var(--ease);
  }
  .service:hover .service-icon { transform: rotate(-12deg); }
  .service-icon svg { width: 22px; height: 22px; }
  .service-num {
    position: absolute;
    top: 30px; right: 30px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: color-mix(in srgb, var(--gold) 50%, transparent);
  }
  .service h3 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
  }
  .service p {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(245,242,236,0.7);
    margin: 0 0 24px;
    flex: 1;
  }
  .service-more {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap .4s var(--ease);
  }
  .service:hover .service-more { gap: 16px; }
  .service-more svg { width: 14px; height: 14px; }

  /* ---------- GALLERY ---------- */
  .gallery {
    background: var(--bone);
    padding: 140px 0;
  }
  .gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }
  .gallery h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 80px);
    line-height: 1.02;
    margin: 16px 0 0;
    max-width: 14ch;
    letter-spacing: -0.02em;
  }
  .gallery-nav {
    display: flex;
    gap: 12px;
  }
  .gallery-nav button {
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid var(--line-dark);
    background: transparent;
    color: var(--navy);
    display: grid; place-items: center;
    transition: all .4s var(--ease);
  }
  .gallery-nav button:hover {
    background: var(--navy);
    color: var(--bone);
    border-color: var(--navy);
  }
  .gallery-nav svg { width: 16px; height: 16px; }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
  }
  .gal {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform .8s var(--ease);
  }
  .gal::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(7,24,42,0.7) 100%);
    opacity: 0.6;
    transition: opacity .5s var(--ease);
  }
  .gal::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(7,24,42,0.0);
    transition: background .5s var(--ease);
  }
  .gal-label {
    position: absolute;
    bottom: 20px;
    left: 22px;
    right: 22px;
    color: var(--bone);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
  }
  .gal-label .title {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    transform: translateY(8px);
    transition: transform .5s var(--ease);
  }
  .gal-label .meta {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.7;
    flex-shrink: 0;
  }
  .gal:hover { transform: scale(0.99); }
  .gal:hover .gal-label .title { transform: translateY(0); }
  .gal-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.6s var(--ease);
  }
  .gal:hover .gal-inner { transform: scale(1.08); }

  .gal-1 { grid-column: span 5; grid-row: span 2; }
  .gal-2 { grid-column: span 4; grid-row: span 1; }
  .gal-3 { grid-column: span 3; grid-row: span 2; }
  .gal-4 { grid-column: span 4; grid-row: span 1; }
  .gal-5 { grid-column: span 4; grid-row: span 2; }
  .gal-6 { grid-column: span 4; grid-row: span 1; }
  .gal-7 { grid-column: span 4; grid-row: span 1; }

  /* ---------- CONTACT ---------- */
  .contact {
    background: var(--navy);
    color: var(--bone);
    padding: 140px 0 0;
    overflow: hidden;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 100px;
  }
  .contact h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5.5vw, 84px);
    line-height: 1.02;
    margin: 18px 0 36px;
    letter-spacing: -0.02em;
  }
  .contact-info {
    display: grid;
    gap: 22px;
    margin-bottom: 36px;
  }
  .contact-line {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }
  .contact-line .lbl {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.5);
    width: 80px;
    flex-shrink: 0;
  }
  .contact-line .val {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--bone);
    letter-spacing: -0.01em;
  }

  .form {
    background: rgba(245,242,236,0.03);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 40px;
    backdrop-filter: blur(10px);
  }
  .form h3 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
  }
  .field {
    margin-bottom: 22px;
    position: relative;
  }
  .field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.55);
    margin-bottom: 10px;
  }
  .field input,
  .field textarea,
  .field select {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 0 14px;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--bone);
    transition: border-color .4s var(--ease);
    outline: none;
    resize: none;
  }
  .field select { appearance: none; cursor: pointer; }
  .field input:focus,
  .field textarea:focus,
  .field select:focus {
    border-bottom-color: var(--gold);
  }
  .field textarea { min-height: 90px; }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .form-submit {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
  }
  .form-note {
    font-size: 11px;
    letter-spacing: 0.06em;
    color: rgba(245,242,236,0.45);
    margin-top: 18px;
    text-align: center;
  }

  /* ---------- MAP ---------- */
  .map {
    position: relative;
    height: 520px;
    background: var(--petrol);
    border-top: 1px solid var(--line);
    overflow: hidden;
  }
  .map-canvas {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 40%, color-mix(in srgb, var(--gold) 8%, transparent) 0%, transparent 40%),
      radial-gradient(circle at 70% 60%, rgba(20,63,62,0.6) 0%, transparent 50%),
      linear-gradient(180deg, #0B2236 0%, #07182A 100%);
  }
  .map-canvas svg { width: 100%; height: 100%; }
  .map-overlay {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    background: rgba(7,24,42,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 32px 36px;
    max-width: 360px;
    color: var(--bone);
  }
  .map-overlay h4 {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 14px;
    letter-spacing: -0.01em;
  }
  .map-overlay p {
    font-size: 13px;
    color: rgba(245,242,236,0.7);
    line-height: 1.6;
    margin: 0 0 20px;
  }
  .map-ports {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .map-ports span {
    font-size: 11px;
    letter-spacing: 0.12em;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--gold-soft);
  }
  /* map nodes */
  .node {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--gold) 60%, transparent);
    animation: pulse 2.4s var(--ease) infinite;
  }
  .node::after {
    content: attr(data-port);
    position: absolute;
    left: 16px; top: -4px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245,242,236,0.7);
    white-space: nowrap;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--gold) 50%, transparent); }
    100% { box-shadow: 0 0 0 22px color-mix(in srgb, var(--gold) 0%, transparent); }
  }

  /* ---------- FOOTER ---------- */
  .footer {
    background: #050F1C;
    color: var(--bone);
    padding: 100px 0 32px;
    border-top: 1px solid var(--line);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--line);
  }
  .footer-brand h4 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.05;
    margin: 24px 0 18px;
    letter-spacing: -0.01em;
    max-width: 14ch;
  }
  .footer-brand p {
    color: rgba(245,242,236,0.6);
    font-size: 13px;
    line-height: 1.7;
    max-width: 38ch;
    margin: 0 0 28px;
  }
  .socials {
    display: flex;
    gap: 12px;
  }
  .socials a {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: grid; place-items: center;
    color: var(--bone);
    transition: all .4s var(--ease);
  }
  .socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
  }
  .socials svg { width: 16px; height: 16px; }

  .footer-col h5 {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin: 0 0 22px;
    font-weight: 500;
  }
  .footer-col ul {
    list-style: none;
    margin: 0; padding: 0;
    display: grid; gap: 12px;
  }
  .footer-col a {
    font-size: 14px;
    color: rgba(245,242,236,0.7);
    transition: color .3s, padding-left .3s;
  }
  .footer-col a:hover { color: var(--gold); padding-left: 6px; }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 12px;
    color: rgba(245,242,236,0.45);
    letter-spacing: 0.06em;
    flex-wrap: wrap;
    gap: 18px;
  }
  .footer-bottom .legal {
    display: flex; gap: 24px;
  }

  /* ---------- REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
  }
  .reveal.in {
    opacity: 1;
    transform: none;
  }

  /* ---------- RESPONSIVE ---------- */
  /* ---------- MOBILE MENU ---------- */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: rgba(7, 24, 42, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s var(--ease);
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu ul {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    gap: 4px;
  }
  .mobile-menu li a {
    display: block;
    color: var(--bone);
    font-family: var(--serif);
    font-size: 36px;
    line-height: 1.2;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    letter-spacing: -0.01em;
    transition: color .3s, padding-left .3s;
  }
  .mobile-menu li a:hover { color: var(--gold); padding-left: 12px; }
  .mobile-menu .mob-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 24px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .mobile-menu .close {
    position: absolute;
    top: 22px; right: 22px;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--bone);
    display: grid; place-items: center;
  }
  .mobile-menu .close svg { width: 18px; height: 18px; }

  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .burger {
      display: grid;
      place-items: center;
      width: 44px; height: 44px;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--bone);
    }
    .burger svg { width: 18px; height: 18px; }
    .nav-cta { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-visual { aspect-ratio: 4/3; max-height: 480px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat { border-right: 0; border-bottom: 1px solid var(--line); padding: 30px 0; }
    .stat:nth-child(odd) { padding-right: 24px; border-right: 1px solid var(--line); }
    .services-head { grid-template-columns: 1fr; gap: 30px; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid {
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 160px;
    }
    .gal-1 { grid-column: span 6; }
    .gal-2 { grid-column: span 3; }
    .gal-3 { grid-column: span 3; grid-row: span 1; }
    .gal-4 { grid-column: span 3; }
    .gal-5 { grid-column: span 3; grid-row: span 1; }
    .gal-6 { grid-column: span 3; }
    .gal-7 { grid-column: span 6; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .map-overlay { left: 32px; right: 32px; max-width: none; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-meta { display: none; }
  }
  @media (max-width: 1024px) {
    .marquee-card { width: 320px; height: 220px; }
    .marquee::before, .marquee::after { width: 80px; }
  }

  @media (max-width: 640px) {
    .container { padding: 0 22px; }
    .nav { padding: 16px 0; }
    .nav.scrolled { padding: 12px 0; }
    .logo-word { font-size: 12px; letter-spacing: 0.22em; }
    .logo-word small { font-size: 8px; }
    .logo-mark { width: 32px; height: 32px; }
    .hero { min-height: auto; height: auto; }
    .hero-inner { justify-content: flex-start; padding-top: 150px; padding-bottom: 130px; min-height: 100svh; }
    .hero-title { font-size: clamp(34px, 9vw, 56px); line-height: 1.05; margin-bottom: 22px; max-width: none; }
    .hero-row { flex-direction: column; align-items: flex-start; gap: 24px; }
    .hero-lede { font-size: 14px; }
    .hero-row .cta { padding: 15px 22px 15px 26px; font-size: 13px; }
    .hero-row > div { width: 100%; }
    .hero-row > div .cta { width: 100%; justify-content: center; }
    .hero-indicators { left: 22px; right: 22px; bottom: 22px; font-size: 10px; }
    .hero-progress { display: none; }
    .ticker-item { font-size: 16px; gap: 36px; }
    .ticker-track { gap: 36px; }
    .marquee { padding: 40px 0; }
    .marquee-card { width: 260px; height: 180px; }
    .marquee-card .tag .t { font-size: 17px; }
    .marquee-head { padding: 0 22px; margin-bottom: 26px; }
    .marquee-head h3 { font-size: 22px; }
    .marquee::before, .marquee::after { width: 40px; }
    .stats { padding: 80px 0 90px; }
    .stats h2 { font-size: 32px; }
    .stat-num { font-size: 48px; }
    .stat-label { font-size: 11px; }
    .about, .services, .gallery, .contact { padding-top: 80px; padding-bottom: 80px; }
    .about h2, .services h2, .gallery h2, .contact h2 { font-size: 36px; }
    .about p { font-size: 15px; }
    .service { min-height: 280px; padding: 26px 24px 28px; }
    .service h3 { font-size: 26px; }
    .service-grid { grid-template-columns: 1fr; gap: 14px; }
    .form { padding: 28px 22px; border-radius: var(--r-md); }
    .form h3 { font-size: 26px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer { padding: 70px 0 28px; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
    .footer-brand h4 { font-size: 28px; }
    .about-list { grid-template-columns: 1fr; }
    .map { height: 420px; }
    .map-overlay { padding: 22px; left: 22px; right: 22px; top: auto; bottom: 22px; transform: none; }
    .map-overlay h4 { font-size: 20px; }
    .map-overlay p { font-size: 12px; }
    .map-ports span { font-size: 10px; padding: 5px 10px; }
    .node::after { font-size: 8px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; font-size: 11px; }
    .gallery-head { margin-bottom: 36px; }
    .gallery-nav button { width: 44px; height: 44px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 12px; }
    .gal-1, .gal-2, .gal-3, .gal-4, .gal-5, .gal-6, .gal-7 { grid-column: span 1; grid-row: span 1; }
    .gal-label .title { font-size: 18px; }
    .contact-line { padding: 14px 0; gap: 12px; flex-wrap: wrap; }
    .contact-line .lbl { width: 60px; font-size: 10px; }
    .contact-line .val { font-size: 16px; }
    .mobile-menu li a { font-size: 30px; }
    .services-head { margin-bottom: 48px; }
    .services-lede { font-size: 15px; }
    .stats-head { gap: 24px; }
  }
  @media (max-width: 380px) {
    .hero-title { font-size: 38px; }
    .marquee-card { width: 220px; height: 160px; }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }