*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0
}

html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%
}

body {
font-family: var(--fb);
background: var(--pearl);
color: var(--ink);
line-height: 1.7;
font-size: 15px;
overflow-x: hidden
}

img {
max-width: 100%;
height: auto;
display: block
}

a {
color: inherit;
text-decoration: none
}

button,
input,
select,
textarea {
font-family: inherit
}

ul,
ol {
list-style: none
}

:root {
/* ── 11-Day Palette: Cosmic Midnight + Twin Moons ── */
--void: #050810;
--abyss: #08101E;
--deep: #0C1830;
--navy: #102040;
--navy-mid: #182E58;
--pearl: #ECF0F8;
--pearl-lt: #DDE4F2;
--white: #F3F6FB;
--sapphire: #1E48A8;
/* primary sapphire blue          */
--sapphire-lt: #3060CC;
/* lighter sapphire               */
--sapphire-dk: #142E88;
/* deep sapphire                  */
--moonsilver: #A8C8E8;
/* lunar silver-blue              */
--moon-lt: #C8DEF2;
/* lighter moon                   */
--amber: #C48010;
/* dawn amber                     */
--amber-lt: #E09E28;
/* lighter amber                  */
--violet: #5840A8;
/* aurora violet                  */
--violet-lt: #7860CC;
/* lighter violet                 */
--emerald: #208050;
/* second rest day — emerald      */
--emerald-lt: #30A868;
--smoke: #465878;
--mist: #607890;
--ink: #080F1E;
--rock: #243858;
--success: #186840;
--border: rgba(16, 32, 64, .14);
--bord-md: rgba(16, 32, 64, .28);
--fd: 'Playfair Display', Georgia, serif;
--fb: 'Outfit', sans-serif;
--s1: .25rem;
--s2: .5rem;
--s3: .75rem;
--s4: 1rem;
--s5: 1.25rem;
--s6: 1.5rem;
--s8: 2rem;
--s10: 2.5rem;
--s12: 3rem;
--s16: 4rem;
--rsm: 6px;
--rmd: 12px;
--rlg: 18px;
--rxl: 24px;
--rpill: 100px;
--sh-sm: 0 2px 12px rgba(5, 8, 16, .1);
--sh-md: 0 6px 28px rgba(5, 8, 16, .16);
--sh-lg: 0 14px 50px rgba(5, 8, 16, .22);
--t: .22s cubic-bezier(.4, 0, .2, 1);
}

.skip-link {
position: absolute;
top: -100%;
left: var(--s4);
background: var(--navy);
color: var(--white);
padding: var(--s2) var(--s5);
border-radius: var(--rsm);
font-size: 14px;
z-index: 9999;
transition: top var(--t)
}

.skip-link:focus {
top: var(--s3)
}

.sr {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0
}

/* ================================================================ HEADER ================================================================ */
.site-header {
position: sticky;
top: 0;
z-index: 300;
background: rgba(5, 8, 16, .97);
backdrop-filter: blur(18px);
border-bottom: 1px solid rgba(30, 72, 168, .2)
}

.nav-wrap {
max-width: 1280px;
margin: 0 auto;
padding: 0 var(--s4)
}

.nav-topbar {
display: flex;
align-items: center;
justify-content: space-between;
height: 62px
}

.logo-link {
display: flex;
align-items: center;
gap: var(--s3);
flex-shrink: 0
}

.logo-link img {
height: 40px;
width: 40px;
object-fit: contain;
border-radius: var(--rsm)
}

.logo-words {
display: flex;
flex-direction: column;
line-height: 1.15
}

.logo-name {
font-family: var(--fd);
font-size: clamp(.88rem, 2.5vw, 1.05rem);
font-weight: 700;
color: var(--white)
}

.logo-sub {
font-size: 9.5px;
font-weight: 500;
color: rgba(255, 255, 255, .36);
letter-spacing: .12em;
text-transform: uppercase
}

.hamburger {
display: flex;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: var(--s2);
border-radius: var(--rsm);
transition: background var(--t)
}

.hamburger:hover {
background: rgba(255, 255, 255, .07)
}

.hamburger span {
display: block;
width: 22px;
height: 2px;
background: rgba(255, 255, 255, .85);
border-radius: 2px;
transition: transform var(--t), opacity var(--t)
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
transform: translateY(7px) rotate(45deg)
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
opacity: 0;
transform: scaleX(0)
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg)
}

.nav-drawer {
display: none;
flex-direction: column;
padding-bottom: var(--s4);
border-top: 1px solid rgba(255, 255, 255, .06)
}

.nav-drawer.open {
display: flex
}

.nav-links {
display: flex;
flex-direction: column;
gap: 2px;
padding: var(--s3) 0
}

.nav-links a {
display: block;
padding: var(--s3);
font-size: 15px;
font-weight: 500;
color: rgba(255, 255, 255, .74);
border-radius: var(--rsm);
transition: background var(--t), color var(--t)
}

.nav-links a:hover {
background: rgba(16, 32, 64, .38);
color: var(--white)
}

.nav-links a[aria-current="page"] {
background: var(--navy-mid);
color: var(--white)
}

.nav-cta {
display: flex;
align-items: center;
justify-content: center;
gap: var(--s2);
padding: var(--s3) var(--s6);
background: var(--sapphire);
color: var(--white);
border-radius: var(--rpill);
font-weight: 700;
font-size: 14px;
margin-top: var(--s2);
transition: background var(--t)
}

.nav-cta:hover {
background: var(--sapphire-lt)
}

@media(min-width:768px) {
.hamburger {
display: none
}

.nav-drawer {
display: flex !important;
flex-direction: row;
align-items: center;
padding-bottom: 0;
border-top: none
}

.nav-links {
flex-direction: row;
padding: 0
}

.nav-links a {
font-size: 13.5px;
padding: var(--s2) var(--s3)
}

.nav-cta {
margin-top: 0;
margin-left: var(--s3);
padding: var(--s2) var(--s5);
font-size: 13.5px
}

.nav-topbar {
height: 66px
}
}

