*,
*::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(--sand);
color: var(--ink);
line-height: 1.72;
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
}

a:focus,
button:focus {
outline: 3px solid var(--lake);
outline-offset: 3px
}

:root {
--lake-dk: #061420;
--lake-md: #0C2840;
--lake: #1060A8;
--lake-lt: #1A80D0;
--wave: #2AA0E8;
--wave-lt: #5EC0F8;
--gold: #C88010;
--gold-lt: #E0A030;
--gold-pale: #FBF4E0;
--rock: #7A5A3A;
--rock-lt: #A07850;
--sunset: #D06020;
--sunset-lt: #E88040;
--sand: #F5F0E8;
--sand-dk: #EBE4D8;
--sand-md: #E0D8C8;
--ivory: #FDFBF7;
--dusk: #060E1A;
--clay: #4A5060;
--mist: #7A8090;
--border-t: rgba(16, 96, 168, .14);
--border-tmd: rgba(16, 96, 168, .28);
--night: #040C18;
--ink: #06101E;
--border: rgba(16, 96, 168, .12);
--success: #1A6840;
--critical: #7A2020;
--cat-lake: #1060A8;
--cat-rock: #7A5A3A;
--cat-cult: #6A3A10;
--cat-safari: #2A6A3A;
--cat-food: #9A4A10;
--cat-island: #0A6A7A;
--cat-boat: #1A4A8A;
--cat-city: #4A3A7A;
--fd: 'Cormorant Garamond', Georgia, serif;
--fb: 'DM Sans', 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(6, 16, 30, .08);
--sh-md: 0 6px 32px rgba(6, 16, 30, .14);
--sh-lg: 0 18px 60px rgba(6, 16, 30, .22);
--t: .22s cubic-bezier(.4, 0, .2, 1);
}

.skip-link {
position: absolute;
top: -100%;
left: var(--s4);
background: var(--lake-dk);
color: var(--ivory);
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)
}

/* ── HEADER ── */
.site-header {
position: sticky;
top: 0;
z-index: 300;
background: rgba(6, 20, 32, .97);
backdrop-filter: blur(18px);
border-bottom: 1px solid rgba(16, 96, 168, .32)
}

.nav-wrap {
max-width: 1300px;
margin: 0 auto;
padding: 0 var(--s5)
}

.nav-topbar {
display: flex;
align-items: center;
justify-content: space-between;
height: 66px
}

.logo-link {
display: flex;
align-items: center;
gap: var(--s3);
flex-shrink: 0
}

.logo-img-wrap {
width: 42px;
height: 42px;
border-radius: var(--rsm);
overflow: hidden;
flex-shrink: 0;
background: rgba(255, 255, 255, .08)
}

.logo-img-wrap img {
width: 100%;
height: 100%;
object-fit: contain
}

.logo-words {
display: flex;
flex-direction: column;
line-height: 1.15
}

.logo-name {
font-family: var(--fd);
font-size: clamp(.95rem, 2.5vw, 1.1rem);
font-weight: 700;
color: var(--ivory);
letter-spacing: .01em
}

.logo-sub {
font-size: 9px;
font-weight: 500;
color: rgba(255, 255, 255, .35);
letter-spacing: .14em;
text-transform: uppercase
}

.hamburger {
display: flex;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: var(--s2);
border-radius: var(--rsm)
}

.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
}

.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, .72);
border-radius: var(--rsm);
transition: background var(--t), color var(--t)
}

.nav-links a:hover {
background: rgba(16, 96, 168, .25);
color: var(--ivory)
}

.nav-links a[aria-current="page"] {
background: var(--lake-md);
color: var(--ivory)
}

.nav-cta {
display: flex;
align-items: center;
justify-content: center;
padding: var(--s3) var(--s6);
background: var(--lake);
color: var(--ivory);
border-radius: var(--rpill);
font-weight: 600;
font-size: 14px;
margin-top: var(--s2);
transition: background var(--t);
border: none;
cursor: pointer
}

.nav-cta:hover {
background: var(--lake-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)
}
}

/* ── BREADCRUMB ── */
.bc-bar {
background: var(--lake-dk);
border-bottom: 1px solid rgba(16, 96, 168, .2);
overflow-x: auto;
white-space: nowrap;
scrollbar-width: none
}

.bc-bar::-webkit-scrollbar {
display: none
}

.bc-inner {
max-width: 1300px;
margin: 0 auto;
padding: var(--s2) var(--s5)
}

.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(--gold-lt)
}

.bc-list [aria-current="page"] {
color: rgba(255, 255, 255, .85);
font-weight: 500
}

/* ── HERO ── */
.mwanza-hero {
position: relative;
min-height: clamp(560px, 70vw, 820px);
display: flex;
align-items: flex-end;
overflow: hidden;
background: var(--lake-dk)
}

.hero-img {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 40%;
transform: scale(1.05);
transition: transform 12s ease-out;
filter: saturate(1.25) brightness(.58)
}

.mwanza-hero.loaded .hero-img {
transform: scale(1)
}

.hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(170deg, rgba(6, 20, 32, .0) 0%, rgba(12, 40, 64, .18) 25%, rgba(6, 20, 32, .58) 58%, rgba(6, 20, 32, .98) 100%)
}

