@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
    --red:#d90429;
    --red-bright:#ff334f;
    --red-soft:#ff6b81;
    --gold:#f7c948;
    --black:#070707;
    --surface:#101010;
    --surface-2:#171717;
    --text:#fff;
    --muted:#b8b8b8;
    --border:#2b2b2b;
    --container:1180px;
    --radius:20px
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    background:
        radial-gradient(circle at 18% 0%,rgba(217,4,41,.1),transparent 28%),
        var(--black);
    color:var(--text);
    font-family:Inter,Arial,sans-serif;
    line-height:1.7
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
.container{width:min(calc(100% - 32px),var(--container));margin-inline:auto}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(7,7,7,.92);
    border-bottom:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(18px)
}
.site-header.is-transparent{background:linear-gradient(180deg,rgba(0,0,0,.76),transparent)}
.header-inner{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:26px}
.custom-logo{width:auto;max-height:54px}
.text-logo,.footer-brand{font-family:"Cormorant Garamond",serif;font-weight:700;letter-spacing:.04em}
.text-logo{font-size:30px}
.text-logo span,.footer-brand span{color:var(--red-bright)}
.primary-menu,.footer-menu{list-style:none;padding:0;margin:0}
.primary-menu{display:flex;gap:30px}
.primary-menu a{position:relative;display:block;padding:9px 0;font-size:14px;font-weight:700}
.primary-menu a:after{content:"";position:absolute;left:0;right:100%;bottom:0;height:2px;background:linear-gradient(90deg,var(--red),var(--red-bright));transition:right .25s}
.primary-menu a:hover:after,.current-menu-item a:after{right:0}
.menu-toggle{display:none;width:44px;height:44px;background:#111;border:1px solid var(--border);border-radius:12px;padding:10px}
.menu-toggle span{display:block;height:2px;margin:5px 0;background:var(--red-bright)}
.header-cta{display:inline-flex;min-height:42px;align-items:center;justify-content:center;padding:0 20px;border-radius:999px;background:linear-gradient(135deg,#a6001a,var(--red-bright));font-size:13px;font-weight:800}

.hero-slider{position:relative;overflow:hidden}
.hero-track{position:relative;min-height:clamp(300px,32vw,620px)}
.hero-slide{position:absolute;inset:0;opacity:0;pointer-events:none;transition:opacity .7s}
.hero-slide.is-active{position:relative;opacity:1;pointer-events:auto}
.hero-slide img{width:100%;min-height:clamp(300px,32vw,620px);object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.5),transparent 55%)}
.hero-fallback{
    min-height:clamp(460px,46vw,680px);
    display:grid;
    align-items:center;
    background:
        radial-gradient(circle at 78% 38%,rgba(217,4,41,.22),transparent 25%),
        linear-gradient(135deg,#050505,#190608 58%,#080808)
}
.hero-content{max-width:760px}
.hero-fallback h1{
    margin:8px 0 10px;
    font:700 clamp(64px,10vw,130px)/.9 "Cormorant Garamond",serif;
    letter-spacing:-.04em
}
.hero-fallback p{max-width:650px;color:var(--muted);font-size:18px}
.eyebrow,.section-kicker{color:var(--red-bright);font-size:12px;font-weight:800;letter-spacing:.2em;text-transform:uppercase}
.hero-arrow,.category-arrow{border:1px solid rgba(255,255,255,.08);background:rgba(10,10,10,.8);color:#fff;cursor:pointer}
.hero-arrow{position:absolute;top:50%;z-index:3;width:48px;height:64px;transform:translateY(-50%);font-size:38px}
.hero-prev{left:16px}.hero-next{right:16px}
.hero-dots{position:absolute;left:50%;bottom:18px;z-index:4;display:flex;gap:8px;transform:translateX(-50%)}
.hero-dots button{width:30px;height:4px;border:0;background:rgba(255,255,255,.28)}
.hero-dots button.is-active{background:var(--red-bright)}

.ticker{border-top:1px solid #22040a;border-bottom:1px solid #22040a;background:#0b0b0b}
.ticker-inner{min-height:46px;display:flex;align-items:center;overflow:hidden}
.ticker-label{padding-right:18px;color:var(--red-bright);font-size:12px;font-weight:900;letter-spacing:.16em}
.ticker-window{width:100%;overflow:hidden}
.ticker-content{display:flex;width:max-content;animation:ticker 28s linear infinite}
.ticker-content span{padding-right:70px;white-space:nowrap;color:#e5e5e5;font-size:13px}
@keyframes ticker{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.category-lounge{padding:18px 0;background:#0c0c0c;border-bottom:1px solid var(--border)}
.category-shell{display:grid;grid-template-columns:42px minmax(0,1fr) 42px;gap:12px}
.category-slider{display:flex;gap:14px;overflow-x:auto;scrollbar-width:none;scroll-snap-type:x proximity}
.category-slider::-webkit-scrollbar{display:none}
.category-pill{
    flex:0 0 158px;
    min-height:108px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:9px;
    scroll-snap-align:center;
    border:1px solid var(--border);
    border-radius:999px;
    background:linear-gradient(145deg,#151515,#0d0d0d);
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    transition:.25s
}
.category-pill:hover{transform:translateY(-3px);border-color:rgba(255,51,79,.7);box-shadow:0 12px 35px rgba(217,4,41,.18)}
.category-icon,.category-icon img{width:54px;height:54px}
.category-icon img{object-fit:contain}
.category-placeholder{display:grid;place-items:center;width:54px;height:54px;border-radius:50%;background:rgba(217,4,41,.12);color:var(--red-bright)}
.category-arrow{width:42px;border-radius:12px;font-size:30px}

.section{padding:92px 0}
.section h1,.section h2,.page-header h1{font-family:"Cormorant Garamond",serif;line-height:1.05}
.about-layout{display:grid;grid-template-columns:.9fr 1.1fr;gap:80px;align-items:start}
.about-title-block{position:relative}
.about-title-block h1{margin:10px 0 0;font-size:clamp(52px,8vw,92px)}
.about-mark{position:absolute;right:10%;top:20%;font:700 160px/1 "Cormorant Garamond",serif;color:rgba(217,4,41,.08)}
.about-copy{color:var(--muted);font-size:18px}

.services-section{background:#0b0b0b}
.section-heading{max-width:760px;margin-bottom:42px}
.section-heading h2,.why-heading h2,.cta-box h2{margin:10px 0 16px;font-size:clamp(42px,6vw,68px)}
.section-heading p{color:var(--muted);font-size:17px}
.service-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.lounge-card{
    position:relative;
    min-height:340px;
    padding:34px;
    overflow:hidden;
    background:linear-gradient(145deg,#171717,#0e0e0e);
    border:1px solid var(--border);
    border-radius:var(--radius)
}
.lounge-card:before{content:"";position:absolute;inset:0 0 auto;height:3px;background:linear-gradient(90deg,var(--red),var(--red-bright),var(--gold))}
.lounge-icon{display:grid;place-items:center;width:58px;height:58px;margin-bottom:32px;border-radius:18px;background:rgba(217,4,41,.12);color:var(--red-bright);font-size:24px}
.lounge-number{position:absolute;right:28px;top:28px;color:#3a3a3a;font:700 42px/1 "Cormorant Garamond",serif}
.lounge-card h3{margin:0 0 12px;font-size:26px}
.lounge-card p{margin:0;color:var(--muted)}

.why-section{background:linear-gradient(135deg,#080808,#130506)}
.why-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px}
.why-timeline{position:relative}
.why-timeline:before{content:"";position:absolute;left:11px;top:10px;bottom:10px;width:2px;background:linear-gradient(var(--red),rgba(217,4,41,.1))}
.why-step{position:relative;display:flex;gap:24px;padding:0 0 34px}
.why-dot{position:relative;z-index:2;flex:0 0 24px;width:24px;height:24px;border:5px solid #22040a;border-radius:50%;background:var(--red-bright);box-shadow:0 0 22px rgba(217,4,41,.35)}
.why-step h3{margin:0 0 7px}
.why-step p{margin:0;color:var(--muted)}

.cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:48px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:var(--radius);
    background:
        radial-gradient(circle at 85% 0%,rgba(255,51,79,.25),transparent 28%),
        linear-gradient(135deg,#4c0712,#160306)
}
.cta-box p{margin:0;color:#f2c7ce}
.button{display:inline-flex;min-height:50px;align-items:center;justify-content:center;padding:0 26px;border-radius:999px;font-size:14px;font-weight:800}
.button-red{background:linear-gradient(135deg,#a6001a,var(--red-bright));color:#fff;box-shadow:0 14px 34px rgba(217,4,41,.24)}

.site-footer{padding:72px 0 24px;background:#050505;border-top:1px solid var(--border)}
.footer-grid{display:grid;grid-template-columns:1.4fr .8fr 1fr;gap:40px}
.footer-brand{margin-bottom:14px;font-size:32px}
.footer-logo-image{max-width:190px;margin-bottom:15px}
.site-footer h2{margin:0 0 16px;color:var(--red-bright);font-size:14px;letter-spacing:.14em;text-transform:uppercase}
.site-footer p,.footer-disclaimer{color:var(--muted)}
.footer-menu li+li{margin-top:8px}
.footer-bottom{margin-top:48px;padding-top:20px;display:flex;justify-content:space-between;gap:20px;border-top:1px solid rgba(255,255,255,.06);font-size:13px}
.footer-legal{display:flex;gap:16px}

.page-main{min-height:60vh;padding:90px 0}
.content-container{max-width:900px}
.page-header{margin-bottom:36px}
.page-header h1{font-size:clamp(48px,7vw,86px)}
.entry-content{color:#ddd}
.entry-content a{color:var(--red-soft)}
.post-list{display:grid;gap:18px}
.post-card{padding:24px;border:1px solid var(--border);border-radius:16px}
.error-page{text-align:center}
.error-code{display:block;color:var(--red-bright);font:700 clamp(90px,18vw,180px)/1 "Cormorant Garamond",serif}

@media(max-width:900px){
    .menu-toggle{display:block}
    .primary-nav{position:fixed;top:78px;left:16px;right:16px;display:none;padding:14px;background:#111;border:1px solid var(--border);border-radius:16px}
    .primary-nav.is-open{display:block}
    .primary-menu{display:block}
    .primary-menu a{padding:13px 12px}
    .header-cta{display:none}
    .about-layout,.why-layout{grid-template-columns:1fr}
    .service-card-grid,.footer-grid{grid-template-columns:1fr}
}

@media(max-width:640px){
    .container{width:min(calc(100% - 22px),var(--container))}
    .header-inner{min-height:68px}
    .primary-nav{top:68px}
    .custom-logo{max-height:44px}
    .hero-track,.hero-slide img{min-height:240px}
    .hero-fallback{min-height:500px}
    .hero-fallback h1{font-size:72px}
    .hero-fallback p{font-size:15px}
    .hero-arrow{width:38px;height:54px}
    .hero-prev{left:6px}.hero-next{right:6px}
    .category-shell{width:100%;grid-template-columns:34px minmax(0,1fr) 34px}
    .category-arrow{width:34px}
    .category-pill{flex-basis:128px;min-height:96px;font-size:10px}
    .category-icon,.category-icon img,.category-placeholder{width:46px;height:46px}
    .section{padding:68px 0}
    .about-layout{gap:26px}
    .about-copy{font-size:15px}
    .lounge-card{min-height:auto;padding:26px}
    .cta-box{align-items:flex-start;flex-direction:column;padding:30px}
    .footer-bottom{flex-direction:column}
}

@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    *{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}

/* ==================================================
   FOOTER LEGAL & DMCA
================================================== */

.footer-bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    min-width: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--muted);
    font-size: 13px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-legal a:hover {
    color: var(--red-bright);
    transform: translateY(-1px);
}

.footer-dmca {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.footer-dmca .dmca-badge {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.footer-dmca .dmca-badge img {
    display: block;
    width: 121px;
    max-width: 121px;
    height: auto;
    margin: 0;
}

.footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li + li {
    margin-top: 8px;
}

.footer-menu a {
    color: var(--muted);
    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer-menu a:hover {
    color: var(--red-bright);
    padding-left: 4px;
}

@media (max-width: 760px) {
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom-right {
        width: 100%;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .footer-legal {
        gap: 14px;
    }
}