/* ================================================================ BREADCRUMB ================================================================ */
.bc-bar {
background: var(--abyss);
border-bottom: 1px solid rgba(16, 32, 64, .28);
overflow-x: auto;
white-space: nowrap;
scrollbar-width: none
}

.bc-bar::-webkit-scrollbar {
display: none
}

.bc-inner {
max-width: 1280px;
margin: 0 auto;
padding: var(--s2) var(--s4)
}

.bc-list {
display: inline-flex;
align-items: center;
gap: var(--s2);
font-size: 12px;
color: rgba(255, 255, 255, .38)
}

.bc-list li+li::before {
content: "›";
font-size: 13px
}

.bc-list a {
color: rgba(255, 255, 255, .54);
transition: color var(--t)
}

.bc-list a:hover {
color: var(--sapphire-lt)
}

.bc-list [aria-current="page"] {
color: rgba(255, 255, 255, .82);
font-weight: 500
}

/* ================================================================ HERO ================================================================ */
.hero {
position: relative;
min-height: clamp(510px, 74vw, 760px);
display: flex;
align-items: flex-end;
overflow: hidden;
background: var(--void)
}

.hero-bg {
position: absolute;
inset: 0;
background-image: url('https://www.resilienceexpedition.com/images/kilimanjaro-northern-circuit-11-days.webp');
background-size: cover;
background-position: center 26%;
transform: scale(1.05);
transition: transform 9s ease-out;
filter: saturate(.75) brightness(.85)
}

.hero.loaded .hero-bg {
transform: scale(1)
}

.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(162deg, rgba(5, 8, 16, .05) 0%, rgba(5, 8, 16, .38) 34%, rgba(5, 8, 16, .99) 100%)
}

/* Dual aurora strips — symbolising two rest days */
.hero-aurora1 {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 3px;
background: linear-gradient(90deg, transparent 0%, rgba(88, 64, 168, .7) 25%, rgba(168, 200, 232, .9) 50%, rgba(32, 128, 80, .6) 75%, transparent 100%);
z-index: 2
}

.hero-aurora2 {
position: absolute;
top: 5px;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent 10%, rgba(168, 200, 232, .4) 40%, rgba(88, 64, 168, .3) 65%, transparent 90%);
z-index: 2
}

.hero-ridge {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 76px;
background: linear-gradient(to top, var(--void) 0%, transparent 100%);
z-index: 1
}

.hero-stars {
position: absolute;
inset: 0;
background-image: radial-gradient(circle, rgba(255, 255, 255, .65) 1px, transparent 1px);
background-size: 56px 56px;
opacity: .055;
pointer-events: none
}

.hero-content {
position: relative;
z-index: 2;
width: 100%;
padding: var(--s8) var(--s4) var(--s10);
display: flex;
flex-direction: column;
gap: var(--s4)
}

@media(min-width:768px) {
.hero-content {
padding: var(--s10) var(--s6) var(--s12)
}
}

@media(min-width:1024px) {
.hero-content {
max-width: 1280px;
margin: 0 auto;
padding: var(--s12) var(--s6) var(--s16)
}
}

.eyebrow {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: rgba(30, 72, 168, .18);
border: 1px solid rgba(30, 72, 168, .38);
color: var(--moon-lt);
font-size: 10.5px;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
padding: var(--s1) var(--s4);
border-radius: var(--rpill);
width: fit-content
}

.eyebrow svg {
width: 11px;
height: 11px;
flex-shrink: 0
}

.pinnacle-badge {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: rgba(196, 128, 16, .22);
border: 1px solid rgba(196, 128, 16, .5);
color: var(--amber-lt);
font-size: 11px;
font-weight: 700;
letter-spacing: .06em;
padding: var(--s1) var(--s4);
border-radius: var(--rpill);
width: fit-content
}

.pinnacle-badge svg {
width: 13px;
height: 13px;
flex-shrink: 0
}

.hero-title {
font-family: var(--fd);
font-size: clamp(1.8rem, 6.6vw, 3.85rem);
font-weight: 700;
color: var(--white);
line-height: 1.1;
letter-spacing: -.02em
}

.hero-title em {
font-style: italic;
color: var(--moonsilver)
}

.hero-sub {
font-size: clamp(14px, 2.5vw, 16.5px);
color: rgba(255, 255, 255, .64);
max-width: 640px;
line-height: 1.78
}

.hero-badges {
display: flex;
flex-direction: column;
gap: var(--s2)
}

@media(min-width:480px) {
.hero-badges {
flex-direction: row;
flex-wrap: wrap;
gap: var(--s4)
}
}

.hero-badge {
display: inline-flex;
align-items: center;
gap: var(--s2);
color: rgba(255, 255, 255, .82);
font-size: 13px
}

.hero-badge svg {
width: 14px;
height: 14px;
opacity: .7;
flex-shrink: 0
}

.hero-price-row {
display: flex;
align-items: center;
gap: var(--s4);
flex-wrap: wrap
}

.price-pill {
background: var(--sapphire);
color: var(--white);
padding: var(--s4) var(--s6);
border-radius: var(--rmd);
min-width: 158px
}

.price-pill .from {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
opacity: .74
}

.price-pill .amount {
font-family: var(--fd);
font-size: 2.1rem;
font-weight: 700;
line-height: 1
}

.price-pill .amount sup {
font-size: 1rem;
vertical-align: super
}

.hero-scroll {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: var(--void);
color: var(--white);
padding: var(--s3) var(--s6);
border-radius: var(--rpill);
font-size: 14px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t);
text-decoration: none
}

.hero-scroll:hover {
background: var(--abyss)
}

@media(min-width:1024px) {
.hero-scroll {
display: none
}
}

/* ================================================================ PINNACLE BAND ================================================================ */
.pinnacle-band {
background: linear-gradient(135deg, rgba(30, 72, 168, .2) 0%, rgba(8, 16, 30, .95) 100%);
border-bottom: 2px solid rgba(168, 200, 232, .18);
padding: var(--s5) var(--s4)
}

