/* ============================================
   REMOOD® — Creative Marketing Agency
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #f5eedf;
    --cream-dark: #ddd1b6;
    --black: #050505;
    --black-light: #e9dcc6;
    --dark: #0c0c0c;
    --gray: #bcae97;
    --gray-light: #8f816c;
    --accent: #ff3028;
    --accent-light: #f7c400;
    --white: #fff7e8;
    --olive: #f7c400;
    --line: rgba(255, 247, 232, 0.08);
    --line-strong: rgba(255, 247, 232, 0.14);
    --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 20px 64px rgba(0, 0, 0, 0.42);

    --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-arabic: 'Cairo', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --nav-height: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    direction: ltr;
    overflow-x: hidden;
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-sans);
    background:
        radial-gradient(circle at 14% 10%, rgba(247, 196, 0, 0.24), transparent 24%),
        radial-gradient(circle at 82% 14%, rgba(255, 48, 40, 0.22), transparent 28%),
        radial-gradient(circle at 50% 58%, rgba(255, 48, 40, 0.08), transparent 34%),
        linear-gradient(180deg, #050505 0%, #080808 42%, #050505 100%);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@media (max-width: 768px) {
    body { cursor: auto; }
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: none;
    font-family: inherit;
}

@media (max-width: 768px) {
    button { cursor: pointer; }
}

/* --- Loader --- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    display: block;
    width: min(24rem, 58vw);
    padding: clamp(1rem, 2.6vw, 1.5rem);
    margin-inline: auto;
    margin-bottom: 2.5rem;
    border-radius: 1.75rem;
}

.brand-image {
    display: block;
    width: 100%;
    height: auto;
}

.brand-image-loader {
    width: 100%;
    filter: brightness(0) invert(1);
}

.brand-image-nav {
    width: auto;
    height: clamp(2.8rem, 4vw, 3.5rem);
    filter: brightness(0) invert(1);
}

.brand-image-footer {
    width: auto;
    height: clamp(2.3rem, 3.2vw, 3rem);
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .loader-logo {
        width: min(18rem, 72vw);
        padding: 0.9rem;
    }

    .brand-image-nav {
        height: 2.35rem;
    }

    .brand-image-footer {
        height: 2.9rem;
    }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-light), var(--accent));
    border-radius: 4px;
    animation: loadProgress 1.5s var(--ease-out) forwards;
}

@keyframes loadProgress {
    to { width: 100%; }
}

/* --- Custom Cursor --- */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--black);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(26,26,26,0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

.cursor.hovering {
    width: 16px;
    height: 16px;
    background: var(--accent);
    mix-blend-mode: normal;
}

.cursor-follower.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
}

@media (max-width: 768px) {
    .cursor, .cursor-follower { display: none; }
}

.section-dark .cursor {
    background: var(--cream);
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
    background: rgba(248, 243, 232, 0.82);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 14px 40px rgba(53, 33, 19, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.35rem 0.5rem 0.35rem 0.2rem;
    border-radius: 1rem;
    z-index: 1001;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: rgba(248, 243, 232, 0.72);
    border: 1px solid rgba(24, 20, 17, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.nav-link {
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    padding: 0.2rem 0;
    color: rgba(24, 20, 17, 0.7);
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.45rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
    color: var(--black);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    background: var(--black);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), box-shadow 0.3s;
    box-shadow: 0 12px 30px rgba(24, 20, 17, 0.12);
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(243, 167, 143, 0.22);
}

.nav-employee-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.3rem;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255, 247, 232, 0.2);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s;
}