.hero-shimmer {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 30% 60%, rgba(16, 96, 168, .12) 0%, transparent 65%);
pointer-events: none
}

.hero-ridge {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 100px;
background: linear-gradient(to top, var(--sand) 0%, transparent 100%);
z-index: 1
}

/* Stat strip */
.hero-strip {
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 3;
display: flex;
overflow-x: auto;
scrollbar-width: none
}

.hero-strip::-webkit-scrollbar {
display: none
}

.hs-item {
flex: 1;
min-width: 88px;
padding: var(--s2) var(--s3);
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
border-bottom: 3px solid rgba(16, 96, 168, .5);
background: rgba(6, 20, 32, .55);
backdrop-filter: blur(10px)
}

.hs-val {
font-size: 12px;
font-weight: 700;
color: var(--gold-lt);
white-space: nowrap
}

.hs-lbl {
font-size: 9px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: rgba(255, 255, 255, .38);
white-space: nowrap
}

/* Hero content */
.hero-content {
position: relative;
z-index: 2;
width: 100%;
max-width: 1300px;
margin: 0 auto;
padding: var(--s16) var(--s5) var(--s16);
display: flex;
flex-direction: column;
gap: var(--s4)
}

@media(min-width:768px) {
.hero-content {
padding: var(--s16) var(--s8) var(--s16)
}
}

.hero-eyebrow {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: rgba(16, 96, 168, .2);
border: 1px solid rgba(42, 160, 232, .4);
color: var(--gold-lt);
font-size: 10px;
font-weight: 700;
letter-spacing: .18em;
text-transform: uppercase;
padding: var(--s1) var(--s4);
border-radius: var(--rpill);
width: fit-content
}

.hero-title {
font-family: var(--fd);
font-size: clamp(2.6rem, 8vw, 5.5rem);
font-weight: 700;
color: var(--ivory);
line-height: 1.02;
letter-spacing: -.02em;
max-width: 900px
}

.hero-title em {
font-style: italic;
color: var(--wave-lt)
}

.hero-desc {
font-size: clamp(14px, 2.3vw, 17px);
color: rgba(255, 255, 255, .68);
max-width: 620px;
line-height: 1.78
}

.hero-pills {
display: flex;
flex-wrap: wrap;
gap: var(--s2);
margin-top: var(--s1)
}

.hero-pill {
display: inline-flex;
align-items: center;
gap: var(--s1);
background: rgba(255, 255, 255, .09);
border: 1px solid rgba(255, 255, 255, .18);
color: rgba(255, 255, 255, .8);
font-size: 12px;
font-weight: 500;
padding: var(--s1) var(--s4);
border-radius: var(--rpill);
backdrop-filter: blur(4px)
}

.hero-pill strong {
color: var(--gold-lt);
font-weight: 700
}

.hero-ctas {
display: flex;
flex-direction: column;
gap: var(--s3);
margin-top: var(--s2)
}

@media(min-width:480px) {
.hero-ctas {
flex-direction: row;
flex-wrap: wrap;
align-items: center
}
}

.btn-primary {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: var(--lake);
color: var(--ivory);
padding: var(--s4) var(--s8);
border-radius: var(--rpill);
font-size: 15px;
font-weight: 600;
transition: background var(--t), transform var(--t);
border: none;
cursor: pointer;
white-space: nowrap
}

.btn-primary:hover {
background: var(--lake-lt);
transform: translateY(-2px)
}

.btn-outline {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: rgba(255, 255, 255, .1);
border: 1px solid rgba(255, 255, 255, .28);
color: rgba(255, 255, 255, .88);
padding: var(--s4) var(--s6);
border-radius: var(--rpill);
font-size: 14px;
font-weight: 500;
transition: background var(--t);
white-space: nowrap
}

.btn-outline:hover {
background: rgba(255, 255, 255, .18)
}

/* ── STATS BAND ── */
.stats-band {
background: var(--lake-dk);
border-bottom: 1px solid rgba(16, 96, 168, .22);
padding: var(--s5) var(--s5)
}

.stats-inner {
max-width: 1300px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--s3)
}

@media(min-width:600px) {
.stats-inner {
grid-template-columns: repeat(4, 1fr)
}
}

.stat-item {
display: flex;
align-items: center;
gap: var(--s3);
padding: var(--s3) var(--s4);
background: rgba(16, 96, 168, .1);
border: 1px solid rgba(16, 96, 168, .2);
border-radius: var(--rmd)
}

.stat-icon-img {
width: 36px;
height: 36px;
border-radius: var(--rsm);
object-fit: cover;
flex-shrink: 0
}

.st-body {
display: flex;
flex-direction: column;
gap: 1px
}

.st-num {
font-family: var(--fd);
font-size: 1.25rem;
font-weight: 700;
color: var(--gold-lt);
line-height: 1
}

.st-lbl {
font-size: 10px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: rgba(255, 255, 255, .4)
}

/* ── PAGE WRAP ── */
.page-wrap {
max-width: 1300px;
margin: 0 auto;
padding: var(--s10) var(--s5)
}

@media(min-width:768px) {
.page-wrap {
padding: var(--s12) var(--s8)
}
}

.sec-label {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .15em;
color: var(--lake-lt);
margin-bottom: var(--s2);
display: block
}