.pinnacle-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--s4);
align-items: flex-start
}

@media(min-width:768px) {
.pinnacle-inner {
flex-direction: row;
align-items: center;
gap: var(--s8)
}
}

.pinnacle-icon {
width: 60px;
height: 60px;
min-width: 60px;
border-radius: 50%;
background: rgba(196, 128, 16, .18);
border: 2px solid rgba(196, 128, 16, .44);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
position: relative
}

.pinnacle-icon svg {
width: 30px;
height: 30px;
color: var(--amber-lt)
}

.rest-count {
position: absolute;
top: -4px;
right: -4px;
width: 20px;
height: 20px;
background: var(--emerald);
border: 2px solid var(--void);
border-radius: 50%;
font-size: 10px;
font-weight: 800;
color: var(--white);
display: flex;
align-items: center;
justify-content: center
}

.pinnacle-text strong {
display: block;
font-family: var(--fd);
font-size: clamp(1rem, 3vw, 1.3rem);
font-weight: 700;
color: var(--white);
margin-bottom: 5px
}

.pinnacle-text p {
font-size: 13.5px;
color: rgba(255, 255, 255, .66);
line-height: 1.68;
margin: 0
}

.pinnacle-stats {
display: flex;
flex-direction: column;
gap: var(--s3);
flex-shrink: 0
}

@media(min-width:480px) {
.pinnacle-stats {
flex-direction: row;
gap: var(--s5)
}
}

@media(min-width:768px) {
.pinnacle-stats {
margin-left: auto
}
}

.ps-item {
text-align: center
}

.ps-num {
font-family: var(--fd);
font-size: 1.82rem;
font-weight: 700;
color: var(--moonsilver);
line-height: 1
}

.ps-label {
font-size: 10.5px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: rgba(255, 255, 255, .38);
margin-top: 2px
}

/* ================================================================ SIGNATURE BAND ================================================================ */
.sig-band {
background: linear-gradient(135deg, var(--abyss) 0%, var(--deep) 100%);
border-bottom: 1px solid rgba(16, 32, 64, .3);
padding: var(--s5) var(--s4)
}

.sig-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--s5)
}

@media(min-width:768px) {
.sig-inner {
flex-direction: row;
align-items: flex-start;
gap: var(--s8)
}
}

.sig-feat {
display: flex;
flex-direction: column;
gap: var(--s2);
flex: 1
}

@media(min-width:480px) {
.sig-feat {
flex-direction: row;
align-items: flex-start;
gap: var(--s4)
}
}

.sig-ico {
width: 44px;
height: 44px;
min-width: 44px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.sig-ico.two {
background: rgba(88, 64, 168, .22);
border: 1px solid rgba(88, 64, 168, .4);
color: var(--violet-lt)
}

.sig-ico.high {
background: rgba(32, 128, 80, .18);
border: 1px solid rgba(32, 128, 80, .36);
color: var(--emerald-lt)
}

.sig-ico.apex {
background: rgba(196, 128, 16, .2);
border: 1px solid rgba(196, 128, 16, .38);
color: var(--amber-lt)
}

.sig-ico svg {
width: 20px;
height: 20px
}

.sig-txt strong {
display: block;
font-size: 14px;
font-weight: 700;
color: var(--white);
margin-bottom: 3px
}

.sig-txt p {
font-size: 13px;
color: rgba(255, 255, 255, .5);
line-height: 1.62;
margin: 0
}

.sig-stats {
display: flex;
flex-direction: column;
gap: var(--s4);
flex-shrink: 0
}

@media(min-width:480px) {
.sig-stats {
flex-direction: row;
gap: var(--s6)
}
}

@media(min-width:768px) {
.sig-stats {
margin-left: auto;
flex-direction: row
}
}

.ss-item {
text-align: center
}

.ss-num {
font-family: var(--fd);
font-size: 1.9rem;
font-weight: 700;
color: var(--moonsilver);
line-height: 1
}

.ss-lbl {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: rgba(255, 255, 255, .36);
margin-top: 2px
}

/* ================================================================ ELEVATION STRIP ================================================================ */
.elev-strip {
background: var(--abyss);
border-bottom: 1px solid rgba(16, 32, 64, .25);
padding: var(--s5) var(--s4)
}

.elev-inner {
max-width: 1280px;
margin: 0 auto
}

.elev-label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--mist);
margin-bottom: var(--s4)
}

.elev-svg-wrap {
display: none;
margin-bottom: var(--s4)
}

@media(min-width:600px) {
.elev-svg-wrap {
display: block
}
}

.elev-svg {
width: 100%;
height: 82px;
display: block;
overflow: visible
}

.elev-fill {
fill: rgba(30, 72, 168, .1)
}

.elev-path {
fill: none;
stroke: var(--sapphire-lt);
stroke-width: 2;
stroke-linecap: round
}

.camp-row {
display: flex;
flex-direction: column;
gap: var(--s2)
}

@media(min-width:600px) {
.camp-row {
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
gap: var(--s1)
}
}

.camp-node {
display: flex;
align-items: center;
gap: var(--s3);
background: rgba(255, 255, 255, .04);
border: 1px solid rgba(16, 32, 64, .22);
border-radius: var(--rsm);
padding: var(--s3) var(--s4)
}

@media(min-width:600px) {
.camp-node {
flex-direction: column;
align-items: center;
text-align: center;
gap: var(--s1);
flex: 1;
background: none;
border: none;
padding: var(--s2) 0
}
}

.c-dot {
width: 9px;
height: 9px;
min-width: 9px;
border-radius: 50%;
background: var(--sapphire-lt);
flex-shrink: 0
}

.c-dot.r1 {
background: var(--violet);
box-shadow: 0 0 0 3px rgba(88, 64, 168, .25)
}

.c-dot.r2 {
background: var(--emerald);
box-shadow: 0 0 0 3px rgba(32, 128, 80, .25)
}

