/* ================================================
   ALLSTAR (올스타) - Custom Stylesheet
   종합 행사 대행사 홈페이지
   No CSS frameworks - 100% handcrafted
   ================================================ */

/* ── Fonts ── */
@font-face {
    font-family: 'Pretendard';
    src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css');
}
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css');
@import url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff2');

@font-face {
    font-family: 'GmarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'GmarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansLight.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

/* ── CSS Variables ── */
:root {
    --color-black: #0a0a0a;
    --color-dark: #1a1a1a;
    --color-charcoal: #2a2a2a;
    --color-gray: #888888;
    --color-light-gray: #cccccc;
    --color-off-white: #f5f5f3;
    --color-white: #ffffff;
    --color-accent: #c8a45c;
    --color-accent-light: #e8d5a0;
    --color-accent-dark: #9e7e3a;

    --font-display: 'GmarketSans', 'Pretendard', sans-serif;
    --font-body: 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'GmarketSans', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

    --header-height: 80px;
    --section-padding: 140px;
    --container-width: 1400px;
    --grid-gap: 24px;
}

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

html {
    font-size: 16px;
    scroll-behavior: auto; /* GSAP handles smooth scroll */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
    cursor: default;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out-quart);
}

ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; outline: none; border: none; }

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

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), border-color 0.3s;
    opacity: 0.6;
}

.cursor-dot.hovering {
    width: 60px;
    height: 60px;
    background: rgba(200, 164, 92, 0.15);
}

.cursor-outline.hovering {
    width: 80px;
    height: 80px;
    border-color: var(--color-accent-light);
}

/* ── Loading Screen ── */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loader__logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3rem;
    color: var(--color-white);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    overflow: hidden;
}

.loader__logo span {
    display: inline-block;
    visibility: hidden;
}

.loader__bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.loader__bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color-accent);
}

.loader__percent {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 16px;
    letter-spacing: 0.2em;
}

/* ── Header / Navigation ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    transition: background 0.5s, backdrop-filter 0.5s;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header__logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-white);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1001;
}

.header__logo .accent {
    color: var(--color-accent);
}

/* Hamburger Menu */
.hamburger {
    position: relative;
    width: 32px;
    height: 20px;
    z-index: 1001;
    cursor: pointer;
}

.hamburger__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: transform 0.5s var(--ease-out-expo), opacity 0.3s;
}

.hamburger__line:nth-child(1) { top: 0; }
.hamburger__line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger__line:nth-child(3) { bottom: 0; }

.hamburger.active .hamburger__line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Full-screen Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay__inner {
    text-align: center;
}

.nav-overlay__link {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4.5rem);
    color: var(--color-white);
    padding: 12px 0;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

.nav-overlay__link:hover {
    color: var(--color-accent);
}

.nav-overlay__link span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.7s var(--ease-out-expo);
}

.nav-overlay.active .nav-overlay__link span {
    transform: translateY(0%);
}

.nav-overlay__link:nth-child(1) span { transition-delay: 0.1s; }
.nav-overlay__link:nth-child(2) span { transition-delay: 0.15s; }
.nav-overlay__link:nth-child(3) span { transition-delay: 0.2s; }
.nav-overlay__link:nth-child(4) span { transition-delay: 0.25s; }
.nav-overlay__link:nth-child(5) span { transition-delay: 0.3s; }
.nav-overlay__link:nth-child(6) span { transition-delay: 0.35s; }

.nav-overlay__info {
    margin-top: 60px;
    display: flex;
    gap: 60px;
    justify-content: center;
}

.nav-overlay__info-item {
    text-align: left;
}

.nav-overlay__info-label {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--color-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.nav-overlay__info-value {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--color-light-gray);
    line-height: 1.8;
}

/* ── Section Common ── */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

.section--charcoal {
    background: var(--color-charcoal);
    color: var(--color-white);
}

.section--offwhite {
    background: var(--color-off-white);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 48px;
}

.section__label {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.section__desc {
    font-weight: 300;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.9;
    color: var(--color-gray);
    max-width: 600px;
}

.section--dark .section__desc {
    color: var(--color-light-gray);
}

/* ── Reveal Animations ── */
/* Initial state fully controlled by GSAP autoAlpha — no CSS needed */

.reveal-line {
    overflow: hidden;
}

.reveal-line span {
    display: inline-block;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--color-black);
}

.hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s var(--ease-in-out);
}

.hero__slide.active {
    opacity: 1;
}

.hero__slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 40%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
}

.hero__content {
    position: absolute;
    bottom: 15%;
    left: 48px;
    z-index: 2;
    max-width: 800px;
}

.hero__subtitle {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    overflow: hidden;
}

.hero__subtitle span {
    display: inline-block;
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 7vw, 6rem);
    color: var(--color-white);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title-line {
    overflow: hidden;
    display: block;
}

.hero__title-line span {
    display: inline-block;
}