.nav-employee-login:hover {
    background: rgba(255, 247, 232, 0.08);
    border-color: rgba(255, 247, 232, 0.4);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(24, 20, 17, 0.1);
    background: rgba(248, 243, 232, 0.78);
    z-index: 1001;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-toggle span + span {
    margin-top: 5px;
}

.nav-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-employee-login { display: none; }
    .nav-toggle { display: flex; }
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background:
        radial-gradient(circle at top right, rgba(249, 197, 180, 0.22), transparent 34%),
        linear-gradient(180deg, #2b5336 0%, #15291b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    text-align: center;
    width: min(100% - 3rem, 28rem);
    padding: 2.25rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 250, 243, 0.08);
    background: rgba(255, 250, 243, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.mobile-link {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s var(--ease-out), opacity 0.4s;
}

.mobile-menu.active .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link.active {
    color: var(--accent-light);
}

.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.35s; }

.mobile-employee-login {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 247, 232, 0.15);
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    opacity: 0.7;
}

.mobile-employee-login:hover {
    opacity: 1;
}

.mobile-menu-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 250, 243, 0.65);
}

/* --- Container --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.section {
    position: relative;
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

/* --- Section Styles --- */
.section-dark {
    background:
        radial-gradient(circle at top right, rgba(249, 197, 180, 0.16), transparent 36%),
        linear-gradient(180deg, #2b5336 0%, #15291b 100%);
    color: var(--cream);
}

.section-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 20, 17, 0.55);
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.98;
    margin-bottom: 2rem;
}

.section-title em {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
}

.section-intro {
    max-width: 42rem;
    margin-bottom: 3.5rem;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.8;
    color: var(--gray);
}

.section-dark .section-label {
    color: rgba(247, 239, 226, 0.58);
}

.section-dark .section-intro {
    color: rgba(247, 239, 226, 0.68);
}