.c-dot.wall-dot {
background: var(--amber);
box-shadow: 0 0 0 3px rgba(196, 128, 16, .25)
}

.c-dot.summit-dot {
width: 14px;
height: 14px;
min-width: 14px;
background: var(--moonsilver);
box-shadow: 0 0 0 4px rgba(168, 200, 232, .28)
}

.c-name {
font-size: 10px;
font-weight: 600;
color: rgba(255, 255, 255, .76);
line-height: 1.3
}

.c-name.sum {
color: var(--moonsilver)
}

.c-alt {
font-size: 9.5px;
color: var(--mist);
margin-top: 1px
}

.c-alt.sum {
color: var(--moonsilver);
font-weight: 700
}

.c-badge {
font-size: 8px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
border-radius: var(--rpill);
padding: 1px 5px;
margin-top: 2px;
display: inline-block
}

.c-badge.r1 {
color: var(--violet-lt);
background: rgba(88, 64, 168, .15);
border: 1px solid rgba(88, 64, 168, .3)
}

.c-badge.r2 {
color: var(--emerald-lt);
background: rgba(32, 128, 80, .12);
border: 1px solid rgba(32, 128, 80, .28)
}

.c-badge.wall {
color: var(--amber-lt);
background: rgba(196, 128, 16, .14);
border: 1px solid rgba(196, 128, 16, .28)
}

/* ================================================================ PAGE LAYOUT ================================================================ */
.page-wrap {
max-width: 1280px;
margin: 0 auto;
padding: var(--s6) var(--s4)
}

@media(min-width:768px) {
.page-wrap {
padding: var(--s8) var(--s6)
}
}

.page-cols {
display: flex;
flex-direction: column;
gap: var(--s8)
}

@media(min-width:1024px) {
.page-cols {
flex-direction: row;
align-items: flex-start;
gap: var(--s10)
}
}

.main-col {
min-width: 0;
flex: 1
}

.side-col {
width: 100%;
display: flex;
flex-direction: column;
gap: var(--s5)
}

@media(min-width:1024px) {
.side-col {
width: 360px;
flex-shrink: 0;
position: sticky;
top: 80px
}
}

/* ================================================================ GALLERY ================================================================ */
.gallery {
display: flex;
flex-direction: column;
gap: var(--s2);
border-radius: var(--rxl);
overflow: hidden;
margin-bottom: var(--s8)
}

@media(min-width:600px) {
.gallery {
display: grid;
grid-template-columns: 1.6fr 1fr;
grid-template-rows: 235px 175px
}
}

.g-item {
overflow: hidden;
position: relative;
background: var(--deep);
height: 200px
}

@media(min-width:600px) {
.g-item {
height: auto
}

.g-item:first-child {
grid-row: 1/3
}
}

.g-item img {
width: 100%;
height: 100%;
object-fit: cover;
filter: saturate(.84);
transition: transform .55s cubic-bezier(.25, .46, .45, .94), filter var(--t)
}

.g-item:hover img {
transform: scale(1.06);
filter: saturate(1.04)
}

.g-overlay {
position: absolute;
inset: 0;
background: rgba(5, 8, 16, .32);
transition: background var(--t)
}

.g-item:hover .g-overlay {
background: rgba(5, 8, 16, .08)
}

.g-more {
position: absolute;
inset: 0;
background: rgba(5, 8, 16, .62);
display: flex;
align-items: center;
justify-content: center;
color: var(--white);
font-family: var(--fd);
font-size: 1.2rem;
font-weight: 700;
cursor: pointer;
transition: background var(--t)
}

.g-more:hover {
background: rgba(5, 8, 16, .36)
}

.g-item:nth-child(n+3) {
display: none
}

@media(min-width:600px) {
.g-item:nth-child(n+3) {
display: block
}
}

/* ================================================================ HIGHLIGHTS ================================================================ */
.hl-strip {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
border-radius: var(--rmd);
overflow: hidden;
margin-bottom: var(--s8)
}

@media(min-width:768px) {
.hl-strip {
grid-template-columns: repeat(4, 1fr)
}
}

.hl-item {
background: var(--white);
padding: var(--s4) var(--s3);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: var(--s2)
}

.hl-icon {
width: 36px;
height: 36px;
border-radius: 50%;
background: var(--pearl-lt);
display: flex;
align-items: center;
justify-content: center;
color: var(--navy)
}

.hl-icon svg {
width: 17px;
height: 17px
}

.hl-label {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--mist)
}

.hl-val {
font-family: var(--fd);
font-size: .95rem;
font-weight: 700;
color: var(--ink);
line-height: 1.2
}

/* ================================================================ RATING BAR ================================================================ */
.rating-bar {
display: flex;
flex-direction: column;
gap: var(--s3);
padding: var(--s4) var(--s5);
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rmd);
margin-bottom: var(--s8)
}

@media(min-width:520px) {
.rating-bar {
flex-direction: row;
align-items: center;
flex-wrap: wrap
}
}

.r-stars {
color: var(--amber);
font-size: 16px;
display: flex;
gap: 2px
}

.r-score {
font-family: var(--fd);
font-size: 1.45rem;
font-weight: 700;
color: var(--ink)
}

.r-count {
font-size: 13px;
color: var(--mist)
}

.r-badge {
font-size: 12px;
font-weight: 700;
color: var(--sapphire-dk);
background: rgba(30, 72, 168, .09);
padding: var(--s1) var(--s3);
border-radius: var(--rpill);
border: 1px solid rgba(30, 72, 168, .22);
white-space: nowrap
}

@media(min-width:520px) {
.r-badge {
margin-left: auto
}
}

/* ================================================================ SECTIONS ================================================================ */
.section {
margin-bottom: var(--s10)
}

.sec-title {
font-family: var(--fd);
font-size: clamp(1.5rem, 4vw, 1.85rem);
font-weight: 700;
color: var(--navy);
margin-bottom: var(--s4);
line-height: 1.2
}

.sec-body p {
color: #080F1E;
font-size: 15px;
line-height: 1.83;
margin-bottom: var(--s4)
}

