/* HERO */
  #home {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 100px 60px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-money {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: lighten;
    filter: grayscale(1) sepia(0.3);
    animation: fadeIn 2s ease 0.3s forwards;
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
  }
  .hero-content { position: relative; max-width: 900px; }
  .hero-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-tag::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.92;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
  }
  .word-fade {
    display: inline-block;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
  }
  h1 em { color: var(--gold); font-style: normal; }
  .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(240,237,232,0.85);
    max-width: 500px;
    margin-bottom: 56px;
    opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
  }
  .hero-actions {
    display: flex; gap: 20px; align-items: center;
    opacity: 0; animation: fadeUp 0.8s 2.5s forwards;
  }
  .btn-primary {
    background: var(--gold);
    color: var(--bg);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
  .btn-ghost {
    color: var(--white);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s;
  }
  .btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }

  .hero-stat {
    position: absolute; right: 60px; bottom: 80px;
    text-align: right;
    opacity: 0; animation: fadeUp 0.8s 7.6s forwards;
  }
  .hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    color: var(--gold);
    line-height: 1;
  }
  .hero-stat-label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
  }
/* SECTION SHARED */
  section { padding: 120px 60px; }
  .section-tag {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 12px;
  }
  .section-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .section-tag::after { content: ''; width: 32px; height: 1px; background: var(--gold); }
  h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 6vw, 80px);
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
  h2 em { color: var(--gold); font-style: normal; }
/* SERVICES */
  #services { background: var(--bg2); }
  .services-header { max-width: 600px; margin-bottom: 80px; }
  .services-header p { color: rgba(240,237,232,0.85); font-size: 17px; line-height: 1.7; margin-top: 20px; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
  }
  .service-card {
    background: var(--bg2);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .service-card:hover { background: var(--bg3); }
  a.service-card { cursor: pointer; }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--muted);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.3s;
  }
  .service-card:hover .service-num { color: #5a5a5a; }
  .service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--gold);
  }
  .service-card p { color: rgba(240,237,232,0.8); font-size: 15px; line-height: 1.7; }
/* ABOUT */
  #about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
  .about-visual {
    position: relative;
    height: 0; height: 600px;
  }
  .about-box-main:hover { border-color: var(--gold) !important; }
  .about-box {
    position: absolute;
    border: 1px solid var(--border);
    background: var(--bg2);
  }
  .about-box-main {
    transition: border-color 0.3s;
    top: 0; left: 0; right: 40px; bottom: 40px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .about-box-main-inner {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: rgba(201,168,76,0.1);
    line-height: 1;
    text-align: center;
    letter-spacing: 4px;
  }
  .about-box-accent {
    bottom: 0; right: 0;
    width: 160px; height: 140px;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    border: none;
  }
  .about-box-accent-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    color: var(--bg);
    line-height: 1;
  }
  .about-box-accent-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(10,10,10,0.7);
    text-align: center;
  }
  .about-content p {
    color: rgba(240,237,232,0.85);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
  .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
  .team-card {
    border: 1px solid var(--border);
    padding: 24px;
    transition: border-color 0.3s;
  }
  .team-card:hover { border-color: var(--gold); }
  .team-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }
  .team-role {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
  }