.sec-title {
font-family: var(--fd);
font-size: clamp(1.7rem, 4vw, 2.6rem);
font-weight: 700;
color: var(--dusk);
line-height: 1.18;
margin-bottom: var(--s3)
}

.sec-title .accent {
color: var(--lake)
}

.sec-title em {
font-style: italic
}

.sec-sub {
font-size: 15.5px;
color: var(--clay);
line-height: 1.75;
max-width: 740px
}

/* ── FILTER ── */
.filter-wrap {
margin-bottom: var(--s5);
overflow-x: auto;
scrollbar-width: none
}

.filter-wrap::-webkit-scrollbar {
display: none
}

.filter-tabs {
display: inline-flex;
gap: var(--s2);
padding: 4px;
background: var(--ivory);
border: 1px solid var(--border-t);
border-radius: var(--rpill);
min-width: max-content
}

.ftab {
display: flex;
align-items: center;
gap: var(--s1);
padding: var(--s2) var(--s4);
border-radius: var(--rpill);
font-size: 13px;
font-weight: 600;
color: var(--clay);
cursor: pointer;
background: none;
border: none;
transition: all var(--t);
white-space: nowrap
}

.ftab:hover {
background: var(--gold-pale);
color: var(--lake)
}

.ftab.active {
background: var(--lake-md);
color: var(--ivory)
}

.ftab .ft-dot {
width: 7px;
height: 7px;
border-radius: 50%;
flex-shrink: 0
}

.ftab .ft-count {
font-size: 10px;
font-weight: 700;
padding: 1px 6px;
border-radius: var(--rpill);
margin-left: 2px
}

.ftab.active .ft-count {
background: rgba(255, 255, 255, .2)
}

.ftab:not(.active) .ft-count {
background: rgba(16, 96, 168, .1);
color: var(--lake)
}

/* ── LIST CONTROLS ── */
.list-controls {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: var(--s3);
margin-bottom: var(--s5);
padding: var(--s3) var(--s4);
background: var(--ivory);
border: 1px solid var(--border-t);
border-radius: var(--rmd)
}

.lc-left {
font-size: 13.5px;
color: var(--clay)
}

.lc-left strong {
color: var(--dusk);
font-weight: 700
}

.lc-right {
display: flex;
align-items: center;
gap: var(--s3)
}

.sort-select {
font-size: 13px;
font-weight: 500;
color: var(--dusk);
background: var(--sand);
border: 1px solid var(--border-t);
border-radius: var(--rsm);
padding: var(--s1) 2.2rem var(--s1) var(--s3);
cursor: pointer;
appearance: none;
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='%234A5060' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right .6rem center
}

.view-btns {
display: flex;
gap: 4px
}

.view-btn {
width: 30px;
height: 30px;
border: 1px solid var(--border-t);
border-radius: var(--rsm);
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
background: var(--sand);
color: var(--clay);
transition: all var(--t)
}

.view-btn.active,
.view-btn:hover {
background: var(--lake-md);
color: var(--ivory);
border-color: var(--lake-md)
}

.view-btn svg {
width: 14px;
height: 14px
}

/* ── ACTIVITY CARDS ── */
#mwanza-grid {
display: grid;
gap: var(--s5)
}

#mwanza-grid.view-grid {
grid-template-columns: 1fr
}

@media(min-width:580px) {
#mwanza-grid.view-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:1024px) {
#mwanza-grid.view-grid {
grid-template-columns: repeat(3, 1fr)
}
}

#mwanza-grid.view-list {
grid-template-columns: 1fr
}

.ac[data-hidden="true"] {
display: none
}

.ac {
background: var(--ivory);
border: 1px solid var(--border-t);
border-radius: var(--rxl);
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow var(--t), transform var(--t);
position: relative;
animation: acFade .45s ease both
}

.ac:hover {
box-shadow: var(--sh-lg);
transform: translateY(-5px)
}

.ac.featured {
border: 2px solid var(--lake)
}

@keyframes acFade {
from {
opacity: 0;
transform: translateY(22px)
}

to {
opacity: 1;
transform: translateY(0)
}
}

/* Accent bar */
.ac-bar {
height: 5px;
width: 100%
}

.ac.lake>.ac-bar {
background: linear-gradient(90deg, var(--cat-lake), var(--wave))
}

.ac.rock>.ac-bar {
background: linear-gradient(90deg, var(--cat-rock), var(--rock-lt))
}

