/* SECTION TAG */
  .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, .section-tag::after { content: ''; width: 32px; height: 1px; background: var(--gold); }

  .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;
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 0.04; }
  }

  .hero-logo-wrap {
    display: flex; align-items: center; gap: 40px;
  }
  .hero-logo-desktop {
    height: 240px; width: auto; mix-blend-mode: lighten; opacity: 0; flex-shrink: 0;
    animation: fadeLogoIn 1.6s ease 3.3s forwards, logoShine 3s ease 4.9s infinite;
  }
  .hero-logo-mobile {
    display: none; mix-blend-mode: lighten; opacity: 0;
  }

  @keyframes fadeLogoIn {
    from { opacity: 0; }
    to { opacity: 0.85; }
  }
  @keyframes logoShine {
    0% { filter: brightness(1); }
    15% { filter: brightness(1.5); }
    30% { filter: brightness(1); }
    100% { filter: brightness(1); }
  }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.visible { 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; }

  /* PAGE HERO */
  .page-hero { padding: 160px 60px 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border); }
  .hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%); pointer-events: none; }
  .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; }
  .hero-tag { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
  .hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
  .page-hero .section-tag {
    opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
  }
  .page-hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 8vw, 120px); line-height: 0.92; letter-spacing: 2px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
  .page-hero h1 em { color: var(--gold); font-style: normal; }
  .page-hero .service-intro {
    font-size: 18px; line-height: 1.7; color: var(--muted); max-width: clamp(300px, 34vw, 520px); margin-top: 28px; margin-bottom: 40px;
    opacity: 0; animation: fadeUp 0.8s 1.1s forwards;
  }
  .page-hero .hero-actions {
    display: flex; gap: 20px; align-items: center;
    opacity: 0; animation: fadeUp 0.8s 2.5s forwards;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* INTRO */
  .about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 60px; align-items: center; border-bottom: 1px solid var(--border); }
  .about-intro-img { position: relative; }
  .about-intro-img img { width: 100%; height: 560px; object-fit: contain; object-position: center 15%; display: block; }
  .about-accent { position: absolute; bottom: 0; right: 0; width: 160px; height: 140px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-direction: column; }
  .about-accent-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--bg); line-height: 1; }
  .about-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-intro-text h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); line-height: 1; margin-bottom: 24px; }
  .about-intro-text h2 em { color: var(--gold); font-style: normal; }
  .about-intro-text p { color: rgba(240,237,232,0.85); font-size: 17px; line-height: 1.8; margin-bottom: 24px; }

  /* TEAM */
  .team-section { padding: 80px 60px; background: var(--bg2); }
  .team-section-header { text-align: center; margin-bottom: 60px; }
  .team-section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); line-height: 1; }
  .team-section-header h2 em { color: var(--gold); font-style: normal; }
  .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 1100px; margin: 0 auto; }
  .team-member { background: var(--bg3); border: 1px solid var(--border); border-top: 2px solid var(--gold); overflow: hidden; transition: transform 0.2s, border-color 0.2s; }
  .team-member:hover { transform: translateY(-4px); border-color: var(--gold); }
  .team-member img { width: 100%; height: 320px; object-fit: cover; object-position: center 15%; display: block; }
  .team-member-info { padding: 24px 28px; text-align: center; }
  .team-member-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; margin-bottom: 4px; }
  .team-member-role { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
  .team-member-role::before, .team-member-role::after { content: ''; width: 20px; height: 1px; background: var(--gold); }
  .team-member-tagline { font-family: 'DM Sans', sans-serif; font-style: italic; font-size: 14px; color: var(--gold); margin-bottom: 12px; text-align: center; }
  .team-member-bio { font-size: 14px; line-height: 1.7; color: var(--muted); }

  /* VALUES */
  .values-section { padding: 80px 60px; border-top: 1px solid var(--border); }
  .values-header { text-align: center; margin-bottom: 60px; }
  .values-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); }
  .values-header h2 em { color: var(--gold); font-style: normal; }
  .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
  .value-card { background: var(--bg2); border: 1px solid var(--border); padding: 32px 28px; transition: border-color 0.2s, transform 0.2s; }
  .value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
  .value-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: #5a5a5a; line-height: 1; margin-bottom: 12px; }
  .value-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 2px; margin-bottom: 12px; color: var(--gold); }
  .value-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }

  /* CTA */
  .cta-strip { padding: 80px 60px; text-align: center; background: var(--bg2); border-top: 1px solid var(--border); }
  .cta-strip h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5vw, 64px); margin-bottom: 16px; }
  .cta-strip h2 em { color: var(--gold); font-style: normal; }
  .cta-strip p { color: var(--muted); font-size: 16px; margin-bottom: 32px; }
  .btn-primary { display: inline-block; background: var(--gold); color: #0a0a0a; font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; padding: 16px 32px; text-decoration: none; transition: background 0.2s, transform 0.2s; }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }

  /* Laptop screens */
  @media (min-width: 769px) and (max-height: 900px) {
    .page-hero { padding: 100px 60px 50px; }
    .hero-logo-desktop { top: 100px; }
    .page-hero h1 { font-size: clamp(52px, 7vw, 90px); }
    .about-intro { padding: 50px 60px; gap: 50px; }
    .about-intro-img img { height: 400px; }
    .about-accent { width: 130px !important; height: 110px !important; }
    .about-accent-num { font-size: 38px !important; }
    .about-intro-text h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 16px; }
    .about-intro-text p { font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
    .team-section { padding: 50px 60px; }
    .team-section-header { margin-bottom: 36px; }
    .team-member img { height: 240px; }
    .team-member-info { padding: 16px 20px; }
    .values-section { padding: 50px 60px; }
    .values-header { margin-bottom: 36px; }
    .value-card { padding: 24px 20px; }
    .cta-strip { padding: 50px 60px; }
  }

  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    .mobile-menu { display: block; }
    nav { padding: 16px 20px; }
    .page-hero { padding: 120px 20px 60px; }
    .hero-logo-wrap { flex-direction: column; align-items: center; gap: 0; }
    .hero-logo-desktop { display: none; }
    .hero-logo-mobile { display: block !important; width: 37.5vw; height: auto; margin: 4px auto 24px; opacity: 0; animation: fadeLogoIn 1.2s ease 3.8s forwards; }
    .page-hero h1 { text-align: center; }
    .page-hero .service-intro { text-align: center; max-width: 100%; margin-left: auto; margin-right: auto; }
    .page-hero .hero-actions { justify-content: center; flex-direction: column; width: 100%; }
    .about-intro { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
    .about-intro-img img { height: 380px; }
    .team-section { padding: 60px 20px; }
    .team-grid { grid-template-columns: 1fr; }
    .values-section { padding: 60px 20px; }
    .values-grid { grid-template-columns: 1fr; }
    .cta-strip { padding: 60px 20px; }
    footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }

    /* Center all text except card numbers */
    .about-intro-text h2,
    .about-intro-text p,
    .about-intro-text .section-tag,
    .team-section-header,
    .team-section-header h2,
    .team-section-header p,
    .team-member-name,
    .team-member-role,
    .team-member-bio,
    .values-header,
    .values-header h2,
    .values-header p,
    .value-name,
    .value-card p { text-align: center; }
    .about-intro-text .section-tag { justify-content: center; }
    .team-member-role { justify-content: center; }
    .value-card { align-items: center; display: flex; flex-direction: column; }
    .value-num { text-align: left; align-self: flex-start; }
  }
