/* ================================================================
WHY CHOOSE US — Resilience Expedition
Full brand palette · Playfair Display + Outfit
Mobile-first · 320px base · Premium trust page
================================================================ */
*,
*::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(--ivory);
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
}

a:focus,
button:focus {
outline: 3px solid var(--savanna);
outline-offset: 3px
}

:root {
--night: #0A1510;
--earth-dk: #2A1808;
--earth: #7A4A18;
--savanna: #C07033;
--savanna-lt: #E09240;
--savanna-pl: #FDF3E6;
--lion: #D4A055;
--lion-lt: #ECC070;
--acacia: #4A6B2A;
--teal-dk: #14394F;
--teal: #1B5E7B;
--ivory: #F5F0E8;
--ivory-dk: #EDE6D8;
--ivory-md: #E8E0CE;
--white: #FDFAF4;
--ink: #1A1410;
--rock: #4A3E32;
--mist: #7A6E62;
--border: rgba(120, 90, 60, .14);
--border-md: rgba(120, 90, 60, .26);
--success: #1A7040;
--critical: #8B2F20;
--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(10, 21, 16, .08);
--sh-md: 0 6px 28px rgba(10, 21, 16, .12);
--sh-lg: 0 14px 50px rgba(10, 21, 16, .17);
--t: .22s cubic-bezier(.4, 0, .2, 1);
}

.skip-link {
position: absolute;
top: -100%;
left: var(--s4);
background: var(--earth-dk);
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(10, 21, 16, .97);
backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(192, 112, 51, .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: 64px
}

.logo-link {
display: flex;
align-items: center;
gap: var(--s3);
flex-shrink: 0
}

.logo-link img {
height: 42px;
width: 42px;
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, .38);
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(192, 112, 51, .2);
color: var(--white)
}

.nav-links a[aria-current="page"] {
background: var(--earth-dk);
color: var(--white)
}

.nav-cta {
display: flex;
align-items: center;
justify-content: center;
gap: var(--s2);
padding: var(--s3) var(--s6);
background: var(--savanna);
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(--savanna-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: 68px
}
}

/* ================================================================
BREADCRUMB
================================================================ */
.bc-bar {
background: var(--earth-dk);
border-bottom: 1px solid rgba(192, 112, 51, .18);
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, .42)
}

.bc-list li+li::before {
content: "›";
font-size: 13px
}

.bc-list a {
color: rgba(255, 255, 255, .6);
transition: color var(--t)
}

.bc-list a:hover {
color: var(--lion-lt)
}

.bc-list [aria-current="page"] {
color: rgba(255, 255, 255, .85);
font-weight: 500
}

/* ================================================================
HERO — full-bleed cinematic
================================================================ */
.wcu-hero {
position: relative;
min-height: clamp(480px, 60vw, 680px);
display: flex;
align-items: center;
overflow: hidden;
background: var(--night);
}

.wh-bg {
position: absolute;
inset: 0;
background-image: url('https://www.resilienceexpedition.com/images/why-choose-us.jpg');
background-size: cover;
background-position: center 28%;
transform: scale(1.04);
transition: transform 10s ease-out;
filter: saturate(1.1) brightness(.55);
}

.wcu-hero.loaded .wh-bg {
transform: scale(1)
}

.wh-overlay {
position: absolute;
inset: 0;
background: linear-gradient(105deg, rgba(10, 21, 16, .82) 0%, rgba(42, 24, 8, .55) 45%, rgba(10, 21, 16, .35) 100%)
}

.wh-ridge {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 80px;
background: linear-gradient(to top, var(--ivory) 0%, transparent 100%);
z-index: 1
}

.wh-content {
position: relative;
z-index: 2;
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: var(--s16) var(--s4) var(--s14);
display: grid;
gap: var(--s8);
}

@media(min-width:768px) {
.wh-content {
padding: var(--s16) var(--s6) var(--s14)
}
}

@media(min-width:1024px) {
.wh-content {
grid-template-columns: 1fr 400px;
align-items: center;
gap: var(--s10);
padding: var(--s16) var(--s6) var(--s16)
}
}

.wh-left {
display: flex;
flex-direction: column;
gap: var(--s4)
}

.wh-eyebrow {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: rgba(212, 160, 85, .2);
border: 1px solid rgba(212, 160, 85, .4);
color: var(--lion-lt);
font-size: 10.5px;
font-weight: 700;
letter-spacing: .16em;
text-transform: uppercase;
padding: var(--s1) var(--s4);
border-radius: var(--rpill);
width: fit-content
}