.ac.culture>.ac-bar {
background: linear-gradient(90deg, var(--cat-cult), #C07030)
}

.ac.safari>.ac-bar {
background: linear-gradient(90deg, var(--cat-safari), #5AB060)
}

.ac.food>.ac-bar {
background: linear-gradient(90deg, var(--cat-food), var(--sunset-lt))
}

.ac.island>.ac-bar {
background: linear-gradient(90deg, var(--cat-island), #20A0B8)
}

.ac.boat>.ac-bar {
background: linear-gradient(90deg, var(--cat-boat), var(--lake-lt))
}

.ac.city>.ac-bar {
background: linear-gradient(90deg, var(--cat-city), #7A6AB0)
}

/* Badges */
.ac-badges {
position: absolute;
top: calc(var(--s3) + 5px);
left: var(--s3);
display: flex;
gap: var(--s1);
z-index: 2;
flex-wrap: wrap
}

.ac-badge {
font-size: 9.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
padding: 3px 9px;
border-radius: var(--rpill);
color: var(--ivory)
}

.tb-top {
background: var(--lake)
}

.tb-new {
background: var(--gold)
}

.tb-free {
background: var(--success)
}

.tb-family {
background: #2A6090
}

.tb-gem {
background: var(--cat-island)
}

.tb-cult {
background: var(--cat-cult)
}

.tb-budget {
background: #2A6A2A
}

.tb-adv {
background: var(--sunset)
}

/* Card image */
.ac-img {
height: 230px;
overflow: hidden;
position: relative;
flex-shrink: 0
}

.ac-img img {
width: 100%;
height: 100%;
object-fit: cover;
filter: saturate(1.1);
transition: transform .65s ease
}

.ac:hover .ac-img img {
transform: scale(1.08)
}

.ac-img-ov {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(6, 16, 26, .62) 0%, transparent 52%)
}

.ac-wchips {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: var(--s2) var(--s4);
display: flex;
flex-wrap: wrap;
gap: 4px
}

.ac-wchip {
font-size: 10px;
font-weight: 700;
color: rgba(255, 255, 255, .94);
background: rgba(6, 16, 26, .58);
backdrop-filter: blur(5px);
padding: 2px 8px;
border-radius: var(--rpill);
border: 1px solid rgba(255, 255, 255, .18);
white-space: nowrap
}

/* Card body */
.ac-body {
padding: var(--s4) var(--s5);
display: flex;
flex-direction: column;
gap: var(--s3);
flex: 1
}

.ac-cat-tag {
display: inline-flex;
align-items: center;
gap: var(--s1);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--clay)
}

.ac-cat-dot {
width: 7px;
height: 7px;
border-radius: 50%;
flex-shrink: 0
}

.ac.lake .ac-cat-dot {
background: var(--cat-lake)
}

.ac.rock .ac-cat-dot {
background: var(--cat-rock)
}

.ac.culture .ac-cat-dot {
background: var(--cat-cult)
}

.ac.safari .ac-cat-dot {
background: var(--cat-safari)
}

.ac.food .ac-cat-dot {
background: var(--cat-food)
}

.ac.island .ac-cat-dot {
background: var(--cat-island)
}

.ac.boat .ac-cat-dot {
background: var(--cat-boat)
}

.ac.city .ac-cat-dot {
background: var(--cat-city)
}

.ac-name {
font-family: var(--fd);
font-size: clamp(1.15rem, 2.8vw, 1.38rem);
font-weight: 700;
color: var(--dusk);
line-height: 1.22
}

.ac-desc {
font-size: 13px;
color: var(--clay);
line-height: 1.7
}

.ac-specs {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: var(--s2)
}

.ac-spec {
display: flex;
flex-direction: column;
gap: 2px;
padding: var(--s2);
background: var(--sand);
border-radius: var(--rsm);
border: 1px solid var(--border-t);
text-align: center
}

.ac-spec-lbl {
font-size: 9.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
color: var(--clay)
}

.ac-spec-val {
font-size: 13px;
font-weight: 700;
color: var(--dusk)
}

.ac-tags {
display: flex;
flex-wrap: wrap;
gap: var(--s1)
}

.ac-tag {
font-size: 11.5px;
font-weight: 500;
color: var(--lake-md);
background: rgba(16, 96, 168, .08);
border: 1px solid rgba(16, 96, 168, .16);
padding: 2px 9px;
border-radius: var(--rpill)
}

.ac-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--s3);
padding-top: var(--s3);
border-top: 1px solid var(--border-t);
flex-wrap: wrap
}

.ac-price-block {
display: flex;
flex-direction: column;
gap: 1px
}

.ac-from {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--clay)
}

.ac-price {
font-family: var(--fd);
font-size: 1.5rem;
font-weight: 700;
color: var(--lake);
line-height: 1
}

.ac-per {
font-size: 11px;
color: var(--clay)
}

.ac-cta {
display: inline-flex;
align-items: center;
gap: var(--s2);
padding: var(--s3) var(--s5);
background: var(--lake-md);
color: var(--ivory);
border-radius: var(--rpill);
font-size: 13.5px;
font-weight: 600;
transition: background var(--t);
white-space: nowrap;
border: none;
cursor: pointer
}

.ac-cta:hover {
background: var(--lake-lt)
}

.ac-cta svg {
width: 13px;
height: 13px
}

/* LIST VIEW */
#mwanza-grid.view-list .ac {
flex-direction: row;
align-items: stretch
}

#mwanza-grid.view-list .ac-bar {
width: 5px;
height: auto;
flex-shrink: 0
}

#mwanza-grid.view-list .ac-badges {
top: var(--s3);
left: calc(5px + var(--s3))
}

#mwanza-grid.view-list .ac-img {
width: 240px;
min-width: 240px;
height: auto;
flex-shrink: 0
}

@media(max-width:579px) {
#mwanza-grid.view-list .ac {
flex-direction: column
}

#mwanza-grid.view-list .ac-bar {
width: 100%;
height: 5px
}

#mwanza-grid.view-list .ac-img {
width: 100%;
min-width: 0;
height: 220px
}
}