/* --- Reveal Animation --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    padding: calc(var(--nav-height) + 2rem) clamp(1.5rem, 4vw, 4rem) 0;
    overflow: hidden;
    text-align: left;
}

.hero::before {
    content: '';
    position: absolute;
    left: 8%;
    bottom: 14%;
    width: clamp(12rem, 22vw, 20rem);
    height: clamp(12rem, 22vw, 20rem);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 167, 143, 0.12), transparent 68%);
    filter: blur(18px);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
}

.hero-orb-one {
    top: 14%;
    right: 8%;
    width: clamp(14rem, 26vw, 24rem);
    height: clamp(14rem, 26vw, 24rem);
    background: radial-gradient(circle, rgba(243, 167, 143, 0.24), transparent 70%);
    animation: orbitalDrift 14s ease-in-out infinite alternate;
}

.hero-orb-two {
    top: 34%;
    left: 10%;
    width: clamp(10rem, 18vw, 16rem);
    height: clamp(10rem, 18vw, 16rem);
    background: radial-gradient(circle, rgba(64, 124, 81, 0.12), transparent 72%);
    animation: orbitalDrift 18s ease-in-out infinite alternate-reverse;
}

@keyframes orbitalDrift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(1.5rem, -1rem, 0) scale(1.08); }
}

.hero-bg-text {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 20vw, 22rem);
    font-family: var(--font-arabic);
    font-weight: 900;
    letter-spacing: -0.08em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(24, 20, 17, 0.08);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    width: min(100%, 1240px);
    margin: 0 auto;
    padding-top: clamp(2rem, 5vw, 5rem);
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 42rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.55);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #ffffff;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(243, 167, 143, 0.12);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.93;
    margin-bottom: 1.75rem;
}

.hero-title em {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
    color: var(--accent);
}

.title-line {
    display: block;
}

.hero-desc {
    font-size: clamp(1.02rem, 1.7vw, 1.22rem);
    color: var(--gray);
    max-width: 34rem;
    margin: 0 0 2.4rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 2;
    padding: 1rem 0;
}

.hero-visual-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: 2rem;
    background:
        linear-gradient(145deg, rgba(255, 250, 243, 0.84), rgba(255, 250, 243, 0.6)),
        linear-gradient(180deg, rgba(243, 167, 143, 0.08), transparent);
    border: 1px solid rgba(24, 20, 17, 0.08);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    animation: cardFloat 10s ease-in-out infinite;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(243, 167, 143, 0.16), transparent 34%),
        radial-gradient(circle at bottom left, rgba(64, 124, 81, 0.08), transparent 28%);
    pointer-events: none;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.tilt-card {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --tilt-z: 0px;
    transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--tilt-z));
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.25s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.hero-photo-frame {
    position: relative;
    z-index: 1;
    margin-bottom: 1.4rem;
    border-radius: 1.5rem;
    overflow: hidden;
    aspect-ratio: 5 / 4;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(24, 20, 17, 0.08);
    box-shadow: 0 14px 40px rgba(24, 20, 17, 0.12);
}

.hero-photo-frame::after {
    content: '';
    position: absolute;
    inset: -30%;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
    transform: translateX(-120%) rotate(12deg);
    animation: photoSweep 6s ease-in-out infinite;
}

@keyframes photoSweep {
    0%, 60%, 100% { transform: translateX(-120%) rotate(12deg); }
    24%, 36% { transform: translateX(120%) rotate(12deg); }
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}

.hero-photo-caption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 12, 10, 0.62);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-thumb {
    position: absolute;
    z-index: 3;
    width: clamp(6.8rem, 12vw, 8.6rem);
    padding: 0.5rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.88);
    box-shadow: 0 14px 34px rgba(24, 20, 17, 0.12);
    animation: thumbFloat 8s ease-in-out infinite;
}

.hero-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 0.8rem;
}

.hero-thumb span {
    display: block;
    margin-top: 0.45rem;
    padding: 0 0.2rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(24, 20, 17, 0.7);
}

.hero-thumb-one {
    top: 2.5rem;
    left: -2rem;
    animation-delay: -1.5s;
}

.hero-thumb-two {
    right: -1.8rem;
    bottom: 4.5rem;
    animation-delay: -4s;
}

@keyframes thumbFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-card-header,
.hero-signal {
    position: relative;
    z-index: 1;
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.hero-card-label,
.signal-label,
.signal-value {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-card-label,
.signal-label {
    color: rgba(24, 20, 17, 0.48);
}

.hero-card-tag {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(24, 20, 17, 0.06);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-card-title {
    position: relative;
    z-index: 1;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-bottom: 0;
}

.hero-metric {
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 250, 243, 0.56);
    border: 1px solid rgba(24, 20, 17, 0.06);
}

.hero-metric-value {
    display: block;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
}

.hero-metric-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-stack {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.hero-chip,
.proof-chip,
.cta-chip {
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.66);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-signal {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(24, 20, 17, 0.08);
}

.signal-track {
    height: 0.55rem;
    border-radius: 999px;
    background: rgba(24, 20, 17, 0.08);
    overflow: hidden;
}

.signal-track span {
    display: block;
    width: 78%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    animation: signalPulse 2.4s ease-in-out infinite;
}

@keyframes signalPulse {
    0%, 100% { transform: scaleX(0.92); transform-origin: left; }
    50% { transform: scaleX(1); transform-origin: left; }
}

.signal-value {
    color: var(--black);
}

.hero-floating-pill {
    position: absolute;
    z-index: 2;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.8);
    box-shadow: 0 10px 26px rgba(53, 33, 19, 0.08);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: pillLift 7s ease-in-out infinite;
}

.hero-pill-top {
    top: -1rem;
    right: 1.25rem;
}

.hero-pill-bottom {
    bottom: -1rem;
    left: 1.25rem;
    animation-delay: -3.5s;
}

@keyframes pillLift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-proof {
    position: relative;
    z-index: 2;
    width: min(100%, 1240px);
    margin: 2.75rem auto 7.5rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.proof-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 20, 17, 0.55);
}

.proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.6rem;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: transform 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    cursor: none;
}

@media (max-width: 768px) {
    .btn { cursor: pointer; }
}

.btn-primary {
    background: var(--black);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(24, 20, 17, 0.14);
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(243, 167, 143, 0.22);
}

.section-dark .btn-primary {
    background: var(--white);
    color: var(--black);
}

.section-dark .btn-primary:hover {
    background: var(--accent);
    color: var(--white);
}

.btn-ghost {
    border: 1px solid rgba(24, 20, 17, 0.14);
    background: rgba(255, 250, 243, 0.45);
    color: var(--black);
}

.btn-ghost:hover {
    border-color: rgba(24, 20, 17, 0.26);
    background: rgba(255, 250, 243, 0.75);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.15rem 2.2rem;
    font-size: 0.82rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Scroll Indicator --- */