/* CONTACT */
  #contact { background: var(--bg2); }
  .contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
  }
  .contact-info p {
    color: rgba(240,237,232,0.85);
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 48px;
  }
  .contact-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .contact-links a {
    font-family: 'DM Mono', monospace;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-links a:hover { color: var(--gold); }
  form { display: flex; flex-direction: column; gap: 20px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .form-group { display: flex; flex-direction: column; gap: 8px; }
  label {
    font-family: 'DM Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
  }
  input, textarea, select {
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    outline: none;
    transition: border-color 0.2s;
    cursor: text;
  }
  input:focus, textarea:focus, select:focus { border-color: var(--gold); }
  textarea { resize: vertical; min-height: 120px; }
  select option { background: var(--bg3); }
  .form-submit {
    background: var(--gold);
    color: var(--bg);
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    align-self: flex-start;
    transition: background 0.2s, transform 0.2s;
  }
  .form-submit:hover { background: var(--gold2); transform: translateY(-2px); }
/* DIVIDER LINE */
  .line-divider {
    width: 100%; height: 1px;
    background: var(--border);
  }
/* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.04; }
  }
  @keyframes fadeLogoIn {
    from { opacity: 0; }
    to { opacity: 0.85; }
  }
  @keyframes logoPop {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 0.9; transform: scale(1.1); }
    100% { opacity: 0.85; transform: scale(1); }
  }
  @keyframes logoShine {
    0% { filter: brightness(1); }
    15% { filter: brightness(1.5); }
    30% { filter: brightness(1); }
    100% { filter: brightness(1); }
  }
  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
/* Fallback: show all content after a short delay in case IntersectionObserver doesn't fire */
  .reveal { animation: revealFallback 0.7s ease 0.3s forwards; }
  @keyframes revealFallback {
    to { opacity: 1; transform: none; }
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
/* TICKER */
  .ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    background: var(--bg);
  }
  .ticker {
    display: flex;
    gap: 0;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
  }
  .ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 4px;
    color: var(--muted);
    padding: 0 40px;
    display: flex; align-items: center; gap: 40px;
  }
  .ticker-item::after {
    content: '✦';
    color: var(--gold);
    font-size: 10px;
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* Laptop screens: compress all sections to fit one viewport (~760px usable) */
  @media (min-width: 769px) and (max-height: 900px) {

    /* HERO */
    #home {
      padding: 70px 60px 50px;
      min-height: auto;
      height: calc(100vh - 48px);
    }
    h1 {
      font-size: clamp(60px, 8vw, 110px);
      margin-bottom: 24px;
    }
    .hero-sub {
      margin-bottom: 32px;
      font-size: 16px;
    }
    .hero-tag {
      margin-bottom: 18px;
    }
    .hero-stat {
      bottom: 50px;
    }
    .btn-primary, .btn-ghost {
      padding: 13px 28px;
    }

    /* SHARED SECTION */
    section { padding: 50px 60px; }
    h2 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 12px; }
    .section-tag { margin-bottom: 12px; }

    /* SERVICES */
    #services { padding: 40px 60px; }
    .services-header { margin-bottom: 28px; }
    .services-header p { font-size: 15px; margin-top: 10px; }
    .service-card { padding: 24px 28px; }
    .service-num { font-size: 40px; margin-bottom: 12px; }
    .service-card h3 { font-size: 20px; margin-bottom: 8px; }
    .service-card p { font-size: 13px; line-height: 1.5; }
    .service-card > div { margin-bottom: 12px !important; }
    .service-card > div img { height: 44px !important; width: 44px !important; }

    /* ABOUT */
    #about { padding: 40px 60px; gap: 60px; }
    .about-visual img { height: 420px !important; }
    .about-box-accent { width: 130px !important; height: 110px !important; }
    .about-box-accent-num { font-size: 38px !important; }
    .about-content p { font-size: 15px; line-height: 1.6; margin-bottom: 14px; }
    .team-grid { margin-top: 20px; gap: 12px; }
    .team-card { padding: 16px; }

    /* CONTACT */
    #contact { padding: 40px 60px; }
    .contact-inner { gap: 60px; }
    .contact-info p { font-size: 15px; margin-top: 12px; margin-bottom: 28px; }
    form { gap: 12px; }
    input, textarea, select { padding: 10px 14px; font-size: 14px; }
    textarea { min-height: 80px; }
    .form-submit { padding: 14px 32px; }
  }

  

  @media (max-width: 768px) {
    .hero-logo-wrap { flex-direction: column; align-items: center; gap: 40px; }
    .hero-logo-wrap h1 { margin-bottom: 0; }
    .hero-logo-wrap img { margin-bottom: 0; }
    #home h1 { text-align: center; }
    #home h1 em { color: var(--white); }
    #home h1 .gold { color: var(--gold); }
    .section-tag { justify-content: center; }
    .hero-tag { justify-content: center; }
    .hero-sub { text-align: center; }
    .hero-actions { align-items: center; }
    .about-visual img { height: 450px !important; }

    html, body { max-width: 100vw; overflow-x: hidden; }
    * { word-wrap: break-word; overflow-wrap: break-word; box-sizing: border-box; }
    div[style*="display:flex; align-items:center; gap:40px"] { flex-direction: column; align-items: flex-start; gap: 0; }
    div[style*="display:flex; align-items:center; gap:40px"] .hero-logo-desktop { display: none; }
    .hero-logo-desktop { display: none !important; }
    div[style*="display:flex; align-items:center; gap:0"] { justify-content: center; }
    .hero-logo-mobile { display: block !important; width: 37.5vw; height: auto; margin: 4px auto 24px; opacity: 0; animation: fadeLogoIn 1.2s ease 4.8s forwards; }
    .hero-quote { display: none !important; }
    .hero-quote-mobile { display: block !important; margin: 0 auto 20px; max-width: 90vw; opacity: 0; animation: fadeUp 0.8s ease 1.45s forwards; }
    .hero-quote-mobile .hero-quote-text { text-align: center; font-size: 21px; line-height: 1.5; }
    .hero-quote-mobile .hero-quote-attr { text-align: right; }
    .hero-stat { display: none; }

    #home { padding: 125px 20px 40px; min-height: auto; }
    .hero-sub { margin-bottom: 40px; }
    h1 { font-size: 56px; }
    h2 { font-size: 40px; }
    .hero-sub { font-size: 15px; animation-delay: 3.25s !important; }
    .hero-actions { flex-direction: column; animation-delay: 5.75s !important; }
    .btn-primary, .btn-ghost { width: 100%; text-align: center; display: block; }

    section { padding: 60px 20px; }

    .services-grid { grid-template-columns: 1fr; }

    #about { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }
    .about-visual { width: 100%; height: auto; }
    .about-box-main {
      position: relative !important;
      top: auto !important; left: auto !important; right: auto !important; bottom: auto !important;
      width: 100% !important;
      height: 320px !important;
      border: none !important;
    }
    .about-box-accent {
      position: relative !important;
      top: auto !important; right: auto !important;
      width: 100% !important;
      height: 64px !important;
      flex-direction: row !important;
      gap: 12px !important;
      margin-top: 8px;
    }
    .about-box-accent-num { font-size: 28px !important; }

    .team-grid { grid-template-columns: 1fr; }
    .team-card[style*="grid-column: span 2"] { grid-column: span 1 !important; }

    .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
  }
    .hero-quote {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(calc(-50% - 20px));
    max-width: 420px;
    text-align: right;
    opacity: 0;
    animation: fadeUp 0.8s 3.8s forwards;
  }
  .hero-quote-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    color: var(--gold);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .hero-quote-attr {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: -8px;
  }
  .hero-quote-author {
    font-family: 'DM Mono', monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-top: -8px;
  }
  .hero-quote-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 26px;
    font-weight: 300;
    color: rgba(160,160,160,0.9);
    line-height: 1.6;
  }

  #bio-overlay .bio-inner { background:#1a1a1a; border:1px solid var(--gold); max-width:560px; width:100%; overflow:hidden; position:relative; }
  #bio-img { width:60%; height:auto; display:block; object-fit:contain; margin:24px auto 0; }
  .bio-text-block { padding:28px 32px 32px; text-align:center; }
  #bio-name { margin-bottom:10px; }
  #bio-role { margin-bottom:10px; }
  @media (max-width: 600px) {
    .bio-text-block { text-align:center; padding:20px 20px 24px; }
    .cameron-desktop { display:none !important; }
    .cameron-mobile { display:block !important; }
  }
  @media (min-width: 601px) {
    .cameron-mobile { display:none !important; }
  }