.wh-title {
font-family: var(--fd);
font-size: clamp(2.4rem, 7vw, 4.8rem);
font-weight: 700;
color: var(--white);
line-height: 1.06;
letter-spacing: -.03em;
max-width: 700px
}

.wh-title em {
font-style: italic;
color: var(--lion-lt)
}

.wh-sub {
font-size: clamp(14px, 2.4vw, 17px);
color: rgba(255, 255, 255, .7);
max-width: 560px;
line-height: 1.75
}

.wh-cta-row {
display: flex;
flex-direction: column;
gap: var(--s3)
}

@media(min-width:480px) {
.wh-cta-row {
flex-direction: row;
flex-wrap: wrap
}
}

.wh-btn {
display: inline-flex;
align-items: center;
gap: var(--s2);
padding: var(--s4) var(--s8);
border-radius: var(--rpill);
font-size: 15px;
font-weight: 700;
transition: background var(--t), transform var(--t);
white-space: nowrap;
border: none;
cursor: pointer
}

.wh-btn.primary {
background: var(--savanna);
color: var(--white)
}

.wh-btn.primary:hover {
background: var(--savanna-lt);
transform: translateY(-2px)
}

.wh-btn.outline {
background: rgba(255, 255, 255, .1);
border: 1px solid rgba(255, 255, 255, .3);
color: rgba(255, 255, 255, .88)
}

.wh-btn.outline:hover {
background: rgba(255, 255, 255, .18)
}

.wh-btn svg {
width: 15px;
height: 15px
}

/* Hero stat panel (right column on desktop) */
.wh-stat-panel {
background: rgba(10, 21, 16, .72);
backdrop-filter: blur(18px);
border: 1px solid rgba(192, 112, 51, .28);
border-radius: var(--rxl);
padding: var(--s5);
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--s4);
}

.wh-stat {
display: flex;
flex-direction: column;
gap: var(--s1);
padding: var(--s4);
background: rgba(192, 112, 51, .08);
border-radius: var(--rmd);
border: 1px solid rgba(192, 112, 51, .14)
}

.wh-stat-num {
font-family: var(--fd);
font-size: clamp(1.6rem, 4vw, 2.1rem);
font-weight: 700;
color: var(--lion-lt);
line-height: 1
}

.wh-stat-lbl {
font-size: 10.5px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .09em;
color: rgba(255, 255, 255, .48);
line-height: 1.3
}

/* ================================================================
PAGE WRAPPER
================================================================ */
.wcu-wrap {
max-width: 1280px;
margin: 0 auto;
padding: var(--s10) var(--s4)
}

@media(min-width:768px) {
.wcu-wrap {
padding: var(--s12) var(--s6)
}
}

.sec-head {
margin-bottom: var(--s8)
}

.sec-label {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .14em;
color: var(--savanna);
margin-bottom: var(--s2);
display: block
}

.sec-title {
font-family: var(--fd);
font-size: clamp(1.7rem, 4.5vw, 2.6rem);
font-weight: 700;
color: var(--ink);
line-height: 1.18;
margin-bottom: var(--s3)
}

.sec-title .accent {
color: var(--earth)
}

.sec-title em {
font-style: italic
}

.sec-sub {
font-size: 15.5px;
color: var(--mist);
line-height: 1.75;
max-width: 700px
}

/* ================================================================
ORIGIN STORY — two-column feature
================================================================ */
.story-section {
margin-bottom: var(--s12)
}

.story-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s8);
align-items: center
}

@media(min-width:900px) {
.story-grid {
grid-template-columns: 1fr 1fr;
gap: var(--s12)
}
}

.story-img-wrap {
position: relative;
border-radius: var(--rxl);
overflow: hidden
}

.story-img-wrap img {
width: 100%;
aspect-ratio: 4/3;
object-fit: cover;
filter: saturate(1.08)
}

/* Floating stat badge on image */
.story-img-badge {
position: absolute;
bottom: var(--s5);
left: var(--s5);
background: rgba(10, 21, 16, .85);
backdrop-filter: blur(12px);
border: 1px solid rgba(192, 112, 51, .28);
border-radius: var(--rlg);
padding: var(--s3) var(--s5);
display: flex;
align-items: center;
gap: var(--s3);
}