.hero-scroll {
    position: absolute;
    bottom: 7rem;
    right: clamp(1.5rem, 4vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    z-index: 2;
}

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

@keyframes scrollDown {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
}

/* --- Marquee --- */
.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 20, 17, 0.58);
    flex-shrink: 0;
}

.marquee-dot {
    font-size: 0.5rem !important;
    opacity: 0.3;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 2.4rem;
    }

    .hero-cta,
    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 34rem);
        margin: 0 auto;
    }

    .hero-thumb-one {
        left: -1rem;
    }

    .hero-thumb-two {
        right: -1rem;
        bottom: 3.5rem;
    }

    .hero-scroll {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero-bg-text {
        font-size: clamp(6rem, 28vw, 10rem);
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .hero-signal {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .hero-pill-top {
        right: 1rem;
    }

    .hero-pill-bottom {
        left: 1rem;
    }

    .hero-thumb {
        display: none;
    }

    .hero-proof {
        margin-bottom: 6.5rem;
    }

    .hero-scroll {
        display: none;
    }
}

/* --- Brands Section --- */
.brands-showcase {
    padding-top: clamp(3.5rem, 7vw, 5rem);
}

.brands-shell {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 2rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background:
        radial-gradient(circle at top right, rgba(247, 196, 0, 0.08), transparent 32%),
        radial-gradient(circle at 12% 84%, rgba(255, 48, 40, 0.08), transparent 28%),
        rgba(8, 8, 8, 0.88);
    box-shadow: var(--shadow-soft);
}

.brands-head {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 44rem;
    margin-bottom: 2.25rem;
}

.brands-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.02;
}

.brands-intro {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--gray);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.brand-tile {
    position: relative;
    min-height: 11.5rem;
    padding: 1rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.82);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.brand-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(140deg, rgba(243, 167, 143, 0.08), transparent 45%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.brand-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 167, 143, 0.18);
    box-shadow: 0 18px 36px rgba(53, 33, 19, 0.08);
}

.brand-tile:hover::before {
    opacity: 1;
}

.brand-logo-box,
.brand-name {
    position: relative;
    z-index: 1;
}

.brand-logo-box {
    width: 100%;
    min-height: 6.4rem;
    padding: 0.8rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-image {
    width: 100%;
    max-width: 9.5rem;
    max-height: 4rem;
    object-fit: contain;
}

.brand-name {
    font-size: clamp(0.9rem, 1.15vw, 1rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-tile {
        min-height: 10rem;
    }

    .brand-logo-box {
        min-height: 5.6rem;
    }

    .brand-logo-image {
        max-width: 8.5rem;
        max-height: 3.6rem;
    }
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.about-right {
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: 2rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.52);
    box-shadow: var(--shadow-soft);
}

.about-text {
    font-size: clamp(1.02rem, 1.5vw, 1.14rem);
    line-height: 1.8;
    color: var(--black-light);
    margin-bottom: 1.5rem;
}

.about-note {
    margin-top: 2rem;
    padding: 1.25rem 1.35rem;
    border-radius: 1.4rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.8);
}

.about-note-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 20, 17, 0.5);
}

.about-note-text {
    font-size: 0.96rem;
    color: var(--gray);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(24, 20, 17, 0.08);
}

