 /* ----- ASTRA CUSTOM PROPERTIES ----- */
  :root {
    --astra-red: #E8192C;
    --astra-yellow: #F5C518;
    --astra-black: #0A0A0A;
    --astra-off-black: #111111;
    --astra-dark: #161616;
    --astra-grey: #222222;
    --astra-mid-grey: #444444;
    --astra-light-grey: #888888;
    --astra-white: #F4F0E8;
    --astra-pure-white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--astra-black);
    color: var(--astra-white);
    font-family: 'Syne', sans-serif;
    overflow-x: hidden;
  }

  /* ===== NAV ===== */
  .astra-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .astra-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .astra-nav-logo-icon {
    width: 36px;
    height: 36px;
  }

  .astra-nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--astra-white);
  }

  .astra-nav-logo-text span { color: var(--astra-red); }

  .astra-nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .astra-nav-links a {
    text-decoration: none;
    color: var(--astra-light-grey);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .astra-nav-links a:hover { color: var(--astra-white); }

  .astra-nav-cta {
    background: var(--astra-red);
    color: var(--astra-white) !important;
    padding: 10px 22px;
    font-size: 11px !important;
    letter-spacing: 2px;
    transition: background 0.2s !important;
  }

  .astra-nav-cta:hover { background: #c0101f !important; color: var(--astra-white) !important; }

  /* ===== HERO ===== */
  .astra-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 48px 80px;
    position: relative;
    overflow: hidden;
    background: var(--astra-black);
  }

  .astra-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(232,25,44,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(232,25,44,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
  }

  .astra-hero-bg-noise {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(232,25,44,0.12) 0%, transparent 65%);
    pointer-events: none;
  }

  .astra-hero-year-badge {
    position: absolute;
    top: 120px;
    right: 48px;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--astra-light-grey);
    letter-spacing: 3px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .astra-hero-tag {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--astra-red);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .astra-hero-tag::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--astra-red);
  }

  .astra-hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 12vw, 180px);
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--astra-white);
    position: relative;
    z-index: 2;
  }

  .astra-hero-headline .astra-accent { color: var(--astra-red); }
  .astra-hero-headline .astra-outline {
    -webkit-text-stroke: 2px var(--astra-white);
    color: transparent;
  }

  .astra-hero-sub-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
    position: relative;
    z-index: 2;
  }

  .astra-hero-description {
    max-width: 480px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--astra-light-grey);
    font-weight: 400;
  }

  .astra-hero-description strong {
    color: var(--astra-white);
    font-weight: 600;
  }

  .astra-hero-ctas {
    display: flex;
    gap: 16px;
  }

  .astra-btn-primary {
    background: var(--astra-red);
    color: var(--astra-white);
    padding: 16px 32px;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }

  .astra-btn-primary:hover { background: #c0101f; transform: translateY(-2px); }

  .astra-btn-outline {
    background: transparent;
    color: var(--astra-white);
    padding: 16px 32px;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.15s;
    display: inline-block;
  }

  .astra-btn-outline:hover { border-color: var(--astra-white); transform: translateY(-2px); }

  /* ===== TICKER ===== */
  .astra-ticker-wrap {
    background: var(--astra-red);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
  }

  .astra-ticker-inner {
    display: inline-block;
    animation: astraTicker 30s linear infinite;
  }

  .astra-ticker-inner span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 4px;
    color: var(--astra-white);
    margin: 0 32px;
  }

  .astra-ticker-dot {
    color: var(--astra-yellow);
  }

  @keyframes astraTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ===== SECTION SHARED ===== */
  .astra-section {
    padding: 120px 48px;
  }

  .astra-section-label {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--astra-red);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .astra-section-label::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--astra-red);
  }

  .astra-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.95;
    color: var(--astra-white);
    margin-bottom: 24px;
  }

  .astra-section-title .astra-accent { color: var(--astra-red); }
  .astra-section-title .astra-outline {
    -webkit-text-stroke: 1.5px var(--astra-white);
    color: transparent;
  }

  /* ===== MANIFESTO ===== */
  .astra-manifesto {
    background: var(--astra-off-black);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
  }

  .astra-manifesto-inner {
    max-width: 900px;
    position: relative;
    z-index: 2;
  }

  .astra-manifesto-quote {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 6vw, 80px);
    line-height: 1.05;
    color: var(--astra-white);
    margin-bottom: 48px;
  }

  .astra-manifesto-quote .astra-red { color: var(--astra-red); }

  .astra-manifesto-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 60px;
  }

  .astra-stat-item {
    padding-right: 40px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .astra-stat-item:last-child { border-right: none; }
  .astra-stat-item:not(:first-child) { padding-left: 40px; padding-right: 40px; }

  .astra-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 1;
    color: var(--astra-red);
    display: block;
  }

  .astra-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--astra-light-grey);
    margin-top: 6px;
    display: block;
  }

  .astra-manifesto-bg-text {
    position: absolute;
    top: -20px;
    right: -20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 240px;
    color: rgba(232,25,44,0.04);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    user-select: none;
  }

  /* ===== WHAT WE DO ===== */
  .astra-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: rgba(255,255,255,0.05);
  }

  .astra-service-card {
    background: var(--astra-off-black);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .astra-service-card:hover { background: var(--astra-dark); }

  .astra-service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--astra-red);
    transition: width 0.4s ease;
  }

  .astra-service-card:hover::after { width: 100%; }

  .astra-service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 28px;
    color: var(--astra-red);
  }

  .astra-service-num {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    color: var(--astra-mid-grey);
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: block;
  }

  .astra-service-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    color: var(--astra-white);
    margin-bottom: 16px;
  }

  .astra-service-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--astra-light-grey);
    font-weight: 400;
  }

  /* ===== ARTIST SECTION ===== */
  .astra-artist-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 64px;
  }

  .astra-artist-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--astra-light-grey);
    margin-bottom: 32px;
  }

  .astra-artist-body strong { color: var(--astra-white); font-weight: 600; }

  .astra-checklist {
    list-style: none;
    margin-bottom: 48px;
  }

  .astra-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
    color: var(--astra-light-grey);
    font-weight: 400;
    line-height: 1.6;
  }

  .astra-checklist li:last-child { border-bottom: none; }

  .astra-check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--astra-red);
    margin-top: 2px;
  }

  .astra-checklist li strong { color: var(--astra-white); display: block; font-weight: 600; font-size: 13px; margin-bottom: 3px; }

  .astra-package-card {
    background: var(--astra-off-black);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
  }

  .astra-package-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--astra-red);
  }

  .astra-package-badge {
    background: var(--astra-red);
    color: var(--astra-white);
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 28px;
  }

  .astra-package-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    line-height: 1;
    color: var(--astra-white);
    margin-bottom: 6px;
  }

  .astra-package-price-sub {
    font-size: 12px;
    color: var(--astra-light-grey);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    margin-bottom: 36px;
    display: block;
  }

  .astra-package-includes {
    list-style: none;
    margin-bottom: 36px;
  }

  .astra-package-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
    color: var(--astra-white);
    font-weight: 600;
  }

  .astra-package-includes li:last-child { border-bottom: none; }

  .astra-pkg-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--astra-red);
    flex-shrink: 0;
  }

  .astra-package-partner {
    background: rgba(245,197,24,0.08);
    border: 1px solid rgba(245,197,24,0.2);
    padding: 14px 16px;
    margin-top: 24px;
  }

  .astra-package-partner p {
    font-size: 11px;
    color: var(--astra-yellow);
    font-family: 'Space Mono', monospace;
    letter-spacing: 1px;
  }

  /* ===== FOR BRANDS ===== */
  .astra-brands-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
  }

  .astra-brands-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
  }

  .astra-brands-body strong { color: var(--astra-white); font-weight: 700; }

  .astra-brands-reasons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
  }

  .astra-reason-item {
    background: rgba(0,0,0,0.15);
    padding: 28px 24px;
  }

  .astra-reason-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--astra-yellow);
    margin-bottom: 8px;
    display: block;
  }

  .astra-reason-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
  }

  .astra-btn-dark {
    background: var(--astra-black);
    color: var(--astra-white);
    padding: 16px 32px;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    display: inline-block;
  }

  .astra-btn-dark:hover { opacity: 0.8; transform: translateY(-2px); }

  /* ===== PROGRAMS ===== */
  .astra-programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: rgba(255,255,255,0.04);
  }

  .astra-program-card {
    background: var(--astra-black);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.3s;
  }

  .astra-program-card:hover { background: #0f0f0f; }

  .astra-program-icon {
    width: 52px;
    height: 52px;
  }

  .astra-program-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--astra-red);
    margin-bottom: 14px;
    display: block;
  }

  .astra-program-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    line-height: 1;
    color: var(--astra-white);
    margin-bottom: 16px;
  }

  .astra-program-desc {
    font-size: 13px;
    line-height: 1.75;
    color: var(--astra-light-grey);
    margin-bottom: 32px;
  }

  .astra-program-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--astra-red);
    text-decoration: none;
    transition: gap 0.2s;
    cursor: pointer;
  }

  .astra-program-card:hover .astra-program-cta { gap: 14px; }

  .astra-program-arrow {
    width: 16px;
    height: 16px;
  }

  /* ===== SIGN UP SECTION ===== */
  .astra-apply-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    margin-top: 64px;
  }

  .astra-apply-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--astra-light-grey);
    margin-bottom: 40px;
  }

  .astra-apply-intro strong { color: var(--astra-white); }

  .astra-apply-form-wrap {
    background: var(--astra-off-black);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 52px 44px;
  }

  .astra-form-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--astra-white);
    margin-bottom: 8px;
  }

  .astra-form-sub {
    font-size: 13px;
    color: var(--astra-light-grey);
    margin-bottom: 36px;
  }

  .astra-form-group {
    margin-bottom: 20px;
  }

  .astra-form-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--astra-light-grey);
    margin-bottom: 8px;
    font-family: 'Space Mono', monospace;
  }

  .astra-form-input,
  .astra-form-select,
  .astra-form-textarea {
    width: 100%;
    background: var(--astra-black);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--astra-white);
    padding: 14px 16px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
  }

  .astra-form-input:focus,
  .astra-form-select:focus,
  .astra-form-textarea:focus {
    border-color: var(--astra-red);
  }

  .astra-form-input::placeholder,
  .astra-form-textarea::placeholder { color: var(--astra-mid-grey); }

  .astra-form-select option { background: var(--astra-black); color: var(--astra-white); }

  .astra-form-textarea { resize: vertical; min-height: 100px; }

  .astra-form-submit {
    width: 100%;
    background: var(--astra-red);
    color: var(--astra-white);
    padding: 18px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
  }

  .astra-form-submit:hover { background: #c0101f; }

  .astra-form-note {
    font-size: 11px;
    color: var(--astra-mid-grey);
    margin-top: 16px;
    text-align: center;
    font-family: 'Space Mono', monospace;
  }

  /* ===== ABOUT SECTION ===== */
  .astra-about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 64px;
  }

  .astra-about-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--astra-light-grey);
  }

  .astra-about-body p { margin-bottom: 20px; }
  .astra-about-body strong { color: var(--astra-white); font-weight: 600; }

  .astra-about-visual {
    position: relative;
  }

  .astra-about-big-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px;
    line-height: 0.85;
    color: rgba(232,25,44,0.08);
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: -30px;
    left: -20px;
  }

  .astra-about-pillars {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 2;
  }

  .astra-pillar {
    background: var(--astra-off-black);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: background 0.2s;
  }

  .astra-pillar:hover { background: var(--astra-grey); }

  .astra-pillar-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: var(--astra-red);
    line-height: 1;
    flex-shrink: 0;
  }

  .astra-pillar-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--astra-white);
    letter-spacing: 1px;
    display: block;
  }

  .astra-pillar-desc {
    font-size: 12px;
    color: var(--astra-light-grey);
    margin-top: 3px;
  }

  /* ===== FOOTER ===== */
  .astra-footer {
    background: var(--astra-off-black);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 80px 48px 40px;
  }

  .astra-footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .astra-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-decoration: none;
  }

  .astra-footer-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--astra-white);
  }

  .astra-footer-logo-text span { color: var(--astra-red); }

  .astra-footer-tagline {
    font-size: 13px;
    color: var(--astra-light-grey);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 28px;
  }

  .astra-social-links {
    display: flex;
    gap: 14px;
  }

  .astra-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    color: var(--astra-light-grey);
  }

  .astra-social-link:hover { background: var(--astra-red); border-color: var(--astra-red); color: var(--astra-white); }

  .astra-social-link svg { width: 16px; height: 16px; }

  .astra-footer-col-title {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--astra-white);
    margin-bottom: 20px;
    display: block;
  }

  .astra-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .astra-footer-links a {
    text-decoration: none;
    color: var(--astra-light-grey);
    font-size: 13px;
    transition: color 0.2s;
  }

  .astra-footer-links a:hover { color: var(--astra-white); }

  .astra-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .astra-footer-copy {
    font-size: 11px;
    color: var(--astra-mid-grey);
    font-family: 'Space Mono', monospace;
  }

  .astra-footer-est {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--astra-mid-grey);
  }

  /* ===== SCROLL REVEAL ===== */
  .astra-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .astra-reveal.astra-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== SUCCESS STATE ===== */
  .astra-form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }

  .astra-form-success.astra-active { display: block; }

  .astra-form-success svg {
    width: 60px;
    height: 60px;
    color: var(--astra-red);
    margin: 0 auto 20px;
    display: block;
  }

  .astra-form-success h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--astra-white);
    margin-bottom: 10px;
  }

  .astra-form-success p {
    font-size: 14px;
    color: var(--astra-light-grey);
  }

  /* ===== MOBILE ===== */
  @media (max-width: 900px) {
    .astra-nav { padding: 16px 24px; }
    .astra-nav-links { display: none; }
    .astra-section, .astra-hero, .astra-apply-section { padding: 80px 24px; }
    .astra-hero { padding: 100px 24px 60px; }
    .astra-footer { padding: 60px 24px 32px; }
    .astra-hero-headline { font-size: clamp(60px, 16vw, 100px); }
    .astra-hero-sub-row { flex-direction: column; align-items: flex-start; gap: 32px; }
    .astra-manifesto-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .astra-stat-item { border-right: none; padding: 0 0 32px !important; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .astra-stat-item:last-child { border-bottom: none; }
    .astra-services-grid, .astra-artist-layout, .astra-brands-layout, .astra-programs-grid,
    .astra-apply-layout, .astra-about-layout, .astra-brands-reasons { grid-template-columns: 1fr; }
    .astra-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .astra-hero-year-badge { display: none; }
    .astra-about-big-text { font-size: 100px; }
  }
