  /* ---------- TOKENS ---------- */
  :root {
    --ink:        #0B0F14;
    --ink-2:      #131A22;
    --steel:      #1B2733;
    --line:       rgba(11,15,20,.12);
    --line-dark:  rgba(255,255,255,.12);
    --paper:      #F4F1EA;
    --paper-2:    #EAE6DC;
    --mute:       #6B7280;
    --mute-dark:  rgba(244,241,234,.6);
    --blue:       #2E7BD6;   /* SynWash blue (saturated for screen) */
    --blue-2:     #4A90D9;   /* logo blue */
    --blue-deep:  #0E3C7A;
    --accent:     #F5C400;   /* hi-vis yellow for hazard nods */
  }
  *,*::before,*::after { box-sizing: border-box; }
  html, body { margin:0; padding:0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Archivo', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; cursor: pointer; }

  .display { font-family: 'Archivo', sans-serif; font-weight: 900; letter-spacing: -0.04em; line-height: 0.9; }
  .narrow  { font-family: 'Archivo Narrow', sans-serif; }
  .serif   { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
  .mono-label {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
  }

  .container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 32px; }
  @media (max-width: 720px) { .container { padding: 0 20px; } }

  /* ---------- TOP UTILITY BAR ---------- */
  .topbar {
    background: var(--ink); color: var(--paper);
    border-bottom: 1px solid var(--line-dark);
    font-size: 12px;
  }
  .topbar .row {
    display: flex; justify-content: space-between; align-items: center;
    height: 36px; gap: 24px;
  }
  .topbar a { opacity: 0.85; }
  .topbar a:hover { opacity: 1; }
  .topbar .left, .topbar .right { display: flex; gap: 20px; align-items: center; }
  .topbar .dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; box-shadow: 0 0 0 4px rgba(46,123,214,.18); }
  .topbar .hide-sm { display: inline; }
  @media (max-width: 720px) {
    .topbar .hide-sm { display: none; }
    .topbar .row { height: 32px; gap: 10px; }
  }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky; top: 0; z-index: 60;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transition: background .25s ease, border-color .25s ease;
  }
  .nav.scrolled { background: rgba(244,241,234,0.92); backdrop-filter: blur(10px); }
  .nav .row { display: flex; align-items: center; justify-content: space-between; height: 76px; }
  .brand { display:flex; align-items:center; gap: 10px; }
  .brand .logo-mark {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--blue); display: grid; place-items: center;
    box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--blue);
  }
  .brand .logo-mark svg { width: 26px; height: 26px; }
  .brand .word { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
  .brand .word b { color: var(--blue); }

  .nav ul { display: flex; gap: 36px; margin: 0; padding: 0; list-style: none; }
  .nav ul a {
    font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
    position: relative; padding: 6px 0;
  }
  .nav ul a::after {
    content:''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px; background: var(--blue);
    transition: width .25s ease;
  }
  .nav ul a:hover::after { width: 100%; }
  .nav .cta {
    background: var(--ink); color: var(--paper);
    padding: 12px 18px; font-size: 13px; font-weight: 700;
    letter-spacing: 0.02em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background .2s;
  }
  .nav .cta:hover { background: var(--blue); }
  .nav .cta .arrow { transition: transform .2s; }
  .nav .cta:hover .arrow { transform: translateX(4px); }
  .nav .burger {
    display: none; width: 44px; height: 44px;
    border: 1px solid var(--line); background: transparent;
  }
  .nav .burger span {
    display: block; width: 18px; height: 1.5px;
    background: var(--ink); margin: 4px auto;
  }
  @media (max-width: 960px) {
    .nav ul, .nav .cta { display: none; }
    .nav .burger { display: block; }
    .mobile-nav.open { display: flex; }
  }
  .mobile-nav {
    display: none; flex-direction: column;
    position: fixed; inset: 0; top: 0; z-index: 70;
    background: var(--ink); color: var(--paper);
    padding: 32px 24px; gap: 16px;
  }
  .mobile-nav .close { align-self: flex-end; background: none; border: none; color: var(--paper); font-size: 24px; }
  .mobile-nav a { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; padding: 8px 0; border-bottom: 1px solid var(--line-dark); }

  /* ---------- HERO ---------- */
  .hero {
    position: relative; overflow: hidden;
    padding: 32px 0 24px;
    background: var(--paper);
    min-height: calc(100vh - 76px - 36px); /* viewport minus nav + topbar */
    display: flex; flex-direction: column;
  }
  .hero .container { flex: 1; display: flex; flex-direction: column; }
  .hero .grid {
    display: grid; grid-template-columns: 1.15fr 0.85fr;
    gap: 40px; align-items: stretch;
    flex: 1; min-height: 0;
  }
  .hero .left { display: flex; flex-direction: column; justify-content: center; min-height: 0; }
  @media (max-width: 960px) {
    .hero { min-height: 0; padding: 32px 0 48px; }
    .hero .grid { grid-template-columns: 1fr; gap: 28px; }
  }

  .hero .meta {
    display: flex; gap: 18px; align-items: center;
    margin-bottom: 20px; color: var(--mute);
  }
  .hero .meta .pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; background: var(--ink); color: var(--paper);
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  }
  .hero .meta .pill .dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 1.6s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1 } 50% { opacity: .35 } }

  .hero h1 {
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: clamp(48px, 7.2vw, 112px);
    line-height: 0.92; letter-spacing: -0.045em;
    margin: 0;
  }
  .hero h1 .stroke {
    -webkit-text-stroke: 2px var(--ink); color: transparent;
    font-style: normal;
  }
  .hero h1 .accent { color: var(--blue); }
  .hero h1 em.serif { display: inline-block; transform: translateY(-0.04em); padding-right: 0.05em; }

  .hero .lede {
    max-width: 480px; font-size: 16px; color: var(--ink);
    margin: 24px 0 22px; line-height: 1.5;
  }
  .hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn-primary {
    background: var(--blue); color: white;
    padding: 16px 24px; font-size: 14px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 12px;
    transition: background .2s, transform .2s;
  }
  .btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); }
  .btn-ghost {
    border: 1.5px solid var(--ink); padding: 14.5px 22px;
    font-size: 14px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background .2s, color .2s;
  }
  .btn-ghost:hover { background: var(--ink); color: var(--paper); }

  /* Hero image area */
  .hero .right {
    position: relative;
    aspect-ratio: auto;
    background: var(--ink);
    overflow: hidden;
    min-height: 380px;
  }
  .hero .right .photo {
    position: absolute; inset: 0;
    background: url('../images/trailer.jpg') center/cover no-repeat;
    filter: grayscale(0.15) contrast(1.05);
  }
  .hero .right::after {
    content:''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,15,20,0) 50%, rgba(11,15,20,.55));
  }
  .hero .right .badge {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    color: var(--paper); z-index: 2;
    display: flex; justify-content: space-between; align-items: flex-end; gap: 18px;
  }
  .hero .right .badge .big {
    font-size: 56px; font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  }
  .hero .right .corner {
    position: absolute; top: 16px; right: 16px;
    background: var(--accent); color: var(--ink);
    padding: 8px 12px; font-size: 11px; font-weight: 800;
    letter-spacing: 0.15em; text-transform: uppercase; z-index: 2;
  }

  /* Hero stat strip */
  .stat-strip {
    margin-top: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .stat-strip .cell {
    padding: 18px 20px; border-right: 1px solid var(--line);
  }
  .stat-strip .cell:last-child { border-right: none; }
  .stat-strip .num { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
  .stat-strip .num small { font-size: 16px; color: var(--blue); margin-left: 4px; font-weight: 700; }
  .stat-strip .label { margin-top: 6px; color: var(--mute); font-size: 12px; letter-spacing: 0.02em; }
  @media (max-width: 720px) {
    .stat-strip { grid-template-columns: repeat(2, 1fr); }
    .stat-strip .cell:nth-child(2) { border-right: none; }
    .stat-strip .cell:nth-child(1), .stat-strip .cell:nth-child(2) { border-bottom: 1px solid var(--line); }
  }

  /* ---------- MARQUEE ---------- */
  .marquee {
    background: var(--ink); color: var(--paper);
    padding: 22px 0; overflow: hidden;
    border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  }
  .marquee .track {
    display: flex; gap: 56px; white-space: nowrap;
    animation: scroll 30s linear infinite;
    font-size: 32px; font-weight: 800; letter-spacing: -0.02em;
  }
  .marquee .dot { color: var(--blue); }
  @keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* ---------- SECTION SHELL ---------- */
  section { padding: 120px 0; position: relative; }
  @media (max-width: 720px) { section { padding: 80px 0; } }
  .section-head {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 32px;
    align-items: end; margin-bottom: 64px;
  }
  @media (max-width: 800px) { .section-head { grid-template-columns: 1fr; } }
  .section-head .eyebrow { display: flex; align-items: center; gap: 10px; color: var(--mute); }
  .section-head .eyebrow .num {
    font-family: 'Archivo Narrow', sans-serif; font-weight: 700;
    font-size: 13px; color: var(--blue);
  }
  .section-head h2 {
    margin: 18px 0 0;
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: clamp(40px, 5.6vw, 88px); line-height: 0.92; letter-spacing: -0.04em;
  }
  .section-head .meta {
    color: var(--mute); font-size: 17px; line-height: 1.5; max-width: 480px;
  }

  /* ---------- SERVICES ---------- */
  #services { background: var(--paper); }
  .services-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .service {
    position: relative; overflow: hidden;
    background: var(--ink); color: var(--paper);
    aspect-ratio: 3/4;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 28px 26px;
    cursor: default;
    isolation: isolate;
  }
  .service .bg {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
    filter: grayscale(.3) contrast(1.1) brightness(.55);
    transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s;
  }
  .service:hover .bg { transform: scale(1.08); filter: grayscale(0) contrast(1.15) brightness(.65); }
  .service::after {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(11,15,20,.35) 0%, rgba(11,15,20,.55) 50%, rgba(11,15,20,.92) 100%);
    transition: background .35s;
  }
  .service:hover::after {
    background: linear-gradient(180deg, rgba(11,15,20,.45) 0%, rgba(46,123,214,.5) 60%, rgba(46,123,214,.92) 100%);
  }
  .service .top { display: flex; justify-content: space-between; align-items: flex-start; }
  .service .num {
    font-family: 'Archivo Narrow', sans-serif;
    color: var(--paper); font-size: 13px; font-weight: 700; letter-spacing: 0.16em;
    opacity: .8;
  }
  .service .icon {
    width: 44px; height: 44px;
    display: grid; place-items: center; color: var(--paper);
    border: 1px solid rgba(255,255,255,.4);
    transition: background .3s, border-color .3s, transform .35s;
  }
  .service:hover .icon { background: var(--paper); color: var(--ink); border-color: var(--paper); transform: rotate(-3deg); }
  .service h3 {
    font-size: 28px; font-weight: 800; letter-spacing: -0.025em;
    line-height: 1.05; margin: 0 0 10px;
    color: var(--paper);
  }
  .service p { color: rgba(244,241,234,.78); margin: 0; font-size: 14px; line-height: 1.5; }
  @media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service { aspect-ratio: 4/5; }
  }
  @media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service { aspect-ratio: 16/11; }
  }

  /* ---------- HIGHLIGHT BAND ---------- */
  .band {
    background: var(--ink); color: var(--paper);
    padding: 100px 0;
  }
  .band .grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  @media (max-width: 800px) { .band .grid { grid-template-columns: 1fr; gap: 40px; } }
  .band h2 {
    font-size: clamp(40px, 5vw, 80px); font-weight: 900;
    letter-spacing: -0.04em; line-height: 0.95; margin: 0;
  }
  .band h2 em { color: var(--blue); font-style: normal; }
  .band .list { list-style: none; padding: 0; margin: 0; }
  .band .list li {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 18px 0; border-bottom: 1px solid var(--line-dark);
  }
  .band .list li:last-child { border-bottom: none; }
  .band .list .key {
    color: var(--blue); font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
    min-width: 56px;
  }
  .band .list .val { font-size: 18px; }

  /* ---------- WORK ---------- */
  #work { background: var(--paper-2); }
  .work-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .work-item {
    background: var(--paper);
    cursor: pointer;
    display: flex; flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .work-item:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11,15,20,.12); }
  .work-item .thumb {
    position: relative; overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--steel);
  }
  .work-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.2,.6,.2,1), filter .3s;
    filter: grayscale(.1) contrast(1.05);
  }
  .work-item:hover img { transform: scale(1.06); filter: grayscale(0) contrast(1.08); }
  .work-item .index {
    position: absolute; top: 14px; left: 16px;
    font-family: 'Archivo Narrow', sans-serif; font-size: 12px;
    font-weight: 700; letter-spacing: 0.14em; color: white;
    background: rgba(11,15,20,.55);
    padding: 4px 10px;
    backdrop-filter: blur(4px);
  }
  .work-item .hover-plus {
    position: absolute; inset: 0;
    background: rgba(46,123,214,.0);
    display: grid; place-items: center;
    opacity: 0; transition: opacity .25s, background .25s;
  }
  .work-item:hover .hover-plus { opacity: 1; background: rgba(46,123,214,.78); }
  .work-item .hover-plus svg { color: white; transform: scale(.85); transition: transform .25s; }
  .work-item:hover .hover-plus svg { transform: scale(1); }
  .work-item .caption {
    padding: 24px 22px 28px;
    border-top: 1px solid var(--line);
    text-align: center;
  }
  .work-item .caption .title {
    font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
    color: var(--ink);
  }
  .work-item .caption .tag {
    margin-top: 6px;
    font-family: 'Instrument Serif', serif; font-style: italic;
    font-size: 16px; color: var(--mute);
  }
  @media (max-width: 900px) {
    .work-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }
  @media (max-width: 560px) {
    .work-grid { grid-template-columns: 1fr; }
  }

  /* ---------- TIMELINE ---------- */
  .timeline {
    margin-top: 40px; border-top: 1px solid var(--line);
    position: relative;
  }
  .t-row {
    display: grid; grid-template-columns: 180px 1fr 1.2fr;
    align-items: center; gap: 32px;
    padding: 28px 28px 28px 32px;
    border-bottom: 1px solid var(--line); position: relative;
    cursor: default; transition: padding-left .3s ease, background .3s ease;
  }
  .t-row:hover { padding-left: 44px; background: rgba(46,123,214,.04); }
  .t-row::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--blue); opacity: 0;
    transition: opacity .3s;
  }
  .t-row:hover::before { opacity: 1; }
  .t-row .year {
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 700; font-size: 18px;
    color: var(--blue); letter-spacing: 0.04em;
  }
  .t-row .title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  }
  .t-row .desc { color: var(--mute); font-size: 16px; max-width: 380px; }
  .t-row .arrow { justify-self: end; color: var(--mute); transition: color .2s, transform .2s; }
  .t-row:hover .arrow { color: var(--blue); transform: translateX(6px); }
  @media (max-width: 800px) {
    .t-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 20px; }
    .t-row:hover { padding-left: 28px; }
    .t-row .arrow { display: none; }
  }

  /* CTA card inside history */
  .t-cta {
    display: grid; grid-template-columns: 180px 1fr 56px;
    gap: 32px; align-items: center;
    background: var(--ink); color: var(--paper);
    margin-top: 12px;
    padding: 36px 32px;
  }
  .t-cta .year { color: var(--blue); font-family:'Archivo Narrow'; font-weight: 700; letter-spacing: 0.06em; }
  .t-cta .title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
  .t-cta .title em { color: var(--blue); font-style: normal; }
  .t-cta .arrow { justify-self: end; }
  @media (max-width: 800px) {
    .t-cta { grid-template-columns: 1fr; gap: 14px; padding: 28px 20px; }
  }

  /* ---------- INSTALLATIONS (reuses team grid styles) ---------- */
  #installations { background: var(--ink); color: var(--paper); }
  #installations .section-head h2 { color: var(--paper); }
  #installations .section-head .meta { color: var(--mute-dark); }
  #installations .section-head .eyebrow { color: var(--mute-dark); }
  .team-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border-top: 1px solid var(--line-dark);
  }
  .member {
    padding: 32px 26px; border-right: 1px solid var(--line-dark);
    position: relative; transition: background .25s;
  }
  .member:last-child { border-right: none; }
  .member:hover { background: var(--ink-2); }
  .member .avatar {
    width: 100%; aspect-ratio: 4/5;
    background: var(--steel);
    position: relative; overflow: hidden; margin-bottom: 22px;
  }
  .member .avatar .initial {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: clamp(72px, 9vw, 140px); color: var(--blue);
    letter-spacing: -0.05em; line-height: 1;
  }
  .member .avatar img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
    filter: grayscale(.2) contrast(1.05) brightness(.85);
    transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s;
  }
  .member:hover .avatar img { transform: scale(1.08); filter: grayscale(0) contrast(1.1) brightness(1); }
  .member p.role { color: var(--mute-dark); font-size: 14px; margin: 0; line-height: 1.5; }
  .member .num { font-family:'Archivo Narrow'; font-size: 12px; color: var(--blue); letter-spacing: 0.18em; }
  .member h4 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 6px 0 4px; }
  .member .role { color: var(--mute-dark); font-size: 14px; margin-bottom: 14px; }
  .member .socials { display: flex; gap: 8px; }
  .member .socials a {
    width: 36px; height: 36px; border: 1px solid var(--line-dark);
    display: grid; place-items: center; transition: background .2s, border-color .2s;
  }
  .member .socials a:hover { background: var(--blue); border-color: var(--blue); }
  @media (max-width: 900px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .member:nth-child(2) { border-right: none; }
    .member:nth-child(1), .member:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  }
  @media (max-width: 520px) {
    .team-grid { grid-template-columns: 1fr; }
    .member { border-right: none; border-bottom: 1px solid var(--line-dark); }
    .member:last-child { border-bottom: none; }
  }

  /* ---------- CLIENTS ---------- */
  #clients { background: var(--paper); padding: 80px 0; overflow: hidden; }
  #clients .label { color: var(--mute); }
  #clients h3 { font-size: 18px; font-weight: 700; margin: 8px 0 40px; }

  .clients-marquee {
    position: relative;
    /* fade edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .clients-track {
    display: flex; gap: 64px; align-items: center;
    width: max-content;
    animation: clientsScroll 36s linear infinite;
  }
  .clients-marquee:hover .clients-track { animation-play-state: paused; }
  .clients-track a {
    flex: 0 0 auto;
    display: grid; place-items: center;
    height: 90px; min-width: 160px;
    padding: 0 12px;
  }
  .clients-track img {
    max-height: 60px; max-width: 160px;
    object-fit: contain;
    filter: grayscale(1) opacity(.55);
    transition: filter .35s, transform .35s;
  }
  .clients-track a:hover img { filter: grayscale(0) opacity(1); transform: scale(1.08); }
  @keyframes clientsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }
  @media (max-width: 600px) {
    .clients-track { gap: 40px; animation-duration: 28s; }
    .clients-track a { height: 70px; min-width: 120px; }
    .clients-track img { max-height: 44px; max-width: 120px; }
  }

  /* ---------- CONTACT ---------- */
  #contact { background: var(--paper-2); padding: 120px 0 0; }
  #contact .top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; }
  @media (max-width: 900px) { #contact .top { grid-template-columns: 1fr; gap: 40px; } }
  #contact h2 {
    font-size: clamp(48px, 7vw, 120px); font-weight: 900;
    letter-spacing: -0.045em; line-height: 0.9; margin: 0;
  }
  #contact h2 em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--blue); font-weight: 400; }

  .contact-info { display: flex; flex-direction: column; gap: 28px; }
  .info-row { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
  .info-row .icon { width: 44px; height: 44px; flex-shrink: 0; border: 1px solid var(--ink); display: grid; place-items: center; }
  .info-row .icon svg { width: 20px; height: 20px; }
  .info-row .label { font-family:'Archivo Narrow'; font-size: 12px; color: var(--mute); letter-spacing: 0.16em; text-transform: uppercase; }
  .info-row .val { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
  .info-row .val a:hover { color: var(--blue); }

  .form {
    background: var(--ink); color: var(--paper);
    padding: 40px;
  }
  .form h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin: 0 0 24px; }
  .form .field { margin-bottom: 18px; }
  .form label {
    display: block; font-family:'Archivo Narrow'; font-size: 12px;
    color: var(--mute-dark); letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 8px;
  }
  .form input, .form textarea, .form select {
    width: 100%; background: transparent;
    border: none; border-bottom: 1px solid var(--line-dark);
    padding: 10px 0; color: var(--paper); font-size: 17px;
    font-family: 'Archivo', sans-serif; outline: none;
    transition: border-color .2s;
  }
  .form input:focus, .form textarea:focus, .form select:focus { border-bottom-color: var(--blue); }
  .form textarea { resize: vertical; min-height: 110px; }
  .form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  @media (max-width: 600px) { .form { padding: 28px 20px; } .form .row2 { grid-template-columns: 1fr; } }
  .form button {
    margin-top: 16px; width: 100%; padding: 18px;
    background: var(--blue); color: white; border: none;
    font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
    display: inline-flex; justify-content: center; align-items: center; gap: 12px;
    transition: background .2s;
  }
  .form button:hover { background: var(--blue-deep); }
  .form .status {
    margin-top: 14px; color: var(--blue); font-size: 14px;
    opacity: 0; transition: opacity .3s;
  }
  .form .status.show { opacity: 1; }

  /* Chat card (replaces booking form) */
  .chat-card { display: flex; flex-direction: column; justify-content: center; }
  .chat-card .chat-lede {
    color: var(--mute-dark); font-size: 17px; line-height: 1.6;
    margin: 0 0 30px; max-width: 420px;
  }
  .chat-btn {
    align-self: flex-start;
    background: var(--blue); color: #fff;
    padding: 18px 26px; font-size: 15px; font-weight: 700;
    letter-spacing: 0.04em; text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 12px;
    transition: background .2s, transform .25s cubic-bezier(.2,.7,.2,1);
  }
  .chat-btn:hover { background: var(--blue-deep); transform: translateY(-2px); }
  .chat-btn .arr { transition: transform .2s; }
  .chat-btn:hover .arr { transform: translateX(4px); }
  @media (max-width: 600px) { .chat-btn { align-self: stretch; justify-content: center; } }

  /* Map block */
  .map-block {
    height: 460px; background: var(--steel);
    position: relative; overflow: hidden;
    border-top: 1px solid var(--line);
  }
  .map-block iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.5) contrast(0.95); }
  .map-overlay {
    position: absolute; bottom: 24px; left: 24px;
    background: var(--paper); padding: 18px 22px;
    max-width: 320px; box-shadow: 0 12px 32px rgba(0,0,0,.2);
    pointer-events: none;
  }
  .map-overlay .pin { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
  .map-overlay .addr { margin-top: 8px; font-size: 16px; font-weight: 600; line-height: 1.4; }

  /* ---------- BOOKING (Cómo reservar) ---------- */
  #booking { background: var(--paper); }
  .booking-steps {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 24px;
  }
  .step {
    position: relative;
    background: var(--paper-2);
    padding: 36px 30px 30px;
    border-top: 3px solid var(--blue);
    transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
  }
  .step:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(11,15,20,.08); }
  .step .step-num {
    position: absolute; top: -32px; left: 24px;
    width: 56px; height: 56px; background: var(--blue); color: white;
    display: grid; place-items: center;
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: 26px; letter-spacing: -0.02em;
    box-shadow: 0 8px 20px rgba(46,123,214,.4);
  }
  .step h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin: 12px 0 10px; }
  .step p { color: var(--mute); margin: 0; line-height: 1.55; font-size: 15px; }
  .booking-cta {
    margin-top: 56px; text-align: center;
  }
  @media (max-width: 800px) {
    .booking-steps { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ---------- REVIEWS ---------- */
  #reviews { background: var(--paper-2); }
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 22px; margin-top: 24px;
  }
  .review {
    background: var(--paper); padding: 32px 30px;
    border: 1px solid var(--line);
    display: flex; flex-direction: column; gap: 18px;
    transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
  }
  .review:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 16px 40px rgba(11,15,20,.08); }
  .review .stars { display: flex; gap: 4px; color: var(--accent); }
  .review .stars svg { width: 18px; height: 18px; }
  .review .quote {
    font-family: 'Archivo', sans-serif; font-weight: 500;
    font-size: 18px; line-height: 1.5; letter-spacing: -0.01em;
    color: var(--ink); margin: 0;
    position: relative;
  }
  .review .quote::before {
    content: '"';
    font-family: 'Instrument Serif', serif;
    font-size: 64px; color: var(--blue);
    position: absolute; top: -32px; left: -8px;
    line-height: 1;
  }
  .review .author {
    display: flex; align-items: center; gap: 12px;
    margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line);
  }
  .review .avatar-mini {
    width: 40px; height: 40px;
    background: var(--ink); color: var(--blue);
    display: grid; place-items: center;
    font-family: 'Archivo', sans-serif; font-weight: 900;
    font-size: 18px; letter-spacing: -0.02em;
    border-radius: 50%;
  }
  .review .author-info .name { font-weight: 700; font-size: 14px; }
  .review .author-info .role { color: var(--mute); font-size: 12px; }
  .reviews-cta {
    margin-top: 40px; text-align: center;
  }
  .reviews-cta a {
    display: inline-flex; align-items: center; gap: 10px;
    color: var(--blue); font-weight: 700; font-size: 14px;
    letter-spacing: 0.04em; text-transform: uppercase;
    border-bottom: 1.5px solid var(--blue); padding-bottom: 4px;
    transition: gap .2s;
  }
  .reviews-cta a:hover { gap: 16px; }
  @media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
  }

  /* ---------- SEO LOCAL ---------- */
  #seo-local {
    background: var(--ink); color: var(--paper);
    padding: 80px 0;
  }
  #seo-local .grid {
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start;
  }
  #seo-local h2 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900; letter-spacing: -0.04em; line-height: 0.95;
    margin: 12px 0 0;
  }
  #seo-local h2 em { color: var(--blue); font-style: normal; }
  #seo-local p {
    color: var(--mute-dark); font-size: 16px; line-height: 1.7;
    max-width: 720px; margin: 0;
  }
  #seo-local .tags {
    margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px;
  }
  #seo-local .tag {
    border: 1px solid var(--line-dark);
    padding: 6px 12px; font-size: 12px;
    font-family: 'Archivo Narrow', sans-serif;
    letter-spacing: 0.04em;
    color: var(--paper);
  }
  @media (max-width: 800px) {
    #seo-local .grid { grid-template-columns: 1fr; gap: 24px; }
  }

  /* ---------- FOOTER (improved) ---------- */
  .footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px; margin: 56px 0 56px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line-dark);
  }
  .footer-grid h5 {
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--blue); margin: 0 0 14px;
  }
  .footer-grid p, .footer-grid a {
    color: var(--mute-dark); font-size: 14px; line-height: 1.7;
    display: block;
  }
  .footer-grid a:hover { color: var(--blue); }
  .footer-grid .intro {
    color: var(--mute-dark); font-size: 14px; line-height: 1.6;
    max-width: 360px; margin-top: 12px;
  }
  @media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  @media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
  }

  /* ---------- BOOKING (Cómo reservar) END ---------- */

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--ink); color: var(--paper);
    padding: 80px 0 30px;
  }
  footer .word-mark {
    font-size: clamp(80px, 16vw, 280px);
    font-weight: 900; letter-spacing: -0.05em;
    line-height: 0.85; margin: 24px 0 40px;
    padding-bottom: 0.16em;
  }
  footer .word-mark em { color: var(--blue); font-style: normal; }
  footer .row-end {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 30px; border-top: 1px solid var(--line-dark);
    color: var(--mute-dark); font-size: 13px; flex-wrap: wrap; gap: 16px;
  }
  footer .row-end a:hover { color: var(--blue); }
  footer .socials { display: flex; gap: 8px; }
  footer .socials a {
    width: 36px; height: 36px; border: 1px solid var(--line-dark);
    display: grid; place-items: center;
    transition: background .2s, border-color .2s;
  }
  footer .socials a:hover { background: var(--blue); border-color: var(--blue); }
  footer .links { display: flex; gap: 24px; }

  /* ---------- LIGHTBOX ---------- */
  .lightbox {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(11,15,20,.92);
    display: none; align-items: center; justify-content: center;
    padding: 40px 20px;
    opacity: 0; transition: opacity .25s;
  }
  .lightbox.open { display: flex; opacity: 1; }
  .lightbox .card {
    background: var(--paper); max-width: 900px; width: 100%;
    max-height: 90vh; overflow: auto; position: relative;
  }
  .lightbox .card img { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; }
  .lightbox .card .body { padding: 32px; }
  .lightbox .card h3 { font-size: 36px; font-weight: 900; letter-spacing: -0.03em; margin: 0 0 6px; }
  .lightbox .card .tag { color: var(--blue); font-family:'Archivo Narrow'; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
  .lightbox .card p { color: var(--mute); margin-top: 16px; font-size: 16px; }
  .lightbox .close {
    position: absolute; top: 12px; right: 12px;
    width: 44px; height: 44px; background: var(--ink); color: var(--paper);
    border: none; font-size: 20px; cursor: pointer;
  }

  /* ========================================================
     ANIMATIONS & POLISH
     ======================================================== */

  /* --- Scroll progress bar --- */
  .scroll-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 2px;
    background: transparent; z-index: 100; pointer-events: none;
  }
  .scroll-progress .bar {
    height: 100%; width: 0%; background: var(--blue);
    transform-origin: left;
    box-shadow: 0 0 8px rgba(46,123,214,.6);
    transition: width 0.08s linear;
  }

  /* --- Custom cursor (desktop only) --- */
  @media (hover: hover) and (pointer: fine) {
    .cursor-dot, .cursor-ring {
      position: fixed; top: 0; left: 0; pointer-events: none;
      z-index: 9999; border-radius: 50%;
      mix-blend-mode: difference;
      will-change: transform;
    }
    .cursor-dot {
      width: 6px; height: 6px; background: white;
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s, opacity .2s;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,.6);
      transform: translate(-50%, -50%);
      transition: width .3s cubic-bezier(.2,.7,.2,1), height .3s cubic-bezier(.2,.7,.2,1), border-color .25s, opacity .2s;
    }
    .cursor-ring.hover {
      width: 70px; height: 70px;
      border-color: var(--blue);
      background: rgba(46,123,214,.08);
    }
    .cursor-dot.hover { width: 0; height: 0; }
    body.cursor-on, body.cursor-on * { cursor: none !important; }
  }

  /* --- Reveal-on-scroll primitives --- */
  [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
    will-change: transform, opacity;
  }
  [data-reveal="left"]  { transform: translate3d(-32px, 0, 0); }
  [data-reveal="right"] { transform: translate3d(32px, 0, 0); }
  [data-reveal="scale"] { transform: scale(0.94); }
  [data-reveal="fade"]  { transform: none; }
  [data-reveal].in {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  /* Staggered delays */
  [data-stagger="1"]  { transition-delay: 0.06s; }
  [data-stagger="2"]  { transition-delay: 0.12s; }
  [data-stagger="3"]  { transition-delay: 0.18s; }
  [data-stagger="4"]  { transition-delay: 0.24s; }
  [data-stagger="5"]  { transition-delay: 0.30s; }
  [data-stagger="6"]  { transition-delay: 0.36s; }
  [data-stagger="7"]  { transition-delay: 0.42s; }
  [data-stagger="8"]  { transition-delay: 0.48s; }

  /* --- Hero entrance (immediate on load) --- */
  .hero h1 .line {
    display: block; overflow: hidden; padding-bottom: 0.04em;
  }
  .hero h1 .line > span {
    display: inline-block;
    transform: translate3d(0, 110%, 0);
    transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
  }
  .hero.loaded h1 .line > span { transform: translate3d(0, 0, 0); }
  .hero h1 .line:nth-child(1) > span { transition-delay: .15s; }
  .hero h1 .line:nth-child(2) > span { transition-delay: .30s; }
  .hero h1 .line:nth-child(3) > span { transition-delay: .45s; }

  .hero .meta, .hero .lede, .hero .cta-row {
    opacity: 0; transform: translate3d(0, 16px, 0);
    transition: opacity .9s ease-out, transform .9s cubic-bezier(.2,.7,.2,1);
  }
  .hero.loaded .meta  { opacity: 1; transform: none; transition-delay: 0.05s; }
  .hero.loaded .lede  { opacity: 1; transform: none; transition-delay: 0.65s; }
  .hero.loaded .cta-row { opacity: 1; transform: none; transition-delay: 0.78s; }

  /* Hero image entrance */
  .hero .right {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transition: opacity .2s ease-out, clip-path 1.2s cubic-bezier(.7,0,.2,1);
  }
  .hero.loaded .right {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transition-delay: .25s;
  }
  /* Subtle Ken Burns */
  .hero .right .photo {
    animation: kenBurns 18s ease-in-out infinite alternate;
  }
  @keyframes kenBurns {
    0%   { transform: scale(1)    translate(0%, 0%); }
    100% { transform: scale(1.08) translate(-1.5%, -1%); }
  }

  /* Floating bg orb in hero (very subtle) */
  .hero::before {
    content: ''; position: absolute;
    top: -20%; right: -10%;
    width: 50vw; height: 50vw; max-width: 700px; max-height: 700px;
    background: radial-gradient(circle at center, rgba(46,123,214,.22), transparent 65%);
    pointer-events: none; z-index: 0;
    animation: drift 14s ease-in-out infinite alternate;
    filter: blur(20px);
  }
  .hero .container { position: relative; z-index: 1; }
  @keyframes drift {
    0%   { transform: translate(0, 0) scale(1); opacity: .7; }
    100% { transform: translate(-3%, 4%) scale(1.1); opacity: 1; }
  }

  /* Scroll hint at bottom of hero */
  .scroll-hint {
    display: flex; align-items: center; gap: 10px;
    margin-top: 60px;
    font-family: 'Archivo Narrow', sans-serif;
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--mute);
  }
  .scroll-hint .line-track {
    width: 60px; height: 1px; background: var(--mute); position: relative; overflow: hidden;
  }
  .scroll-hint .line-track::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%; background: var(--blue);
    animation: trackSlide 2.2s cubic-bezier(.6,.05,.4,1) infinite;
  }
  @keyframes trackSlide {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
  }

  /* --- Stat counter --- */
  .stat-strip .num { display: inline-flex; align-items: baseline; }

  /* --- Service hover --- */
  .service { overflow: hidden; }

  /* --- Magnetic / arrow CTA enhancement --- */
  .btn-primary, .btn-ghost, .nav .cta {
    position: relative; overflow: hidden;
    transition: background .25s, color .25s, transform .35s cubic-bezier(.2,.7,.2,1);
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: var(--blue-deep);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.6,0,.2,1);
    z-index: 0;
  }
  .btn-primary:hover::before { transform: translateY(0); }
  .btn-primary > * { position: relative; z-index: 1; }

  .btn-ghost::before {
    content: ''; position: absolute; inset: 0;
    background: var(--ink);
    transform: scaleX(0); transform-origin: right;
    transition: transform .4s cubic-bezier(.6,0,.2,1);
    z-index: 0;
  }
  .btn-ghost:hover::before { transform: scaleX(1); transform-origin: left; }
  .btn-ghost > * { position: relative; z-index: 1; }

  /* --- Word-mark footer reveal --- */
  footer .word-mark {
    overflow: hidden;
  }
  footer .word-mark .wm-inner {
    display: block;
    transform: translate3d(0, 105%, 0);
    transition: transform 1.4s cubic-bezier(.2,.7,.2,1);
  }
  footer .word-mark.in .wm-inner { transform: translate3d(0, 0, 0); }

  /* --- Marquee pause on hover --- */
  .marquee:hover .track { animation-play-state: paused; }

  /* --- Timeline progressive bar --- */
  .timeline { position: relative; }
  .timeline::before {
    content:''; position: absolute; left: 0; top: 0; width: 4px;
    height: 0; background: var(--blue);
    transition: height 1.6s cubic-bezier(.2,.7,.2,1);
  }
  .timeline.in::before { height: 100%; }

  /* --- Image reveal mask for work --- */
  .work-item .thumb { position: relative; }
  .work-item .thumb::after {
    content: ''; position: absolute; inset: 0;
    background: var(--ink);
    transform: scaleY(1); transform-origin: top;
    transition: transform 1.1s cubic-bezier(.7,0,.2,1);
    z-index: 1; pointer-events: none;
  }
  .work-item.in .thumb::after { transform: scaleY(0); transform-origin: bottom; }
  .work-item .thumb img { transform-origin: center; }

  /* --- Team avatar reveal --- */
  .member .avatar {
    position: relative; overflow: hidden;
  }
  .member .avatar::before {
    content: ''; position: absolute; inset: 0;
    background: var(--ink-2); z-index: 1;
    transform: scaleX(1); transform-origin: right;
    transition: transform 1s cubic-bezier(.7,0,.2,1);
  }
  .member.in .avatar::before { transform: scaleX(0); transform-origin: left; }
  .member .avatar .initial {
    transition: transform .6s cubic-bezier(.2,.7,.2,1);
  }
  .member:hover .avatar .initial { transform: scale(1.1); }

  /* ---- Floating WhatsApp FAB ---- */
  .fab-wa {
    position: fixed; right: 24px; bottom: 24px; z-index: 80;
    width: 60px; height: 60px;
    background: #25D366; color: white; border-radius: 50%;
    display: grid; place-items: center;
    box-shadow: 0 12px 28px rgba(37,211,102,.45), 0 4px 10px rgba(0,0,0,.15);
    transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s;
    text-decoration: none;
  }
  .fab-wa::before {
    content: ''; position: absolute; inset: -6px;
    border-radius: 50%; background: rgba(37,211,102,.35);
    z-index: -1; animation: fabPulse 2.2s ease-out infinite;
  }
  @keyframes fabPulse {
    0%   { transform: scale(.9); opacity: .7; }
    100% { transform: scale(1.6); opacity: 0; }
  }
  .fab-wa:hover { transform: scale(1.08); box-shadow: 0 16px 36px rgba(37,211,102,.55); }
  .fab-wa svg { width: 30px; height: 30px; }
  .fab-wa .tip {
    position: absolute; right: 76px; top: 50%; transform: translateY(-50%) translateX(8px);
    background: var(--ink); color: var(--paper);
    padding: 10px 14px; font-size: 13px; font-weight: 600;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
  }
  .fab-wa .tip::after {
    content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg);
    width: 10px; height: 10px; background: var(--ink);
  }
  .fab-wa:hover .tip { opacity: 1; transform: translateY(-50%) translateX(0); }
  @media (max-width: 560px) {
    .fab-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; }
    .fab-wa svg { width: 26px; height: 26px; }
    .fab-wa .tip { display: none; }
  }

  /* --- Reduced motion --- */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
    .hero h1 .line > span { transform: none; }
    .hero .right { opacity: 1; clip-path: none; }
    .work-item .thumb::after, .member .avatar::before { display: none; }
  }