/* === Base & Variables === */
:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-400: #a3a3a3;
    --gray-600: #525252;
    --accent-coral: #FF6B6B;
    --accent-gold: #FFD93D;
    --accent-teal: #6BCB77;
    --accent-blue: #4D96FF;
    --gradient-main: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 50%, #4D96FF 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    --gradient-cool: linear-gradient(135deg, #6BCB77 0%, #4D96FF 100%);
    --font-display: 'Dela Gothic One', cursive;
    --font-body: 'Space Grotesk', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* === Typography === */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--black);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 32px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 15s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-coral);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-gold);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-blue);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
}

.hero-tagline {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gray-600);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    margin-bottom: 32px;
}

.title-top {
    display: block;
    -webkit-text-stroke: 2px var(--black);
    color: transparent;
}

.title-bottom {
    display: block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-indicator span {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--black), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: var(--gradient-main);
    color: var(--black);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

/* === Marquee === */
.marquee {
    background: var(--black);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--white);
    letter-spacing: 2px;
}

.marquee-content .divider {
    color: var(--accent-gold);
}

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

/* === Tees Section === */
.tees-section {
    padding: 140px 0;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.tees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.tee-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
}

.tee-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.tee-image {
    aspect-ratio: 3/4;
    position: relative;
}

.tee-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.coming-soon-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tee-number {
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--gray-200);
}

.tee-info {
    padding: 24px;
}

.tee-name {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.tee-price {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* === Notify Banner === */
.notify-banner {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.notify-content h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.notify-content p {
    color: var(--gray-600);
}

.notify-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.notify-form input {
    padding: 18px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 100px;
    min-width: 280px;
    transition: border-color 0.3s ease;
}

.notify-form input:focus {
    outline: none;
    border-color: var(--black);
}

/* === Values Strip === */
.values-strip {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.value-item {
    text-align: center;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.value-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* === CTA Section === */
.cta-section {
    padding: 160px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: var(--gradient-main);
    opacity: 0.15;
    filter: blur(100px);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--gray-400);
    margin-bottom: 40px;
}

/* === Footer === */
.footer {
    background: var(--gray-100);
    padding: 80px 0 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    font-size: 0.9375rem;
    color: var(--gray-600);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--gray-200);
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.footer-tagline {
    font-size: 0.875rem;
}

/* === About Page === */
.about-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-title {
    font-size: clamp(3rem, 10vw, 7rem);
    margin-bottom: 32px;
}

.about-intro {
    font-size: 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: var(--gray-100);
}

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

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 32px;
}

.story-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.8;
}

.story-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
}

.visual-card.card-1 {
    width: 250px;
    height: 250px;
    background: var(--gradient-warm);
    top: 0;
    left: 0;
    color: var(--white);
}

.visual-card.card-2 {
    width: 220px;
    height: 220px;
    background: var(--black);
    bottom: 0;
    right: 0;
    color: var(--white);
}

/* Values Section */
.values-section {
    padding: 120px 0;
}

.values-section .section-header {
    text-align: left;
    margin-bottom: 60px;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.about-value {
    padding: 40px;
    background: var(--gray-100);
    border-radius: 24px;
    transition: all 0.4s var(--ease-out);
}

.about-value:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.about-value h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-value p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Facts Section */
.facts-section {
    padding: 120px 0;
    background: var(--gray-100);
}

.facts-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.facts-column {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
}

.facts-column h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.facts-column ul {
    list-style: none;
}

.facts-column li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}

.facts-column li:last-child {
    border-bottom: none;
}

/* About CTA */
.about-cta {
    padding: 160px 0;
    background: var(--black);
    text-align: center;
}

.about-cta .cta-content h2 {
    color: var(--white);
}

.about-cta .cta-content p {
    margin-bottom: 40px;
}

.about-cta .btn-primary {
    background: var(--gradient-main);
    color: var(--black);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
}

.social-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--white);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

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

    .story-visual {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 32px;
        gap: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(3rem, 12vw, 6rem);
    }

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

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

    .notify-banner {
        flex-direction: column;
        text-align: center;
    }

    .notify-form {
        width: 100%;
        flex-direction: column;
    }

    .notify-form input {
        min-width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: 48px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

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

    .tee-number {
        font-size: 4rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .about-intro {
        font-size: 1.125rem;
    }

    .story-visual {
        height: 250px;
    }

    .visual-card.card-1 {
        width: 180px;
        height: 180px;
        font-size: 1.5rem;
    }

    .visual-card.card-2 {
        width: 160px;
        height: 160px;
        font-size: 1.25rem;
    }
}