.stat {
    padding: 1.15rem 1rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(24, 20, 17, 0.06);
    background: rgba(255, 250, 243, 0.72);
}

.stat-number {
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline;
}

.stat-plus {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--gray);
    margin-top: 0.35rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-stats { grid-template-columns: 1fr; }
}

/* --- Services Section --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(243, 167, 143, 0.18), transparent 42%);
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    border-color: rgba(243, 167, 143, 0.28);
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

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

.service-number {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.service-icon {
    margin-bottom: 1.5rem;
    opacity: 0.72;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* --- Work Section --- */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    position: relative;
    border-radius: 1.8rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.7);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    cursor: none;
    transition: box-shadow 0.4s var(--ease-out);
}

.work-item::before {
    content: attr(data-category);
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
    .work-item { cursor: pointer; }
}

.work-image {
    position: relative;
    isolation: isolate;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    background: rgba(24, 20, 17, 0.12);
}

.work-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out), filter 0.7s var(--ease-out);
    filter: saturate(0.95) contrast(1.02);
}

.work-shine {
    position: absolute;
    inset: -10%;
    background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.24) 50%, transparent 62%);
    transform: translateX(-130%);
    transition: transform 0.8s var(--ease-out);
}

.work-item:hover {
    --tilt-z: -8px;
    box-shadow: var(--shadow-card);
}

.work-item:hover .work-photo {
    transform: scale(1.08);
    filter: saturate(1.05) contrast(1.05);
}

.work-item:hover .work-shine {
    transform: translateX(130%);
}

.work-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.8rem;
    background: linear-gradient(to top, rgba(15, 12, 10, 0.85), rgba(15, 12, 10, 0.08));
    color: white;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.4s var(--ease-out);
}

.work-cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    opacity: 0.68;
    display: block;
    margin-bottom: 0.5rem;
}

.work-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (max-width: 640px) {
    .work-grid { grid-template-columns: 1fr; }
}

/* --- Process Section --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.process-step {
    position: relative;
    padding: 2rem 1.4rem;
    border-radius: 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 1.4rem;
    right: 1.4rem;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.process-number {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(243, 167, 143, 0.18);
    letter-spacing: -0.02em;
    margin-bottom: 0.9rem;
}

.process-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    opacity: 0.68;
}

@media (max-width: 1024px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .process-grid { grid-template-columns: 1fr; }
}

/* --- Testimonials --- */
.testimonials-slider {
    position: relative;
    max-width: 900px;
    min-height: 320px;
    padding: clamp(1.75rem, 4vw, 2.4rem);
    border-radius: 2rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.62);
    box-shadow: var(--shadow-soft);
}

.testimonial {
    position: absolute;
    top: clamp(1.75rem, 4vw, 2.4rem);
    left: clamp(1.75rem, 4vw, 2.4rem);
    right: clamp(1.75rem, 4vw, 2.4rem);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.35rem);
    line-height: 1.35;
    font-style: italic;
    margin-bottom: 1.8rem;
    color: var(--black);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-weight: 700;
    font-size: 0.92rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.author-role {
    font-size: 0.78rem;
    color: var(--gray);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.testimonial-dots {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(24, 20, 17, 0.18);
    background: transparent;
    transition: all 0.3s;
    cursor: none;
}

@media (max-width: 768px) {
    .dot { cursor: pointer; }
}

.dot.active {
    background: var(--black);
    border-color: var(--black);
    width: 34px;
}

/* --- CTA Section --- */
.cta {
    text-align: center;
}

.cta-shell {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at top right, rgba(243, 167, 143, 0.14), transparent 30%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 0.98;
    margin-bottom: 1.5rem;
}

.cta-title em {
    font-family: var(--font-serif);
    font-weight: 500;
    font-style: italic;
    color: var(--accent-light);
}

.cta-desc {
    max-width: 32rem;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
    opacity: 0.72;
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.cta-chip {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: start;
}

.contact-note {
    max-width: 34rem;
    margin-bottom: 2rem;
    padding: 1.25rem 1.35rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.56);
    box-shadow: var(--shadow-soft);
}

.contact-note-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 20, 17, 0.5);
}

