/* coupedumonde2026.ca — Parisian Editorial × Sports design */
/* Deep navy + tricolor + gold Art Déco */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=Source+Sans+3:wght@400;500;600;700&family=IM+Fell+English+SC&display=swap');

:root {
    --navy: #05111f;
    --navy2: #081a2e;
    --navy3: #0d2340;
    --gold: #c9a227;
    --gold-light: #e8c84a;
    --gold-dim: rgba(201, 162, 39, .12);
    --gold-border: rgba(201, 162, 39, .28);
    --rouge: #c0392b;
    --rouge-dim: rgba(192, 57, 43, .1);
    --bleu: #1a56a8;
    --bleu-dim: rgba(26, 86, 168, .1);
    --blanc: #f8f5ef;
    --blanc-muted: rgba(248, 245, 239, .7);
    --blanc-dim: rgba(248, 245, 239, .3);
    --border: rgba(255, 255, 255, .06);
    --border2: rgba(201, 162, 39, .15);
    --font-head: 'Playfair Display', Georgia, serif;
    --font-sc: 'IM Fell English SC', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --glow: 0 0 40px rgba(201, 162, 39, .2), 0 0 80px rgba(201, 162, 39, .08);
    --shadow: 0 8px 40px rgba(0, 0, 0, .6);
    --radius: 8px;
    --radius-lg: 14px;
    --t: .22s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--navy);
    color: var(--blanc);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 162, 39, .05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 0% 100%, rgba(26, 86, 168, .06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0
}

/* Art Deco corner decorations */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cpath d='M0 0 L40 0 L0 40 Z' fill='rgba(201,162,39,0.04)'/%3E%3Cpath d='M0 0 L20 0 L0 20 Z' fill='rgba(201,162,39,0.06)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color var(--t)
}

a:hover {
    color: var(--gold)
}

ul {
    list-style: none
}

/* SKIP */
.skip-link {
    position: absolute;
    top: -99px;
    left: 0;
    background: var(--gold);
    color: var(--navy);
    padding: .5rem 1rem;
    z-index: 999;
    border-radius: 0 0 6px 0;
    font-weight: 700;
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1
}

/* TRICOLOR BAR */
.tricolor-bar {
    display: flex;
    height: 4px;
    width: 100%
}

.tricolor-bar span {
    flex: 1
}

.tricolor-bar .t-bleu {
    background: var(--bleu)
}

.tricolor-bar .t-blanc {
    background: #fff
}

.tricolor-bar .t-rouge {
    background: var(--rouge)
}

/* HEADER */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 17, 31, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gold-border)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px
}

.logo img {
    border-radius: 6px
}

.logo-text .logo-name {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--blanc);
    line-height: 1;
    font-style: italic
}

.logo-text .logo-name em {
    color: var(--gold-light);
    font-style: normal
}

.logo-text .logo-tag {
    font-family: var(--font-body);
    font-size: .55rem;
    color: var(--blanc-dim);
    text-transform: uppercase;
    letter-spacing: .12em
}

.main-nav ul {
    display: flex;
    gap: .1rem
}

.main-nav a {
    font-size: .78rem;
    font-weight: 600;
    color: var(--blanc-muted);
    padding: .4rem .85rem;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all var(--t);
    text-transform: uppercase;
    letter-spacing: .04em
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
    border-color: var(--gold-border);
    background: var(--gold-dim)
}

.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 1px solid var(--gold-border);
    border-radius: 5px;
    cursor: pointer;
    padding: .35rem .5rem
}

.burger span {
    display: block;
    width: 19px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 17, 31, .97);
    border-bottom: 1px solid var(--gold-border);
    z-index: 99;
    padding: .75rem 0
}

.mobile-nav.open {
    display: block
}

.mobile-nav li a {
    display: block;
    padding: .65rem 1.5rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--blanc-muted);
    text-transform: uppercase;
    letter-spacing: .05em
}

.mobile-nav li a:hover {
    color: var(--gold-light);
    background: var(--gold-dim)
}

