  :root {
    --black: #0c0c0c; --red: #e8391a; --cream: #f4f0e8;
    --light: #ede8df; --ash: #1e1e1e; --muted: #777;
    --border-dark: #222; --border-light: #d8d2c8;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; overflow-x: hidden; background: var(--black); }

  /* Visible keyboard focus for accessibility */
  a:focus-visible, button:focus-visible {
    outline: 2px solid var(--red); outline-offset: 3px;
  }

  /* SKIP LINK */
  .skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--red); color: #fff; padding: 0.85rem 1.4rem;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  }
  .skip-link:focus { left: 1rem; top: 1rem; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    padding: 1.5rem 2.5rem;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.35s;
  }
  nav.stuck {
    background: rgba(12,12,12,0.96); backdrop-filter: blur(14px);
    padding: 1rem 2.5rem; border-bottom: 1px solid var(--border-dark);
  }
  .nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
  .nav-wordmark { font-family: 'Bebas Neue', sans-serif; font-size: 1.55rem; letter-spacing: 0.1em; color: var(--cream); }
  .nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
  .nav-links a { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--cream); }
  .nav-btn { background: var(--red) !important; color: #fff !important; font-family: 'Bebas Neue', sans-serif !important; font-size: 0.9rem !important; letter-spacing: 0.1em !important; padding: 0.45rem 1.2rem; transition: opacity 0.2s !important; }
  .nav-btn:hover { opacity: 0.82 !important; }

  /* NAV TOGGLE (mobile hamburger, hidden at desktop widths) */
  .nav-toggle {
    display: none; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 32px; height: 32px; background: transparent; border: none;
    cursor: pointer; padding: 0;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px; background: var(--cream);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* NAV SCRIM */
  .nav-scrim {
    position: fixed; inset: 0; z-index: 150;
    background: rgba(0,0,0,0.6); opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .nav-scrim.open { opacity: 1; pointer-events: auto; }

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

  /* HERO */
  .hero {
    min-height: 100vh; background: var(--black);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 0 2.5rem 4.5rem; position: relative; overflow: hidden;
  }
  .hero-grain {
    position: absolute; inset: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  }
  .hero-stone {
    position: absolute; right: -4%; top: 50%; transform: translateY(-46%);
    width: 52vw; max-width: 620px; opacity: 0.055; pointer-events: none;
  }
  .hero-tag {
    font-family: 'DM Sans', sans-serif; font-size: 0.7rem; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem;
    position: relative; z-index: 1; opacity: 0; animation: fadeUp 0.7s 0.15s forwards;
  }
  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif; font-size: clamp(4.5rem, 11.5vw, 9.5rem);
    line-height: 0.9; letter-spacing: 0.015em; color: var(--cream);
    position: relative; z-index: 1; max-width: 950px;
    opacity: 0; animation: fadeUp 0.8s 0.28s forwards;
  }
  .hero-h1 .red { color: var(--red); }
  .hero-bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-top: 3.5rem; position: relative; z-index: 1;
    opacity: 0; animation: fadeUp 0.8s 0.46s forwards;
    gap: 2rem; flex-wrap: wrap;
  }
  .hero-desc { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: #a7a199; line-height: 1.8; max-width: 360px; }
  .hero-desc b { color: #cfc9bf; }
  .hero-actions { display: flex; align-items: center; gap: 1.5rem; }
  .btn-red {
    background: var(--red); color: #fff; font-family: 'Bebas Neue', sans-serif;
    font-size: 1.05rem; letter-spacing: 0.12em; padding: 0.9rem 2.2rem;
    text-decoration: none; display: inline-block; transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-red:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,57,26,0.3); }
  .btn-text {
    font-family: 'DM Sans', sans-serif; font-size: 0.66rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: #9a948b; text-decoration: none;
    border-bottom: 1px solid #2a2a2a; padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
  }
  .btn-text:hover { color: var(--cream); border-color: #666; }

  /* TICKER */
  .ticker-wrap { background: var(--red); overflow: hidden; padding: 0.65rem 0; white-space: nowrap; }
  .ticker-track { display: inline-block; animation: ticker 24s linear infinite; }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  .ticker-item { display: inline-block; font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.15em; color: white; padding: 0 2rem; }
  .ticker-dot { display: inline-block; width: 5px; height: 5px; background: rgba(255,255,255,0.4); border-radius: 50%; vertical-align: middle; margin: 0 0.5rem; }

  /* SHARED */
  .section-eyebrow { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 0.85rem; }
  .section-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 6vw, 4.5rem); line-height: 0.95; letter-spacing: 0.03em; margin-bottom: 1.75rem; }
  .section-h2.on-light { color: var(--black); }
  .section-h2.on-dark { color: var(--cream); }

  /* ABOUT */
  .about { background: var(--light); padding: 7rem 2.5rem; }
  .about-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .about-body { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: #4a453d; line-height: 1.75; margin-bottom: 2rem; }
  .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; color: var(--black); }
  .stat-num span { color: var(--red); }
  .stat-label { font-family: 'DM Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8a857c; margin-top: 0.3rem; line-height: 1.5; }
  .about-card { background: var(--black); padding: 2.5rem; position: relative; }
  .about-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
  .about-card-label { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: #a29c93; margin-bottom: 1.5rem; }
  .about-card-quote { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-weight: 300; font-size: 1.5rem; line-height: 1.4; color: var(--cream); margin-bottom: 2rem; }
  .about-card-sig { display: flex; align-items: center; gap: 0.75rem; }
  .sig-name { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 0.1em; color: var(--cream); }
  .sig-title { font-family: 'DM Sans', sans-serif; font-size: 0.62rem; color: #7a7a7a; letter-spacing: 0.04em; margin-top: 0.15rem; }

  /* WHO WE SERVE */
  .who { background: var(--black); padding: 7rem 2.5rem; border-top: 1px solid var(--border-dark); }
  .who-inner { max-width: 1000px; margin: 0 auto; }
  .who-header { margin-bottom: 3rem; }
  .who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border-dark); }
  .who-card { background: var(--black); padding: 2rem 1.75rem; position: relative; transition: background 0.2s; }
  .who-card:hover { background: #111; }
  .who-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.3s; }
  .who-card:hover::before { background: var(--red); }
  .who-icon { color: var(--red); margin-bottom: 0.9rem; line-height: 0; }
  .who-icon svg { width: 32px; height: 32px; }
  .who-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.05em; color: var(--cream); margin-bottom: 0.5rem; }
  .who-desc { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #b0aaa0; line-height: 1.7; }
  .who-examples { margin-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.3rem; }
  .who-tag { font-family: 'DM Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.06em; text-transform: uppercase; color: #8f897f; border: 1px solid #333; padding: 0.2rem 0.5rem; }

  /* SERVICES */
  .services { background: var(--cream); padding: 7rem 2.5rem; }
  .services-inner { max-width: 1000px; margin: 0 auto; }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; gap: 2rem; flex-wrap: wrap; }
  .services-note { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; color: #6f6a60; line-height: 1.8; max-width: 300px; text-align: right; }
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border-light); }
  .service-card { background: var(--cream); padding: 2.5rem 2.2rem; position: relative; overflow: hidden; transition: background 0.25s; }
  .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .service-card:hover { background: #e5e0d7; }
  .service-card:hover::after { transform: scaleX(1); }
  .service-num { font-family: 'DM Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.15em; color: var(--red); margin-bottom: 1.25rem; }
  .service-icon { color: var(--red); margin-bottom: 1rem; line-height: 0; }
  .service-icon svg { width: 34px; height: 34px; }
  .service-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; letter-spacing: 0.04em; color: var(--black); line-height: 1; margin-bottom: 0.75rem; }
  .service-desc { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: #4f4a42; line-height: 1.7; margin-bottom: 1.25rem; }
  .service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .tag { font-family: 'DM Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: #6f6a60; border: 1px solid var(--border-light); padding: 0.22rem 0.55rem; }
  .service-card.full { grid-column: span 2; }

  /* WORK / PORTFOLIO */
  .work { background: var(--black); padding: 7rem 2.5rem; border-top: 1px solid var(--border-dark); }
  .work-inner { max-width: 1000px; margin: 0 auto; }
  .work-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
  .work-note { font-family: 'DM Sans', sans-serif; font-size: 0.76rem; color: #a7a199; line-height: 1.8; max-width: 300px; }
  .work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; }
  .work-card { background: var(--black); border: 1px solid var(--border-dark); padding: 2.25rem 2rem; position: relative; text-decoration: none; display: block; transition: background 0.2s, border-color 0.2s; }
  .work-card:hover { border-color: #3a3a3a; background: #141414; }
  .work-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .work-card:hover::after { transform: scaleX(1); }
  .work-meta { display: flex; justify-content: space-between; font-family: 'DM Sans', sans-serif; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 1.25rem; }
  .work-meta .yr { color: #8a857c; }
  .work-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 0.03em; color: var(--cream); line-height: 1.05; margin-bottom: 0.7rem; }
  .work-blurb { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #a7a199; line-height: 1.75; margin-bottom: 1.1rem; }
  .work-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .work-tag { font-family: 'DM Sans', sans-serif; font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: #8f897f; border: 1px solid #333; padding: 0.2rem 0.5rem; }
  .work-empty { grid-column: 1 / -1; padding: 3rem 2rem; text-align: center; font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #a7a199; border: 1px dashed var(--border-dark); }

  /* PROCESS */
  .process { background: var(--black); padding: 7rem 2.5rem; border-top: 1px solid var(--border-dark); }
  .process-inner { max-width: 1000px; margin: 0 auto; }
  .process-header { margin-bottom: 4rem; }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border-dark); }
  .process-step { background: var(--black); padding: 2rem 1.75rem; position: relative; }
  .step-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.3s; }
  .process-step:hover .step-accent { background: var(--red); }
  .step-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: #6f6a60; line-height: 1; margin-bottom: 1rem; }
  .step-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.06em; color: var(--cream); margin-bottom: 0.6rem; }
  .step-desc { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #a7a199; line-height: 1.7; }

  /* WHY */
  .why { background: var(--light); padding: 7rem 2.5rem; }
  .why-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .why-list { display: flex; flex-direction: column; margin-top: 1rem; }
  .why-item { display: flex; gap: 1.25rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border-light); align-items: flex-start; }
  .why-item:first-child { border-top: 1px solid var(--border-light); }
  .why-arrow { color: var(--red); font-family: 'DM Sans', sans-serif; font-size: 0.7rem; flex-shrink: 0; margin-top: 0.15rem; }
  .why-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.15rem; letter-spacing: 0.05em; color: var(--black); margin-bottom: 0.3rem; }
  .why-desc { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: #5a554c; line-height: 1.65; }
  .why-big-quote { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 5rem); line-height: 0.95; letter-spacing: 0.02em; color: var(--black); margin-bottom: 2rem; }
  .why-big-quote span { color: var(--red); }
  .why-cta-block { background: var(--black); padding: 2rem; }
  .why-cta-label { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8a8a8a; margin-bottom: 0.75rem; }
  .why-cta-text { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 300; color: var(--cream); line-height: 1.5; margin-bottom: 1.5rem; }

  /* CONTACT / GET STARTED (formerly CTA banner) */
  .cta-banner { background: var(--black); padding: 7rem 2.5rem; text-align: left; position: relative; overflow: hidden; border-top: 1px solid var(--border-dark); }
  .cta-stone { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 60vw; max-width: 500px; opacity: 0.03; pointer-events: none; }
  .cta-inner { position: relative; z-index: 1; max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .cta-tag { font-family: 'DM Sans', sans-serif; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 1.5rem; }
  .cta-h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.8rem, 5.5vw, 4.75rem); line-height: 0.95; letter-spacing: 0.02em; color: var(--cream); margin-bottom: 1.5rem; }
  .cta-sub { font-family: 'DM Sans', sans-serif; font-size: 0.86rem; color: #a7a199; line-height: 1.75; max-width: 420px; margin: 0 0 2rem; }
  .cta-sub b { color: #cfc9bf; }
  .cta-actions { display: flex; align-items: center; justify-content: flex-start; gap: 1.5rem; flex-wrap: wrap; }

  .contact-alt { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border-dark); max-width: 420px; }
  .contact-alt-label { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.05em; color: var(--cream); margin-bottom: 0.5rem; }
  .contact-alt-note { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; color: #a7a199; line-height: 1.7; }
  .contact-alt-note a { color: var(--red); text-decoration: none; border-bottom: 1px solid transparent; }
  .contact-alt-note a:hover { border-color: var(--red); }

  /* CONTACT FORM */
  .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
  .contact-form[hidden] { display: none; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-field label { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: #a29c93; }
  .form-field input, .form-field select, .form-field textarea {
    font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: var(--cream);
    background: #131313; border: 1px solid #2a2a2a; border-radius: 0;
    padding: 0.75rem 0.9rem; width: 100%; transition: border-color 0.2s;
  }
  .form-field textarea { resize: vertical; min-height: 110px; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--red); }
  .form-field select {
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23a29c93' stroke-width='1.6'%3E%3Cpath d='M5 8 l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 12px;
    padding-right: 2.25rem;
  }
  .form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
  button.btn-red { border: none; cursor: pointer; }
  button.btn-red:disabled { opacity: 0.6; cursor: not-allowed; }
  .form-error { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: var(--red); line-height: 1.6; }
  .contact-success { background: #131313; border: 1px solid var(--border-dark); padding: 2.5rem; }
  .contact-success-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 0.04em; color: var(--cream); margin-bottom: 0.6rem; }
  .contact-success-text { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; color: #a7a199; line-height: 1.7; }

  /* FOOTER */
  footer { background: #080808; padding: 3rem 2.5rem; border-top: 1px solid #111; }
  .footer-inner { max-width: 1000px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
  .footer-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
  .footer-wordmark { font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; letter-spacing: 0.12em; color: #2e2e2e; }
  .footer-links { display: flex; gap: 2rem; list-style: none; }
  .footer-links a { font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8a857c; text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--cream); }
  .footer-copy { font-family: 'DM Sans', sans-serif; font-size: 0.64rem; color: #6f6a60; letter-spacing: 0.04em; }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }
    nav.stuck { padding: 0.85rem 1.5rem; }
    .nav-toggle { display: flex; }
    .nav-links {
      position: fixed; top: 0; right: 0; bottom: 0; z-index: 200;
      width: min(80vw, 320px); background: var(--black);
      border-left: 1px solid var(--border-dark);
      flex-direction: column; justify-content: center; align-items: center;
      gap: 2rem; padding: 2rem;
      transform: translateX(100%); visibility: hidden;
      transition: transform 0.35s ease;
    }
    .nav-links.open { transform: translateX(0); visibility: visible; }
    .nav-links a { font-size: 0.9rem; color: #b5aea4; }
    .hero { padding: 0 1.5rem 3.5rem; }
    .hero-bottom { flex-direction: column; align-items: flex-start; }
    .about { padding: 5rem 1.5rem; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .who { padding: 5rem 1.5rem; }
    .who-grid { grid-template-columns: 1fr; }
    .services { padding: 5rem 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card.full { grid-column: span 1; }
    .work { padding: 5rem 1.5rem; }
    .services-header { flex-direction: column; }
    .services-note { text-align: left; max-width: 100%; }
    .process { padding: 5rem 1.5rem; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .why { padding: 5rem 1.5rem; }
    .why-inner { grid-template-columns: 1fr; gap: 3rem; }
    .cta-banner { padding: 5rem 1.5rem; }
    .cta-inner { grid-template-columns: 1fr; gap: 3rem; }
    footer { padding: 2rem 1.5rem; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 480px) {
    .process-steps { grid-template-columns: 1fr; }
    .who-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
  }

  /* Respect users who prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .ticker-track { animation: none !important; }
    .hero-tag, .hero-h1, .hero-bottom { opacity: 1 !important; animation: none !important; }
  }