/* ── MODAL ── */
.modal-backdrop {
position: fixed;
inset: 0;
background: rgba(6, 16, 26, .8);
backdrop-filter: blur(8px);
z-index: 10000;
display: flex;
align-items: center;
justify-content: center;
padding: var(--s4);
opacity: 0;
pointer-events: none;
transition: opacity .28s ease
}

.modal-backdrop.open {
opacity: 1;
pointer-events: auto
}

.modal-box {
background: var(--ivory);
border-radius: var(--rxl);
width: 100%;
max-width: 700px;
max-height: 92vh;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
position: relative;
transform: translateY(28px) scale(.96);
transition: transform .34s cubic-bezier(.34, 1.44, .64, 1);
box-shadow: 0 28px 90px rgba(6, 16, 26, .45)
}

.modal-backdrop.open .modal-box {
transform: translateY(0) scale(1)
}

/* Modal hero image */
.modal-img-wrap {
height: 180px;
overflow: hidden;
position: relative;
flex-shrink: 0
}

.modal-img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
filter: saturate(1.1) brightness(.7)
}

.modal-img-wrap::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(6, 20, 32, .9) 0%, rgba(6, 20, 32, .3) 60%, transparent 100%)
}

.modal-head {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: var(--s5) var(--s6);
z-index: 1
}

.modal-close {
position: absolute;
top: var(--s4);
right: var(--s4);
width: 34px;
height: 34px;
border-radius: 50%;
background: rgba(255, 255, 255, .15);
border: none;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
color: rgba(255, 255, 255, .85);
transition: background var(--t);
z-index: 2
}

.modal-close:hover {
background: rgba(255, 255, 255, .3)
}

.modal-close svg {
width: 16px;
height: 16px
}

.modal-pkg-tag {
font-size: 9.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .14em;
color: rgba(255, 255, 255, .5);
display: block;
margin-bottom: var(--s1)
}

.modal-pkg-name {
font-family: var(--fd);
font-size: clamp(1.35rem, 3.5vw, 1.8rem);
font-weight: 700;
color: var(--ivory);
line-height: 1.18;
max-width: 500px
}

.modal-pkg-price {
display: flex;
align-items: baseline;
gap: var(--s2);
margin-top: var(--s2)
}

.modal-price-from {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: rgba(255, 255, 255, .5)
}

.modal-price-amt {
font-family: var(--fd);
font-size: 1.6rem;
font-weight: 700;
color: var(--gold-lt);
line-height: 1
}

.modal-price-per {
font-size: 11.5px;
color: rgba(255, 255, 255, .45)
}

.modal-trust {
display: flex;
flex-wrap: wrap;
gap: var(--s3);
padding: var(--s4) var(--s6);
background: var(--sand-dk);
border-bottom: 1px solid var(--border-t)
}

.modal-trust-item {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: var(--clay)
}

.trust-icon {
width: 18px;
height: 18px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0
}

.modal-form {
padding: var(--s5) var(--s6)
}

@media(max-width:479px) {
.modal-form {
padding: var(--s4)
}

.modal-img-wrap {
height: 150px
}

.modal-head {
padding: var(--s4)
}
}

.mf-gap {
display: flex;
flex-direction: column;
gap: var(--s4)
}

.mf-2col {
display: flex;
flex-direction: column;
gap: var(--s4)
}

@media(min-width:480px) {
.mf-2col {
flex-direction: row
}

.mf-2col .mf-grp {
flex: 1
}
}

.mf-grp {
display: flex;
flex-direction: column;
gap: var(--s1)
}

.mf-grp label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--clay)
}

.mf-grp label .req {
color: var(--critical)
}

.mf-grp input,
.mf-grp select,
.mf-grp textarea {
width: 100%;
padding: .65rem .9rem;
border: 1.5px solid var(--border-t);
border-radius: var(--rsm);
background: var(--sand);
color: var(--dusk);
font-size: 14px;
outline: none;
transition: border-color var(--t), box-shadow var(--t);
appearance: none
}

.mf-grp input:focus,
.mf-grp select:focus,
.mf-grp textarea:focus {
border-color: var(--lake);
box-shadow: 0 0 0 3px rgba(16, 96, 168, .13)
}

.mf-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='%234A5060' 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
}

.mf-grp textarea {
resize: vertical;
min-height: 80px
}

.modal-submit {
display: flex;
align-items: center;
justify-content: center;
gap: var(--s2);
width: 100%;
padding: var(--s4);
background: var(--lake);
color: var(--ivory);
border: none;
border-radius: var(--rsm);
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: background var(--t), transform var(--t)
}

.modal-submit:hover {
background: var(--lake-lt)
}

.modal-submit:active {
transform: scale(.98)
}

.modal-note {
text-align: center;
font-size: 12px;
color: var(--clay);
margin-top: var(--s3);
display: flex;
align-items: center;
justify-content: center;
gap: 6px
}

.note-icon {
width: 16px;
height: 16px;
border-radius: 50%;
object-fit: cover
}

.modal-success {
display: none;
flex-direction: column;
align-items: center;
text-align: center;
gap: var(--s4);
padding: var(--s10) var(--s6)
}

.modal-success.show {
display: flex
}

.success-img {
width: 72px;
height: 72px;
border-radius: 50%;
object-fit: cover;
border: 3px solid rgba(16, 96, 168, .2)
}