/* HERO */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center top;
    filter: brightness(.2) saturate(.8)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5, 17, 31, .8) 0%, rgba(5, 17, 31, .5) 50%, rgba(5, 17, 31, .93) 100%)
}

/* Art Deco grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(rgba(201, 162, 39, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 162, 39, .03) 1px, transparent 1px);
    background-size: 80px 80px
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-sc);
    font-size: .7rem;
    color: var(--gold-light);
    letter-spacing: .2em;
    text-transform: uppercase;
    margin-bottom: 1.2rem
}

.kicker-line {
    width: 30px;
    height: 1px;
    background: var(--gold)
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(3.2rem, 10vw, 7.5rem);
    font-weight: 700;
    line-height: .9;
    color: var(--blanc);
    margin-bottom: 1.2rem;
    letter-spacing: -.01em
}

.hero h1 .gold {
    color: var(--gold-light)
}

.hero h1 .rouge {
    color: var(--rouge)
}

.hero h1 em {
    font-style: italic;
    color: var(--blanc-muted)
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--blanc-muted);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem
}

.hero-ctas {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    font-size: .88rem;
    font-weight: 700;
    padding: .72rem 1.8rem;
    border-radius: 6px;
    transition: all var(--t);
    box-shadow: var(--glow);
    text-transform: uppercase;
    letter-spacing: .06em
}

.btn-gold:hover {
    box-shadow: 0 0 50px rgba(201, 162, 39, .45);
    transform: translateY(-2px);
    color: var(--navy)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid var(--gold-border);
    color: var(--blanc-muted);
    font-size: .88rem;
    font-weight: 600;
    padding: .72rem 1.8rem;
    border-radius: 6px;
    transition: all var(--t);
    text-transform: uppercase;
    letter-spacing: .05em
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    background: var(--gold-dim)
}

/* STATS ROW */
.stats-row {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.2rem 0;
    border-top: 1px solid var(--gold-border)
}

.stat-item {
    display: flex;
    flex-direction: column
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1
}

.stat-label {
    font-size: .68rem;
    color: var(--blanc-dim);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: .2rem
}

/* SECTION */
.section {
    padding: 5.5rem 0;
    position: relative;
    z-index: 1
}

.section-kicker {
    font-family: var(--font-sc);
    font-size: .68rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .18em;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .6rem
}

.section-kicker::before,
.section-kicker::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold-border);
    max-width: 40px
}

.section-kicker::before {
    display: none
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    color: var(--blanc);
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1;
    margin-bottom: .75rem;
    font-style: italic
}

.section-title strong {
    color: var(--gold-light);
    font-style: normal
}

.section-sub {
    color: var(--blanc-muted);
    max-width: 600px;
    line-height: 1.8;
    font-size: .93rem
}

.section-header {
    margin-bottom: 2.5rem
}

/* CARD */
.card {
    background: var(--navy2);
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--t);
    position: relative
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bleu), var(--rouge));
    opacity: .5
}

.card:hover {
    border-color: var(--gold-border);
    box-shadow: 0 4px 30px rgba(201, 162, 39, .15);
    transform: translateY(-3px)
}

.card-body {
    padding: 1.35rem
}

.card-tag {
    font-family: var(--font-sc);
    font-size: .6rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .5rem
}

.card-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--blanc);
    font-weight: 700;
    margin-bottom: .4rem
}

.card-text {
    font-size: .83rem;
    color: var(--blanc-muted);
    line-height: 1.65
}

/* TABLE */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border2)
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem
}

.data-table caption {
    font-family: var(--font-sc);
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blanc-dim);
    text-align: left;
    padding: .65rem 1rem;
    border-bottom: 1px solid var(--border2)
}

.data-table th {
    background: rgba(201, 162, 39, .06);
    color: var(--gold-light);
    font-family: var(--font-sc);
    font-size: .58rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .7rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gold-border)
}

