/* ============================================================
   HOME PAGE — home.css
   ============================================================ */

/* ---- Hero ---- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}
#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-glow {
    position: absolute;
    width: 860px; height: 860px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(232,99,26,0.16) 0%,
        rgba(232,99,26,0.04) 45%,
        transparent 70%
    );
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    animation: glowPulse 5.5s ease-in-out infinite;
}
@keyframes glowPulse {
    0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
    50%      { transform: translate(-50%,-50%) scale(1.18); opacity: 1; }
}
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 84px 84px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--nav-h) + 20px) var(--px) 0;
    max-width: 1100px;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-family: var(--ff-c);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--orange);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.65s 0.2s var(--ease-o) forwards;
}
.hey-dash {
    display: block;
    width: 36px;
    height: 1px;
    background: var(--orange);
    opacity: 0.6;
}

.hero-title {
    display: flex;
    flex-direction: column;
    line-height: 0.88;
    margin-bottom: 30px;
}
.ht-1, .ht-2 {
    font-family: var(--ff-d);
    font-size: clamp(88px, 17vw, 218px);
    letter-spacing: -0.015em;
    display: block;
}
.ht-1 {
    color: var(--white);
    opacity: 0;
    animation: fadeUp 0.7s 0.42s var(--ease-o) forwards;
}
.ht-2 {
    color: var(--orange);
    text-shadow: 0 0 56px var(--orange-glow), 0 0 100px rgba(232,99,26,0.1);
    opacity: 0;
    animation: fadeUp 0.7s 0.62s var(--ease-o) forwards;
}

.hero-track {
    font-family: var(--ff-c);
    font-size: clamp(16px, 2.8vw, 26px);
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--white-40);
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 0.65s 0.82s var(--ease-o) forwards;
}
.hero-tag {
    font-family: var(--ff-b);
    font-size: 15px;
    font-weight: 300;
    color: var(--muted);
    letter-spacing: 0.12em;
    font-style: italic;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 0.65s 0.98s var(--ease-o) forwards;
}

.hero-cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.65s 1.16s var(--ease-o) forwards;
}

/* Hero bottom bar */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 var(--px) 36px;
    opacity: 0;
    animation: fadeIn 1s 1.8s var(--ease-o) forwards;
}
.hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-c);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--muted);
}
.hb-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 8px var(--orange-glow);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.4; transform: scale(0.7); }
}
.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.hero-scroll span {
    font-family: var(--ff-c);
    font-size: 10px;
    letter-spacing: 0.28em;
    color: var(--muted);
}
.scroll-line {
    width: 1px; height: 52px;
    background: linear-gradient(to bottom, var(--orange), transparent);
    animation: scrollAnim 2.4s ease-in-out infinite;
}
@keyframes scrollAnim {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    70%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}
.hero-year {
    font-family: var(--ff-c);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--muted);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to   { opacity: 1; transform: none; }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ---- Merch Preview ---- */
#merch-preview {
    padding: var(--sv) 0;
    background: var(--black-2);
    position: relative;
}
#merch-preview::before {
    content: '';
    position: absolute;
    top: -1px; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--orange-soft), transparent);
}
.mp-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}
.mp-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.mp-header-left .display-title { margin-bottom: 0; }

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

.mp-card {
    background: var(--black-3);
    overflow: hidden;
    transition: transform var(--tm) var(--ease), box-shadow var(--tm) var(--ease);
}
.mp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0,0,0,0.7), 0 0 28px rgba(232,99,26,0.06);
    z-index: 2;
    position: relative;
}