.modal-success-title {
font-family: var(--fd);
font-size: 1.55rem;
font-weight: 700;
color: var(--dusk)
}

.modal-success-sub {
font-size: 14px;
color: var(--clay);
line-height: 1.7;
max-width: 420px
}

.modal-success-close {
padding: var(--s3) var(--s6);
background: var(--lake-md);
color: var(--ivory);
border-radius: var(--rpill);
font-size: 14px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t)
}

.modal-success-close:hover {
background: var(--lake)
}

/* ── FACTS BAND ── */
.facts-band {
background: linear-gradient(135deg, var(--lake-dk) 0%, var(--lake-md) 100%);
border-radius: var(--rxl);
padding: var(--s10) var(--s8);
margin: var(--s12) 0 var(--s10);
overflow: hidden;
position: relative
}

.facts-band::before {
content: '';
position: absolute;
top: -80px;
right: -80px;
width: 300px;
height: 300px;
border-radius: 50%;
background: rgba(42, 160, 232, .06);
pointer-events: none
}

@media(min-width:768px) {
.facts-band {
padding: var(--s12) var(--s10)
}
}

.fb-head {
text-align: center;
margin-bottom: var(--s8)
}

.fb-title {
font-family: var(--fd);
font-size: clamp(1.7rem, 4vw, 2.5rem);
font-weight: 700;
color: var(--ivory);
line-height: 1.18;
margin-bottom: var(--s3)
}

.fb-title em {
font-style: italic;
color: var(--gold-lt)
}

.fb-sub {
font-size: 15px;
color: rgba(255, 255, 255, .5);
max-width: 580px;
margin: 0 auto;
line-height: 1.7
}

.facts-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--s4)
}

@media(min-width:600px) {
.facts-grid {
grid-template-columns: repeat(3, 1fr)
}
}

@media(min-width:1000px) {
.facts-grid {
grid-template-columns: repeat(6, 1fr)
}
}

.fact-card {
background: rgba(255, 255, 255, .07);
border: 1px solid rgba(255, 255, 255, .11);
border-radius: var(--rlg);
padding: var(--s5) var(--s4);
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: var(--s3);
transition: background var(--t), transform var(--t)
}

.fact-card:hover {
background: rgba(255, 255, 255, .13);
transform: translateY(-2px)
}

.fact-img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0
}

.fact-val {
font-family: var(--fd);
font-size: 1.38rem;
font-weight: 700;
color: var(--gold-lt);
line-height: 1
}

.fact-lbl {
font-size: 11.5px;
font-weight: 600;
color: rgba(255, 255, 255, .48);
line-height: 1.38;
text-align: center
}

/* ── MONTHLY GUIDE ── */
.monthly-section {
margin: var(--s10) 0
}

.year-tabs-wrap {
display: flex;
gap: var(--s2);
margin-bottom: var(--s5);
flex-wrap: wrap
}

.year-tab {
padding: 10px 28px;
border-radius: 4px;
font-size: .9rem;
font-weight: 600;
cursor: pointer;
border: 1.5px solid var(--border-t);
background: transparent;
color: var(--clay);
transition: all var(--t)
}

.year-tab.active {
background: var(--lake);
color: var(--ivory);
border-color: var(--lake)
}

.year-content {
display: none
}

.year-content.active {
display: block
}

.months-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
gap: var(--s4)
}

.month-card {
background: var(--ivory);
border: 1px solid var(--border-t);
border-radius: var(--rlg);
padding: var(--s5);
position: relative;
overflow: hidden;
transition: box-shadow var(--t)
}

.month-card:hover {
box-shadow: var(--sh-md)
}

.month-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px
}

.m-jan::before,
.m-feb::before {
background: var(--wave)
}

.m-mar::before,
.m-apr::before,
.m-may::before {
background: #9B59B6
}

.m-jun::before,
.m-jul::before,
.m-aug::before,
.m-sep::before,
.m-oct::before {
background: var(--lake)
}

.m-nov::before {
background: var(--success)
}

.m-dec::before {
background: var(--sunset)
}

.month-hdr {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: var(--s2);
margin-bottom: .5rem
}

.month-name {
font-family: var(--fd);
font-size: 1.08rem;
font-weight: 700;
color: var(--dusk)
}

.month-img {
width: 44px;
height: 44px;
border-radius: var(--rmd);
object-fit: cover;
flex-shrink: 0
}

.season-badge {
display: inline-block;
padding: 2px 10px;
border-radius: var(--rpill);
font-size: .67rem;
font-weight: 600;
letter-spacing: .06em;
text-transform: uppercase;
margin-bottom: .75rem
}

.s-dry {
background: #E0EEF8;
color: #1060A8
}

.s-green {
background: #E4F2EA;
color: #1A6840
}

.s-long {
background: #EDE4F4;
color: #6A3A9A
}

.s-short {
background: #FDF0DC;
color: #8C6000
}

.s-peak {
background: #D8ECFF;
color: #0C2840;
font-weight: 700
}

.month-highlight {
font-size: .87rem;
color: var(--dusk);
margin-bottom: .5rem;
font-weight: 600
}

.month-card ul {
list-style: none
}