.sec-body p:last-child {
margin-bottom: 0
}

hr.divider {
border: none;
border-top: 1px solid var(--border);
margin: var(--s8) 0
}

.callout {
display: flex;
flex-direction: column;
gap: var(--s3);
border-radius: var(--rmd);
padding: var(--s4) var(--s5);
margin: var(--s5) 0;
border: 1px solid
}

@media(min-width:480px) {
.callout {
flex-direction: row;
align-items: flex-start;
gap: var(--s4)
}
}

.callout.pinnacle {
background: rgba(196, 128, 16, .06);
border-color: rgba(196, 128, 16, .2);
border-left: 4px solid var(--amber)
}

.callout.twin {
background: rgba(88, 64, 168, .06);
border-color: rgba(88, 64, 168, .2);
border-left: 4px solid var(--violet)
}

.callout.high-alt {
background: rgba(32, 128, 80, .06);
border-color: rgba(32, 128, 80, .2);
border-left: 4px solid var(--emerald)
}

.callout.info {
background: rgba(16, 32, 64, .07);
border-color: rgba(16, 32, 64, .2);
border-left: 4px solid var(--navy-mid)
}

.callout.success {
background: rgba(24, 104, 64, .06);
border-color: rgba(24, 104, 64, .2);
border-left: 4px solid var(--success)
}

.callout-ico {
font-size: 24px;
flex-shrink: 0
}

.callout-txt strong {
display: block;
font-size: 14.5px;
font-weight: 700;
margin-bottom: 3px
}

.callout.pinnacle .callout-txt strong {
color: #8A5808
}

.callout.twin .callout-txt strong {
color: #3828A8
}

.callout.high-alt .callout-txt strong {
color: #186840
}

.callout.info .callout-txt strong {
color: var(--navy-mid)
}

.callout.success .callout-txt strong {
color: var(--success)
}

.callout-txt p {
font-size: 13.5px;
color: var(--rock);
margin: 0;
line-height: 1.65
}

.tag-row {
display: flex;
flex-wrap: wrap;
gap: var(--s2);
margin-top: var(--s4)
}

.feat-tag {
display: inline-flex;
align-items: center;
gap: var(--s1);
font-size: 12.5px;
font-weight: 500;
color: var(--navy);
background: rgba(16, 32, 64, .09);
border: 1px solid rgba(16, 32, 64, .2);
padding: var(--s1) var(--s3);
border-radius: var(--rpill)
}

/* ================================================================ DAY ACCORDION ================================================================ */
.day-list {
display: flex;
flex-direction: column;
gap: var(--s3)
}

.day-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rlg);
overflow: hidden;
animation: fadeUp .38s ease both
}

.day-card:nth-child(1) {
animation-delay: .03s
}

.day-card:nth-child(2) {
animation-delay: .06s
}

.day-card:nth-child(3) {
animation-delay: .09s
}

.day-card:nth-child(4) {
animation-delay: .12s
}

.day-card:nth-child(5) {
animation-delay: .15s
}

.day-card:nth-child(6) {
animation-delay: .18s
}

.day-card:nth-child(7) {
animation-delay: .21s
}

.day-card:nth-child(8) {
animation-delay: .24s
}

.day-card:nth-child(9) {
animation-delay: .27s
}

.day-card:nth-child(10) {
animation-delay: .30s
}

.day-card:nth-child(11) {
animation-delay: .33s
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(14px)
}

to {
opacity: 1;
transform: translateY(0)
}
}

.day-card.rest1 {
border-color: rgba(88, 64, 168, .38)
}

.day-card.rest2 {
border-color: rgba(32, 128, 80, .38)
}

.day-card.wall-day {
border-color: rgba(196, 128, 16, .42)
}

.day-card.summit-day {
border-color: rgba(30, 72, 168, .5)
}

.day-card.north-day {
border-color: rgba(168, 200, 232, .32)
}

.day-toggle {
width: 100%;
background: none;
border: none;
cursor: pointer;
text-align: left;
padding: 0;
display: block
}

.day-head {
display: flex;
align-items: center;
gap: var(--s4);
padding: var(--s4);
background: var(--white);
transition: background var(--t)
}

.day-toggle:hover .day-head {
background: var(--pearl)
}

.day-toggle[aria-expanded="true"] .day-head {
background: var(--pearl-lt)
}

.day-card.rest1 .day-head {
background: rgba(88, 64, 168, .05)
}

.day-card.rest2 .day-head {
background: rgba(32, 128, 80, .05)
}

.day-card.wall-day .day-head {
background: rgba(196, 128, 16, .04)
}

.day-card.summit-day .day-head {
background: linear-gradient(135deg, rgba(30, 72, 168, .07) 0%, rgba(16, 32, 64, .04) 100%)
}

.day-card.north-day .day-head {
background: rgba(168, 200, 232, .04)
}

.d-num {
width: 46px;
height: 46px;
min-width: 46px;
border-radius: 50%;
background: var(--navy);
color: var(--white);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
line-height: 1;
flex-shrink: 0
}

.day-card.rest1 .d-num {
background: var(--violet)
}

.day-card.rest2 .d-num {
background: var(--emerald)
}

.day-card.wall-day .d-num {
background: var(--amber)
}

.day-card.summit-day .d-num {
background: var(--sapphire)
}

.day-card.north-day .d-num {
background: #1E5A80
}

.d-num .dl {
font-size: 8.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
opacity: .68
}

.d-num .dn {
font-family: var(--fd);
font-size: 1.2rem;
font-weight: 700
}

.d-info {
flex: 1;
min-width: 0
}

.d-tag {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--sapphire);
margin-bottom: 2px
}

.day-card.rest1 .d-tag {
color: var(--violet)
}

.day-card.rest2 .d-tag {
color: var(--emerald)
}

.day-card.wall-day .d-tag {
color: #8A5808
}

.day-card.summit-day .d-tag {
color: var(--sapphire-lt)
}

.day-card.north-day .d-tag {
color: var(--moonsilver)
}