.hero__desc {
    font-weight: 300;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 500px;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero__scroll-text {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 0; }
    100% { top: 100%; }
}

/* Hero Slide Counter */
.hero__counter {
    position: absolute;
    right: 48px;
    bottom: 15%;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-accent);
    color: var(--color-white);
}

.hero__counter-current {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-accent);
}

.hero__counter-divider {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.4;
}

.hero__counter-total {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.4;
}

/* ── About Section ── */
.about {
    overflow: hidden;
}

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

.about__visual {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about__image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 1.2s var(--ease-out-expo);
}

.about__image-wrapper:hover img {
    transform: scale(1.05);
}

.about__image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--color-accent);
    border-radius: 4px;
    z-index: -1;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.about__stat {
    text-align: center;
}

.about__stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2.8rem;
    color: var(--color-accent);
    line-height: 1;
}

.about__stat-label {
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--color-gray);
    margin-top: 8px;
}

/* ── Business Section ── */
.business__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: 60px;
}

.business__card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.business__card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.business__card:hover .business__card-bg {
    transform: scale(1.08);
}

.business__card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
    transition: background 0.5s;
}

.business__card:hover .business__card-overlay {
    background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.9) 100%);
}

.business__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px;
    z-index: 1;
}

.business__card-number {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.business__card-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.business__card-desc {
    font-weight: 300;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.5s;
}

.business__card:hover .business__card-desc {
    transform: translateY(0);
    opacity: 1;
}

.business__card-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: border-color 0.4s, background 0.4s;
}

.business__card:hover .business__card-icon {
    border-color: var(--color-accent);
    background: rgba(200, 164, 92, 0.1);
}

/* ── Goals Section ── */
.goals__timeline {
    position: relative;
    padding-left: 60px;
    margin-top: 80px;
}

.goals__timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.08);
    z-index: 0;
}

.goals__step {
    position: relative;
    padding-bottom: 60px;
}

.goals__step:last-child {
    padding-bottom: 0;
}

.goals__step-dot {
    position: absolute;
    left: -42px;
    top: 6px;
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(200, 164, 92, 0.15);
}

.goals__step-number {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.goals__step-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-white);
    margin-bottom: 12px;
}

.goals__step-desc {
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--color-light-gray);
    line-height: 1.8;
    max-width: 500px;
}

/* ── Gallery Section ── */
.gallery {
    overflow: hidden;
}

.gallery__wrapper {
    margin-top: 60px;
}

.gallery__swiper {
    overflow: visible !important;
}

.gallery__slide {
    width: 450px;
    height: 320px;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

.gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.gallery__slide:hover img {
    transform: scale(1.06);
}

.gallery__slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
    opacity: 0;
    transition: opacity 0.5s;
}

.gallery__slide:hover .gallery__slide-overlay {
    opacity: 1;
}

.gallery__slide-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-white);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s var(--ease-out-expo), opacity 0.4s;
}

.gallery__slide:hover .gallery__slide-caption {
    transform: translateY(0);
    opacity: 1;
}

/* Gallery Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox__img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox__close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox__close::before,
.lightbox__close::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: var(--color-white);
}

.lightbox__close::before { transform: rotate(45deg); }
.lightbox__close::after { transform: rotate(-45deg); }

/* ── Press Section ── */
.press__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
    margin-top: 60px;
}

.press__item {
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    transition: border-color 0.4s, background 0.4s;
    cursor: pointer;
}

.press__item:hover {
    border-color: var(--color-accent);
    background: rgba(200, 164, 92, 0.03);
}

.press__item-date {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.press__item-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 12px;
    line-height: 1.4;
}

.press__item-excerpt {
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--color-light-gray);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press__item-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    transition: gap 0.3s;
}

.press__item:hover .press__item-arrow {
    gap: 14px;
}

/* ── Press Detail Modal ── */
.press-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    padding: 0;
    border: none;
    background: transparent;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.press-modal::backdrop {
    background: transparent;
}

.press-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
}

.press-modal__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    max-width: 780px;
    height: 100%;
    background: var(--color-dark);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(100%);
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) transparent;
}

.press-modal__panel::-webkit-scrollbar {
    width: 4px;
}

.press-modal__panel::-webkit-scrollbar-thumb {
    background: var(--color-accent);
    border-radius: 2px;
}

.press-modal__close {
    position: sticky;
    top: 0;
    float: right;
    z-index: 10;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(8px);
    border: none;
    cursor: pointer;
    margin: 24px 24px 0 0;
    border-radius: 50%;
    transition: background 0.3s;
}

.press-modal__close:hover {
    background: rgba(200, 164, 92, 0.15);
}

.press-modal__close span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-white);
    transition: background 0.3s;
}

.press-modal__close span:first-child { transform: rotate(45deg); }
.press-modal__close span:last-child  { transform: rotate(-45deg); }

.press-modal__close:hover span {
    background: var(--color-accent);
}

.press-modal__inner {
    padding: 80px 60px 60px;
    clear: both;
}