.contact-note-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--black-light);
}

.contact-info {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.56);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s, border-color 0.3s;
}

.contact-link:hover {
    color: var(--black);
    border-color: rgba(24, 20, 17, 0.16);
    transform: translateX(4px);
}

.contact-socials {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(24, 20, 17, 0.12);
    background: rgba(255, 250, 243, 0.56);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.social-link:hover {
    border-color: var(--accent);
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* --- Form --- */
.form-shell {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: 2rem;
    border: 1px solid rgba(24, 20, 17, 0.08);
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.78), rgba(255, 250, 243, 0.56));
    box-shadow: var(--shadow-card);
}

.form-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at top right, rgba(243, 167, 143, 0.12), transparent 34%),
        radial-gradient(circle at bottom left, rgba(64, 124, 81, 0.06), transparent 28%);
    pointer-events: none;
}

.form-shell-head,
.contact-form {
    position: relative;
    z-index: 1;
}

.form-shell-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid rgba(24, 20, 17, 0.08);
}

.form-shell-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 20, 17, 0.48);
}

.form-shell-status {
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: rgba(243, 167, 143, 0.12);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(24, 20, 17, 0.48);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.95rem 1.05rem;
    font-size: 1rem;
    font-family: var(--font-sans);
    border: 1px solid rgba(24, 20, 17, 0.1);
    border-radius: 1rem;
    background: rgba(255, 250, 243, 0.72);
    color: var(--black);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    cursor: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

@media (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea { cursor: auto; }
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(243, 167, 143, 0.45);
    box-shadow: 0 0 0 4px rgba(243, 167, 143, 0.08);
    background: rgba(255, 250, 243, 0.92);
}

.form-group:focus-within label {
    color: var(--black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(111, 98, 86, 0.7);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.6rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-link {
        width: 100%;
    }

    .form-shell-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Footer --- */
.footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(24, 20, 17, 0.08);
    background: rgba(255, 250, 243, 0.28);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.3rem 0.15rem 0.1rem;
    border-radius: 1rem;
}

.footer-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.2rem, 2.4vw, 2.4rem);
}

.footer-links a {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.footer-copy p {
    font-size: 0.8rem;
    color: var(--gray);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
    }

    .footer-copy p {
        white-space: normal;
    }
}

