/* ── CARDEETS SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0b1220; --navy2: #0f1a2e; --navy3: #162035;
  --orange: #ff7a18; --orange-dark: #e06510;
  --green: #1a9e5c; --light: #f4f5f7;
  --text: #3a4a60; --muted: #5a6a80; --border: #e8eaf0;
}
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(11,18,32,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,122,24,0.15); padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; transition: box-shadow .3s; }
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; width: 40px; object-fit: contain; }
.nav-logo span { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: #fff; }
.nav-logo span em { color: var(--orange); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; font-weight: 600; padding: 8px 11px; border-radius: 6px; transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-book { background: var(--orange) !important; color: #fff !important; padding: 9px 18px !important; border-radius: 8px !important; }
.nav-book:hover { background: var(--orange-dark) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s; }
.mob-menu { display: none; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); padding: 20px; border-bottom: 1px solid rgba(255,122,24,0.2); z-index: 999; flex-direction: column; gap: 4px; }
.mob-menu a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 16px; font-weight: 600; padding: 12px 16px; border-radius: 8px; display: block; transition: background .2s; }
.mob-menu a:hover { background: rgba(255,255,255,0.08); }
.mob-menu .mb { background: var(--orange); color: #fff; text-align: center; margin-top: 8px; border-radius: 10px; }
@media (max-width: 860px) { .nav-links { display: none; } .hamburger { display: flex; } .mob-menu.open { display: flex; } }

/* BANNER */
.banner { background: var(--orange); padding: 11px 20px; text-align: center; font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: #fff; margin-top: 64px; }
.banner a { color: #fff; text-decoration: underline; }

/* SECTION HELPERS */
section { padding: 80px 20px; }
.sl { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; display: block; }
.st { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(30px,4vw,48px); font-weight: 800; margin-bottom: 12px; line-height: 1.1; }
.st.lt { color: #fff; } .st.dk { color: var(--navy); }
.ss { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 560px; margin: 0 auto; }
.sh { text-align: center; margin-bottom: 50px; }
.sd { width: 60px; height: 3px; background: var(--orange); margin: 12px auto 0; border-radius: 2px; }

/* BUTTONS */
.btn-p { display: inline-block; padding: 16px 40px; background: var(--orange); color: #fff; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; border-radius: 10px; box-shadow: 0 8px 24px rgba(255,122,24,0.35); transition: transform .2s, box-shadow .2s, background .2s; }
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,122,24,0.45); background: var(--orange-dark); }
.btn-s { display: inline-block; padding: 16px 40px; background: rgba(255,255,255,0.08); color: #fff; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.2); transition: background .2s; }
.btn-s:hover { background: rgba(255,255,255,0.14); }

/* CARDS */
.cards { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; max-width: 1200px; margin: 0 auto; }
.card { flex: 1 1 270px; max-width: 310px; background: #fff; border-radius: 16px; border: 1.5px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.07); display: flex; flex-direction: column; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.card.ft { border-color: var(--orange); box-shadow: 0 8px 32px rgba(255,122,24,0.18); }
.ch { padding: 20px 22px 16px; background: var(--navy); color: #fff; position: relative; }
.ch.or { background: var(--orange); }
.cl { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: .6; margin-bottom: 3px; }
.cn { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.cs { font-size: 13px; opacity: .75; font-style: italic; }
.bdg { position: absolute; top: 14px; right: 14px; background: #fff; color: var(--orange); font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.bdg.nb { color: var(--navy); }
.cb { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.cpr { padding-bottom: 14px; border-bottom: 1.5px solid var(--border); }
.pl { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 3px; }
.plb { font-size: 13px; font-weight: 600; color: var(--muted); }
.pv { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); }
.pt { font-size: 12px; color: #8a94a6; margin-left: 4px; }
.cd { font-size: 14px; color: var(--muted); line-height: 1.65; padding-bottom: 12px; border-bottom: 1.5px solid var(--border); }
.cf { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cf li { font-size: 14px; color: var(--text); display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.cf li::before { content: '✓'; color: var(--orange); font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.cbtn { display: block; text-align: center; padding: 13px; background: var(--navy); color: #fff; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; border-radius: 10px; margin-top: 16px; transition: background .2s, transform .15s; }
.cbtn:hover { transform: translateY(-1px); }
.cbtn.ob { background: var(--orange); } .cbtn.ob:hover { background: var(--orange-dark); }
.cbtn.gb { background: var(--green); }

/* NOTICE */
.notice { max-width: 800px; margin: 32px auto 0; padding: 16px 20px; border-radius: 12px; font-size: 14px; line-height: 1.65; }
.notice.wn { background: #fff8f0; border: 1.5px solid rgba(255,122,24,0.25); border-left: 4px solid var(--orange); color: #7a4818; }
.notice strong { color: var(--orange); }

/* GRAPHENE PACKAGE */
.gc { max-width: 960px; margin: 30px auto 0; background: linear-gradient(135deg,rgba(255,122,24,0.08) 0%,rgba(11,18,32,0) 100%); border: 2px solid var(--orange); border-radius: 20px; padding: 36px 40px; position: relative; overflow: hidden; }
@media(max-width:600px) { .gc { padding: 24px 20px; } }
.gc::before { content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle,rgba(255,122,24,0.12) 0%,transparent 70%); pointer-events: none; }
.gt { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; margin-bottom: 24px; }
.gtt { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.gts { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 420px; line-height: 1.6; }
.gps { display: flex; gap: 28px; flex-wrap: wrap; }
.gpl { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.gpo { font-size: 14px; color: rgba(255,255,255,0.3); text-decoration: line-through; }
.gpp { font-family: 'Barlow Condensed', sans-serif; font-size: 34px; font-weight: 900; color: var(--orange); line-height: 1; }
.gpv { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 2px; }
.gst { display: flex; flex-wrap: wrap; margin-bottom: 24px; }
.gsi { display: flex; align-items: center; gap: 10px; flex: 1 1 180px; padding: 14px 16px; background: rgba(255,255,255,0.04); border-radius: 10px; margin: 4px; }
.gsn { width: 32px; height: 32px; border-radius: 50%; background: var(--orange); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.gsn+div strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.gsn+div span { font-size: 12px; color: rgba(255,255,255,0.5); }
.gb2 { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.gn { font-size: 13px; color: rgba(255,255,255,0.45); font-style: italic; max-width: 380px; line-height: 1.5; }
.gbtn { display: inline-block; padding: 13px 32px; background: var(--orange); color: #fff; text-decoration: none; font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; border-radius: 10px; transition: background .2s, transform .2s; white-space: nowrap; }
.gbtn:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ADD-ONS GRID */
.ag { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 16px; max-width: 1100px; margin: 0 auto; }
.ac { background: rgba(255,255,255,0.04); border: 1.5px solid rgba(255,122,24,0.15); border-radius: 14px; padding: 20px 22px; transition: border-color .2s, background .2s; }
.ac:hover { border-color: rgba(255,122,24,0.4); background: rgba(255,255,255,0.06); }
.an { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.ad { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 14px; line-height: 1.5; }
.aps { display: flex; gap: 20px; flex-wrap: wrap; }
.apl { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.apv { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; color: var(--orange); }
.atag { display: inline-block; background: var(--orange); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }

/* COMBO CARDS */
.cc { flex: 1 1 250px; max-width: 285px; background: var(--light); border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform .25s, box-shadow .25s; }
.cc:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.12); }
.cc.fc { border-color: var(--green); box-shadow: 0 6px 28px rgba(26,158,92,0.14); }
.cch { padding: 18px 20px 14px; background: var(--navy3); color: #fff; position: relative; }
.cch.gh { background: var(--green); }
.ccn { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 3px; }
.ccsu { font-size: 13px; opacity: .72; font-style: italic; }
.ccb { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.cci { font-size: 13px; color: #4a5a70; line-height: 1.55; }
.cci strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: 11px; text-transform: uppercase; letter-spacing: .5px; }
.cpb { background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 15px; }
.cpr2 { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.cpl { font-size: 13px; font-weight: 600; color: var(--muted); }
.cor { font-size: 13px; color: #a0aab8; text-decoration: line-through; margin-right: 6px; }
.cfi { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: var(--green); }
.csv { font-size: 12px; color: var(--green); font-weight: 600; }

/* CONTACT STRIP */
.contact-strip { background: var(--navy3); padding: 50px 20px; }
.contact-strip-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 24px; }
.cs-item { display: flex; align-items: center; gap: 14px; min-width: 0; overflow: hidden; }
.cs-item > div { min-width: 0; overflow: hidden; flex: 1; }
.cs-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,122,24,0.15); border: 1.5px solid rgba(255,122,24,0.25); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cs-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 3px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; }
.cs-val { font-size: 14px; font-weight: 600; color: #fff; text-decoration: none; transition: color .2s; display: block; word-break: break-all; overflow-wrap: break-word; white-space: normal; }
.cs-val:hover { color: var(--orange); }

/* QUOTE */
.qsec { background: var(--navy); text-align: center; }
blockquote { font-size: clamp(17px,2.5vw,21px); font-style: italic; max-width: 680px; margin: 0 auto 16px; line-height: 1.75; color: #b0c8e8; }
cite { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--orange); font-style: normal; }

/* FOOTER */
footer { background: #070e1a; border-top: 1px solid rgba(255,122,24,0.15); padding: 50px 24px 30px; }
.fi2 { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.fi2 > * { min-width: 0; }
@media(max-width:700px) { .fi2 { grid-template-columns: 1fr; gap: 28px; } }
.fb img { height: 48px; margin-bottom: 12px; display: block; }
.fb p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 260px; }
.fc2 h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.fc2 a, .fc2 p { display: block; font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 9px; transition: color .2s; line-height: 1.5; word-break: break-all; overflow-wrap: break-word; }
.fc2 a:hover { color: var(--orange); }
.fbot { max-width: 1100px; margin: 28px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* PAGE HERO (non-home) */
.page-hero { background: linear-gradient(155deg,var(--navy) 0%,var(--navy2) 60%,#1a2a45 100%); padding: 120px 20px 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%,rgba(255,122,24,0.07) 0%,transparent 60%); pointer-events: none; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(38px,7vw,68px); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 14px; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { font-size: 17px; color: #b0c4de; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* BOOKING FORM */
.bwrap { max-width: 840px; margin: 0 auto; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px) { .fg { grid-template-columns: 1fr; } }
.fi { display: flex; flex-direction: column; gap: 6px; }
.fi.full { grid-column: 1/-1; }
label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .5px; }
input, select, textarea { width: 100%; padding: 12px 14px; background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 10px; color: #fff; font-size: 15px; font-family: 'Barlow', sans-serif; transition: border-color .2s, background .2s; outline: none; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.25); }
input:focus, select:focus, textarea:focus { border-color: var(--orange); background: rgba(255,122,24,0.06); }
select option { background: var(--navy2); color: #fff; }
textarea { resize: vertical; min-height: 90px; }
.fw { display: none; font-size: 13px; color: #ff9a4a; margin-top: 5px; }
.addon-group { display: grid; grid-template-columns: repeat(auto-fill,minmax(230px,1fr)); gap: 10px; margin-top: 4px; }
.aci { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; padding: 10px 12px; background: rgba(255,255,255,0.03); border: 1.5px solid rgba(255,255,255,0.08); border-radius: 8px; transition: border-color .2s, background .2s; }
.aci:hover { border-color: rgba(255,122,24,0.3); background: rgba(255,122,24,0.04); }
.aci input[type=checkbox] { width: 17px; height: 17px; accent-color: var(--orange); flex-shrink: 0; cursor: pointer; margin-top: 2px; }
.aci .ai { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.3; }
.aci .ap { font-size: 12px; color: var(--orange); font-weight: 700; display: block; margin-top: 2px; }
.aci.hidden { display: none; }
.price-summary { background: rgba(255,122,24,0.08); border: 2px solid rgba(255,122,24,0.3); border-radius: 16px; padding: 22px 24px; margin-top: 8px; }
.ps-title { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.ps-empty { font-size: 14px; color: rgba(255,255,255,0.3); font-style: italic; }
.ps-items { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.ps-item { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,0.7); }
.ps-item span:last-child { font-weight: 600; color: #fff; }
.ps-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 10px 0; }
.ps-row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 5px; }
.ps-row span:last-child { color: rgba(255,255,255,0.8); }
.ps-total { display: flex; justify-content: space-between; font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: #fff; margin-top: 6px; }
.ps-total span:last-child { color: var(--orange); }
.ps-note { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 10px; font-style: italic; }
.ps-duration { margin-top: 12px; padding: 10px 14px; background: rgba(255,255,255,0.05); border-radius: 8px; font-size: 13px; color: rgba(255,255,255,0.6); }
.ps-duration strong { color: #fff; }
.pmethods { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.pm { display: flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.12); border-radius: 8px; font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 600; }
.sbtn { width: 100%; padding: 16px; background: var(--orange); color: #fff; border: none; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; border-radius: 12px; transition: background .2s, transform .2s, box-shadow .2s; box-shadow: 0 6px 20px rgba(255,122,24,0.3); }
.sbtn:hover { background: var(--orange-dark); transform: translateY(-2px); }
.sbtn:disabled { background: #555; cursor: not-allowed; transform: none; box-shadow: none; }
.fnote { font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; margin-top: 12px; line-height: 1.7; }
.fnote a { color: rgba(255,255,255,0.5); }
.fsuccess { display: none; text-align: center; padding: 50px 20px; }
.fsuccess .fck { font-size: 64px; margin-bottom: 16px; }
.fsuccess h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 30px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.fsuccess p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* KAMLOOPS CHECKBOX */
.kamloops-check { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: rgba(26,158,92,0.08); border: 1.5px solid rgba(26,158,92,0.3); border-radius: 10px; cursor: pointer; }
.kamloops-check input[type=checkbox] { width: 20px; height: 20px; accent-color: var(--green); flex-shrink: 0; cursor: pointer; margin-top: 2px; }
.kamloops-check span { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.5; font-weight: 600; }
.kamloops-check span small { display: block; font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 400; margin-top: 2px; }

/* REVEAL */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.rv.vis { opacity: 1; transform: translateY(0); }