.press-modal__label {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.press-modal__date {
    font-family: var(--font-accent);
    font-weight: 300;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--color-gray);
    margin-bottom: 24px;
}

.press-modal__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-white);
    line-height: 1.35;
    margin-bottom: 36px;
    letter-spacing: -0.01em;
}

.press-modal__image {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 36px;
}

.press-modal__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.press-modal__body {
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--color-light-gray);
    line-height: 2;
}

.press-modal__body p {
    margin-bottom: 20px;
}

.press-modal__body strong {
    color: var(--color-white);
    font-weight: 500;
}

.press-modal__footer {
    display: flex;
    justify-content: space-between;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.press-modal__nav {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--color-accent);
    background: none;
    border: 1px solid rgba(200, 164, 92, 0.25);
    padding: 12px 24px;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.press-modal__nav:hover {
    background: rgba(200, 164, 92, 0.08);
    border-color: var(--color-accent);
}

.press-modal__nav:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .press-modal__panel {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .press-modal__panel {
        width: 100%;
        max-width: none;
    }
    .press-modal__inner {
        padding: 60px 24px 40px;
    }
    .press-modal__image img {
        height: 220px;
    }
}

/* ── Contact Section ── */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact__form-group {
    margin-bottom: 32px;
}

.contact__form-label {
    display: block;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.contact__form-input,
.contact__form-textarea {
    width: 100%;
    padding: 16px 0;
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-white);
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: border-color 0.4s;
}

.contact__form-input:focus,
.contact__form-textarea:focus {
    border-bottom-color: var(--color-accent);
}

.contact__form-input::placeholder,
.contact__form-textarea::placeholder {
    color: rgba(255,255,255,0.25);
}

.contact__form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact__form-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-black);
    background: var(--color-accent);
    border-radius: 2px;
    transition: background 0.4s, transform 0.3s;
    cursor: pointer;
}

.contact__form-btn:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

.contact__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__info-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact__info-item:first-child {
    padding-top: 0;
}

.contact__info-label {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.contact__info-value {
    font-weight: 300;
    font-size: 1.05rem;
    color: var(--color-white);
    line-height: 1.7;
}

/* ── Footer ── */
.footer {
    padding: 60px 0 40px;
    background: var(--color-black);
    border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer__logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    letter-spacing: 0.1em;
}

.footer__logo .accent {
    color: var(--color-accent);
}

.footer__copyright {
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--color-gray);
}

.footer__back-top {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: border-color 0.4s, background 0.4s, transform 0.4s;
    cursor: pointer;
}

.footer__back-top:hover {
    border-color: var(--color-accent);
    background: rgba(200, 164, 92, 0.1);
    transform: translateY(-4px);
}

/* ── Horizontal Marquee (GSAP-driven) ── */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.marquee__track {
    display: flex;
    width: fit-content;
    will-change: transform;
}

.marquee__item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(3rem, 6vw, 5rem);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.15);
    padding: 0 40px;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee__item .filled {
    -webkit-text-stroke: 0;
    color: var(--color-white);
}

.marquee__divider {
    display: flex;
    align-items: center;
    color: var(--color-accent);
    padding: 0 30px;
    font-size: clamp(2rem, 4vw, 3.5rem);
    opacity: 0.5;
    flex-shrink: 0;
}

/* ── Magnetic Button Effect ── */
.magnetic-wrap {
    display: inline-block;
    position: relative;
}

/* ── Responsive: Tablet ── */
@media (max-width: 1024px) {
    :root {
        --section-padding: 100px;
        --header-height: 70px;
    }

    .container { padding: 0 32px; }
    .header { padding: 0 32px; }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .business__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .press__grid {
        grid-template-columns: 1fr;
    }

    .hero__content { left: 32px; }
    .hero__counter { right: 32px; }

    .gallery__slide {
        width: 360px;
        height: 260px;
    }
}

/* ── Responsive: Mobile ── */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
        --header-height: 64px;
    }

    .container { padding: 0 20px; }
    .header { padding: 0 20px; }

    .cursor-dot, .cursor-outline { display: none; }

    .hero__content {
        left: 20px;
        right: 20px;
        bottom: 20%;
    }

    .hero__counter { display: none; }

    .hero__title {
        font-size: clamp(2.2rem, 9vw, 3.5rem);
    }

    .business__grid {
        grid-template-columns: 1fr;
    }

    .business__card {
        height: 320px;
    }

    .about__stats {
        gap: 24px;
    }

    .about__stat-number {
        font-size: 2rem;
    }

    .goals__timeline {
        padding-left: 40px;
    }

    .gallery__slide {
        width: 300px;
        height: 220px;
    }

    .nav-overlay__info {
        flex-direction: column;
        gap: 24px;
    }

    .footer__inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .marquee__item {
        font-size: 2rem;
    }
}

/* ── Utility ── */
.text-accent { color: var(--color-accent); }
.text-gradient {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
