*,
*::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 {
/* ── Northern Circuit Palette: Arctic Indigo + Savanna Amber ── */
--abyss: #070D18;
--deep: #0C1A2E;
--navy: #152340;
--navy-mid: #1E3358;
--pearl: #EEF1F8;
--pearl-lt: #E2E7F2;
--white: #F5F7FC;
--indigo: #2855A0;
/* primary — arctic sky indigo      */
--indigo-lt: #3A70C8;
/* lighter indigo                   */
--indigo-pl: #E6EDFB;
/* pale indigo tint                 */
--indigo-dk: #1A3C7A;
/* deep indigo                      */
--amber: #C47A18;
/* savanna amber                    */
--amber-lt: #E09530;
/* lighter amber                    */
--amber-pl: #FEF5E6;
/* pale amber tint                  */
--arctic: #7AB8D4;
/* northern ice fields              */
--arctic-lt: #A8D4E8;
/* lighter arctic                   */
--smoke: #4A5E7A;
--mist: #6A7E9A;
--ink: #0C1A2E;
--rock: #2A3E5A;
--success: #1A6E48;
--border: rgba(21, 35, 64, .14);
--bord-md: rgba(21, 35, 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(7, 13, 24, .1);
--sh-md: 0 6px 28px rgba(7, 13, 24, .15);
--sh-lg: 0 14px 50px rgba(7, 13, 24, .2);
--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(7, 13, 24, .97);
backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(40, 85, 160, .22)
}

.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, .4);
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, .07)
}

.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, .75);
border-radius: var(--rsm);
transition: background var(--t), color var(--t)
}

.nav-links a:hover {
background: rgba(21, 35, 64, .35);
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(--indigo);
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(--indigo-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(--deep);
border-bottom: 1px solid rgba(21, 35, 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, .4)
}

.bc-list li+li::before {
content: "›";
font-size: 13px
}

.bc-list a {
color: rgba(255, 255, 255, .58);
transition: color var(--t)
}

.bc-list a:hover {
color: var(--indigo-lt)
}

.bc-list [aria-current="page"] {
color: rgba(255, 255, 255, .82);
font-weight: 500
}

/* ================================================================ HERO ================================================================ */
.hero {
position: relative;
min-height: clamp(480px, 70vw, 720px);
display: flex;
align-items: flex-end;
overflow: hidden;
background: var(--abyss)
}

.hero-bg {
position: absolute;
inset: 0;
background-image: url('https://www.resilienceexpedition.com/images/kilimanjaro-northern-circuit-9-days.webp');
background-size: cover;
background-position: center 30%;
transform: scale(1.04);
transition: transform 8s ease-out;
filter: saturate(.85) brightness(.95)
}

.hero.loaded .hero-bg {
transform: scale(1)
}

.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(168deg, rgba(7, 13, 24, .08) 0%, rgba(7, 13, 24, .42) 38%, rgba(7, 13, 24, .97) 100%)
}

.hero-ridge {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 70px;
background: linear-gradient(to top, var(--abyss) 0%, transparent 100%);
z-index: 1
}

/* Subtle star-field texture overlay for the arctic feel */
.hero-stars {
position: absolute;
inset: 0;
background-image: radial-gradient(circle, rgba(255, 255, 255, .55) 1px, transparent 1px);
background-size: 48px 48px;
opacity: .07;
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(40, 85, 160, .18);
border: 1px solid rgba(40, 85, 160, .42);
color: var(--arctic-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
}

.crown-badge {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: rgba(196, 122, 24, .22);
border: 1px solid rgba(196, 122, 24, .48);
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
}

.crown-badge svg {
width: 13px;
height: 13px;
flex-shrink: 0
}

.hero-title {
font-family: var(--fd);
font-size: clamp(1.9rem, 7vw, 3.9rem);
font-weight: 700;
color: var(--white);
line-height: 1.1;
letter-spacing: -.02em
}

.hero-title em {
font-style: italic;
color: var(--arctic-lt)
}

.hero-sub {
font-size: clamp(14px, 2.5vw, 16.5px);
color: rgba(255, 255, 255, .68);
max-width: 600px;
line-height: 1.74
}

.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(--indigo);
color: var(--white);
padding: var(--s4) var(--s6);
border-radius: var(--rmd);
min-width: 150px
}

.price-pill .from {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
opacity: .75
}

.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(--abyss);
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(--deep)
}

@media(min-width:1024px) {
.hero-scroll {
display: none
}
}

/* ================================================================ CROWN BAND ================================================================ */
.crown-band {
background: linear-gradient(135deg, rgba(40, 85, 160, .22) 0%, rgba(12, 26, 46, .94) 100%);
border-bottom: 2px solid rgba(122, 184, 212, .22);
padding: var(--s5) var(--s4)
}