.sib-ico {
font-size: 24px;
line-height: 1;
flex-shrink: 0
}

.sib-body {
display: flex;
flex-direction: column;
gap: 1px
}

.sib-num {
font-family: var(--fd);
font-size: 1.3rem;
font-weight: 700;
color: var(--lion-lt);
line-height: 1
}

.sib-lbl {
font-size: 11px;
color: rgba(255, 255, 255, .5);
font-weight: 600;
text-transform: uppercase;
letter-spacing: .07em
}

.story-text {
display: flex;
flex-direction: column;
gap: var(--s5)
}

.story-text p {
font-size: 15.5px;
color: var(--rock);
line-height: 1.85
}

.story-text p strong {
color: var(--ink)
}

.story-pull-quote {
font-family: var(--fd);
font-size: clamp(1.2rem, 3vw, 1.5rem);
font-style: italic;
color: var(--earth);
line-height: 1.45;
padding: var(--s4) 0;
border-top: 2px solid var(--border);
border-bottom: 2px solid var(--border)
}

.story-sig {
display: flex;
align-items: center;
gap: var(--s4);
margin-top: var(--s2)
}

.story-sig-avatar {
width: 52px;
height: 52px;
border-radius: 50%;
background: var(--ivory-dk);
overflow: hidden;
flex-shrink: 0
}

.story-sig-avatar img {
width: 100%;
height: 100%;
object-fit: cover
}

.story-sig-name {
font-size: 14.5px;
font-weight: 700;
color: var(--ink)
}

.story-sig-role {
font-size: 12px;
color: var(--mist)
}

/* ================================================================
10 REASONS — numbered feature grid
================================================================ */
.reasons-section {
margin-bottom: var(--s12)
}

.reasons-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4)
}

@media(min-width:600px) {
.reasons-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:1024px) {
.reasons-grid {
grid-template-columns: 1fr 1fr 1fr
}
}

.reason-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
padding: var(--s6) var(--s6) var(--s5);
display: flex;
flex-direction: column;
gap: var(--s3);
position: relative;
transition: box-shadow var(--t), transform var(--t);
overflow: hidden;
}

.reason-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-3px)
}

.reason-card.featured {
border: 2px solid var(--savanna);
background: linear-gradient(135deg, var(--white) 0%, rgba(253, 243, 230, .7) 100%)
}

/* Background number watermark */
.reason-num-bg {
position: absolute;
top: -12px;
right: var(--s4);
font-family: var(--fd);
font-size: 5rem;
font-weight: 700;
color: var(--border);
line-height: 1;
user-select: none;
pointer-events: none;
}

.reason-card.featured .reason-num-bg {
color: rgba(192, 112, 51, .12)
}

.reason-icon {
width: 52px;
height: 52px;
border-radius: var(--rmd);
background: var(--ivory-dk);
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
line-height: 1;
flex-shrink: 0
}

.reason-card.featured .reason-icon {
background: rgba(192, 112, 51, .12)
}

.reason-title {
font-family: var(--fd);
font-size: 1.15rem;
font-weight: 700;
color: var(--ink);
line-height: 1.3;
position: relative;
z-index: 1
}

.reason-body {
font-size: 14px;
color: var(--mist);
line-height: 1.72;
position: relative;
z-index: 1
}

.reason-proof {
display: flex;
align-items: center;
gap: var(--s2);
margin-top: var(--s2);
padding-top: var(--s3);
border-top: 1px solid var(--border)
}

.reason-proof-ico {
font-size: 14px
}

.reason-proof-text {
font-size: 12.5px;
font-weight: 600;
color: var(--earth)
}

/* ================================================================
CERTIFICATIONS & CREDENTIALS
================================================================ */
.certs-section {
background: linear-gradient(135deg, var(--earth-dk) 0%, var(--night) 100%);
border-radius: var(--rxl);
padding: var(--s10) var(--s8);
margin-bottom: var(--s12)
}

@media(min-width:768px) {
.certs-section {
padding: var(--s12) var(--s10)
}
}

.certs-header {
text-align: center;
margin-bottom: var(--s8)
}

.certs-header .sec-label {
color: var(--lion-lt)
}

.certs-title {
font-family: var(--fd);
font-size: clamp(1.6rem, 4vw, 2.3rem);
font-weight: 700;
color: var(--white);
line-height: 1.2;
margin-bottom: var(--s3)
}