/* --- Black Theme Override --- */
.nav.scrolled {
    background: rgba(5, 5, 5, 0.88);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.nav-links,
.nav-toggle,
.hero-tag,
.hero-thumb,
.hero-metric,
.hero-chip,
.proof-chip,
.hero-floating-pill,
.brands-shell,
.brand-tile,
.about-right,
.about-note,
.stat,
.work-item,
.testimonials-slider,
.contact-note,
.contact-link,
.social-link,
.hero-marquee,
.footer {
    border-color: rgba(255, 247, 232, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.hero-visual-card,
.form-shell {
    border-color: rgba(255, 247, 232, 0.12);
    background:
        radial-gradient(circle at top right, rgba(247, 196, 0, 0.12), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 48, 40, 0.12), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
    box-shadow: var(--shadow-card);
}

.brands-shell {
    background:
        radial-gradient(circle at top right, rgba(247, 196, 0, 0.08), transparent 32%),
        radial-gradient(circle at 12% 84%, rgba(255, 48, 40, 0.08), transparent 28%),
        rgba(8, 8, 8, 0.9);
    box-shadow: var(--shadow-card);
}

.hero-photo-frame,
.brand-logo-box,
.form-group input,
.form-group select,
.form-group textarea {
    border-color: rgba(255, 247, 232, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.brand-logo-box {
    background:
        radial-gradient(circle at top right, rgba(247, 196, 0, 0.08), transparent 34%),
        radial-gradient(circle at bottom left, rgba(255, 48, 40, 0.08), transparent 28%),
        rgba(255, 255, 255, 0.02);
}

.brand-logo-image {
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

.section,
.section-dark {
    color: var(--white);
}

.section-dark,
.mobile-menu {
    background:
        radial-gradient(circle at top right, rgba(247, 196, 0, 0.14), transparent 30%),
        radial-gradient(circle at 12% 72%, rgba(255, 48, 40, 0.14), transparent 34%),
        linear-gradient(180deg, #080808 0%, #050505 100%);
}

.mobile-menu-inner {
    border-color: rgba(255, 247, 232, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.section-label,
.section-dark .section-label,
.proof-label,
.hero-card-label,
.signal-label,
.about-note-label,
.contact-note-label,
.form-shell-label,
.form-group label,
.brand-mark {
    color: rgba(255, 247, 232, 0.56);
}

.section-intro,
.section-dark .section-intro,
.hero-desc,
.brands-intro,
.about-note-text,
.contact-note-text,
.hero-metric-label,
.hero-thumb span,
.contact-link,
.form-note,
.footer-tagline,
.footer-links a,
.footer-copy p,
.author-role,
.hero-scroll span,
.marquee-track span {
    color: rgba(255, 247, 232, 0.72);
}

.nav-link {
    color: rgba(255, 247, 232, 0.72);
}

.nav-link:hover,
.nav-link.active,
.contact-link:hover,
.footer-links a:hover {
    color: var(--white);
}

.nav-toggle {
    background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
    background: var(--white);
}

.nav-cta,
.btn-primary,
.section-dark .btn-primary {
    background: var(--accent-light);
    color: var(--black);
    box-shadow: 0 14px 30px rgba(247, 196, 0, 0.22);
}

.nav-cta:hover,
.btn-primary:hover,
.section-dark .btn-primary:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 18px 36px rgba(255, 48, 40, 0.22);
}

.btn-ghost {
    border-color: rgba(255, 247, 232, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
}

.btn-ghost:hover {
    border-color: rgba(255, 247, 232, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.hero::before {
    background: radial-gradient(circle, rgba(255, 48, 40, 0.16), transparent 68%);
}

.hero-orb-one {
    background: radial-gradient(circle, rgba(247, 196, 0, 0.26), transparent 70%);
}

.hero-orb-two {
    background: radial-gradient(circle, rgba(255, 48, 40, 0.18), transparent 72%);
}

.hero-bg-text {
    -webkit-text-stroke: 1px rgba(255, 247, 232, 0.08);
}

.hero-card-tag,
.form-shell-status {
    background: rgba(247, 196, 0, 0.12);
    color: var(--white);
}

.signal-track {
    background: rgba(255, 255, 255, 0.08);
}

.signal-track span {
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.signal-value,
.testimonial-text {
    color: var(--white);
}

.scroll-line {
    background: linear-gradient(to bottom, var(--accent-light), transparent);
}

.dot {
    border-color: rgba(255, 247, 232, 0.24);
}

.dot.active {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.social-link:hover {
    border-color: var(--accent-light);
    background: var(--accent);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 48, 40, 0.45);
    box-shadow: 0 0 0 4px rgba(255, 48, 40, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.form-group:focus-within label {
    color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 247, 232, 0.46);
}

/* --- Smooth Scrollbar --- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 247, 232, 0.16);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 247, 232, 0.28);
}

/* --- Selection --- */
::selection {
    background: var(--accent);
    color: var(--black);
}

/* --- Grain Overlay --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(247, 196, 0, 0.06), transparent 28%),
        radial-gradient(circle at 82% 24%, rgba(255, 48, 40, 0.06), transparent 22%),
        radial-gradient(circle at 48% 88%, rgba(255, 48, 40, 0.05), transparent 24%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    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.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    opacity: 0.35;
}
