/* ================================================================
   Canada Guides — V4 «Maple Guide»
   Clean modern travel-guide: white, maple red, cool slate
   Type: Inter (everything) — crisp product-style UI
   ================================================================ */
:root {
    --white:  #ffffff;
    --bg:     #f6f7f9;
    --maple:  #c8102e;
    --maple-d:#9d0c24;
    --navy:   #1c2733;
    --text:   #333d47;
    --muted:  #75808c;
    --line:   #e4e8ed;
    --sans: "Inter", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 780px; }
.center { text-align: center; }

h1, h2, h3 { color: var(--navy); line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 18px; }
h3 { font-size: 1.35rem; }
h2.light, h1.light { color: #fff; }

.section-kicker {
    display: inline-block; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    font-size: .72rem; color: var(--maple); margin-bottom: 12px; background: rgba(200,16,46,.08);
    padding: 6px 14px; border-radius: 100px;
}
.section-kicker.gold { color: #ffb3c0; background: rgba(255,255,255,.12); }
.section-lead { max-width: 620px; margin: 0 auto 24px; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
    display: inline-block; font-weight: 700; font-size: .88rem; padding: 14px 30px;
    border: 2px solid transparent; border-radius: 10px; cursor: pointer; transition: all .18s ease; text-align: center;
}
.btn-lg { padding: 17px 42px; font-size: .95rem; }
.btn-gold { background: var(--maple); color: #fff; box-shadow: 0 6px 18px rgba(200,16,46,.28); }
.btn-gold:hover { background: var(--maple-d); transform: translateY(-1px); }
.btn-ghost { border-color: rgba(255,255,255,.65); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #0f161e; }
.btn-line { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-line:hover { border-color: var(--navy); }

/* ---------- top bar + header ---------- */
.topbar { background: var(--navy); }
.topbar-inner {
    display: flex; justify-content: space-between; padding-top: 7px; padding-bottom: 7px;
    font-size: .72rem; letter-spacing: .08em; color: rgba(255,255,255,.65); font-weight: 500;
}
.site-header { background: rgba(255,255,255,.94); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 26px; padding-top: 13px; padding-bottom: 13px; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
    width: 42px; height: 42px; background: var(--maple); color: #fff; border-radius: 12px;
    display: grid; place-items: center; font-size: 1.05rem; font-weight: 800;
}
.logo-text { color: var(--navy); font-weight: 800; font-size: 1.02rem; line-height: 1.2; letter-spacing: -.01em; }
.logo-text small { display: block; color: var(--muted); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a {
    color: var(--text); font-size: .86rem; font-weight: 600; padding: 9px 14px; border-radius: 8px; transition: all .16s;
}
.main-nav a:hover { background: var(--bg); color: var(--navy); }
.main-nav a.active { background: rgba(200,16,46,.08); color: var(--maple); }
.header-cta { white-space: nowrap; }
.nav-toggle { display: none; background: none; border: 1.5px solid var(--line); color: var(--navy); font-size: 1.1rem; padding: 6px 12px; border-radius: 8px; cursor: pointer; }

/* ---------- hero ---------- */
.hero, .page-hero { position: relative; min-height: 74vh; display: flex; align-items: center; }
.page-hero { min-height: 46vh; }
.page-hero.short { min-height: 38vh; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(15,22,30,.62) 0%, rgba(15,22,30,.42) 60%, rgba(15,22,30,.72) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 70px 24px; width: 100%; }
.hero-kicker {
    display: inline-block; color: #fff; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(6px); letter-spacing: .1em; text-transform: uppercase;
    font-size: .74rem; font-weight: 700; margin-bottom: 22px; padding: 8px 20px; border-radius: 100px;
}
.hero h1, .page-hero h1 { color: #fff; margin-bottom: 18px; }
.hero-sub { color: rgba(255,255,255,.9); max-width: 580px; margin: 0 auto 32px; font-size: 1.1rem; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll { display: none; }

/* ---------- booking strip ---------- */
.booking-strip { background: transparent; }
.booking-bar {
    display: flex; background: var(--white); border-radius: 16px;
    box-shadow: 0 24px 60px rgba(28,39,51,.16); transform: translateY(-50%); overflow: hidden;
}
.bb-field { flex: 1; padding: 16px 22px; border-right: 1px solid var(--line); }
.bb-field label { display: block; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 4px; }
.bb-field select, .bb-field input { width: 100%; border: 0; outline: 0; font-family: var(--sans); font-size: .95rem; color: var(--navy); background: transparent; font-weight: 600; }
.bb-submit { border: 0; border-radius: 0; flex: 0 0 auto; align-self: stretch; box-shadow: none; }

/* ---------- intro / highlights ---------- */
.intro { padding: 26px 0 76px; }
.intro p, .highlights p { margin-bottom: 18px; }
.highlights { padding: 88px 0; background: var(--white); }
.highlight-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 30px 0; }
.highlight-cards figure { position: relative; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 28px rgba(28,39,51,.1); }
.highlight-cards img { height: 200px; width: 100%; object-fit: cover; }
.highlight-cards figcaption {
    position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92); color: var(--navy);
    font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; padding: 7px 14px; border-radius: 100px;
}

/* ---------- rating: 2×2 compact grid cards ---------- */
.rating { padding: 76px 0 90px; }
.rating > .container > .hotel-card { }
.rating .container { display: block; }
.rating-grid-wrap { }
.hotel-card {
    display: flex; flex-direction: column; margin-top: 40px; background: var(--white);
    border-radius: 18px; overflow: hidden; box-shadow: 0 14px 40px rgba(28,39,51,.09);
    border: 1px solid var(--line);
}
.hc-media { position: relative; height: 320px; }
.hc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hc-rank {
    position: absolute; top: 18px; left: 18px; background: var(--white); color: var(--maple);
    font-size: .95rem; font-weight: 800; padding: 9px 16px; border-radius: 100px; box-shadow: 0 6px 16px rgba(28,39,51,.18);
}
.hc-body { padding: 30px 36px 38px; }
.hc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 16px; }
.hc-location { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.hc-overall { text-align: center; flex-shrink: 0; background: var(--navy); color: #fff; border-radius: 12px; padding: 9px 15px; }
.hc-score { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1.15; }
.hc-stars { color: #ffb932; letter-spacing: .05em; font-size: .78rem; }
.star-half { display: inline-block; width: .62em; overflow: hidden; vertical-align: bottom; }
.hc-stats { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-bottom: 20px; }
.hc-stats li {
    font-size: .74rem; font-weight: 700; color: var(--navy); background: var(--bg);
    border: 1px solid var(--line); padding: 6px 14px; border-radius: 100px;
}
.hc-scores { margin-bottom: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.hc-scorebar { display: flex; align-items: center; gap: 10px; }
.sb-label { flex: 0 0 92px; font-weight: 600; color: var(--muted); font-size: .76rem; }
.sb-track { flex: 1; height: 8px; background: var(--bg); border-radius: 8px; position: relative; overflow: hidden; }
.sb-fill { position: absolute; inset: 0; right: auto; background: linear-gradient(90deg, #e6455e, var(--maple)); border-radius: 8px; }
.sb-val { flex: 0 0 28px; text-align: right; font-weight: 800; color: var(--navy); font-size: .85rem; }
.hc-text { margin-bottom: 12px; font-size: .95rem; }
.hc-text strong { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 2px; color: var(--maple); font-weight: 800; }
.hc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

/* ---------- events teaser (navy band) ---------- */
.events-teaser { background: var(--navy); padding: 84px 0; }
.events-teaser h2 { margin-bottom: 36px; }
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 36px; }
.teaser-card { display: flex; gap: 16px; background: #253242; border-radius: 14px; padding: 22px; transition: all .2s; }
.teaser-card:hover { transform: translateY(-4px); background: #2c3b4e; }
.tc-date { flex: 0 0 auto; text-align: center; color: #ffb3c0; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.tc-date span { display: block; font-size: 2rem; font-weight: 800; line-height: 1.1; color: #fff; }
.tc-body { display: flex; flex-direction: column; gap: 5px; color: rgba(255,255,255,.85); }
.tc-body strong { font-weight: 700; line-height: 1.35; color: #fff; }
.tc-body em { font-style: normal; font-size: .8rem; color: rgba(255,255,255,.55); }
.tc-tag { align-self: flex-start; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; padding: 4px 12px; font-weight: 800; border-radius: 100px; }
.tc-tag.poker { background: rgba(200,16,46,.25); color: #ffb3c0; }
.tc-tag.event { background: rgba(255,255,255,.12); color: #fff; }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative; padding: 92px 0;
    background: linear-gradient(rgba(15,22,30,.75), rgba(15,22,30,.75)), url('img/hero.jpg') center/cover;
}
.cta-sub { color: rgba(255,255,255,.85); margin: 0 0 28px; }

/* ---------- events page ---------- */
.events-list { padding: 64px 0 88px; }
.filter-row { display: flex; gap: 10px; justify-content: center; margin-bottom: 46px; flex-wrap: wrap; }
.chip {
    padding: 10px 22px; background: var(--white); border: 1.5px solid var(--line); border-radius: 100px;
    font-size: .82rem; font-weight: 700; color: var(--muted); transition: all .18s;
}
.chip:hover { border-color: var(--maple); color: var(--maple); }
.chip.on { background: var(--maple); color: #fff; border-color: var(--maple); }
.event-row {
    display: grid; grid-template-columns: 104px 1fr auto; gap: 26px; align-items: center;
    background: var(--white); border-radius: 16px; padding: 26px 30px; margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(28,39,51,.07); border: 1px solid var(--line);
}
.er-date { text-align: center; background: var(--bg); border-radius: 12px; padding: 14px 8px; }
.er-day { display: block; font-size: 2.1rem; font-weight: 800; color: var(--navy); line-height: 1.1; }
.er-month { display: block; color: var(--maple); letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; font-weight: 800; margin-top: 2px; }
.er-dow { display: block; color: var(--muted); font-size: .7rem; margin-top: 2px; }
.er-top { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.er-badge { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 800; color: var(--maple); background: rgba(200,16,46,.08); padding: 4px 12px; border-radius: 100px; }
.event-row h3 { margin-bottom: 4px; }
.er-meta { font-size: .84rem; color: var(--muted); margin-bottom: 8px; }
.er-desc { font-size: .94rem; max-width: 640px; }
.events-note { margin-top: 36px; text-align: center; font-size: .8rem; color: var(--muted); max-width: 660px; margin-left: auto; margin-right: auto; }

/* ---------- booking page ---------- */
.booking-page { padding: 64px 0 88px; }
.booking-layout { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 38px; align-items: start; }
.booking-form-wrap { background: var(--white); border-radius: 18px; padding: 40px; box-shadow: 0 12px 36px rgba(28,39,51,.08); border: 1px solid var(--line); }
.booking-form-wrap h2 { margin-bottom: 22px; }
.bf-row { display: flex; gap: 16px; }
.bf-field { flex: 1; margin-bottom: 16px; }
.bf-narrow { flex: 0 0 110px; }
.bf-field label { display: block; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.bf-field input, .bf-field select, .bf-field textarea {
    width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
    font-family: var(--sans); font-size: .95rem; color: var(--navy); background: var(--bg); outline: none; transition: all .18s;
}
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus { border-color: var(--maple); background: #fff; box-shadow: 0 0 0 4px rgba(200,16,46,.08); }
.form-fineprint { margin-top: 14px; font-size: .76rem; color: var(--muted); }
.form-errors { background: rgba(200,16,46,.06); border: 1.5px solid rgba(200,16,46,.35); border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; font-size: .88rem; color: var(--maple-d); }
.form-errors p { margin: 2px 0; }

.confirm-card { text-align: center; padding: 18px 8px; }
.confirm-icon { width: 72px; height: 72px; margin: 0 auto 20px; background: #16a34a; color: #fff; font-size: 2rem; display: grid; place-items: center; border-radius: 50%; }
.confirm-list { list-style: none; margin: 20px auto; max-width: 430px; text-align: left; border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden; }
.confirm-list li { padding: 12px 18px; border-bottom: 1px solid var(--line); font-size: .95rem; background: var(--white); }
.confirm-list li:last-child { border-bottom: 0; }
.confirm-list strong { display: inline-block; width: 100px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 800; }
.confirm-note { font-size: .85rem; color: var(--muted); max-width: 480px; margin: 0 auto 22px; }
.confirm-card .hc-actions { justify-content: center; }

.booking-side { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 32px 30px; position: sticky; top: 92px; box-shadow: 0 12px 36px rgba(28,39,51,.06); }
.booking-side h3 { margin-bottom: 16px; }
.booking-side h4 { color: var(--maple); letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; font-weight: 800; margin: 24px 0 10px; }
.side-list { list-style: none; }
.side-list li { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
.side-list strong { color: var(--navy); }
.side-event { display: flex; gap: 12px; padding: 9px 0; font-size: .85rem; border-bottom: 1px solid var(--line); }
.side-event:hover { color: var(--maple); }
.se-date { flex: 0 0 52px; color: var(--maple); font-weight: 800; }
.booking-side a { color: var(--maple); }

/* ---------- legal ---------- */
.legal-page { padding: 72px 0 88px; }
.legal-page h1 { margin-bottom: 6px; }
.legal-updated { color: var(--muted); font-size: .85rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.25rem; margin: 26px 0 10px; }
.legal-page p { margin-bottom: 14px; }
.legal-page a { color: var(--maple); text-decoration: underline; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; padding: 60px 24px 44px; }
.site-footer .logo-text { color: #fff; }
.site-footer .logo-text small { color: rgba(255,255,255,.5); }
.footer-brand p { font-size: .88rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 { color: #fff; letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; font-weight: 800; margin-bottom: 14px; }
.footer-col a { display: block; padding: 5px 0; font-size: .9rem; }
.footer-col a:hover { color: #ffb3c0; }
.footer-note { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding: 24px 0 32px; text-align: center; }
.footer-bottom p { font-size: .82rem; }
.disclaimer { max-width: 760px; margin: 10px auto 0; color: rgba(255,255,255,.45); font-size: .76rem !important; }
.disclaimer strong { color: rgba(255,255,255,.65); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
    .teaser-grid { grid-template-columns: 1fr; }
    .booking-layout { grid-template-columns: 1fr; }
    .booking-side { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-bar { flex-wrap: wrap; transform: translateY(-26px); border-radius: 14px; }
    .bb-field { flex: 1 1 45%; border-bottom: 1px solid var(--line); }
    .bb-submit { flex: 1 1 100%; }
    .event-row { grid-template-columns: 90px 1fr; }
    .er-cta { grid-column: 2; }
}
@media (max-width: 720px) {
    .main-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
        flex-direction: column; padding: 16px 24px; gap: 6px; border-bottom: 1px solid var(--line);
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; margin-left: auto; }
    .header-cta { display: none; }
    .topbar-inner { justify-content: center; gap: 12px; flex-wrap: wrap; }
    .hero { min-height: 64vh; }
    .hc-media { height: 220px; }
    .hc-body { padding: 24px 20px 30px; }
    .hc-scores { grid-template-columns: 1fr; }
    .highlight-cards { grid-template-columns: 1fr; }
    .bf-row { flex-direction: column; gap: 0; }
    .bf-narrow { flex: 1; }
    .booking-form-wrap { padding: 26px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .event-row { grid-template-columns: 1fr; padding: 20px; }
    .er-date { max-width: 120px; }
    .er-cta { grid-column: 1; }
}