.certs-title em {
font-style: italic;
color: var(--lion-lt)
}

.certs-sub {
font-size: 15px;
color: rgba(255, 255, 255, .52);
max-width: 580px;
margin: 0 auto;
line-height: 1.7
}

.certs-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--s4)
}

@media(min-width:600px) {
.certs-grid {
grid-template-columns: repeat(3, 1fr)
}
}

@media(min-width:900px) {
.certs-grid {
grid-template-columns: repeat(5, 1fr)
}
}

.cert-card {
background: rgba(255, 255, 255, .06);
border: 1px solid rgba(255, 255, 255, .1);
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)
}

.cert-card:hover {
background: rgba(255, 255, 255, .11);
transform: translateY(-2px)
}

.cert-ico {
font-size: 28px;
line-height: 1
}

.cert-name {
font-size: 13.5px;
font-weight: 700;
color: var(--white);
line-height: 1.3
}

.cert-detail {
font-size: 11.5px;
color: rgba(255, 255, 255, .45);
line-height: 1.45;
text-align: center
}

/* ================================================================
COMPARISON TABLE — us vs generic operators
================================================================ */
.compare-section {
margin-bottom: var(--s12)
}

.compare-wrap {
overflow-x: auto;
-webkit-overflow-scrolling: touch;
border-radius: var(--rlg);
border: 1px solid var(--border);
margin-top: var(--s6)
}

.compare-tbl {
width: 100%;
min-width: 600px;
border-collapse: collapse;
font-size: 14px
}

.compare-tbl th {
padding: var(--s4) var(--s5);
text-align: left;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
white-space: nowrap;
border-bottom: 2px solid var(--border)
}

.compare-tbl th:first-child {
background: var(--ivory-dk);
color: var(--mist)
}

.compare-tbl th.us-col {
background: var(--earth-dk);
color: var(--lion-lt)
}

.compare-tbl th.them-col {
background: var(--ivory-dk);
color: var(--mist)
}

.compare-tbl td {
padding: var(--s3) var(--s5);
border-bottom: 1px solid var(--border);
vertical-align: middle
}

.compare-tbl tr:last-child td {
border-bottom: none
}

.compare-tbl tr:hover td {
background: var(--savanna-pl)
}

.compare-tbl td:first-child {
font-weight: 600;
color: var(--ink)
}

.compare-tbl td.us-val {
background: rgba(192, 112, 51, .04)
}

.compare-tbl td.them-val {
color: var(--mist)
}

.c-yes {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 13px;
font-weight: 700;
color: var(--success)
}

.c-yes::before {
content: '✓';
font-size: 14px
}

.c-no {
display: inline-flex;
align-items: center;
gap: 5px;
font-size: 13px;
color: var(--mist)
}

.c-no::before {
content: '✗';
font-size: 14px;
color: var(--critical)
}

.c-sometimes {
font-size: 12.5px;
color: var(--mist);
font-style: italic
}

/* ================================================================
GUIDE PROFILES
================================================================ */
.guides-section {
margin-bottom: var(--s12)
}

.guides-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s5);
margin-top: var(--s6)
}

@media(min-width:600px) {
.guides-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:1024px) {
.guides-grid {
grid-template-columns: repeat(4, 1fr)
}
}

.guide-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
overflow: hidden;
transition: box-shadow var(--t), transform var(--t)
}

.guide-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-3px)
}

.guide-img {
height: 220px;
overflow: hidden;
position: relative;
background: var(--ivory-dk)
}

.guide-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
filter: saturate(1.05)
}

.guide-img-ov {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(10, 21, 16, .55) 0%, transparent 55%)
}

/* Expertise badge on image */
.guide-exp-badge {
position: absolute;
bottom: var(--s3);
left: var(--s3);
background: rgba(10, 21, 16, .8);
border: 1px solid rgba(192, 112, 51, .3);
color: var(--lion-lt);
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
padding: 3px 10px;
border-radius: var(--rpill)
}

.guide-body {
padding: var(--s4) var(--s5)
}

.guide-name {
font-family: var(--fd);
font-size: 1.1rem;
font-weight: 700;
color: var(--ink);
margin-bottom: 3px
}

.guide-role {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--savanna);
margin-bottom: var(--s3)
}

.guide-bio {
font-size: 13px;
color: var(--mist);
line-height: 1.65;
margin-bottom: var(--s3)
}

.guide-tags {
display: flex;
flex-wrap: wrap;
gap: var(--s1)
}

