    :root {
        --black: #000;
        --white: #fff;
        --nav-height: 64px;
    }

    /* CSS RESET & BASE */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        height: auto;
    }

    body {
        font-family: 'Plus Jakarta Sans', sans-serif;
        background-color: #030303;
        color: #ffffff;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* Used by JS to lock scroll during the intro animation */
    body.scroll-locked {
        overflow: hidden;
        height: 100vh;
    }

    /* Premium Film Grain Noise Overlay */
    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        opacity: 0.04;
        pointer-events: none;
        z-index: 999;
    }

    /* LOADER SCENE (White Background & Cube) */
    #loader {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
        will-change: opacity;
        pointer-events: none;
    }

    .cube-wrapper {
        perspective: 1000px;
        font-size: clamp(1.5rem, 4vw, 3.5rem);
        font-weight: 600;
        letter-spacing: -0.03em;
        color: #000000;
    }

    /* Dynamic height based exactly on font-size using ems. 
       This ensures the 3D math is flawless on all screen sizes. */
    .cube {
        position: relative;
        width: 100vw;
        height: 1.2em;
        transform-style: preserve-3d;
        will-change: transform;
    }

    .cube-face {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 1.2em;
        line-height: 1.2em;
        text-align: center;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    /* Front face is pushed exactly half the height forward */
    .cube-face.front {
        transform: translateZ(0.6em);
    }

    /* Bottom face is rotated flat to the bottom, pushed half height out */
    .cube-face.bottom {
        transform: rotateX(-90deg) translateZ(0.6em);
    }

    /* Hide <br> on desktop */
    .mobile-br {
        display: none;
    }

    /* ─── NAVBAR ─────────────────────────────────────────────── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 48px;
        height: var(--nav-height);
        background: transparent;
        transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav.scrolled {
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: min(680px, 90vw);
        height: 48px;
        padding: 0 28px;
        border-radius: 999px;
        background: rgba(10, 10, 10, 0.55);
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-logo {
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--white);
        text-decoration: none;
        user-select: none;
    }

    .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 14px;
        font-weight: 300;
        letter-spacing: 0.03em;
        opacity: 0.85;
        transition: opacity 0.2s;
    }

    .nav-links a:hover {
        opacity: 1;
    }

    /* Hamburger (hidden on desktop) */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 32px;
        height: 32px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 1.5px;
        background: var(--white);
        border-radius: 2px;
        transition: transform 0.35s ease, opacity 0.25s ease;
        transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    /* ─── MOBILE MENU OVERLAY ─────────────────────────────────── */
    .mobile-overlay {
        padding: 0 5%;
        display: none;
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(0, 0, 0, 0.82);
        backdrop-filter: blur(24px) saturate(150%);
        -webkit-backdrop-filter: blur(24px) saturate(150%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.7s ease;
        flex-direction: column;
        align-items: left;
        justify-content: center;
        gap: 20px;
    }

    .mobile-overlay.visible {
        opacity: 1;
        pointer-events: all;
    }

    .mobile-overlay a {
        color: var(--white);
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-weight: 200;
        font-size: clamp(30px, 5.5vw, 50px);
        letter-spacing: 0.08em;
        opacity: 0.9;
        transition: opacity 0.2s;
    }

    .mobile-overlay a:hover {
        opacity: 1;
    }

    /* ─── HERO SECTION ───────────────────────────────────────── */
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* padding: calc(var(--nav-height) + 10px) 5%; */
        padding: 70px 5%;
    }

    /* Abstract Shape */
    .hero-visual {
        position: absolute;
        right: -1%;
        top: 50%;
        transform: translateY(-55%);
        width: 800px;
        height: 700px;
        background: radial-gradient(circle, #6828154f 0%, transparent 70%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 1;
    }

    /* Staircase headline */
    .hero-headline {
        font-family: 'Inter', sans-serif;
        font-size: clamp(40px, 8vw, 120px);
        font-weight: 300;
        line-height: 0.92;
        /* letter-spacing: 0.01em; */
        color: var(--white);
        text-align: center;
        width: 100%;
    }


    /* Each line nudged to create the staircase */
    .line-1 {
        display: block;
        text-align: left;
        padding-left: 15%;
    }

    .line-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .line-3 {
        display: block;
        text-align: left;
        padding-left: 5%;
    }

    .line-4 {
        display: block;
        text-align: right;
        padding-right: 2%;
    }


    /* Marble blob inline with WEBSITES */
    .blob {
        display: inline-block;
        width: clamp(40px, 10vw, 160px);
        height: clamp(20px, 4.5vw, 60px);

        background-image: url('https://img.freepik.com/premium-vector/abstract-black-white-wavy-lines-striped-background-wavy-lines-background-pattern_266639-1531.jpg');
        background-size: cover;
        background-position: center;

        flex-shrink: 0;
        vertical-align: middle;
        position: relative;
        top: -0.05em;

        border-radius: 50px;
        overflow: hidden;
    }

    /* ─── SUBTEXT ────────────────────────────────────────────── */
    .hero-sub {
        margin-top: clamp(48px, 8vh, 100px);
        max-width: 410px;
    }

    .hero-sub strong {
        display: block;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.01em;
        margin-bottom: 5px;
    }

    .hero-sub p {
        font-size: 13.5px;
        font-weight: 300;
        line-height: 1.65;
        opacity: 0.8;
    }

    /* ─── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 768px) {
        nav {
            padding: 0 24px;
        }

        .mobile-br {
            display: inline;
        }

        nav.scrolled {
            width: min(92vw, 520px);
            padding: 0 20px;
        }

        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .mobile-overlay {
            display: flex;
        }

        .hero {
            position: relative;
            padding: 120px 5%;
            min-height: 100svh;

            display: flex;
            flex-direction: column;
            justify-content: center;
            /* vertical center */
            align-items: center;
            /* horizontal center */
            text-align: left;
        }

        .hero-visual {
            position: absolute;
            right: 5%;
            top: 50%;
            transform: translateY(-55%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #6828154f 0%, transparent 70%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            z-index: 1;
        }

        .line-2 {
            font-size: 45px;
        }

        .hero-sub {
            text-align: left;
            position: absolute;
            bottom: 40px;
            left: 6%;
            max-width: 300px;
        }
    }

    @media (max-width: 480px) {
        .hero-headline {
            font-size: clamp(40px, 14vw, 65px);
        }
    }

    /* Base Section Styling */
    .about-section {
        padding: 60px 5%;
        display: flex;
        flex-direction: column;
        gap: 80px;
        width: 100%;
        background-color: transparent;
        box-sizing: border-box;
    }

    /* Left-aligned Big Heading */
    .about-heading {
        font-family: 'Inter', sans-serif;
        text-align: left;
        font-size: clamp(3rem, 7vw, 6rem);
        font-weight: 200;
        line-height: 1.1;
        letter-spacing: -0.03em;
        max-width: 100%;
        margin-left: 0;
        margin-right: auto;
        margin-top: 0;
        color: #ffffff;
        margin-bottom: 20px;
    }



    /* Long Bordered Stats Container */
    .about-stats-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        border-top: 1px solid #682815c5;
        border-bottom: 1px solid #682815da;
        padding: 80px 0;
    }

    .stat-item {
        display: flex;
        justify-content: center;
        align-items: center;
        border-right: 1px solid #682815da;
        padding: 0 10px;
    }

    .stat-item:last-child {
        border-right: none;
    }

    .stat-text {
        font-family: 'Inter', sans-serif;
        color: #ffffff;
        font-size: clamp(0.85rem, 2vw, 2rem);
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        text-align: center;
        opacity: 0.7;
    }

    /* Left-aligned Paragraphs */
    .about-content {
        text-align: left;
        max-width: 1100px;
        margin-right: auto;
    }

    .about-content p {
        font-family: 'Inter', sans-serif;
        font-size: clamp(1.1rem, 2vw, 2rem);
        font-weight: 200;
        color: #ffffff;
        margin-bottom: 2.5rem;
        line-height: 1.8;
    }

    .about-line-wrapper {
        overflow: hidden;
    }

    .about-line {
        display: block;
    }

    /* Mobile Responsiveness */
    @media (max-width: 1024px) {
        .about-stats-container {
            grid-template-columns: repeat(2, 1fr);
        }

        .stat-item:nth-child(2n) {
            border-right: none;
        }
    }

    @media (max-width: 768px) {

        .about-section {
            padding: 40px 5%;
            gap: 50px;
        }

        .about-heading {
            font-size: 3.2rem;
            text-align: left;
        }

        .about-stats-container {
            grid-template-columns: 1fr;
            padding: 2px 0 0 0;
            border-bottom: none;
        }

        .stat-item {
            border-right: none;
            border-bottom: 1px solid #682815da;
            padding: 20px 0;
            margin: 0;
            justify-content: flex-start;
        }

        .stat-item:last-child {
            border-bottom: 1px solid #682815da;
        }

        .stat-text {
            text-align: left;
        }
    }

    /* WORKS SECTION */

    .works-section {
        padding: 90px 5%;
        width: 100%;
    }

    .works-header {
        margin-bottom: 60px;
    }

    .section-label {
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
        font-weight: 300;
        color: var(--accent-color);
    }

    .works-container {
        display: flex;
        flex-direction: column;
        gap: 150px;
    }

    /* Grid Layout */
    .work-item {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 40px;
        align-items: flex-start;
    }

    /* Left Side: Title */
    .work-left {
        position: sticky;
        top: 120px;
    }

    .work-number {
        display: block;
        font-size: 1rem;
        font-weight: 300;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

    .work-title {
        font-size: clamp(2rem, 5vw, 4rem);
        font-weight: 200;
        line-height: 1.1;
        letter-spacing: -0.02em;
    }

    .title-reveal {
        overflow: hidden;
    }

    .title-reveal span {
        display: inline-block;
        transform: translateY(100%);
    }

    /* Right Side: Details */
    .work-right {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .work-image-container {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        overflow: hidden;
    }

    .work-image {
        position: absolute;
        /* KEY FIX */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: black;

        transform: scale(1);
    }

    .work-image:hover {
        filter: grayscale(0%);
    }

    .work-details {
        max-width: 500px;
        opacity: 0;
        transform: translateY(30px);
    }

    .work-description {
        font-size: 1.2rem;
        font-weight: 300;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 25px;
    }

    .work-stack {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    /* Responsive Scaling */
    @media (max-width: 900px) {
        .work-item {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .work-left {
            position: relative;
            top: 0;
            margin-bottom: 20px;
        }

        .work-image-container {
            aspect-ratio: 4 / 3;
        }
    }

    @media (max-width: 480px) {
        .works-section {
            padding: 0px 5%;
        }

        .work-title {
            font-size: 2.5rem;
        }

        .work-description {
            font-size: 1rem;
        }
    }

    /* APPRAOCH SECTION */
    /* Section Layout */
    .approach {
        padding: 60px 5%;
        width: 100%;
    }

    .approach__container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .approach__header-main {
        margin-bottom: 80px;
    }

    .approach__heading {
        font-size: clamp(2.5rem, 5.5vw, 4.5rem);
        font-weight: 200;
        line-height: 1.1;
        letter-spacing: -0.03em;
        font-family: 'Inter', sans-serif;
    }

    .approach__item {
        border-top: 1px solid var(--border);
        overflow: hidden;
    }

    .approach__item:last-of-type {
        border-bottom: 1px solid var(--border);
    }

    .approach__item-header {
        padding: 50px 0;
        display: flex;
        align-items: center;
    }

    .approach__number {
        font-size: 1rem;
        font-weight: 600;
        color: var(--muted);
        margin-right: 40px;
        min-width: 30px;
        opacity: 0.4;
        transition: opacity 0.4s ease;
    }

    .approach__title {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 400;
        transition: transform 0.4s ease, color 0.4s ease;
    }

    .approach__item-body {
        height: 0;
        overflow: hidden;
        will-change: height;
    }

    .approach__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        padding: 0 0 80px 70px;
        align-items: center;
    }

    .approach__image-wrap {
        aspect-ratio: 16 / 10;
        overflow: hidden;
        opacity: 0;
        transform: translateY(30px);
    }

    .approach__image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .approach__text-wrap {
        opacity: 0;
        transform: translateY(20px);
    }

    .approach__description {
        font-size: 1.25rem;
        line-height: 1.6;
        font-weight: 300;
        color: var(--muted);
    }

    .approach__item.is-active .approach__title,
    .approach__item.is-active .approach__number {
        color: #cf4c24da;
        opacity: 1;
    }

    @media (max-width: 900px) {
        .approach__content {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 0 0 50px 0;
        }

        .approach__number {
            margin-right: 20px;
        }

        .approach__description {
            font-size: 18px;
        }
    }



    /* --- BASE SECTION STYLES --- */
.agency-build {
  /* Prompt requirements: 120px Y, 5% X */
  padding: 60px 5%;
  background-color: transparent; /* Clean white backdrop */
  font-family: 'Inter', sans-serif;
  color: #d4d4d4;
  overflow: hidden;
}

/* --- HEADER --- */
.build-header {
  max-width: 800px;
  margin-bottom: 80px;
}

.build-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  line-height: 1.1;
}

.build-subtitle {
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
  max-width: 600px;
}

/* --- THE ASYMMETRIC GRID --- */
.build-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  margin-bottom: 100px;
}

/* --- THE CARDS (Unboxed, premium feel) --- */
.build-card {
  position: relative;
  background-color: #68281563; /* Very soft gray */
  border-radius: 24px;
  padding: 35px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  
  /* Smooth transitions for the hover effect */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Asymmetric sizing based on a 12-col grid */
.is-large {
  grid-column: span 7;
}

.is-small {
  grid-column: span 5;
}

/* Breaking the alignment for that custom agency look */
.has-offset-top {
  margin-top: 60px;
}

.has-offset-bottom {
  margin-bottom: 60px;
}

/* --- CARD CONTENT & TYPOGRAPHY --- */
.card-index {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #f3f3f3;
  margin-bottom: 40px;
  transition: color 0.4s ease;
}

.card-title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #e9e9e9;
}

.card-desc {
  font-size: 1rem;
  color: #dbdbdb;
  line-height: 1.6;
  font-weight: 400;
}

/* --- HOVER INTERACTIONS --- */
.build-card:hover {
  transform: translateY(-8px);
  background-color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.build-card:hover 
.card-index {
  color: #111111; /* Number darkens on hover */
}

.build-card:hover 
.card-title {
  color: #111111; /* Number darkens on hover */
}

.build-card:hover 
.card-desc {
  color: #111111; /* Number darkens on hover */
}

/* --- FOOTER STATEMENT --- */
.build-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 40px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.build-footer p {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  color: #ececec;
  max-width: 500px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet / Small Desktop */
@media (max-width: 1024px) {
  .build-grid {
    gap: 24px;
  }
  
  .build-card {
    padding: 40px 32px;
  }
  
  .has-offset-top, 
  .has-offset-bottom {
    margin: 0; /* Remove vertical staggering on smaller screens */
  }

  /* Make it an even 2x2 grid on tablet */
  .is-large, .is-small {
    grid-column: span 6;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .agency-build {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .build-header {
    margin-bottom: 48px;
  }

  .build-grid {
    display: flex;
    flex-direction: column; /* Stacked layout for mobile */
    gap: 16px;
    margin-bottom: 64px;
  }

  .build-footer {
    justify-content: flex-start;
    text-align: left;
  }
}













    /* PACKAGES */
    .packages {
        position: relative;
        padding: 80px 5%;
        background-color: transparent;
        overflow: hidden;
        color: #fff;
        font-family: 'Inter', sans-serif;
    }

    .packages-container {
        position: relative;
        max-width: 1300px;
        margin: 0 auto;
        z-index: 2;
    }

    /* --- Left Aligned Visual Blob --- */
    .packages-visual {
        position: absolute;
        left: -15%;
        top: 50%;
        transform: translateY(-50%);
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, #6828154f 0%, transparent 70%);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        z-index: 1;
        pointer-events: none;
    }

    /* --- Header --- */
    .packages-header {
        text-align: left;
        margin-bottom: 80px;
        max-width: 800px;
    }

    .packages-heading {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        font-weight: 200;
        line-height: 1.1;
        margin-bottom: 24px;
        letter-spacing: -0.03em;
        font-family: 'Inter', sans-serif;
    }

    .packages-subheading {
        font-size: clamp(1.1rem, 1.5vw, 1.4rem);
        font-weight: 300;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.6);
    }

    /* --- Grid & Cards --- */
    .packages-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .package-card {
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 32px;
        padding: 48px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .package-card:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-10px);
    }

    /* Emphasis for Premium card */
    .package-card--featured {
        border-color: rgba(104, 40, 21, 0.4);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
    }

    .package-card__title {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .package-card__tagline {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 40px;
        line-height: 1.4;
        min-height: 2.8em;
    }

    .package-card__list {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .package-card__list li {
        font-size: 1.05rem;
        font-weight: 300;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.4;
    }

    .package-card__list li:last-child {
        border-bottom: none;
    }

    /* --- CTA Button --- */
    .package-card__cta {
        background-color: #fff;
        color: #000;
        border: none;
        padding: 20px 24px;
        border-radius: 100px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .package-card__cta:hover {
        background-color: #f0f0f0;
        transform: scale(1.02);
    }

    /* --- Footer Note --- */
    .packages-footer {
        text-align: center;
    }

    .packages-note {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 300;
        letter-spacing: 0.02em;
    }

    .packages-link {
        color: #fff;
        text-decoration: underline;
        text-underline-offset: 4px;
        transition: opacity 0.3s ease;
    }

    .packages-link:hover {
        opacity: 0.7;
    }

    /* --- Responsive Scaling --- */
    @media (max-width: 1100px) {
        .packages-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        /* Push the Elite card to full width if needed */
        .package-card:last-child {
            grid-column: span 2;
        }
    }

    @media (max-width: 768px) {
        .packages {
            padding: 80px 5%;
        }

        .packages-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .package-card,
        .package-card:last-child {
            grid-column: span 1;
            padding: 32px;
        }

        .package-card__title {
            font-size: 1.75rem;
        }

        .packages-visual {
            width: 400px;
            height: 400px;
            left: -20%;
        }
    }

    /* --- Section Base --- */
    .cta-reveal {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-color: transparent;
        padding: 120px 5%;
        text-align: center;

        view-timeline-name: --about-reveal;
        view-timeline-axis: block;
        perspective: 1000px;
    }

    /* --- Background & Faded Borders --- */
    .cta-reveal__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .cta-reveal__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(100%) brightness(0.25);
        /* Deep B&W + Low Brightness */
    }

    /* The "Faded Effect" on top and bottom borders */
    .cta-reveal__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom,
                #000 0%,
                transparent 20%,
                transparent 80%,
                #000 100%);
        z-index: 2;
    }

    /* --- Content --- */
    .cta-reveal__content {
        position: relative;
        z-index: 3;
        max-width: 1200px;
        width: 100%;
    }

    .cta-reveal__text {
        font-family: 'Inter', sans-serif;
        font-size: clamp(1rem, 1.5vw, 1.5rem);
        font-weight: 200;
        line-height: 1.15;
        color: #fff;
        letter-spacing: -0.04em;
        margin: 0;

        animation-name: parallax-up;
        animation-fill-mode: both;
        animation-timeline: --about-reveal;
        animation-range: entry 0% exit 100%;
    }

    @keyframes parallax-up {
        from {
            transform: translateY(420px) rotateX(0deg);
        }

        to {
            transform: translateY(10px) rotateX(0deg);
        }
    }

    .cta-reveal__connect {
        display: block;
        margin-top: 30px;
        font-weight: 200;
        opacity: 0.5;
        /* Lower brightness for the sub-text */
        letter-spacing: 0.02em;
    }

    /* --- Responsive Scaling --- */
    @media (max-width: 768px) {
        .cta-reveal {
            padding: 80px 5%;
            min-height: 100vh;
        }

        .cta-reveal__text {
            font-size: 1rem;
            line-height: 1.25;
        }

        .cta-reveal__connect {
            margin-top: 20px;
            font-size: 1rem;
        }

        .cta-reveal__overlay {
            background: linear-gradient(to bottom,
                    #000 0%,
                    rgba(0, 0, 0, 0.6) 15%,
                    rgba(0, 0, 0, 0.6) 85%,
                    #000 100%);
        }
    }

    /* --- Section Layout --- */
    .contact-section {
        position: relative;
        padding: 120px 5%;
        background-color: #000;
        color: #fff;
        font-family: 'Inter', sans-serif;
        overflow: hidden;
    }

    .contact-container {
        max-width: 1300px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 100px;
        align-items: flex-start;
    }

    /* --- Form Styling (Left) --- */
    .contact-left {
        position: relative;
    }

    .contact-form-wrapper {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 40px;
        border-radius: 40px;
        backdrop-filter: blur(10px);
    }

    .form-group {
        position: relative;
        margin-bottom: 40px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 0;
        color: #fff;
        font-size: 1.1rem;
        font-family: inherit;
        outline: none;
        transition: border-color 0.4s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: transparent;
        /* Hide placeholder to use label instead */
    }

    /* Label Animation */
    .form-group label {
        position: absolute;
        top: 12px;
        left: 0;
        color: rgba(255, 255, 255, 0.4);
        pointer-events: none;
        transition: all 0.3s ease;
        font-weight: 300;
    }

    .form-group input:focus~label,
    .form-group input:not(:placeholder-shown)~label,
    .form-group textarea:focus~label,
    .form-group textarea:not(:placeholder-shown)~label,
    .form-group select:focus~label,
    .form-group select:valid~label {
        top: -20px;
        font-size: 0.85rem;
        color: #fff;
        opacity: 0.6;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: #fff;
    }

    /* Dropdown Styling */
    select option {
        background: #111;
        color: #fff;
    }

    .contact-submit {
        width: 100%;
        background: #fff;
        color: #000;
        border: none;
        padding: 22px;
        border-radius: 100px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.4s ease;
        margin-top: 20px;
    }

    .contact-submit:hover {
        transform: translateY(-5px);
        background: #f0f0f0;
        box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
    }

    /* --- Success State --- */
    .form-success-message {
        display: none;
        /* Shown via JS */
        text-align: center;
        padding: 40px 0;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        color: #fff;
    }

    .success-icon svg {
        width: 40px;
    }

    .form-success-message h3 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .form-success-message p {
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 30px;
    }

    .reset-btn {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff;
        padding: 12px 24px;
        border-radius: 100px;
        cursor: pointer;
    }

    /* --- Right Side Styling --- */
    .contact-right {
        position: relative;
        padding-top: 60px;
    }

    .contact-sticky {
        position: sticky;
        top: 150px;
    }

    .contact-main-heading {
        font-size: clamp(2.5rem, 4.5vw, 4.5rem);
        line-height: 1.1;
        font-weight: 200;
        margin-bottom: 40px;
        font-family: 'Inter', sans-serif;
    }

    .outline-text {
        -webkit-text-stroke: 1px #fff;
        color: transparent;
    }

    .text-rotator {
        height: 3rem;
        position: relative;
        overflow: hidden;
    }

    .rotator-item {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 1.5rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.5);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        white-space: nowrap;
    }

    .rotator-item.is-active {
        opacity: 1;
        transform: translateY(0);
    }

    .rotator-item.exit {
        opacity: 0;
        transform: translateY(-20px);
    }

    /* --- Mobile Responsiveness --- */
    @media (max-width: 900px) {
        .contact-container {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        .contact-right {
            order: -1;
            /* Heading appears above form on mobile */
            padding-top: 0;
        }

        .contact-form-wrapper {
            padding: 40px 25px;
        }

        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }
    }

    /* --- Footer Base --- */
    /* --- Footer Base --- */
    .footer {
        position: relative;
        width: 100%;
        height: 100vh;
        /* Full Height */
        background-color: #000;
        color: #fff;
        font-family: 'Inter', sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 40px 5%;
        overflow: hidden;
    }

    .footer__container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
    }

    /* --- Main Branding --- */
    .footer__main {
        margin-top: auto;
        margin-bottom: 8vh;
        text-align: center;
    }

    .footer__brand {
        font-size: clamp(5rem, 18vw, 20rem);
        /* Massive Scale */
        font-weight: 200;
        line-height: 0.8;
        margin: 0;
        letter-spacing: -0.05em;
        text-transform: uppercase;
        color: #fff;
    }

    .footer__subheading {
        font-size: clamp(1rem, 2vw, 1.5rem);
        font-weight: 300;
        margin-top: 40px;
        color: rgba(255, 255, 255, 0.5);
        letter-spacing: 0.05em;
    }

    .footer__highlight {
        color: #fff;
        font-weight: 500;
        position: relative;
    }

    /* --- Bottom Layout --- */
    .footer__bottom {
        display: flex;
        justify-content: flex-end;
        /* Right Aligned */
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__contact-wrap {
        display: flex;
        flex-direction: column;
        gap: 24px;
        text-align: right;
    }

    .footer__label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.3);
        margin-bottom: 8px;
        letter-spacing: 0.2em;
    }

    .footer__email {
        font-size: clamp(1.2rem, 2vw, 2.2rem);
        color: #fff;
        text-decoration: none;
        font-weight: 300;
        transition: opacity 0.3s ease;
    }

    .footer__email:hover {
        opacity: 0.6;
    }

    /* --- Socials List --- */
    .footer__social-list {
        display: flex;
        gap: 24px;
        justify-content: flex-end;
    }

    .footer__social-item {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: color 0.3s ease;
        position: relative;
    }

    .footer__social-item::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 1px;
        background: #fff;
        transition: width 0.3s ease;
    }

    .footer__social-item:hover {
        color: #fff;
    }

    .footer__social-item:hover::after {
        width: 100%;
    }

    /* --- Copyright --- */
    .footer__copyright {
        padding-top: 20px;
        display: flex;
        justify-content: flex-start;
    }

    .footer__copyright p {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.2);
        letter-spacing: 0.05em;
    }

    /* --- Responsive Scaling --- */
    @media (max-width: 900px) {
        .footer {
            height: auto;
            min-height: 100vh;
            padding: 100px 5% 40px 5%;
        }

        .footer__bottom {
            justify-content: flex-start;
            text-align: left;
        }

        .footer__contact-wrap {
            text-align: left;
        }

        .footer__social-list {
            justify-content: flex-start;
        }

        .footer__brand {
            font-size: 17vw;
        }
    }