:root {
    --bg-primary: #080808;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --text-primary: #f0f0f0;
    --text-secondary: #888888;
    --text-muted: #555555;
    --accent: #ffffff;
    --accent-glow: rgba(255, 255, 255, 0.1);
    --accent-soft: #dddddd;
    --blue-accent: #aaaaaa;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.15);
  }

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

  html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--text-muted) transparent;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ========== NOISE TEXTURE OVERLAY ========== */
  body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ========== AMBIENT GRADIENT ========== */
  .ambient-glow {
    position: fixed;
    top: -30%;
    left: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(200, 168, 100, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .ambient-glow-2 {
    position: fixed;
    bottom: -20%;
    right: -15%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(107, 138, 173, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  /* ========== NAVIGATION ========== */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
  }

  nav.scrolled {
    padding: 16px 48px;
    backdrop-filter: blur(20px);
    background: rgba(10, 10, 12, 0.8);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    position: relative;
  }

  .logo sup {
    font-size: 14px;
    color: var(--accent);
    top: -8px;
    position: relative;
  }

  .logo span {
    color: var(--text-secondary);
    font-weight: 300;
    margin-left: 4px;
  }

  .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
  }

  .nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
  }

  .nav-links a:hover { color: var(--text-primary); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    padding: 10px 24px;
    border: 1px solid var(--border-hover);
    color: var(--accent) !important;
    border-radius: 6px;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    transition: all 0.3s ease !important;
  }

  .nav-cta:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
  }

  .nav-cta::after { display: none !important; }

  /* ========== HERO ========== */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 48px 80px;
    position: relative;
    z-index: 1;
  }

  .seattle-skyline {
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.1s;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  .hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease infinite;
  }

  .hero h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
  }

  .hero h1 .serif-italic {
    font-style: italic;
    color: var(--accent);
  }

  .hero h1 .line-2 {
    display: block;
    color: var(--text-secondary);
    font-size: clamp(40px, 5.5vw, 80px);
  }

  .hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
  }

  .hero-actions {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
  }

  .btn-primary {
    padding: 16px 40px;
    background: var(--accent);
    color: var(--bg-primary);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .btn-primary:hover {
    background: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 100, 0.2);
  }

  .btn-secondary {
    padding: 16px 40px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .btn-secondary:hover {
    border-color: var(--text-muted);
    transform: translateY(-2px);
  }

  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 1.2s;
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
  }

  /* ========== SECTION SHARED ========== */
  section {
    position: relative;
    z-index: 1;
  }

  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--accent);
  }

  .section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 24px;
  }

  .section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    max-width: 560px;
  }

  /* ========== WHAT WE DO ========== */
  .what-we-do {
    padding: 120px 48px;
    max-width: 1280px;
    margin: 0 auto;
  }

  .what-we-do-header {
    margin-bottom: 80px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: default;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
  }

  .service-card:hover::before { opacity: 1; }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(200, 168, 100, 0.08);
    border: 1px solid rgba(200, 168, 100, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    font-size: 24px;
    position: relative;
    z-index: 1;
  }

  .service-card h3 {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
  }

  .service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
    font-size: 15px;
    position: relative;
    z-index: 1;
  }

  .service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
  }

  .service-tag {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-muted);
    border: 1px solid var(--border);
    letter-spacing: 0.5px;
  }

  /* ========== PHILOSOPHY ========== */
  .philosophy {
    padding: 120px 48px;
    border-top: 1px solid var(--border);
  }

  .philosophy-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
  }

  .philosophy-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .m2-symbol {
    font-family: 'Instrument Serif', serif;
    font-size: 180px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 168, 100, 0.2);
    position: relative;
    user-select: none;
  }

  .m2-symbol::after {
    content: 'M²';
    position: absolute;
    top: 4px;
    left: 4px;
    -webkit-text-stroke: 1px rgba(107, 138, 173, 0.1);
  }

  .orbit-ring {
    position: absolute;
    border: 1px solid rgba(200, 168, 100, 0.08);
    border-radius: 50%;
    animation: spin 20s linear infinite;
  }

  .orbit-ring:nth-child(2) {
    width: 300px; height: 300px;
    animation-duration: 25s;
    animation-direction: reverse;
  }

  .orbit-ring:nth-child(3) {
    width: 400px; height: 400px;
    animation-duration: 35s;
    border-color: rgba(107, 138, 173, 0.05);
  }

  .orbit-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--accent-glow);
  }

  .philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
  }

  .value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .value-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--accent);
    padding-top: 4px;
    flex-shrink: 0;
  }

  .value-item h4 {
    font-family: 'Instrument Serif', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
  }

  .value-item p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
  }

  /* ========== STATS ========== */
  .stats-bar {
    padding: 80px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-family: 'Instrument Serif', serif;
    font-size: 48px;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
  }

  .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
  }

  /* ========== CONTACT / CTA ========== */
  .cta-section {
    padding: 160px 48px;
    text-align: center;
    position: relative;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 168, 100, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-section .section-label {
    justify-content: center;
  }

  .cta-section .section-label::before { display: none; }

  .cta-section .section-title {
    max-width: 700px;
    margin: 0 auto 24px;
  }

  .cta-section .section-desc {
    margin: 0 auto 48px;
    text-align: center;
  }

  .contact-email {
    font-family: 'Instrument Serif', serif;
    font-size: 24px;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
    padding-bottom: 4px;
  }

  .contact-email:hover {
    border-color: var(--accent);
  }

  /* ========== FOOTER ========== */
  footer {
    padding: 48px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
  }

  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .footer-logo {
    font-family: 'Instrument Serif', serif;
    font-size: 20px;
    color: var(--text-primary);
  }

  .footer-logo sup {
    font-size: 10px;
    color: var(--accent);
    position: relative;
    top: -6px;
  }

  .footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
  }

  .footer-right {
    display: flex;
    gap: 32px;
  }

  .footer-right a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
  }

  .footer-right a:hover { color: var(--text-secondary); }

  .footer-location {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.5px;
  }

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

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }

  @keyframes scrollPulse {
    0% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.6); opacity: 0.4; }
    100% { transform: scaleY(1); opacity: 1; }
  }

  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ========== MOBILE MENU ========== */
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:first-child {
    transform: rotate(45deg) translate(2.5px, 2.5px);
  }

  .menu-toggle.active span:last-child {
    transform: rotate(-45deg) translate(2.5px, -2.5px);
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 968px) {
    nav { padding: 20px 24px; }
    nav.scrolled { padding: 14px 24px; }
    .menu-toggle { display: flex; }
    .nav-links {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(10, 10, 12, 0.97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
      z-index: 1000;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 20px; }
    .hero { padding: 100px 24px 80px; }
    .hero h1 { letter-spacing: -1px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .what-we-do { padding: 80px 24px; }
    .philosophy { padding: 80px 24px; }
    .philosophy-inner { grid-template-columns: 1fr; gap: 60px; }
    .philosophy-visual { height: 300px; }
    .m2-symbol { font-size: 120px; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stats-bar { padding: 60px 24px; }
    .cta-section { padding: 100px 24px; }
    footer { padding: 32px 24px; }
    .footer-inner { flex-direction: column; gap: 24px; text-align: center; }
    .footer-right { flex-wrap: wrap; justify-content: center; }
  }

  @media (max-width: 480px) {
    .service-card { padding: 32px; }
    .stat-number { font-size: 36px; }
  }