.mp-card-img {
    display: block;
    aspect-ratio: 2 / 3;
    position: relative;
    overflow: hidden;
    background: var(--black-4);
}
.mp-img-hoodie { background: linear-gradient(155deg, #1c0e05, #110808, #0a0a10); }
.mp-img-tee    { background: linear-gradient(155deg, #0e0a04, #1a0e02, #080806); }
.mp-img-cap    { background: linear-gradient(155deg, #080c10, #0c1018, #080808); }

.mp-img-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mp-art-label {
    position: absolute;
    font-family: var(--ff-d);
    font-size: 52px;
    color: rgba(232,99,26,0.06);
    letter-spacing: 0.1em;
    user-select: none;
}

.mp-silhouette { position: absolute; border: 1.5px solid rgba(232,99,26,0.2); }
.mp-sil-hoodie {
    width: 130px; height: 158px;
    border-radius: 10px 10px 5px 5px;
    clip-path: polygon(18% 0%, 82% 0%, 100% 18%, 100% 100%, 0% 100%, 0% 18%);
}
.mp-sil-tee {
    width: 120px; height: 126px;
    border-radius: 3px;
    clip-path: polygon(17% 0%, 83% 0%, 100% 18%, 88% 18%, 88% 100%, 12% 100%, 12% 18%, 0% 18%);
}
.mp-sil-cap {
    width: 118px; height: 64px;
    border-radius: 59px 59px 0 0;
    border-bottom: none;
}
.mp-sil-hoodie::after {
    content: 'MW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--ff-d);
    font-size: 28px;
    color: rgba(232,99,26,0.18);
    letter-spacing: 0.08em;
}

.mp-img-tag {
    position: absolute;
    top: 14px; left: 0;
    font-family: var(--ff-c);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    background: var(--orange);
    color: var(--black);
    padding: 5px 14px;
    z-index: 3;
}
.mp-tag-hot { background: #b81818; }

.mp-img-hover {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 4;
    transition: opacity var(--tm) var(--ease);
}
.mp-card-img:hover .mp-img-hover { opacity: 1; }
.mp-img-hover span {
    font-family: var(--ff-c);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--white);
    border-bottom: 1px solid var(--white-40);
    padding-bottom: 2px;
}

.mp-card-info { padding: 22px 24px 26px; }
.mp-card-info h3 {
    font-family: var(--ff-c);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 8px;
}
.mp-card-info p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 18px;
}
.mp-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mp-price {
    font-family: var(--ff-c);
    font-size: 20px;
    font-weight: 800;
    color: var(--orange);
}
.btn-link {
    font-family: var(--ff-c);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--white-40);
    transition: color var(--tf);
    border-bottom: 1px solid var(--black-5);
    padding-bottom: 2px;
}
.btn-link:hover { color: var(--orange); border-color: var(--orange); }

/* ---- Booking CTA ---- */
#booking-cta {
    padding: var(--sv) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
.bc-glow {
    position: absolute;
    right: -200px; top: 50%;
    transform: translateY(-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,99,26,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.bc-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.bc-title {
    font-family: var(--ff-d);
    font-size: clamp(48px, 7vw, 90px);
    line-height: 0.93;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 28px;
}
.bc-title em {
    color: var(--orange);
    font-style: normal;
    text-shadow: 0 0 48px var(--orange-glow);
}
.bc-note {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 44px;
}
.bc-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.bc-email {
    font-family: var(--ff-c);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--white-40);
    transition: color var(--tf);
}
.bc-email:hover { color: var(--orange); }

/* Booking art */
.bc-right { display: flex; align-items: center; justify-content: center; }
.bc-art {
    position: relative;
    width: 320px; height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bc-art-mw {
    font-family: var(--ff-d);
    font-size: 110px;
    line-height: 1;
    color: rgba(232,99,26,0.12);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}
.bc-art-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(232,99,26,0.1);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}
.bc-ring-1 { animation-delay: 0s;    transform: scale(0.55); }
.bc-ring-2 { animation-delay: 0.6s;  transform: scale(0.78); }
.bc-ring-3 { animation-delay: 1.2s;  transform: scale(1.0); opacity: 0.5; }
@keyframes ringPulse {
    0%,100% { opacity: 0.15; }
    50%      { opacity: 0.45; }
}

/* ---- Responsive home ---- */
@media (max-width: 1024px) {
    .bc-right { display: none; }
    .bc-inner  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .mp-grid { grid-template-columns: 1fr 1fr; }
    .mp-card:nth-child(3) { display: none; }
    .hero-bottom { display: none; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
}
@media (max-width: 480px) {
    .mp-grid { grid-template-columns: 1fr; }
    .mp-card:nth-child(3) { display: block; }
    .ht-1, .ht-2 { font-size: clamp(72px, 22vw, 100px); }
}