.d-name {
font-family: var(--fd);
font-size: clamp(.95rem, 3vw, 1.1rem);
font-weight: 700;
color: var(--navy);
line-height: 1.25
}

.d-meta {
font-size: 12px;
color: var(--mist);
margin-top: 2px;
line-height: 1.4
}

.d-chev {
width: 20px;
height: 20px;
color: var(--mist);
flex-shrink: 0;
transition: transform var(--t)
}

.day-toggle[aria-expanded="true"] .d-chev {
transform: rotate(180deg)
}

.day-body {
display: none;
flex-direction: column;
border-top: 1px solid var(--border)
}

.day-body.open {
display: flex
}

.d-desc {
padding: var(--s4) var(--s4) 0;
font-size: 13.5px;
color: var(--mist);
line-height: 1.72
}

.sched-list {
display: flex;
flex-direction: column;
padding: var(--s3) var(--s4)
}

.sched-item {
display: grid;
grid-template-columns: 68px 1fr;
gap: 0 var(--s4);
padding: var(--s3) 0;
border-bottom: 1px dashed var(--border)
}

.sched-item:last-child {
border-bottom: none;
padding-bottom: 0
}

.s-time {
font-size: 11px;
font-weight: 700;
color: var(--sapphire-lt);
text-transform: uppercase;
letter-spacing: .05em;
padding-top: 2px
}

.day-card.rest1 .s-time {
color: var(--violet-lt)
}

.day-card.rest2 .s-time {
color: var(--emerald-lt)
}

.day-card.wall-day .s-time {
color: #8A5808
}

.day-card.summit-day .s-time {
color: var(--sapphire-lt)
}

.day-card.north-day .s-time {
color: var(--moonsilver)
}

.s-title {
font-size: 14px;
font-weight: 700;
color: var(--navy);
display: block;
margin-bottom: 3px
}

.s-body {
font-size: 13px;
color: var(--mist);
margin: 0;
line-height: 1.6
}

.d-stats {
display: flex;
flex-direction: column;
gap: var(--s2);
padding: var(--s4);
border-top: 1px solid var(--border)
}

@media(min-width:400px) {
.d-stats {
flex-direction: row;
flex-wrap: wrap
}
}

.s-tag {
display: inline-flex;
align-items: center;
gap: var(--s1);
font-size: 12px;
font-weight: 600;
padding: var(--s1) var(--s3);
border-radius: var(--rpill);
border: 1px solid
}

.st-d {
background: rgba(16, 32, 64, .08);
color: var(--navy);
border-color: rgba(16, 32, 64, .2)
}

.st-h {
background: rgba(30, 72, 168, .08);
color: var(--sapphire-dk);
border-color: rgba(30, 72, 168, .28)
}

.st-c {
background: rgba(8, 16, 30, .06);
color: var(--rock);
border-color: rgba(8, 16, 30, .15)
}

.st-e {
background: rgba(16, 32, 64, .06);
color: var(--navy-mid);
border-color: rgba(16, 32, 64, .18)
}

.st-w {
background: rgba(196, 128, 16, .1);
color: #7A5808;
border-color: rgba(196, 128, 16, .28)
}

.st-n {
background: rgba(168, 200, 232, .1);
color: #1A5870;
border-color: rgba(168, 200, 232, .3)
}

.st-r1 {
background: rgba(88, 64, 168, .1);
color: #2A1888;
border-color: rgba(88, 64, 168, .28)
}

.st-r2 {
background: rgba(32, 128, 80, .1);
color: #106030;
border-color: rgba(32, 128, 80, .28)
}

/* ================================================================ PACKAGE CARDS ================================================================ */
.pkg-grid {
display: flex;
flex-direction: column;
gap: var(--s4);
margin-top: var(--s5)
}

@media(min-width:768px) {
.pkg-grid {
flex-direction: row
}
}

.pkg-card {
flex: 1;
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rlg);
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow var(--t), transform var(--t)
}

.pkg-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-3px)
}

.pkg-card.featured {
border: 2px solid var(--navy-mid)
}

.pkg-top-bar {
background: var(--sapphire);
color: var(--white);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
text-align: center;
padding: 5px
}

.pkg-head {
padding: var(--s5) var(--s5) var(--s3)
}

.pkg-tier {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--sapphire);
margin-bottom: 3px
}

.pkg-name {
font-family: var(--fd);
font-size: 1.2rem;
font-weight: 700;
color: var(--ink)
}

.pkg-price {
font-family: var(--fd);
font-size: 1.7rem;
font-weight: 700;
color: var(--navy);
line-height: 1;
margin-top: var(--s3)
}

.pkg-price small {
font-family: var(--fb);
font-size: 11.5px;
font-weight: 400;
color: var(--mist)
}

.pkg-features {
list-style: none;
padding: 0 var(--s5) var(--s4);
display: flex;
flex-direction: column;
gap: var(--s3);
flex: 1;
margin-top: var(--s3)
}

.pkg-features li {
display: flex;
align-items: flex-start;
gap: var(--s2);
font-size: 13.5px;
color: #080F1E;
line-height: 1.45
}

.pkg-features li::before {
content: '';
width: 16px;
height: 16px;
border-radius: 50%;
flex-shrink: 0;
margin-top: 2px;
background-color: rgba(16, 32, 64, .12);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23102040' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-size: 10px;
background-position: center;
background-repeat: no-repeat
}

.pkg-cta {
display: block;
margin: 0 var(--s5) var(--s5);
padding: var(--s3) var(--s4);
text-align: center;
background: var(--navy);
color: var(--white);
border-radius: var(--rsm);
font-size: 14px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t)
}

.pkg-cta:hover {
background: var(--navy-mid)
}

.pkg-card:not(.featured) .pkg-cta {
background: var(--pearl-lt);
color: var(--navy)
}

.pkg-card:not(.featured) .pkg-cta:hover {
background: var(--pearl)
}

/* ================================================================ INCLUDED / EXCLUDED ================================================================ */
.ie-wrap {
display: flex;
flex-direction: column;
gap: var(--s4)
}