.month-card ul li {
font-size: .83rem;
color: var(--clay);
padding: 3px 0 3px 1.1rem;
position: relative;
line-height: 1.5
}

.month-card ul li::before {
content: '›';
position: absolute;
left: 0;
color: var(--lake)
}

.month-rating {
display: flex;
gap: 3px;
margin-top: .8rem
}

.star {
color: var(--gold);
font-size: .82rem
}

.star.e {
color: #d8d0c8
}

/* ── CALLOUT ── */
.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.lake {
background: rgba(16, 96, 168, .06);
border-color: rgba(16, 96, 168, .2);
border-left: 4px solid var(--lake)
}

.callout.gold {
background: rgba(200, 128, 16, .07);
border-color: rgba(200, 128, 16, .22);
border-left: 4px solid var(--gold)
}

.callout.tip {
background: rgba(26, 104, 64, .07);
border-color: rgba(26, 104, 64, .2);
border-left: 4px solid var(--success)
}

.callout.rock {
background: rgba(122, 90, 58, .06);
border-color: rgba(122, 90, 58, .2);
border-left: 4px solid var(--rock)
}

.callout-img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
margin-top: 2px
}

.callout-txt strong {
display: block;
font-size: 14px;
font-weight: 700;
margin-bottom: 4px
}

.callout.lake .callout-txt strong {
color: var(--lake)
}

.callout.gold .callout-txt strong {
color: #8C6000
}

.callout.tip .callout-txt strong {
color: var(--success)
}

.callout.rock .callout-txt strong {
color: var(--rock)
}

.callout-txt p {
font-size: 13.5px;
color: var(--clay);
margin: 0;
line-height: 1.65
}

/* ── BEST TIME TABLE ── */
.tbl-wrap {
overflow-x: auto;
border-radius: var(--rmd);
border: 1px solid var(--border-t);
margin-top: var(--s5)
}

.data-tbl {
width: 100%;
min-width: 600px;
border-collapse: collapse;
font-size: 13.5px
}

.data-tbl th {
padding: var(--s3) var(--s4);
text-align: left;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--clay);
background: var(--sand-dk);
border-bottom: 1px solid var(--border-t);
white-space: nowrap
}

.data-tbl td {
padding: var(--s3) var(--s4);
border-bottom: 1px solid var(--border-t);
vertical-align: middle
}

.data-tbl tr:last-child td {
border-bottom: none
}

.data-tbl tr:hover td {
background: var(--gold-pale)
}

.b-best {
display: inline-block;
background: rgba(16, 96, 168, .12);
color: var(--lake);
font-size: 11.5px;
font-weight: 700;
padding: 2px 9px;
border-radius: var(--rpill);
border: 1px solid rgba(16, 96, 168, .22)
}

.b-ok {
display: inline-block;
background: rgba(26, 90, 42, .1);
color: var(--success);
font-size: 11.5px;
font-weight: 700;
padding: 2px 9px;
border-radius: var(--rpill);
border: 1px solid rgba(26, 90, 42, .2)
}

.b-low {
display: inline-block;
background: rgba(100, 110, 120, .08);
color: var(--clay);
font-size: 11.5px;
font-weight: 700;
padding: 2px 9px;
border-radius: var(--rpill);
border: 1px solid var(--border)
}

.b-peak {
display: inline-block;
background: rgba(200, 128, 16, .14);
color: #7A5000;
font-size: 11.5px;
font-weight: 700;
padding: 2px 9px;
border-radius: var(--rpill);
border: 1px solid rgba(200, 128, 16, .28)
}

/* ── 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-t);
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, 96, 168, .1);
color: var(--lake)
}

.ie-head.exc {
background: rgba(122, 32, 32, .08);
color: var(--critical)
}

.ie-list {
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: var(--dusk);
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, 96, 168, .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='%231060A8' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
}

.ie-list.exc li::before {
background-color: rgba(122, 32, 32, .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='%237A2020' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E")
}

/* ── TESTIMONIALS ── */
.testi-strip {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4);
margin: var(--s10) 0
}

@media(min-width:600px) {
.testi-strip {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:1024px) {
.testi-strip {
grid-template-columns: repeat(3, 1fr)
}
}

.testi-card {
background: var(--ivory);
border: 1px solid var(--border-t);
border-radius: var(--rlg);
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow var(--t)
}

.testi-card:hover {
box-shadow: var(--sh-md)
}

.testi-img {
height: 140px;
overflow: hidden;
position: relative
}

.testi-img img {
width: 100%;
height: 100%;
object-fit: cover;
filter: saturate(1.1)
}

.testi-img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(6, 16, 26, .5) 0%, transparent 60%)
}

.testi-body {
padding: var(--s5);
display: flex;
flex-direction: column;
gap: var(--s3);
flex: 1;
position: relative
}

.tq-mark {
position: absolute;
top: var(--s2);
right: var(--s4);
font-family: var(--fd);
font-size: 3.5rem;
font-weight: 700;
color: var(--sand-md);
line-height: 1;
pointer-events: none
}

.tc-stars {
display: flex;
gap: 2px;
color: var(--gold);
font-size: 15px
}

.tc-text {
font-size: 14px;
color: var(--dusk);
line-height: 1.75;
font-style: italic;
flex: 1;
position: relative;
z-index: 1
}