.guide-tag {
font-size: 11px;
font-weight: 500;
color: var(--rock);
background: var(--ivory-dk);
border: 1px solid var(--border);
padding: 2px 8px;
border-radius: var(--rpill)
}

/* ================================================================
SAFETY STANDARDS — dark feature section
================================================================ */
.safety-section {
background: linear-gradient(135deg, rgba(10, 21, 16, .99) 0%, rgba(26, 24, 12, .99) 100%);
border-radius: var(--rxl);
padding: var(--s10) var(--s8);
margin-bottom: var(--s12)
}

@media(min-width:768px) {
.safety-section {
padding: var(--s12) var(--s10)
}
}

.ss-header {
margin-bottom: var(--s8)
}

.ss-label {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .14em;
color: var(--savanna);
margin-bottom: var(--s2);
display: block
}

.ss-title {
font-family: var(--fd);
font-size: clamp(1.6rem, 4vw, 2.3rem);
font-weight: 700;
color: var(--white);
line-height: 1.2;
margin-bottom: var(--s3)
}

.ss-title em {
font-style: italic;
color: var(--lion-lt)
}

.ss-sub {
font-size: 15px;
color: rgba(255, 255, 255, .52);
max-width: 620px;
line-height: 1.7
}

.safety-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4)
}

@media(min-width:600px) {
.safety-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:900px) {
.safety-grid {
grid-template-columns: repeat(3, 1fr)
}
}

.safety-card {
background: rgba(255, 255, 255, .05);
border: 1px solid rgba(255, 255, 255, .1);
border-radius: var(--rlg);
padding: var(--s5);
display: flex;
flex-direction: column;
gap: var(--s3);
transition: background var(--t)
}

.safety-card:hover {
background: rgba(255, 255, 255, .09)
}

.safety-ico {
font-size: 28px;
line-height: 1
}

.safety-title {
font-size: 14.5px;
font-weight: 700;
color: var(--white);
line-height: 1.35
}

.safety-body {
font-size: 13px;
color: rgba(255, 255, 255, .5);
line-height: 1.65
}

.safety-standard {
display: flex;
align-items: center;
gap: var(--s2);
margin-top: var(--s2);
font-size: 12px;
font-weight: 700;
color: var(--lion-lt)
}

.safety-standard svg {
width: 14px;
height: 14px;
flex-shrink: 0
}

/* ================================================================
TRANSPARENCY SECTION — pricing philosophy
================================================================ */
.transparency-section {
margin-bottom: var(--s12)
}

.trans-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s6);
align-items: start
}

@media(min-width:900px) {
.trans-grid {
grid-template-columns: 1fr 1fr;
gap: var(--s10)
}
}

.trans-text {
display: flex;
flex-direction: column;
gap: var(--s4)
}

.trans-text p {
font-size: 15px;
color: var(--rock);
line-height: 1.85
}

.trans-list {
display: flex;
flex-direction: column;
gap: var(--s3);
margin-top: var(--s2)
}

.tl-item {
display: flex;
align-items: flex-start;
gap: var(--s3);
padding: var(--s3) var(--s4);
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rmd)
}

.tl-check {
width: 22px;
height: 22px;
min-width: 22px;
border-radius: 50%;
background: rgba(26, 112, 64, .1);
border: 1px solid rgba(26, 112, 64, .22);
display: flex;
align-items: center;
justify-content: center;
color: var(--success);
font-size: 12px;
font-weight: 700;
flex-shrink: 0;
margin-top: 1px
}

.tl-body strong {
display: block;
font-size: 14px;
font-weight: 700;
color: var(--ink);
margin-bottom: 2px
}

.tl-body span {
font-size: 13px;
color: var(--mist)
}

.trans-pricing-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
overflow: hidden;
box-shadow: var(--sh-md)
}

.tpc-head {
background: linear-gradient(135deg, var(--earth-dk), var(--earth));
padding: var(--s5);
color: var(--white)
}

.tpc-head h3 {
font-family: var(--fd);
font-size: 1.25rem;
font-weight: 700;
color: var(--white)
}

.tpc-head p {
font-size: 13px;
color: rgba(255, 255, 255, .6);
margin-top: 3px
}

.tpc-body {
padding: var(--s4) var(--s5);
display: flex;
flex-direction: column;
gap: 0
}

.tpc-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: var(--s3) 0;
border-bottom: 1px solid var(--border);
font-size: 14px
}