@media(min-width:600px) {
.ie-wrap {
flex-direction: row
}
}

.ie-box {
flex: 1;
border: 1px solid var(--border);
border-radius: var(--rmd);
overflow: hidden
}

.ie-head {
padding: var(--s3) var(--s5);
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em
}

.ie-head.inc {
background: rgba(16, 32, 64, .1);
color: var(--navy)
}

.ie-head.exc {
background: rgba(180, 60, 40, .08);
color: #8B2F20
}

.ie-list {
list-style: none;
padding: var(--s4) var(--s5);
display: flex;
flex-direction: column;
gap: var(--s3)
}

.ie-list li {
display: flex;
align-items: flex-start;
gap: var(--s2);
font-size: 13.5px;
color: #080F1E;
line-height: 1.5
}

.ie-list li::before {
content: '';
width: 16px;
height: 16px;
border-radius: 50%;
flex-shrink: 0;
margin-top: 2px;
background-size: 10px;
background-position: center;
background-repeat: no-repeat
}

.ie-list.inc li::before {
background-color: rgba(16, 32, 64, .14);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23102040' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.ie-list.exc li::before {
background-color: rgba(180, 60, 40, .1);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M3 3l6 6M9 3l-6 6' stroke='%238B2F20' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E")
}

/* ================================================================ TABLES ================================================================ */
.tbl-wrap {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border-radius: var(--rmd);
border: 1px solid var(--border);
margin-top: var(--s4)
}

.data-tbl {
width: 100%;
min-width: 500px;
border-collapse: collapse;
font-size: 13.5px
}

.data-tbl th,
.data-tbl td {
padding: var(--s3) var(--s4);
border-bottom: 1px solid var(--border);
text-align: left
}

.data-tbl th {
background: var(--pearl-lt);
font-size: 11.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--mist);
white-space: nowrap
}

.data-tbl tr:last-child td {
border-bottom: none
}

.data-tbl td.hl {
background: rgba(16, 32, 64, .07);
font-weight: 700;
color: var(--navy)
}

.b-best {
display: inline-block;
background: rgba(24, 104, 64, .1);
color: #186840;
font-size: 11.5px;
font-weight: 700;
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(24, 104, 64, .22)
}

.b-ok {
display: inline-block;
background: rgba(196, 128, 16, .1);
color: #7A5808;
font-size: 11.5px;
font-weight: 700;
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(196, 128, 16, .22)
}

.b-poor {
display: inline-block;
background: rgba(180, 60, 40, .08);
color: #8B2F20;
font-size: 11.5px;
font-weight: 700;
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(180, 60, 40, .18)
}

/* ================================================================ FAQ ================================================================ */
.faq-list {
display: flex;
flex-direction: column
}

.faq-item {
border-bottom: 1px solid var(--border)
}

.faq-btn {
width: 100%;
background: none;
border: none;
text-align: left;
padding: var(--s4) 0;
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: var(--s4);
font-size: 15px;
font-weight: 600;
color: var(--navy);
cursor: pointer;
transition: color var(--t);
line-height: 1.45
}

.faq-btn:hover {
color: var(--navy-mid)
}

.faq-btn svg {
width: 18px;
height: 18px;
flex-shrink: 0;
color: var(--mist);
margin-top: 2px;
transition: transform var(--t)
}

.faq-btn[aria-expanded="true"] svg {
transform: rotate(45deg)
}

.faq-ans {
display: none;
padding-bottom: var(--s5);
font-size: 14px;
color: var(--mist);
line-height: 1.75
}

.faq-ans.open {
display: block
}

/* ================================================================ RELATED ================================================================ */
.related-sect {
margin-top: var(--s12)
}

.related-title {
font-family: var(--fd);
font-size: clamp(1.4rem, 4vw, 1.7rem);
font-weight: 700;
color: var(--navy);
margin-bottom: var(--s5)
}

.rel-grid {
display: flex;
flex-direction: column;
gap: var(--s4)
}

@media(min-width:600px) {
.rel-grid {
flex-direction: row
}
}

.rel-card {
flex: 1;
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rmd);
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow var(--t), transform var(--t)
}

.rel-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-2px)
}

.rel-img {
height: 130px;
overflow: hidden;
background: var(--pearl-lt)
}

.rel-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .4s ease
}

.rel-card:hover .rel-img img {
transform: scale(1.06)
}

.rel-body {
padding: var(--s4);
flex: 1;
display: flex;
flex-direction: column;
gap: var(--s2)
}

.rel-name {
font-size: 13.5px;
font-weight: 700;
color: var(--ink);
line-height: 1.4
}

.rel-meta {
font-size: 12px;
color: var(--mist);
margin-top: auto
}

.rel-link {
font-size: 12.5px;
font-weight: 700;
color: var(--navy-mid);
text-decoration: underline;
text-underline-offset: 2px;
display: inline-block;
margin-top: var(--s2)
}

/* ================================================================ SIDEBAR ================================================================ */
.bk-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
overflow: hidden;
box-shadow: var(--sh-md)
}

.bk-head {
background: var(--void);
padding: var(--s5);
color: var(--white);
position: relative;
overflow: hidden
}

.bk-head::after {
content: '';
position: absolute;
top: -24px;
right: -24px;
width: 100px;
height: 100px;
border-radius: 50%;
background: rgba(30, 72, 168, .14)
}

.bk-eyebrow {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
opacity: .58
}

.bk-price {
font-family: var(--fd);
font-size: clamp(1.7rem, 5vw, 2.1rem);
font-weight: 700;
line-height: 1.1;
margin-top: var(--s1);
position: relative;
z-index: 1
}

.bk-price sup {
font-size: 1rem;
vertical-align: super
}

.bk-note {
font-size: 12.5px;
opacity: .52;
margin-top: 3px
}

.bk-form {
padding: var(--s5);
display: flex;
flex-direction: column;
gap: var(--s4)
}

.f2col {
display: flex;
flex-direction: column;
gap: var(--s4)
}

