
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg:         #1c1c1e;
    --bg2:        #242426;
    --bg3:        #2a2a2c;
    --line:       rgba(255,255,255,0.07);
    --line2:      rgba(255,255,255,0.12);
    --text:       #e8e6e0;
    --text-muted: rgba(232,230,224,0.45);
    --text-dim:   rgba(232,230,224,0.25);
    --accent:     #c8b89a;
    --accent2:    #8a7a66;
    --mono:    'DM Mono', monospace;
    --serif:   'Instrument Serif', serif;
    --display: 'Syne', sans-serif;
  }

  html { background: var(--bg); color: var(--text); font-family: var(--display); scroll-behavior: smooth; }
  body { min-height: 100vh; overflow-x: hidden; }

  .site { max-width: 1600px; margin: 0 auto; padding: 0 60px; }

  /* ── NAV ── */
  nav#mainNav {
    border-bottom: 0.5px solid var(--line2);
    padding: 22px 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--bg);
    z-index: 100;
    transform: translateY(0);
    transition: transform 0.32s ease;
  }
  nav#mainNav.hidden { transform: translateY(-100%); }
  .nav-spacer { height: 80px; }
  .nav-logo { display: flex; align-items: center; gap: 10px; }
  .nav-wordmark {
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text);
  }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }
  .nav-cta {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--bg);
    background: var(--accent);
    text-decoration: none;
    text-transform: uppercase;
    padding: 9px 20px;
    transition: opacity 0.2s;
  }
  .nav-cta:hover { opacity: 0.8; }

  /* hamburger — hidden on desktop */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text);
    transition: all 0.25s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* mobile menu drawer */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 0.5px solid var(--line2);
    z-index: 99;
    padding: 32px 24px;
    flex-direction: column;
    gap: 28px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-menu a:last-child {
    color: var(--accent);
    margin-top: 8px;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    max-width: 1600px;
    margin: 0 auto;
  }
  .hero-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    right: 40px;
    z-index: 0;
  }
  .hero-img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%);
    will-change: transform;
    transform: translateY(0);
  }
  .hero-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
      #1c1c1e 0%,
      #1c1c1e 30%,
      rgba(28,28,30,0.75) 55%,
      rgba(28,28,30,0.1) 80%,
      rgba(28,28,30,0) 100%
    );
  }
  .hero-body {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 1;
  }
  .hero-tag {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 0.5px;
    background: var(--accent);
    flex-shrink: 0;
  }
  .hero-headline {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text);
  }
  .hero-headline em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    font-size: 0.9em;
  }
  .hero-sub {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    margin-top: 40px;
    max-width: 480px;
    line-height: 1.9;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    border-top: 0.5px solid var(--line2);
    border-bottom: 0.5px solid var(--line2);
  }
  .hero-stat {
    padding: 28px 32px 28px 0;
    border-right: 0.5px solid var(--line);
  }
  .hero-stat:nth-child(2) { padding-left: 32px; }
  .hero-stat:last-child   { padding-left: 32px; border-right: none; }
  .stat-num {
    font-family: var(--display);
    font-weight: 700;
    font-size: 36px;
    color: var(--text);
    line-height: 1;
  }
  .stat-label {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 8px;
  }

  /* ── SECTION SHELL ── */
  .section {
    padding: 100px 0;
    border-bottom: 0.5px solid var(--line);
  }
  .section-tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .section-tag span { color: var(--accent2); }

  /* ── SERVICES ── */
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .service-item {
    padding: 44px 40px 52px 0;
    border-bottom: 0.5px solid var(--line);
    border-right: 0.5px solid var(--line);
  }
  .service-item:nth-child(2) { padding: 44px 0 52px 40px; border-right: none; }
  .service-item:nth-child(3) { padding: 44px 40px 44px 0; border-bottom: none; }
  .service-item:nth-child(4) { padding: 44px 0 44px 40px; border-right: none; border-bottom: none; }

  .service-num {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--accent2);
    letter-spacing: 0.14em;
    margin-bottom: 24px;
  }
  .service-title {
    font-family: var(--display);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    color: var(--text);
  }
  .service-desc {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.9;
    letter-spacing: 0.02em;
  }
  .service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
  .tag {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    color: var(--accent2);
    border: 0.5px solid rgba(138,122,102,0.3);
    padding: 4px 10px;
    text-transform: uppercase;
  }

  /* ── BOOKING CTA ── */
  .booking-cta {
    background: var(--bg3);
    border-top: 0.5px solid var(--line2);
    border-bottom: 0.5px solid var(--line2);
    padding: 72px 0;
  }
  .booking-cta .site {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .booking-cta-headline {
    font-family: var(--display);
    font-weight: 700;
    font-size: 34px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--text);
  }
  .booking-cta-headline em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .booking-cta-sub {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-top: 14px;
    text-transform: uppercase;
  }
  .booking-cta-btn {
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 16px 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .booking-cta-btn:hover { opacity: 0.82; }

  /* ── BRANDS ── */
  .brands-section {
    padding: 80px 0 32px 0;
  }
  .brands-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  .brands-category-label {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin: 40px 0 0 0;
    padding-bottom: 12px;
    border-bottom: 0.5px solid var(--line);
  }
  .logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 0.5px solid var(--line);
    border-left: 0.5px solid var(--line);
  }
  .logo-cell {
    border-right: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    min-height: 130px;
    transition: background 0.2s;
  }
  .logo-cell:hover { background: rgba(255,255,255,0.03); }
  .logo-cell img {
    width: auto;
    height: auto;
    max-width: 140px;
    max-height: 44px;
    filter: brightness(0) invert(1) sepia(0.12) brightness(0.91);
    opacity: 0.65;
    transition: opacity 0.25s, filter 0.25s;
    object-fit: contain;
  }
  .logo-cell:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) sepia(0.12) brightness(0.91);
  }
  .brand-text {
    font-family: var(--display);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.2s;
  }
  .logo-cell:hover .brand-text { color: var(--text-muted); }

  /* ── PHILOSOPHY ── */
  .philosophy {
    padding: 100px 0;
    border-bottom: 0.5px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .phil-headline {
    font-family: var(--display);
    font-weight: 700;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text);
  }
  .phil-headline em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .phil-body {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 2;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
  }
  .phil-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .phil-list li {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    padding-left: 16px;
    position: relative;
    line-height: 1.7;
  }
  .phil-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent2); }

  /* ── QUOTE BAND ── */
  .quote-band {
    background: var(--bg3);
    border-top: 0.5px solid var(--line2);
    border-bottom: 0.5px solid var(--line2);
    padding: 80px 0;
  }
  .quote-band .site {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .band-quote {
    font-family: var(--serif);
    font-style: italic;
    font-size: 26px;
    color: var(--text);
    line-height: 1.4;
    max-width: 560px;
  }
  .band-quote span {
    font-family: var(--mono);
    font-style: normal;
    font-size: 10px;
    letter-spacing: 0.14em;
    color: var(--text-dim);
    display: block;
    margin-top: 20px;
    text-transform: uppercase;
  }
  .band-cta {
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 14px 32px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .band-cta:hover { opacity: 0.82; }

  /* ── CONTACT ── */
  .contact-section { padding: 100px 0 80px; }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .contact-headline {
    font-family: var(--display);
    font-weight: 800;
    font-size: 52px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text);
  }
  .contact-headline em {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .contact-info {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    line-height: 2.4;
    margin-bottom: 32px;
  }
  .contact-info a { color: var(--accent); text-decoration: none; }
  .contact-btn {
    display: inline-block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 14px 32px;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .contact-btn:hover { opacity: 0.82; }

  /* ── FOOTER ── */
  footer {
    border-top: 0.5px solid var(--line2);
    padding: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-left, .footer-right {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--text-dim);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ══════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════ */

  /* Tablet: 768–1024px */
  @media (max-width: 1024px) {
    .site { padding: 0 32px; }
    .hero-headline { font-size: clamp(44px, 9vw, 72px); }
    .hero { min-height: 85vh; }
    .philosophy { gap: 48px; }
    .contact-inner { gap: 48px; }
  }

  /* Mobile: ≤768px */
  @media (max-width: 768px) {
    .site { padding: 0 20px; }

    /* nav */
    .nav-links { display: none; }
    .nav-cta   { display: none; }
    .nav-hamburger { display: flex; }

    /* hero */
    .hero { aspect-ratio: unset; min-height: 100svh; }
    .hero-body { padding-top: 80px; }
    .hero-fade { background: linear-gradient(to right, #1c1c1e 0%, #1c1c1e 10%, rgba(28,28,30,0.75) 50%, rgba(28,28,30,0.1) 100%); }
    .hero-tag { font-size: 10px; }
    .hero-headline { font-size: clamp(40px, 11vw, 56px); max-width: 100%; }
    .hero-sub { font-size: 12px; margin-top: 28px; max-width: 100%; }
    .hero-grid { grid-template-columns: 1fr; margin-top: 48px; }
    .hero-stat {
      padding: 20px 0 !important;
      border-right: none !important;
      border-bottom: 0.5px solid var(--line);
    }
    .hero-stat:last-child { border-bottom: none; }

    /* services */
    .section { padding: 64px 0; }
    .section-tag { margin-bottom: 40px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-item {
      padding: 32px 0 !important;
      border-right: none !important;
      border-bottom: 0.5px solid var(--line) !important;
    }
    .service-item:last-child { border-bottom: none !important; }

    /* booking cta */
    .booking-cta { padding: 48px 0; }
    .booking-cta .site { flex-direction: column; align-items: flex-start; gap: 28px; }
    .booking-cta-headline { font-size: 26px; }

    /* brands */
    .brands-section { padding: 56px 0; }
    .logo-grid { grid-template-columns: repeat(3, 1fr); }
    .logo-cell { padding: 20px 16px; min-height: 80px; }

    /* philosophy */
    .philosophy {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 64px 0;
    }
    .phil-headline { font-size: 32px; }

    /* quote band */
    .quote-band { padding: 56px 0; }
    .quote-band .site { flex-direction: column; gap: 32px; align-items: flex-start; }
    .band-quote { font-size: 20px; }

    /* contact */
    .contact-section { padding: 64px 0 56px; }
    .contact-inner { grid-template-columns: 1fr; gap: 36px; }
    .contact-headline { font-size: 40px; }

    /* footer */
    footer { flex-direction: column; align-items: flex-start; gap: 8px; }
  }

  /* Small mobile: ≤420px */
  @media (max-width: 420px) {
    .hero-headline { font-size: 36px; }
    .stat-num { font-size: 28px; }
    .phil-headline { font-size: 28px; }
  }

  /* ── ANIMATIONS ── */
  .hero-tag      { opacity:0; transform:translateY(30px); transition: opacity .9s ease .2s,  transform .9s ease .2s; }
  .hero-headline { opacity:0; transform:translateY(40px); transition: opacity 1s ease .45s,  transform 1s ease .45s; }
  .hero-sub      { opacity:0; transform:translateY(30px); transition: opacity .9s ease .75s, transform .9s ease .75s; }
  .hero-grid     { opacity:0; transform:translateY(30px); transition: opacity .9s ease 1s,   transform .9s ease 1s; }

  body.page-loaded .hero-tag,
  body.page-loaded .hero-headline,
  body.page-loaded .hero-sub,
  body.page-loaded .hero-grid { opacity:1; transform:none; }

  /* scroll-revealed elements start hidden */
  .reveal        { opacity:0; transform:translateY(40px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
  .reveal.in     { opacity:1; transform:none; }
  .reveal-fade   { opacity:0; transition: opacity 1s ease; }
  .reveal-fade.in { opacity:1; }

  /* ── ON SET CAROUSEL ── */
  .onset-section { padding-bottom: 100px; }
  .onset-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 48px;
    height: 600px;
  }
  .onset-track {
    display: flex;
    align-items: flex-start;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
    will-change: transform;
  }
  .onset-slide {
    flex-shrink: 0;
    height: 600px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    padding: 0 6px;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0.3;
    transform: scale(0.96);
  }
  .onset-slide.onset-active {
    opacity: 1;
    transform: scale(1);
  }
  .onset-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
  }
  .onset-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: 0.5px solid var(--line);
    color: var(--text);
    font-size: 20px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .onset-btn:hover { background: rgba(0,0,0,0.7); }
  .onset-prev { left: 20px; }
  .onset-next { right: 20px; }
  .onset-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
  }
  .onset-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(232,230,224,0.3);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
  }
  .onset-dot.active { background: var(--text); }

  /* ── LOGO GRID COLLAPSE ── */
  .logo-grid-wrap {
    position: relative;
    max-height: 393px;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.22,1,0.36,1);
  }
  .logo-grid-wrap.expanded {
    max-height: 2000px;
  }
  .logo-grid-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 140px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .logo-grid-wrap.expanded::after {
    opacity: 0;
  }
  .logo-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: -1px;
    width: 44px;
    height: 44px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.2s;
  }
  .logo-toggle-btn:hover { color: var(--text); }
  .logo-toggle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0 32px 0;
    border-bottom: 0.5px solid var(--line);
  }
  .logo-toggle-btn svg {
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
  }
  .logo-toggle-btn.open svg { transform: rotate(180deg); }

  /* ── OPERATOR ── */
  .operator-section { border-bottom: 0.5px solid var(--line); }
  .operator-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
  }
  .operator-img-wrap {
    position: sticky;
    top: 100px;
    overflow: hidden;
  }
  .operator-img {
    width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: grayscale(100%);
  }
  .operator-name {
    font-family: var(--display);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1;
  }
  .operator-role {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 10px;
  }
  .operator-divider {
    width: 40px;
    height: 1px;
    background: var(--line2);
    margin: 28px 0;
  }
  .operator-facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 0.5px solid var(--line);
  }
  .operator-facts li {
    display: flex;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 0.5px solid var(--line);
  }
  .fact-label {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    min-width: 100px;
    padding-top: 2px;
  }
  .fact-value {
    font-size: 13px;
    color: var(--text);
    line-height: 1.5;
  }
  .operator-desc {
    margin-top: 32px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 480px;
  }
  .operator-cta {
    display: inline-block;
    margin-top: 36px;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent2);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
  }
  .operator-cta:hover { color: var(--text); border-color: var(--text); }

  @media (max-width: 760px) {
    .operator-grid { grid-template-columns: 1fr; gap: 40px; }
    .operator-img-wrap { position: static; }
    .operator-img { aspect-ratio: 3/4; }
    .operator-name { font-size: 36px; }
  }