.tpc-row:last-child {
border-bottom: none
}

.tpc-row-name {
color: var(--ink);
font-weight: 500
}

.tpc-row-val {
font-weight: 700;
color: var(--success)
}

.tpc-row-val.inc {
color: var(--success)
}

.tpc-row-val.hidden {
color: var(--critical)
}

.tpc-total {
background: var(--ivory-dk);
padding: var(--s4) var(--s5);
display: flex;
justify-content: space-between;
align-items: center
}

.tpc-total-label {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
color: var(--mist)
}

.tpc-total-val {
font-family: var(--fd);
font-size: 1.4rem;
font-weight: 700;
color: var(--earth)
}

/* ================================================================
RATINGS & SOCIAL PROOF
================================================================ */
.ratings-section {
margin-bottom: var(--s12)
}

.ratings-strip {
display: flex;
flex-direction: column;
gap: var(--s4)
}

@media(min-width:600px) {
.ratings-strip {
flex-direction: row;
flex-wrap: wrap
}
}

.rating-platform {
flex: 1;
min-width: 220px;
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
padding: var(--s5);
display: flex;
flex-direction: column;
gap: var(--s3);
transition: box-shadow var(--t)
}

.rating-platform:hover {
box-shadow: var(--sh-md)
}

.rp-header {
display: flex;
align-items: center;
gap: var(--s3)
}

.rp-logo {
font-size: 22px;
line-height: 1
}

.rp-name {
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--mist)
}

.rp-score {
font-family: var(--fd);
font-size: 2.2rem;
font-weight: 700;
color: var(--ink);
line-height: 1
}

.rp-stars {
display: flex;
gap: 2px;
color: var(--savanna);
font-size: 14px
}

.rp-stars.green {
color: var(--acacia)
}

.rp-count {
font-size: 13px;
color: var(--mist)
}

.rp-badge {
display: inline-block;
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .07em;
padding: 3px 10px;
border-radius: var(--rpill);
background: rgba(26, 112, 64, .1);
color: var(--success);
border: 1px solid rgba(26, 112, 64, .2);
margin-top: var(--s1)
}

/* ================================================================
TESTIMONIALS
================================================================ */
.testi-section {
margin-bottom: var(--s12)
}

.testi-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4);
margin-top: var(--s6)
}

@media(min-width:600px) {
.testi-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:1024px) {
.testi-grid {
grid-template-columns: repeat(3, 1fr)
}
}

.testi-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
padding: var(--s6);
display: flex;
flex-direction: column;
gap: var(--s4);
position: relative;
transition: box-shadow var(--t), transform var(--t)
}

.testi-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-2px)
}

.tq {
position: absolute;
top: var(--s4);
right: var(--s5);
font-family: var(--fd);
font-size: 3.5rem;
font-weight: 700;
color: var(--ivory-md);
line-height: 1;
pointer-events: none
}

.t-stars {
display: flex;
gap: 2px;
color: var(--savanna);
font-size: 15px
}

.t-source {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--mist)
}

.t-text {
font-size: 14px;
color: var(--rock);
line-height: 1.78;
font-style: italic;
flex: 1;
position: relative;
z-index: 1
}

.t-author {
display: flex;
align-items: center;
gap: var(--s3);
padding-top: var(--s4);
border-top: 1px solid var(--border)
}

.t-avatar {
width: 42px;
height: 42px;
border-radius: 50%;
background: var(--ivory-dk);
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
color: var(--earth);
flex-shrink: 0;
line-height: 1
}

.t-name {
font-size: 13.5px;
font-weight: 700;
color: var(--ink)
}

.t-trip {
font-size: 11.5px;
color: var(--mist)
}

.t-flag {
font-size: 16px
}

/* ================================================================
COMMUNITY IMPACT
================================================================ */
.impact-section {
margin-bottom: var(--s12)
}

.impact-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s5);
margin-top: var(--s6)
}

@media(min-width:600px) {
.impact-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:1024px) {
.impact-grid {
grid-template-columns: repeat(4, 1fr)
}
}

.impact-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rlg);
padding: var(--s5);
display: flex;
flex-direction: column;
gap: var(--s3);
transition: box-shadow var(--t), transform var(--t)
}

.impact-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-2px)
}

.impact-ico {
font-size: 30px;
line-height: 1
}