.data-table td {
    padding: .62rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--blanc-muted);
    vertical-align: middle
}

.data-table tr:last-child td {
    border: none
}

.data-table tr:hover td {
    background: rgba(201, 162, 39, .03)
}

.data-table .hl td {
    background: rgba(201, 162, 39, .06);
    color: var(--blanc)
}

.flag-sm {
    border-radius: 2px;
    vertical-align: middle;
    margin-right: .35rem
}

/* BADGE */
.b-gold {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-sc);
    font-size: .58rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 3px;
    background: var(--gold-dim);
    color: var(--gold-light);
    border: 1px solid var(--gold-border)
}

.b-bleu {
    background: var(--bleu-dim);
    color: #6b9ee8;
    border: 1px solid rgba(26, 86, 168, .25)
}

.b-rouge {
    background: var(--rouge-dim);
    color: #e07070;
    border: 1px solid rgba(192, 57, 43, .25)
}

/* BAR CHART */
.bar-list {
    display: flex;
    flex-direction: column;
    gap: .9rem
}

.bar-item {
    display: grid;
    grid-template-columns: 180px 1fr 55px;
    gap: .75rem;
    align-items: center
}

.bar-label {
    font-size: .83rem;
    font-weight: 600;
    color: var(--blanc-muted);
    display: flex;
    align-items: center;
    gap: .4rem
}

.bar-track {
    height: 5px;
    background: rgba(255, 255, 255, .05);
    border-radius: 3px;
    overflow: hidden
}

.bar-fill {
    height: 100%;
    border-radius: 3px;
    width: 0;
    transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
    background: linear-gradient(90deg, var(--gold), var(--gold-light))
}

.bar-val {
    font-family: var(--font-sc);
    font-size: .72rem;
    color: var(--gold-light);
    text-align: right
}

/* COUNTDOWN */
.countdown-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem
}

.cd-box {
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 8px;
    padding: .75rem 1.2rem;
    text-align: center;
    min-width: 72px
}

.cd-num {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1
}

.cd-label {
    font-size: .6rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--blanc-dim);
    margin-top: .2rem
}

/* SISTER */
.sister-section {
    background: linear-gradient(180deg, var(--navy2), var(--navy3));
    border-top: 1px solid var(--border2);
    border-bottom: 1px solid var(--border2);
    padding: 4.5rem 0
}

/* SEO */
.seo-section {
    background: var(--navy2);
    border-top: 1px solid var(--border2);
    padding: 4rem 0
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: var(--blanc);
    font-weight: 700;
    margin-bottom: .8rem;
    font-style: italic
}

.seo-article h3 {
    font-family: var(--font-head);
    font-size: .95rem;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: .5rem;
    font-style: italic
}

.seo-article p {
    font-size: .88rem;
    color: var(--blanc-muted);
    line-height: 1.85;
    margin-bottom: .9rem
}

.seo-article a {
    color: var(--gold-light);
    border-bottom: 1px dashed var(--gold-border)
}

.seo-article a:hover {
    border-color: var(--gold-light)
}

.ql-row {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem
}

.ql {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--font-sc);
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .28rem .8rem;
    border-radius: 3px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    color: var(--blanc-dim);
    transition: all var(--t)
}

.ql:hover {
    background: rgba(201, 162, 39, .2);
    color: var(--gold-light)
}

/* BREADCRUMB */
.breadcrumbs {
    font-family: var(--font-sc);
    font-size: .65rem;
    color: var(--blanc-dim);
    padding: .6rem 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: .05em
}

.breadcrumbs a {
    color: var(--blanc-dim)
}

.breadcrumbs a:hover {
    color: var(--gold-light)
}

.breadcrumbs span {
    margin: 0 .3rem;
    opacity: .4
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border2)
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-body);
    font-size: .93rem;
    font-weight: 600;
    color: var(--blanc);
    cursor: pointer
}

.faq-icon {
    font-size: 1rem;
    color: var(--gold-light);
    flex-shrink: 0
}