@media(min-width:480px) {
.f2col {
flex-direction: row
}

.f2col .f-grp {
flex: 1
}
}

@media(min-width:1024px) {
.side-col .f2col {
flex-direction: column
}
}

.f-grp {
display: flex;
flex-direction: column;
gap: var(--s1)
}

.f-grp label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--mist)
}

.f-grp input,
.f-grp select,
.f-grp textarea {
width: 100%;
padding: .62rem .88rem;
border: 1px solid var(--border);
border-radius: var(--rsm);
background: var(--pearl);
color: var(--ink);
font-size: 14px;
outline: none;
transition: border-color var(--t), box-shadow var(--t);
appearance: none;
-webkit-appearance: none
}

.f-grp input:focus,
.f-grp select:focus,
.f-grp textarea:focus {
border-color: var(--navy-mid);
box-shadow: 0 0 0 3px rgba(16, 32, 64, .12)
}

.f-grp textarea {
resize: vertical;
min-height: 72px
}

.f-grp select {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%23607890' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right .75rem center;
padding-right: 2.2rem
}

.sub-btn {
width: 100%;
padding: var(--s4);
background: var(--sapphire);
color: var(--white);
border: none;
border-radius: var(--rsm);
font-size: 15px;
font-weight: 700;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: var(--s2);
transition: background var(--t), transform var(--t)
}

.sub-btn:hover {
background: var(--sapphire-lt)
}

.sub-btn:active {
transform: scale(.98)
}

.sub-btn svg {
width: 16px;
height: 16px
}

.form-note {
text-align: center;
font-size: 12px;
color: var(--mist);
padding: 0 var(--s5) var(--s4)
}

.qi-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
overflow: hidden
}

.qi-head {
padding: var(--s3) var(--s5);
background: var(--pearl-lt);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .09em;
color: var(--mist)
}

.qi-item {
display: flex;
align-items: flex-start;
gap: var(--s4);
padding: var(--s4) var(--s5);
border-bottom: 1px solid var(--border)
}

.qi-item:last-child {
border-bottom: none
}

.qi-ico {
color: var(--navy-mid);
flex-shrink: 0;
margin-top: 1px
}

.qi-ico svg {
width: 15px;
height: 15px
}

.qi-lbl {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--mist)
}

.qi-val {
font-size: 13.5px;
font-weight: 600;
color: var(--navy)
}

.ct-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
padding: var(--s5);
display: flex;
flex-direction: column;
gap: var(--s4)
}

.ct-title {
font-family: var(--fd);
font-size: 1.1rem;
font-weight: 700;
color: var(--navy)
}

.ct-link {
display: flex;
align-items: center;
gap: var(--s3);
font-size: 13.5px;
color: var(--ink);
padding: var(--s3) var(--s4);
border: 1px solid var(--border);
border-radius: var(--rsm);
background: var(--pearl);
transition: border-color var(--t), background var(--t)
}

.ct-link:hover {
border-color: var(--navy-mid);
background: var(--pearl-lt)
}

.ct-link svg {
width: 17px;
height: 17px;
color: var(--navy-mid);
flex-shrink: 0
}

/* ================================================================ MOBILE BAR ================================================================ */
.mobile-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 200;
background: var(--void);
border-top: 1px solid rgba(30, 72, 168, .26);
padding: var(--s3) var(--s4);
display: flex;
align-items: center;
gap: var(--s4)
}

@media(min-width:1024px) {
.mobile-bar {
display: none
}
}

.mb-price {
flex: 1
}

.mb-from {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--mist);
display: block;
line-height: 1
}

.mb-amount {
font-family: var(--fd);
font-size: 1.35rem;
font-weight: 700;
color: var(--white);
line-height: 1.1
}

.mb-cta {
padding: var(--s3) var(--s6);
background: var(--sapphire);
color: var(--white);
border: none;
border-radius: var(--rpill);
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: background var(--t);
white-space: nowrap
}

.mb-cta:hover {
background: var(--sapphire-lt)
}

/* ================================================================ FOOTER ================================================================ */
.site-footer {
background: var(--void);
color: rgba(255, 255, 255, .58);
padding: var(--s10) var(--s4) var(--s8);
margin-top: var(--s12)
}

.f-grid {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--s8)
}

@media(min-width:600px) {
.f-grid {
flex-direction: row;
flex-wrap: wrap;
gap: var(--s8)
}
}

@media(min-width:1024px) {
.f-grid {
flex-wrap: nowrap;
gap: var(--s10)
}
}

.f-brand {
flex: 2;
min-width: 0
}

.f-logo-row {
display: flex;
align-items: center;
gap: var(--s3);
margin-bottom: var(--s4)
}

.f-logo-row img {
height: 40px;
width: 40px;
object-fit: contain;
border-radius: var(--rsm)
}

.f-brand-name {
font-family: var(--fd);
font-size: 1.2rem;
font-weight: 700;
color: var(--white)
}

.f-brand p {
font-size: 13.5px;
line-height: 1.7;
max-width: 280px
}

.f-col {
flex: 1;
min-width: 130px
}

.f-col h4 {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--moonsilver);
margin-bottom: var(--s4)
}

.f-col ul {
display: flex;
flex-direction: column;
gap: var(--s2)
}

.f-col a {
font-size: 13.5px;
color: rgba(255, 255, 255, .55);
transition: color var(--t)
}

.f-col a:hover {
color: var(--white)
}

.f-bottom {
max-width: 1280px;
margin: var(--s8) auto 0;
padding-top: var(--s5);
border-top: 1px solid rgba(255, 255, 255, .07);
display: flex;
flex-direction: column;
gap: var(--s2);
font-size: 12px;
color: rgba(255, 255, 255, .28)
}

@media(min-width:520px) {
.f-bottom {
flex-direction: row;
justify-content: space-between;
align-items: center
}
}

.f-bottom a {
color: inherit;
transition: color var(--t)
}

.f-bottom a:hover {
color: rgba(255, 255, 255, .6)
}