.tc-author {
display: flex;
align-items: center;
gap: var(--s3);
padding-top: var(--s3);
border-top: 1px solid var(--border-t)
}

.tc-avatar-img {
width: 40px;
height: 40px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
border: 2px solid var(--border-t)
}

.tc-name {
font-size: 13.5px;
font-weight: 700;
color: var(--dusk)
}

.tc-pkg {
font-size: 11.5px;
color: var(--clay)
}

/* ── FAQ ── */
.faq-section {
margin: var(--s10) 0
}

.faq-cols {
display: grid;
grid-template-columns: 1fr
}

@media(min-width:768px) {
.faq-cols {
grid-template-columns: 1fr 1fr;
gap: 0 var(--s8)
}
}

.faq-list {
display: flex;
flex-direction: column
}

.faq-item {
border-bottom: 1px solid var(--border-t)
}

.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: 14.5px;
font-weight: 600;
color: var(--dusk);
cursor: pointer;
transition: color var(--t);
line-height: 1.45
}

.faq-btn:hover {
color: var(--lake)
}

.faq-btn[aria-expanded="true"] {
color: var(--lake-md)
}

.faq-btn svg {
width: 18px;
height: 18px;
flex-shrink: 0;
color: var(--clay);
margin-top: 2px;
transition: transform var(--t)
}

.faq-btn[aria-expanded="true"] svg {
transform: rotate(45deg);
color: var(--lake)
}

.faq-ans {
display: none;
padding-bottom: var(--s5);
font-size: 14px;
color: var(--clay);
line-height: 1.78
}

.faq-ans.open {
display: block
}

/* ── LOCATION CARDS ── */
.loc-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: var(--s4);
margin-top: var(--s6)
}

.loc-card {
background: var(--ivory);
border: 1px solid var(--border-t);
border-radius: var(--rlg);
overflow: hidden;
transition: box-shadow var(--t), transform var(--t)
}

.loc-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-3px)
}

.loc-img {
height: 120px;
overflow: hidden
}

.loc-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .5s ease
}

.loc-card:hover .loc-img img {
transform: scale(1.07)
}

.loc-body {
padding: var(--s4)
}

.loc-card h3 {
font-family: var(--fd);
font-size: 1.05rem;
font-weight: 700;
color: var(--dusk);
margin-bottom: .35rem
}

.loc-card p {
font-size: .83rem;
color: var(--clay);
line-height: 1.6;
margin-bottom: .6rem
}

.loc-dist {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: .78rem;
font-weight: 700;
color: var(--lake);
background: rgba(16, 96, 168, .08);
border: 1px solid rgba(16, 96, 168, .16);
padding: 3px 10px;
border-radius: var(--rpill)
}

/* ── FOOTER ── */
.site-footer {
background: var(--night);
color: rgba(255, 255, 255, .62);
padding: var(--s10) var(--s5) var(--s8);
margin-top: var(--s12)
}

.f-grid {
max-width: 1300px;
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-img {
width: 42px;
height: 42px;
border-radius: var(--rsm);
object-fit: contain
}

.f-brand-name {
font-family: var(--fd);
font-size: 1.22rem;
font-weight: 700;
color: var(--ivory)
}

.f-brand p {
font-size: 13.5px;
line-height: 1.72;
max-width: 285px
}

.f-col {
flex: 1;
min-width: 130px
}

.f-col h4 {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .12em;
color: var(--gold-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(--ivory)
}

/* Social icons using real images */
.f-social {
display: flex;
gap: var(--s2);
margin-top: var(--s4)
}

.f-soc-btn {
width: 38px;
height: 38px;
border-radius: 50%;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, .12);
transition: transform var(--t), box-shadow var(--t);
cursor: pointer;
flex-shrink: 0
}

.f-soc-btn:hover {
transform: scale(1.1);
box-shadow: 0 4px 16px rgba(16, 96, 168, .4)
}

.f-soc-btn img {
width: 100%;
height: 100%;
object-fit: cover
}

.f-contact-item {
display: flex;
align-items: center;
gap: var(--s2);
font-size: 13.5px;
color: rgba(255, 255, 255, .58);
margin-bottom: var(--s2)
}

.f-contact-icon {
width: 20px;
height: 20px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0
}

.f-bottom {
max-width: 1300px;
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)
}

/* ── MOBILE STICKY ── */
.mob-sticky {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 200;
background: var(--lake-dk);
border-top: 2px solid rgba(16, 96, 168, .4);
padding: var(--s3) var(--s5);
display: flex;
align-items: center;
gap: var(--s4)
}

@media(min-width:1024px) {
.mob-sticky {
display: none
}
}

.ms-info {
flex: 1
}

.ms-label {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: rgba(255, 255, 255, .4);
display: block;
line-height: 1
}

.ms-price {
font-family: var(--fd);
font-size: 1.32rem;
font-weight: 700;
color: var(--gold-lt);
line-height: 1.1
}

.ms-cta {
padding: var(--s3) var(--s5);
background: var(--lake);
color: var(--ivory);
border: none;
border-radius: var(--rpill);
font-size: 14px;
font-weight: 700;
cursor: pointer;
transition: background var(--t);
white-space: nowrap
}

.ms-cta:hover {
background: var(--lake-lt)
}
