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

:root {
    --orange:      #E85A0C;
    --orange-glow: rgba(232,90,12,0.18);
    --orange-dim:  rgba(232,90,12,0.08);
    --black:       #080808;
    --dark:        #101010;
    --dark2:       #141414;
    --card:        #181818;
    --card2:       #1e1e1e;
    --white:       #ffffff;
    --off-white:   #e8e8e8;
    --gray:        #777777;
    --light-gray:  #bbbbbb;
    --border:      #242424;
    --border2:     #2e2e2e;
}

body {
    font-family: Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
}

/* ── Header & Nav ── */
header {
    background-color: rgba(0,0,0,0.96);
    border-bottom: 1px solid var(--border);
    padding: 0 56px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    gap: 24px;
    padding: 8px 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.nav-logo img {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(232,90,12,0.55));
    transition: transform 0.2s, filter 0.2s;
}

.nav-logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(232,90,12,0.9));
}

.logo-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    background: radial-gradient(circle, #1e1e1e, #0d0d0d);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
    font-weight: bold;
    color: var(--orange);
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 0 12px rgba(232,90,12,0.2);
}

.nav-club-name {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-club-name span { color: var(--orange); }

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 1px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

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

/* ── Page Hero ── */
.page-hero,
.page-header {
    position: relative;
    background-color: #000;
    padding: 80px 56px 68px;
    overflow: hidden;
    border-bottom: 0;
}

.page-hero::before,
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(232,90,12,0.13) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 8% 85%, rgba(232,90,12,0.06) 0%, transparent 55%);
    pointer-events: none;
}

.page-hero::after,
.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        transparent,
        transparent 18px,
        rgba(255,255,255,0.012) 18px,
        rgba(255,255,255,0.012) 19px
    );
    pointer-events: none;
}

.hero-content,
.page-header > * { position: relative; }

.eyebrow {
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--orange);
    flex-shrink: 0;
}

.page-hero h1,
.page-header h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 0.95;
    margin-bottom: 20px;
}

.page-hero h1 span,
.page-header h1 span { color: var(--orange); }

.hero-sub,
.page-header .subtitle {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray);
    line-height: 1.7;
    max-width: 620px;
}

.page-header .eyebrow { margin-bottom: 18px; }

/* ── Stripe Divider ── */
.stripe-divider {
    height: 6px;
    background: repeating-linear-gradient(
        -45deg,
        var(--orange),
        var(--orange) 6px,
        #000 6px,
        #000 12px
    );
    opacity: 0.85;
}

/* ── Sections ── */
section { padding: 72px 56px; }
section:nth-of-type(odd)  { background-color: var(--dark); }
section:nth-of-type(even) { background-color: var(--black); }

section h2 {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--off-white);
}

section h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 28px;
    background: linear-gradient(180deg, var(--orange), rgba(232,90,12,0.3));
    flex-shrink: 0;
    border-radius: 2px;
}

/* ── Legacy Page Upgrades ── */
.featured-card,
.featured-photo,
.contact-form,
.contact-panel,
.contact-card,
.social-card,
.gallery-item,
.news-card,
.communique-card,
.category-card,
.superior-card,
.pilar-card,
.path-step {
    background-color: var(--card);
    border-color: var(--border);
    box-shadow: 0 18px 54px rgba(0,0,0,0.18);
}

.featured-card,
.featured-photo,
.contact-form,
.contact-panel,
.social-card,
.gallery-item,
.news-card,
.communique-card,
.category-card,
.superior-card {
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.featured-card:hover,
.featured-photo:hover,
.contact-form:hover,
.contact-panel:hover,
.social-card:hover,
.gallery-item:hover,
.news-card:hover,
.communique-card:hover,
.category-card:hover,
.superior-card:hover {
    background-color: var(--card2);
    border-color: var(--orange);
    box-shadow: 0 20px 58px rgba(232,90,12,0.14), 0 0 0 1px rgba(232,90,12,0.35);
}

.filter-btn,
.submit-btn,
.read-more,
.communique-link,
.social-cta,
.download-photo,
.cta-btn-blanco,
.category-open {
    border-radius: 0;
}

input,
select,
textarea,
.search-wrap {
    background-color: #0b0b0b;
    border-color: var(--border2);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232,90,12,0.12);
}

.gallery-item img,
.featured-photo img {
    transition: transform 0.45s;
}

.gallery-item:hover img,
.featured-photo:hover img {
    transform: scale(1.035);
}

/* ── Footer ── */
footer {
    background-color: #000;
    border-top: 1px solid var(--border);
    padding: 56px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--orange) 70%, transparent);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.footer-brand .brand-name span { color: var(--orange); }
.footer-brand p { margin-top: 12px; font-size: 0.84rem; color: var(--gray); line-height: 1.8; }
.footer-brand .hashtag { margin-top: 14px; font-size: 0.82rem; color: var(--orange); font-weight: 700; letter-spacing: 2px; }

.footer-links h4,
.footer-social h4 {
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--gray); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border2);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.social-icon:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 0 14px rgba(232,90,12,0.35);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-size: 0.76rem;
    text-align: center;
    color: #444;
    letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    header, .page-hero, section, footer { padding-left: 40px; padding-right: 40px; }
}

@media (max-width: 760px) {
    header { padding: 0 24px; }
    .page-hero, section, footer { padding-left: 24px; padding-right: 24px; }
    nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
    .nav-links { justify-content: flex-start; gap: 14px; }
    .page-hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
}

@media (max-width: 480px) {
    .page-hero { padding-top: 56px; padding-bottom: 48px; }
    section { padding-top: 52px; padding-bottom: 52px; }
}
