  :root {
    --ink: #0a0a0a;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --gold: #c8a96e;
    --purple: #a72689;
    --gold-light: #e8d5a8;
    --steel: #2c3e4a;
    --steel-light: #4a6070;
    --rust: #b85c3a;
    --mist: #8a9ba8;
    --border: rgba(10, 10, 10, 0.12);
    --border-gold: rgba(200, 169, 110, 0.3);
  }

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--ink);
    overflow-x: hidden;
  }

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

  /* ─── TICKER BAR ─── */
  .ticker-bar {
    background: var(--ink);
    color: var(--purple);
    padding: 8px 0;
    overflow: hidden;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-gold);
  }

  .ticker-inner {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }

  .ticker-inner span {
    padding: 0 40px;
    color: var(--cream);
  }

  .ticker-inner span em {
    color: var(--purple);
    font-style: normal;
  }

  @keyframes ticker {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  /* ─── NAV ─── */
  nav {
    position: sticky;
    top: 50px;
    z-index: 100;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    width: 12rem;
  }

  .nav-logo img {
    width: 100%;
    height: auto;
  }

  .nav-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--ink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-logo-mark svg {
    width: 22px;
    height: 22px;
  }

  .nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nav-logo-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  .nav-logo-text .tagline {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mist);
    margin-top: 2px;
    font-weight: 300;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }

  .nav-links a {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--steel);
    font-weight: 400;
    transition: color 0.2s;
    position: relative;
  }

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

  .nav-links a:hover {
    color: var(--ink);
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-cta {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .btn-exchange {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    padding: 6px 14px;
    border: 1px solid var(--border-gold);
    color: var(--purple);
    background: transparent;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: 0.08em;
    transition: all 0.2s;
    text-decoration: none;
  }

  .btn-exchange:hover {
    background: var(--purple);
    color: var(--ink);
  }

  .btn-primary {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 24px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--steel);
  }

  /* ─── HERO ─── */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    padding: 80px 64px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
  }

  .hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--purple);
  }

  .hero-eyebrow span {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 28px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--steel);
  }

  .hero-title .accent {
    color: var(--purple);
  }

  .hero-subtitle {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--steel-light);
    max-width: 420px;
    margin-bottom: 48px;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .btn-ghost {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 4px;
    transition: all 0.2s;
  }

  .btn-ghost:hover {
    color: var(--purple);
    border-color: var(--purple);
  }

  .btn-ghost svg {
    width: 14px;
    height: 14px;
  }

  .hero-right {
    position: relative;
    overflow: hidden;
  }

  .hero-right-bg {
    position: absolute;
    inset: 0;
    background: var(--steel);
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(200, 169, 110, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200, 169, 110, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .hero-stats {
    position: absolute;
    bottom: 64px;
    left: 14%;
    right: 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200, 169, 110, 0.2);
    border: 1px solid rgba(200, 169, 110, 0.2);
  }

  .hero-stat {
    background: rgba(44, 62, 74, 0.8);
    backdrop-filter: blur(8px);
    padding: 24px 20px;
    text-align: center;
  }

  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--purple);
    line-height: 1;
    display: block;
  }

  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    margin-top: 6px;
    display: block;
  }

  .hero-badge {
    position: absolute;
    top: 48px;
    right: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .hero-badge-tag {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--purple);
    color: var(--ink);
    padding: 4px 12px;
    border-radius: 1px;
    font-weight: 700;
  }

  .hero-badge-sub {
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--mist);
    text-transform: uppercase;
  }

  /* ─── SECTION COMMONS ─── */
  section {
    padding: 100px 80px;
  }

  .section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-label-line {
    width: 32px;
    height: 1px;
    background: var(--purple);
  }

  .section-label span {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--ink);
  }

  .section-title em {
    font-style: italic;
    color: var(--steel);
  }

  /* ─── VENTURE STUDIO INTRO ─── */
  .studio-intro {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .studio-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
  }

  .studio-intro-left {}

  .studio-intro-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--steel-light);
    margin-top: 28px;
    margin-bottom: 40px;
  }

  .studio-intro-quote {
    border-left: 3px solid var(--purple);
    padding-left: 24px;
    margin-top: 40px;
  }

  .studio-intro-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--steel);
  }

  .studio-intro-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--border);
  }

  .studio-pillar {
    background: var(--warm-white);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .studio-pillar:hover {
    background: var(--ink);
  }

  .studio-pillar:hover .pillar-num,
  .studio-pillar:hover .pillar-title,
  .studio-pillar:hover .pillar-text {
    color: var(--cream);
  }

  .studio-pillar:hover .pillar-bar {
    background: var(--purple);
  }

  .pillar-num {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--purple);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
    transition: color 0.3s;
  }

  .pillar-bar {
    width: 32px;
    height: 2px;
    background: var(--border);
    margin-bottom: 16px;
    transition: background 0.3s;
  }

  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 10px;
    transition: color 0.3s;
  }

  .pillar-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--steel-light);
    font-weight: 300;
    transition: color 0.3s;
  }

  /* ─── PORTFOLIO COMPANIES ─── */
  .portfolio {
    background: var(--warm-white);
  }

  .portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
  }

  .portfolio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
  }

  .portfolio-card {
    background: var(--warm-white);
    padding: 48px 36px;
    border-top: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
  }

  .portfolio-card:hover {
    border-top-color: var(--purple);
    background: var(--cream);
  }

  .portfolio-card.featured {
    border-top-color: var(--rust);
  }

  .pc-sector {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 20px;
    display: block;
  }

  .pc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.1;
  }

  .pc-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--steel-light);
    font-weight: 300;
    margin-bottom: 28px;
  }

  .pc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 28px;
  }

  .pc-tag {
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border: 1px solid var(--border);
    color: var(--steel-light);
    border-radius: 100px;
  }

  .pc-stage {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pc-stage-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
  }

  .pc-stage-dot.active {
    background: #4caf50;
  }

  .pc-stage span {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--mist);
    text-transform: uppercase;
  }

  /* ─── HOW WE BUILD ─── */
  .process {
    background: var(--ink);
    color: var(--cream);
  }

  .process .section-title {
    color: var(--cream);
  }

  .process .section-title em {
    color: var(--purple);
  }

  .process .section-label span {
    color: var(--purple);
  }

  .process-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 72px;
  }

  .process-intro {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--mist);
    font-weight: 300;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
  }

  .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, var(--purple), rgba(200, 169, 110, 0.2));
  }

  .process-step {
    padding: 0 28px 0 0;
    padding-top: 0;
  }

  .ps-num {
    width: 56px;
    height: 56px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 12px;
    color: var(--purple);
    margin-bottom: 28px;
    background: var(--ink);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
  }

  .process-step:hover .ps-num {
    background: var(--purple);
    color: var(--ink);
    border-color: var(--purple);
  }

  .ps-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 12px;
  }

  .ps-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--mist);
    font-weight: 300;
  }

  /* ─── LISTINGS ─── */
  .listings {
    background: var(--cream);
    border-top: 1px solid var(--border);
  }

  .listings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
    align-items: start;
  }

  .listing-card {
    border: 1px solid var(--border);
    padding: 40px;
    background: var(--warm-white);
    position: relative;
  }

  .listing-exchange {
    position: absolute;
    top: -1px;
    left: 40px;
    background: var(--ink);
    color: var(--purple);
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    padding: 5px 14px;
    text-transform: uppercase;
  }

  .listing-code {
    font-family: 'Space Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 28px;
    margin-bottom: 6px;
  }

  .listing-label {
    font-size: 12px;
    color: var(--mist);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .listing-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .li-item {}

  .li-key {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 4px;
    display: block;
  }

  .li-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
  }

  .investor-links {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--border);
  }

  .inv-link {
    background: var(--warm-white);
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--ink);
    transition: background 0.2s;
  }

  .inv-link:hover {
    background: var(--cream);
  }

  .inv-link-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
  }

  .inv-link-arrow {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: var(--purple);
    transition: transform 0.2s;
  }

  .inv-link:hover .inv-link-arrow {
    transform: translateX(4px);
  }

  /* ─── TEAM ─── */
  .team {
    background: var(--warm-white);
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border);
    margin-top: 64px;
  }

  .team-card {
    background: var(--warm-white);
    padding: 36px 28px;
    transition: background 0.3s;
  }

  .team-card:hover {
    background: var(--cream);
  }

  .tc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--steel);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--purple);
    font-weight: 600;
  }

  .tc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
  }

  .tc-role {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 16px;
    display: block;
  }

  .tc-bio {
    font-size: 12px;
    line-height: 1.7;
    color: var(--steel-light);
    font-weight: 300;
  }

  /* ─── THESIS ─── */
  .thesis {
    background: var(--steel);
    padding: 100px 80px;
    position: relative;
    overflow: hidden;
  }

  .thesis::before {
    content: 'VENTURE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18vw;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .thesis-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .thesis-inner .section-label {
    justify-content: center;
  }

  .thesis-inner .section-label .section-label-line {
    background: rgba(200, 169, 110, 0.5);
  }

  .thesis-inner .section-label span {
    color: var(--gold-light);
  }

  .thesis-statement {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--cream);
    margin-top: 24px;
    margin-bottom: 48px;
  }

  .thesis-statement em {
    color: var(--purple);
    font-style: italic;
  }

  .thesis-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(200, 169, 110, 0.15);
    border: 1px solid rgba(200, 169, 110, 0.15);
    text-align: left;
    margin-top: 64px;
  }

  .tp {
    background: rgba(44, 62, 74, 0.6);
    padding: 32px 28px;
    backdrop-filter: blur(4px);
  }

  .tp-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
  }

  .tp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
  }

  .tp-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--mist);
    font-weight: 300;
  }

  /* ─── CONTACT ─── */
  .contact {
    background: var(--warm-white);
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
  }

  .contact-offices {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .office-card {
    padding: 32px;
    border: 1px solid var(--border);
    background: var(--cream);
    position: relative;
  }

  .office-type {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--purple);
    color: var(--ink);
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 12px;
    font-weight: 700;
  }

  .office-address {
    font-size: 14px;
    line-height: 1.8;
    color: var(--steel);
    margin-top: 8px;
  }

  .office-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .office-contact a {
    font-size: 13px;
    color: var(--steel-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
  }

  .office-contact a:hover {
    color: var(--purple);
  }

  .contact-form-area {}

  .contact-form-area h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 28px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-field {
    margin-bottom: 16px;
  }

  .form-field label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mist);
    margin-bottom: 8px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    background: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
    border-radius: 0;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--purple);
  }

  .form-field textarea {
    height: 100px;
    resize: vertical;
  }

  .form-submit {
    width: 100%;
    padding: 16px;
    background: var(--ink);
    color: var(--cream);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
  }

  .form-submit:hover {
    background: var(--steel);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 64px 80px 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
  }

  .footer-brand {}

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }

  .footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-logo-mark svg {
    width: 20px;
    height: 20px;
  }

  .footer-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.02em;
  }

  .footer-brand-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 300;
    max-width: 260px;
    margin-bottom: 24px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mist);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 12px;
  }

  .footer-social a:hover {
    border-color: var(--purple);
    color: var(--purple);
  }

  .footer-col {}

  .footer-col-title {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 20px;
    display: block;
    font-family: 'Space Mono', monospace;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
  }

  .footer-links a:hover {
    color: var(--cream);
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
  }

  .footer-legal {
    display: flex;
    gap: 24px;
  }

  .footer-legal a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }

  .footer-legal a:hover {
    color: var(--cream);
  }

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

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero-eyebrow {
    animation: fadeUp 0.7s 0.1s both;
  }

  .hero-title {
    animation: fadeUp 0.7s 0.25s both;
  }

  .hero-subtitle {
    animation: fadeUp 0.7s 0.4s both;
  }

  .hero-actions {
    animation: fadeUp 0.7s 0.55s both;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar {
    width: 6px;
  }

  ::-webkit-scrollbar-track {
    background: var(--cream);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--steel-light);
    border-radius: 3px;
  }

  @media (max-width: 900px) {
    nav {
      padding: 0 24px;
    }

    .nav-links {
      display: none;
    }

    section {
      padding: 60px 24px;
    }

    .hero {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .hero-left {
      padding: 60px 24px;
    }

    .hero-right {
      height: 300px;
    }

    .hero-right-bg,
    .hero-grid-overlay {
      clip-path: none;
    }

    .studio-intro-grid,
    .portfolio-cards,
    .process-steps,
    .listings-grid,
    .contact-grid,
    .team-grid {
      grid-template-columns: 1fr;
    }

    .studio-intro-right {
      grid-template-columns: 1fr 1fr;
    }

    .process-steps::before {
      display: none;
    }

    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }

    footer {
      padding: 48px 24px 24px;
    }
  }

  .service-features li a {
    text-decoration: auto;
    color: var(--steel-light);
    font-weight: 600;
  }