.impact-stat {
font-family: var(--fd);
font-size: 1.55rem;
font-weight: 700;
color: var(--earth);
line-height: 1
}

.impact-title {
font-size: 14px;
font-weight: 700;
color: var(--ink);
line-height: 1.3
}

.impact-body {
font-size: 13px;
color: var(--mist);
line-height: 1.65;
flex: 1
}

/* ================================================================
FINAL CTA BAND
================================================================ */
.cta-band {
background: linear-gradient(135deg, var(--earth-dk) 0%, var(--earth) 55%, rgba(192, 112, 51, .6) 100%);
border-radius: var(--rxl);
padding: var(--s10) var(--s8);
margin-bottom: var(--s12);
position: relative;
overflow: hidden
}

.cta-band::after {
content: '';
position: absolute;
top: -60px;
right: -60px;
width: 280px;
height: 280px;
border-radius: 50%;
background: rgba(255, 255, 255, .04)
}

.cta-inner {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: var(--s6);
align-items: flex-start
}

@media(min-width:768px) {
.cta-inner {
flex-direction: row;
align-items: center;
justify-content: space-between
}
}

.cta-text h2 {
font-family: var(--fd);
font-size: clamp(1.5rem, 4vw, 2.2rem);
font-weight: 700;
color: var(--white);
line-height: 1.25;
margin-bottom: var(--s2)
}

.cta-text h2 em {
font-style: italic;
color: var(--lion-lt)
}

.cta-text p {
font-size: 14.5px;
color: rgba(255, 255, 255, .62);
line-height: 1.65;
max-width: 480px
}

.cta-buttons {
display: flex;
flex-direction: column;
gap: var(--s3);
flex-shrink: 0
}

@media(min-width:480px) {
.cta-buttons {
flex-direction: row
}
}

.cta-btn {
display: inline-flex;
align-items: center;
gap: var(--s2);
padding: var(--s4) var(--s7);
border-radius: var(--rpill);
font-size: 15px;
font-weight: 700;
transition: all var(--t);
white-space: nowrap;
border: none;
cursor: pointer;
text-decoration: none
}

.cta-btn.primary {
background: var(--lion-lt);
color: var(--ink)
}

.cta-btn.primary:hover {
background: var(--white);
transform: translateY(-2px)
}

.cta-btn.secondary {
background: rgba(255, 255, 255, .12);
border: 1px solid rgba(255, 255, 255, .3);
color: rgba(255, 255, 255, .9)
}

.cta-btn.secondary:hover {
background: rgba(255, 255, 255, .22)
}

.cta-btn svg {
width: 15px;
height: 15px
}

/* --s7 shorthand */
:root {
--s7: 1.75rem
}

/* ================================================================
CALLOUT
================================================================ */
.callout {
display: flex;
flex-direction: column;
gap: var(--s3);
border-left: 4px solid;
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.earth {
background: rgba(122, 74, 24, .06);
border-color: rgba(122, 74, 24, .18);
border-left-color: var(--earth)
}

.callout.acacia {
background: rgba(74, 107, 42, .07);
border-color: rgba(74, 107, 42, .2);
border-left-color: var(--acacia)
}

.callout-ico {
font-size: 22px;
flex-shrink: 0
}

.callout-txt strong {
display: block;
font-size: 14px;
font-weight: 700;
margin-bottom: 3px
}

.callout.earth .callout-txt strong {
color: var(--earth)
}

.callout.acacia .callout-txt strong {
color: var(--acacia)
}

.callout-txt p {
font-size: 13.5px;
color: var(--rock);
margin: 0;
line-height: 1.65
}

/* ================================================================
FOOTER
================================================================ */
.site-footer {
background: var(--night);
color: rgba(255, 255, 255, .65);
padding: var(--s10) var(--s4) var(--s8)
}

.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: 42px;
width: 42px;
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(--lion-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, .6);
transition: color var(--t)
}

.f-col a:hover {
color: var(--white)
}

.f-social {
display: flex;
gap: var(--s2);
margin-top: var(--s4)
}

.f-social a {
width: 38px;
height: 38px;
border-radius: 50%;
background: rgba(255, 255, 255, .08);
color: rgba(255, 255, 255, .7);
display: flex;
align-items: center;
justify-content: center;
transition: all var(--t)
}

.f-social a:hover {
background: var(--savanna);
color: var(--white)
}

.f-social svg {
width: 16px;
height: 16px
}

.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, .35)
}

@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)
}