.crown-inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--s4);
align-items: flex-start
}

@media(min-width:768px) {
.crown-inner {
flex-direction: row;
align-items: center;
gap: var(--s8)
}
}

.crown-icon {
width: 56px;
height: 56px;
min-width: 56px;
border-radius: 50%;
background: rgba(196, 122, 24, .18);
border: 2px solid rgba(196, 122, 24, .45);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.crown-icon svg {
width: 28px;
height: 28px;
color: var(--amber-lt)
}

.crown-text strong {
display: block;
font-family: var(--fd);
font-size: clamp(1rem, 3vw, 1.25rem);
font-weight: 700;
color: var(--white);
margin-bottom: 4px
}

.crown-text p {
font-size: 13.5px;
color: rgba(255, 255, 255, .7);
line-height: 1.65;
margin: 0
}

.crown-stats {
display: flex;
flex-direction: column;
gap: var(--s3);
flex-shrink: 0
}

@media(min-width:480px) {
.crown-stats {
flex-direction: row;
gap: var(--s5)
}
}

@media(min-width:768px) {
.crown-stats {
margin-left: auto
}
}

.cs-item {
text-align: center
}

.cs-num {
font-family: var(--fd);
font-size: 1.8rem;
font-weight: 700;
color: var(--arctic-lt);
line-height: 1
}

.cs-label {
font-size: 10.5px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: rgba(255, 255, 255, .42);
margin-top: 2px
}

/* ================================================================ SIGNATURE BAND ================================================================ */
.sig-band {
background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
border-bottom: 1px solid rgba(21, 35, 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.circuit {
background: rgba(40, 85, 160, .25);
border: 1px solid rgba(40, 85, 160, .42);
color: var(--arctic-lt)
}

.sig-ico.north {
background: rgba(122, 184, 212, .18);
border: 1px solid rgba(122, 184, 212, .35);
color: var(--arctic)
}

.sig-ico.crown {
background: rgba(196, 122, 24, .2);
border: 1px solid rgba(196, 122, 24, .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, .55);
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(--arctic-lt);
line-height: 1
}

.ss-lbl {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: rgba(255, 255, 255, .38);
margin-top: 2px
}

/* ================================================================ ELEVATION STRIP ================================================================ */
.elev-strip {
background: var(--deep);
border-bottom: 1px solid rgba(21, 35, 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: 80px;
display: block;
overflow: visible
}

.elev-fill {
fill: rgba(40, 85, 160, .12)
}

.elev-path {
fill: none;
stroke: var(--indigo-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(21, 35, 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(--indigo-lt);
flex-shrink: 0
}

.c-dot.wall-dot {
background: var(--amber);
box-shadow: 0 0 0 3px rgba(196, 122, 24, .25)
}

.c-dot.summit-dot {
width: 14px;
height: 14px;
min-width: 14px;
background: var(--arctic-lt);
box-shadow: 0 0 0 4px rgba(122, 184, 212, .3)
}

.c-name {
font-size: 10.5px;
font-weight: 600;
color: rgba(255, 255, 255, .78);
line-height: 1.3
}

.c-name.sum {
color: var(--arctic-lt)
}

.c-name.wall {
color: var(--amber-lt)
}

.c-alt {
font-size: 10px;
color: var(--mist);
margin-top: 1px
}

.c-alt.sum {
color: var(--arctic-lt);
font-weight: 700
}

.c-badge {
font-size: 8.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--amber-lt);
background: rgba(196, 122, 24, .15);
border: 1px solid rgba(196, 122, 24, .3);
border-radius: var(--rpill);
padding: 1px 5px;
margin-top: 2px;
display: inline-block
}

/* ================================================================ 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(.88);
transition: transform .55s cubic-bezier(.25, .46, .45, .94), filter var(--t)
}

.g-item:hover img {
transform: scale(1.06);
filter: saturate(1.05)
}

.g-overlay {
position: absolute;
inset: 0;
background: rgba(7, 13, 24, .3);
transition: background var(--t)
}

.g-item:hover .g-overlay {
background: rgba(7, 13, 24, .08)
}

.g-more {
position: absolute;
inset: 0;
background: rgba(7, 13, 24, .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(7, 13, 24, .38)
}

.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(--indigo-dk);
background: rgba(40, 85, 160, .09);
padding: var(--s1) var(--s3);
border-radius: var(--rpill);
border: 1px solid rgba(40, 85, 160, .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: #0C1A2E;
font-size: 15px;
line-height: 1.82;
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.crown {
background: rgba(196, 122, 24, .06);
border-color: rgba(196, 122, 24, .2);
border-left: 4px solid var(--amber)
}

.callout.arctic {
background: rgba(122, 184, 212, .07);
border-color: rgba(122, 184, 212, .22);
border-left: 4px solid var(--arctic)
}

.callout.info {
background: rgba(21, 35, 64, .07);
border-color: rgba(21, 35, 64, .2);
border-left: 4px solid var(--navy-mid)
}

.callout.success {
background: rgba(26, 110, 72, .06);
border-color: rgba(26, 110, 72, .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.crown .callout-txt strong {
color: #8A5808
}

.callout.arctic .callout-txt strong {
color: #2A6A8A
}

.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(21, 35, 64, .09);
border: 1px solid rgba(21, 35, 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: .04s
}

.day-card:nth-child(2) {
animation-delay: .07s
}

.day-card:nth-child(3) {
animation-delay: .10s
}

.day-card:nth-child(4) {
animation-delay: .13s
}

.day-card:nth-child(5) {
animation-delay: .16s
}

.day-card:nth-child(6) {
animation-delay: .19s
}

.day-card:nth-child(7) {
animation-delay: .22s
}

.day-card:nth-child(8) {
animation-delay: .25s
}

.day-card:nth-child(9) {
animation-delay: .28s
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(14px)
}

to {
opacity: 1;
transform: translateY(0)
}
}

.day-card.wall-day {
border-color: rgba(196, 122, 24, .42)
}

.day-card.summit-day {
border-color: rgba(40, 85, 160, .5)
}

.day-card.north-day {
border-color: rgba(122, 184, 212, .35)
}

.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.wall-day .day-head {
background: rgba(196, 122, 24, .04)
}

.day-card.summit-day .day-head {
background: linear-gradient(135deg, rgba(40, 85, 160, .07) 0%, rgba(21, 35, 64, .04) 100%)
}

.day-card.north-day .day-head {
background: rgba(122, 184, 212, .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.wall-day .d-num {
background: var(--amber)
}

.day-card.summit-day .d-num {
background: var(--indigo)
}

.day-card.north-day .d-num {
background: #2A6A8A
}

.d-num .dl {
font-size: 8.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
opacity: .7
}

.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(--indigo);
margin-bottom: 2px
}

.day-card.wall-day .d-tag {
color: #8A5808
}

.day-card.summit-day .d-tag {
color: var(--indigo-lt)
}

.day-card.north-day .d-tag {
color: var(--arctic)
}

.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(--indigo-lt);
text-transform: uppercase;
letter-spacing: .05em;
padding-top: 2px
}

.day-card.wall-day .s-time {
color: #8A5808
}

.day-card.summit-day .s-time {
color: var(--indigo-lt)
}

.day-card.north-day .s-time {
color: var(--arctic)
}

.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(21, 35, 64, .08);
color: var(--navy);
border-color: rgba(21, 35, 64, .2)
}

.st-h {
background: rgba(40, 85, 160, .08);
color: var(--indigo-dk);
border-color: rgba(40, 85, 160, .28)
}

.st-c {
background: rgba(12, 26, 46, .06);
color: var(--rock);
border-color: rgba(12, 26, 46, .15)
}

.st-e {
background: rgba(21, 35, 64, .06);
color: var(--navy-mid);
border-color: rgba(21, 35, 64, .18)
}

.st-w {
background: rgba(196, 122, 24, .1);
color: #7A5208;
border-color: rgba(196, 122, 24, .28)
}

.st-n {
background: rgba(122, 184, 212, .1);
color: #1A5A7A;
border-color: rgba(122, 184, 212, .3)
}

/* ================================================================ 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(--indigo);
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(--indigo);
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: #0C1A2E;
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(21, 35, 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='%23152340' 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(21, 35, 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: #0C1A2E;
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(21, 35, 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='%23152340' 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(21, 35, 64, .07);
font-weight: 700;
color: var(--navy)
}

.b-best {
display: inline-block;
background: rgba(26, 110, 72, .1);
color: #1A6E48;
font-size: 11.5px;
font-weight: 700;
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(26, 110, 72, .22)
}

.b-ok {
display: inline-block;
background: rgba(196, 122, 24, .1);
color: #7A5208;
font-size: 11.5px;
font-weight: 700;
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(196, 122, 24, .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(--abyss);
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(40, 85, 160, .14)
}

.bk-eyebrow {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
opacity: .6
}

.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: .55;
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(21, 35, 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='%236A7E9A' 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(--indigo);
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(--indigo-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(--abyss);
border-top: 1px solid rgba(40, 85, 160, .28);
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(--indigo);
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(--indigo-lt)
}

/* ================================================================ FOOTER ================================================================ */
.site-footer {
background: var(--abyss);
color: rgba(255, 255, 255, .62);
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(--arctic-lt);
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, .58);
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, .08);
display: flex;
flex-direction: column;
gap: var(--s2);
font-size: 12px;
color: rgba(255, 255, 255, .32)
}

@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)
}