.faq-answer {
    display: none;
    padding: 0 0 1.1rem;
    font-size: .88rem;
    color: var(--blanc-muted);
    line-height: 1.8
}

.faq-item.open .faq-answer {
    display: block
}

/* FOOTER */
.site-footer {
    background: #030c17;
    border-top: 1px solid var(--gold-border);
    padding: 3.5rem 0 1.5rem;
    position: relative;
    z-index: 1
}

.tricolor-footer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    height: 2px
}

.tricolor-footer span {
    flex: 1
}

.tricolor-footer .tf-b {
    background: var(--bleu)
}

.tricolor-footer .tf-w {
    background: #fff
}

.tricolor-footer .tf-r {
    background: var(--rouge)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem
}

.footer-brand p {
    font-size: .8rem;
    color: var(--blanc-dim);
    line-height: 1.7;
    margin-top: .7rem
}

.footer-col h4 {
    font-family: var(--font-sc);
    font-size: .6rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: .9rem
}

.footer-col li {
    margin-bottom: .4rem
}

.footer-col a {
    font-size: .8rem;
    color: var(--blanc-dim)
}

.footer-col a:hover {
    color: var(--gold-light)
}

.footer-social {
    border-top: 1px solid var(--border2);
    padding: 1.5rem 0;
    text-align: center
}

.footer-social p {
    font-family: var(--font-sc);
    font-size: .6rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--blanc-dim);
    margin-bottom: .85rem
}

.social-row {
    display: flex;
    gap: .6rem;
    justify-content: center;
    flex-wrap: wrap
}

.soc-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-family: var(--font-sc);
    font-size: .65rem;
    letter-spacing: .06em;
    padding: .4rem .9rem;
    border-radius: 4px;
    border: 1px solid;
    transition: all var(--t);
    text-transform: uppercase
}

.soc-btn:hover {
    transform: translateY(-2px)
}

.soc-fb {
    border-color: rgba(24, 119, 242, .3);
    color: #1877f2;
    background: rgba(24, 119, 242, .06)
}

.soc-fb:hover {
    background: rgba(24, 119, 242, .14)
}

.soc-x {
    border-color: rgba(255, 255, 255, .12);
    color: #e7e9ea;
    background: rgba(255, 255, 255, .03)
}

.soc-x:hover {
    background: rgba(255, 255, 255, .09)
}

.soc-tt {
    border-color: rgba(255, 0, 80, .22);
    color: #ff0050;
    background: rgba(255, 0, 80, .05)
}

.soc-tt:hover {
    background: rgba(255, 0, 80, .12)
}

.soc-ig {
    border-color: rgba(225, 48, 108, .22);
    color: #e1306c;
    background: rgba(225, 48, 108, .05)
}

.soc-ig:hover {
    background: rgba(225, 48, 108, .12)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-sc);
    font-size: .65rem;
    color: var(--blanc-dim);
    flex-wrap: wrap;
    gap: .5rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.footer-bottom a {
    color: var(--blanc-dim)
}

.footer-bottom a:hover {
    color: var(--gold-light)
}

.footer-dev {
    text-align: center;
    font-family: var(--font-sc);
    font-size: .62rem;
    color: var(--blanc-dim);
    margin-top: .55rem;
    text-transform: uppercase;
    letter-spacing: .06em
}

.footer-dev a {
    color: var(--gold-light)
}

.footer-dev a:hover {
    color: var(--gold)
}

/* ANIM */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    animation: fadeUp .55s ease both
}

.d1 {
    animation-delay: .1s
}

.d2 {
    animation-delay: .2s
}

.d3 {
    animation-delay: .3s
}

@media(max-width:1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .bar-item {
        grid-template-columns: 130px 1fr 50px
    }
}

@media(max-width:768px) {
    .main-nav {
        display: none
    }

    .burger {
        display: flex
    }

    .hero h1 {
        font-size: 3.5rem
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .bar-item {
        grid-template-columns: 110px 1fr 45px
    }
}