/* ================================================================
CONTACT PAGE — Resilience Expedition
Mobile-first · 320px → 1280px · All breakpoints covered
================================================================ */
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0
}

html {
font-size: 16px;
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
overflow-x: hidden
}

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-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
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: #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);
}



.sr {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0
}


/* Hamburger — mobile only */
.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);
flex-shrink: 0
}

.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)
}

/* Desktop nav */
.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);
border: none;
cursor: pointer;
white-space: nowrap
}

.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 — compact contact hero with gradient
================================================================ */
.contact-hero {
position: relative;
background: var(--night);
min-height: clamp(280px, 38vw, 420px);
display: flex;
align-items: center;
overflow: hidden;
}

.ch-bg {
position: absolute;
inset: 0;
background-image: url('https://www.resilienceexpedition.com/images/contact.jpg');
background-size: cover;
background-position: center 40%;
filter: saturate(1.1) brightness(.45);
transform: scale(1.04);
transition: transform 10s ease-out;
}

.contact-hero.loaded .ch-bg {
transform: scale(1)
}

.ch-overlay {
position: absolute;
inset: 0;
background: linear-gradient(105deg, rgba(10, 21, 16, .88) 0%, rgba(42, 24, 8, .55) 55%, rgba(10, 21, 16, .3) 100%)
}

.ch-ridge {
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 60px;
background: linear-gradient(to top, var(--ivory) 0%, transparent 100%);
z-index: 1
}

.ch-content {
position: relative;
z-index: 2;
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: var(--s10) var(--s4) var(--s12);
display: flex;
flex-direction: column;
gap: var(--s3);
}

@media(min-width:640px) {
.ch-content {
padding: var(--s12) var(--s6) var(--s14)
}
}

.ch-eyebrow {
display: inline-flex;
align-items: center;
gap: var(--s2);
background: rgba(212, 160, 85, .18);
border: 1px solid rgba(212, 160, 85, .38);
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;
}

.ch-title {
font-family: var(--fd);
font-size: clamp(2rem, 6vw, 3.8rem);
font-weight: 700;
color: var(--white);
line-height: 1.08;
letter-spacing: -.03em;
max-width: 700px;
}

.ch-title em {
font-style: italic;
color: var(--lion-lt)
}

.ch-sub {
font-size: clamp(14px, 2.2vw, 16.5px);
color: rgba(255, 255, 255, .68);
max-width: 500px;
line-height: 1.72
}

/* ================================================================
PAGE WRAPPER
================================================================ */
.ct-wrap {
max-width: 1280px;
margin: 0 auto;
padding: var(--s8) var(--s4) var(--s12)
}

@media(min-width:640px) {
.ct-wrap {
padding: var(--s10) var(--s6) var(--s12)
}
}

/* ================================================================
CONTACT CHANNELS — top cards row
================================================================ */
.channels-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4);
margin-bottom: var(--s10);
}

@media(min-width:500px) {
.channels-grid {
grid-template-columns: 1fr 1fr
}
}

@media(min-width:900px) {
.channels-grid {
grid-template-columns: repeat(4, 1fr)
}
}

.channel-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
padding: var(--s5) var(--s5) var(--s4);
display: flex;
flex-direction: column;
gap: var(--s3);
transition: box-shadow var(--t), transform var(--t);
position: relative;
overflow: hidden;
}

.channel-card:hover {
box-shadow: var(--sh-md);
transform: translateY(-3px)
}

.channel-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
}

.channel-card.whatsapp::before {
background: linear-gradient(90deg, #25D366, #128C7E)
}

.channel-card.phone::before {
background: linear-gradient(90deg, var(--savanna), var(--lion-lt))
}

.channel-card.email::before {
background: linear-gradient(90deg, var(--teal), #2AACCF)
}

.channel-card.office::before {
background: linear-gradient(90deg, var(--earth), var(--savanna-lt))
}

.cc-icon {
width: 48px;
height: 48px;
border-radius: var(--rmd);
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
line-height: 1;
flex-shrink: 0;
}

.channel-card.whatsapp .cc-icon {
background: rgba(37, 211, 102, .1)
}

.channel-card.phone .cc-icon {
background: rgba(192, 112, 51, .1)
}

.channel-card.email .cc-icon {
background: rgba(27, 94, 123, .1)
}

.channel-card.office .cc-icon {
background: rgba(122, 74, 24, .1)
}

.cc-label {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--mist)
}

.cc-value {
font-family: var(--fd);
font-size: clamp(.95rem, 2vw, 1.1rem);
font-weight: 700;
color: var(--ink);
line-height: 1.25;
word-break: break-word
}

.cc-note {
font-size: 12.5px;
color: var(--mist);
line-height: 1.5;
flex: 1
}

.cc-action {
display: inline-flex;
align-items: center;
gap: var(--s2);
padding: var(--s3) var(--s5);
border-radius: var(--rpill);
font-size: 13px;
font-weight: 700;
transition: all var(--t);
border: none;
cursor: pointer;
text-decoration: none;
white-space: nowrap;
align-self: flex-start;
margin-top: auto;
}

.channel-card.whatsapp .cc-action {
background: #25D366;
color: #fff
}

.channel-card.whatsapp .cc-action:hover {
background: #128C7E
}

.channel-card.phone .cc-action {
background: var(--savanna);
color: var(--white)
}

.channel-card.phone .cc-action:hover {
background: var(--savanna-lt)
}

.channel-card.email .cc-action {
background: var(--teal);
color: var(--white)
}

.channel-card.email .cc-action:hover {
background: var(--earth-dk)
}

.channel-card.office .cc-action {
background: var(--earth-dk);
color: var(--white)
}

.channel-card.office .cc-action:hover {
background: var(--earth)
}

.cc-action svg {
width: 14px;
height: 14px;
flex-shrink: 0
}

/* ================================================================
MAIN CONTENT GRID — form left, info right
================================================================ */
.contact-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s8);
margin-bottom: var(--s10);
}

@media(min-width:900px) {
.contact-grid {
grid-template-columns: 1fr 380px;
gap: var(--s10)
}
}

/* ================================================================
CONTACT FORM
================================================================ */
.cf-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
overflow: hidden;
box-shadow: var(--sh-sm);
}

.cf-head {
background: linear-gradient(135deg, var(--earth-dk) 0%, var(--earth) 60%, rgba(192, 112, 51, .55) 100%);
padding: var(--s6);
position: relative;
overflow: hidden;
}

.cf-head::after {
content: '';
position: absolute;
bottom: -40px;
right: -40px;
width: 160px;
height: 160px;
border-radius: 50%;
background: rgba(255, 255, 255, .04)
}

.cf-head h2 {
font-family: var(--fd);
font-size: clamp(1.35rem, 3.5vw, 1.75rem);
font-weight: 700;
color: var(--white);
line-height: 1.25;
position: relative;
z-index: 1
}

.cf-head p {
font-size: 14px;
color: rgba(255, 255, 255, .6);
margin-top: var(--s2);
line-height: 1.65;
position: relative;
z-index: 1;
max-width: 440px
}

.cf-body {
padding: var(--s6)
}

@media(max-width:479px) {
.cf-body {
padding: var(--s4)
}
}

.cf-grid {
display: flex;
flex-direction: column;
gap: var(--s4)
}

.cf-row {
display: grid;
grid-template-columns: 1fr;
gap: var(--s4)
}

@media(min-width:480px) {
.cf-row {
grid-template-columns: 1fr 1fr
}
}

.cf-group {
display: flex;
flex-direction: column;
gap: var(--s1)
}

.cf-group label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--mist);
}

.cf-group label .req {
color: var(--critical)
}

.cf-group input,
.cf-group select,
.cf-group textarea {
width: 100%;
padding: .7rem 1rem;
border: 1px solid var(--border);
border-radius: var(--rsm);
background: var(--ivory);
color: var(--ink);
font-size: 14px;
line-height: 1.5;
outline: none;
transition: border-color var(--t), box-shadow var(--t);
appearance: none;
-webkit-appearance: none;
}

.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus {
border-color: var(--savanna);
box-shadow: 0 0 0 3px rgba(192, 112, 51, .12);
}

.cf-group input.err,
.cf-group select.err,
.cf-group textarea.err {
border-color: var(--critical);
box-shadow: 0 0 0 3px rgba(139, 47, 32, .1);
}

.cf-group .err-msg {
font-size: 12px;
color: var(--critical);
margin-top: 2px;
display: none
}

.cf-group.has-error .err-msg {
display: block
}

.cf-group 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='%237A6E62' 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;
cursor: pointer;
}

.cf-group textarea {
resize: vertical;
min-height: 110px
}

/* Interest checkboxes */
.cf-checks {
display: flex;
flex-direction: column;
gap: var(--s2);
margin-top: var(--s1)
}

.cf-check-item {
display: flex;
align-items: center;
gap: var(--s3);
cursor: pointer;
padding: var(--s2) var(--s3);
border-radius: var(--rsm);
transition: background var(--t)
}

.cf-check-item:hover {
background: var(--savanna-pl)
}

.cf-check-item input[type="checkbox"] {
width: 18px;
height: 18px;
border: 2px solid var(--border-md);
border-radius: 4px;
appearance: none;
-webkit-appearance: none;
flex-shrink: 0;
cursor: pointer;
transition: all var(--t);
background: var(--white);
}

.cf-check-item input[type="checkbox"]:checked {
background: var(--savanna);
border-color: var(--savanna);
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-size: 11px;
background-position: center;
background-repeat: no-repeat;
}

.cf-check-label {
font-size: 14px;
color: var(--ink)
}

.cf-check-label em {
font-style: normal;
font-size: 12px;
color: var(--mist);
margin-left: 4px
}

/* Submit button */
.cf-submit {
display: flex;
align-items: center;
justify-content: center;
gap: var(--s2);
width: 100%;
padding: var(--s4) var(--s6);
background: var(--savanna);
color: var(--white);
border: none;
border-radius: var(--rsm);
font-size: 15px;
font-weight: 700;
cursor: pointer;
transition: background var(--t), transform var(--t);
position: relative;
}

.cf-submit:hover {
background: var(--savanna-lt)
}

.cf-submit:active {
transform: scale(.98)
}

.cf-submit svg {
width: 16px;
height: 16px
}

.cf-submit .spinner {
display: none;
width: 18px;
height: 18px;
border: 2.5px solid rgba(255, 255, 255, .3);
border-top-color: #fff;
border-radius: 50%;
animation: spin .7s linear infinite
}

.cf-submit.loading .btn-label {
display: none
}

.cf-submit.loading .spinner {
display: block
}

@keyframes spin {
to {
transform: rotate(360deg)
}
}

.cf-note {
display: flex;
align-items: center;
justify-content: center;
gap: 5px;
font-size: 12px;
color: var(--mist);
margin-top: var(--s3);
text-align: center;
}

.cf-note svg {
width: 13px;
height: 13px;
color: var(--acacia);
flex-shrink: 0
}

/* Success state */
.cf-success {
display: none;
flex-direction: column;
align-items: center;
text-align: center;
gap: var(--s4);
padding: var(--s10) var(--s6);
}

.cf-success.show {
display: flex
}

.cf-success-ico {
width: 72px;
height: 72px;
border-radius: 50%;
background: rgba(26, 112, 64, .1);
display: flex;
align-items: center;
justify-content: center;
font-size: 32px;
line-height: 1;
}

.cf-success h3 {
font-family: var(--fd);
font-size: 1.5rem;
font-weight: 700;
color: var(--ink)
}

.cf-success p {
font-size: 14.5px;
color: var(--mist);
line-height: 1.72;
max-width: 400px
}

.cf-success-back {
display: inline-flex;
align-items: center;
gap: var(--s2);
padding: var(--s3) var(--s6);
background: var(--earth-dk);
color: var(--white);
border-radius: var(--rpill);
font-size: 14px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background var(--t);
}

.cf-success-back:hover {
background: var(--savanna)
}

/* ================================================================
RIGHT SIDEBAR — office info, hours, social
================================================================ */
.ct-sidebar {
display: flex;
flex-direction: column;
gap: var(--s5)
}

/* Office details card */
.office-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
overflow: hidden;
}

.oc-head {
background: var(--night);
padding: var(--s4) var(--s5);
display: flex;
align-items: center;
gap: var(--s3);
}

.oc-head-ico {
font-size: 20px;
line-height: 1
}

.oc-head h3 {
font-family: var(--fd);
font-size: 1.05rem;
font-weight: 700;
color: var(--white)
}

.oc-head p {
font-size: 12px;
color: rgba(255, 255, 255, .5);
margin-top: 1px
}

.oc-list {
display: flex;
flex-direction: column
}

.oc-item {
display: flex;
align-items: flex-start;
gap: var(--s3);
padding: var(--s3) var(--s5);
border-bottom: 1px solid var(--border);
}

.oc-item:last-child {
border-bottom: none
}

.oc-icon {
width: 34px;
height: 34px;
border-radius: var(--rsm);
background: var(--savanna-pl);
display: flex;
align-items: center;
justify-content: center;
color: var(--earth);
flex-shrink: 0;
margin-top: 1px;
}

.oc-icon svg {
width: 15px;
height: 15px
}

.oc-info {
min-width: 0
}

.oc-label {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
color: var(--mist);
line-height: 1
}

.oc-val {
font-size: 14px;
font-weight: 600;
color: var(--ink);
margin-top: 2px;
line-height: 1.4;
word-break: break-word
}

.oc-val a {
color: var(--earth);
transition: color var(--t)
}

.oc-val a:hover {
color: var(--savanna)
}

.oc-sub {
font-size: 12px;
color: var(--mist);
margin-top: 1px
}

/* Hours card */
.hours-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
padding: var(--s5);
}

.hours-card h3 {
font-family: var(--fd);
font-size: 1rem;
font-weight: 700;
color: var(--ink);
margin-bottom: var(--s4);
display: flex;
align-items: center;
gap: var(--s2);
}

.hours-card h3 svg {
width: 16px;
height: 16px;
color: var(--savanna);
flex-shrink: 0
}

.hours-rows {
display: flex;
flex-direction: column;
gap: var(--s2)
}

.hours-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: var(--s2) var(--s3);
border-radius: var(--rsm);
}

.hours-row.today {
background: rgba(192, 112, 51, .08);
border: 1px solid rgba(192, 112, 51, .18)
}

.hours-day {
font-size: 13.5px;
font-weight: 600;
color: var(--ink)
}

.hours-row.today .hours-day {
color: var(--earth)
}

.hours-time {
font-size: 13px;
color: var(--mist);
font-weight: 500
}

.hours-row.today .hours-time {
color: var(--savanna);
font-weight: 700
}

.hours-badge {
display: inline-flex;
align-items: center;
gap: 4px;
font-size: 10.5px;
font-weight: 700;
color: var(--success);
background: rgba(26, 112, 64, .1);
border: 1px solid rgba(26, 112, 64, .2);
border-radius: var(--rpill);
padding: 2px 8px;
margin-top: var(--s3);
}

.hours-badge::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--success);
display: inline-block
}

/* Social card */
.social-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
padding: var(--s5);
}

.social-card h3 {
font-family: var(--fd);
font-size: 1rem;
font-weight: 700;
color: var(--ink);
margin-bottom: var(--s4);
}

.social-links {
display: flex;
flex-direction: column;
gap: var(--s2)
}

.social-link {
display: flex;
align-items: center;
gap: var(--s3);
padding: var(--s3) var(--s4);
border: 1px solid var(--border);
border-radius: var(--rmd);
transition: all var(--t);
}

.social-link:hover {
border-color: var(--savanna);
background: var(--savanna-pl)
}

.sl-icon {
width: 36px;
height: 36px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
font-size: 17px;
line-height: 1;
}

.sl-info {
display: flex;
flex-direction: column;
gap: 1px;
flex: 1;
min-width: 0
}

.sl-name {
font-size: 13.5px;
font-weight: 700;
color: var(--ink)
}

.sl-handle {
font-size: 12px;
color: var(--mist)
}

.sl-arrow {
width: 16px;
height: 16px;
color: var(--mist);
flex-shrink: 0;
transition: color var(--t)
}

.social-link:hover .sl-arrow {
color: var(--savanna)
}

/* ================================================================
MAP SECTION
================================================================ */
.map-section {
margin-bottom: var(--s10)
}

.map-head {
margin-bottom: var(--s5)
}

.map-sec-label {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .14em;
color: var(--savanna);
margin-bottom: var(--s2);
display: block
}

.map-sec-title {
font-family: var(--fd);
font-size: clamp(1.5rem, 3.5vw, 2.1rem);
font-weight: 700;
color: var(--ink);
line-height: 1.2
}

.map-sec-sub {
font-size: 15px;
color: var(--mist);
margin-top: var(--s2);
line-height: 1.65;
max-width: 620px
}

.map-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--s5);
}

@media(min-width:768px) {
.map-grid {
grid-template-columns: 1fr 360px;
align-items: start
}
}

/* Embedded map */
.map-embed-wrap {
border-radius: var(--rxl);
overflow: hidden;
border: 1px solid var(--border);
box-shadow: var(--sh-sm);
aspect-ratio: 16/9;
min-height: 260px;
background: var(--ivory-dk);
position: relative;
}

.map-embed-wrap iframe {
width: 100%;
height: 100%;
display: block;
border: none;
filter: saturate(.95);
}

/* Map overlay — custom look card */
.map-overlay-card {
position: absolute;
bottom: var(--s4);
left: var(--s4);
background: rgba(10, 21, 16, .9);
backdrop-filter: blur(8px);
border: 1px solid rgba(192, 112, 51, .28);
border-radius: var(--rmd);
padding: var(--s3) var(--s4);
display: flex;
align-items: center;
gap: var(--s3);
max-width: calc(100% - var(--s8));
z-index: 2;
}

.moc-pin {
font-size: 18px;
line-height: 1;
flex-shrink: 0
}

.moc-text {
min-width: 0
}

.moc-name {
font-size: 13px;
font-weight: 700;
color: var(--white);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis
}

.moc-addr {
font-size: 11px;
color: rgba(255, 255, 255, .52)
}

/* Location info panel */
.location-info {
background: var(--white);
border: 1px solid var(--border);
border-radius: var(--rxl);
padding: var(--s5);
display: flex;
flex-direction: column;
gap: var(--s4);
}

.li-head {
font-family: var(--fd);
font-size: 1.1rem;
font-weight: 700;
color: var(--ink);
margin-bottom: var(--s1)
}

.li-address {
font-size: 14px;
color: var(--mist);
line-height: 1.7
}

.li-directions {
display: flex;
flex-direction: column;
gap: var(--s2);
padding-top: var(--s4);
border-top: 1px solid var(--border);
}

.li-dir-item {
display: flex;
align-items: flex-start;
gap: var(--s3);
font-size: 13.5px;
color: var(--rock);
line-height: 1.5;
}

.li-dir-item::before {
content: '';
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--savanna-pl);
border: 1px solid rgba(192, 112, 51, .2);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 1px;
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='%23C07033' 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;
}

.li-map-btn {
display: inline-flex;
align-items: center;
gap: var(--s2);
padding: var(--s3) var(--s5);
background: var(--earth-dk);
color: var(--white);
border-radius: var(--rpill);
font-size: 13.5px;
font-weight: 700;
transition: background var(--t);
align-self: flex-start;
}

.li-map-btn:hover {
background: var(--savanna)
}

.li-map-btn svg {
width: 14px;
height: 14px;
flex-shrink: 0
}

/* ================================================================
FAQ SECTION
================================================================ */
.faq-section {
margin-bottom: var(--s10)
}

.faq-sec-head {
margin-bottom: var(--s6)
}

.faq-sec-label {
font-size: 10.5px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .14em;
color: var(--savanna);
margin-bottom: var(--s2);
display: block
}

.faq-sec-title {
font-family: var(--fd);
font-size: clamp(1.5rem, 3.5vw, 2.1rem);
font-weight: 700;
color: var(--ink);
line-height: 1.2
}

.faq-grid {
display: grid;
grid-template-columns: 1fr;
gap: 0;
}

@media(min-width:768px) {
.faq-grid {
grid-template-columns: 1fr 1fr;
gap: 0 var(--s8)
}
}

.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: 14.5px;
font-weight: 600;
color: var(--ink);
cursor: pointer;
transition: color var(--t);
line-height: 1.45;
}

.faq-btn:hover {
color: var(--earth)
}

.faq-btn[aria-expanded="true"] {
color: var(--earth-dk)
}

.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);
color: var(--savanna)
}

.faq-ans {
display: none;
padding-bottom: var(--s5);
font-size: 14px;
color: var(--mist);
line-height: 1.75
}

.faq-ans.open {
display: block
}

.faq-ans a {
color: var(--earth);
font-weight: 600;
text-decoration: underline;
text-underline-offset: 2px
}

.faq-ans a:hover {
color: var(--savanna)
}

/* ================================================================
BOTTOM CTA BAND
================================================================ */
.cta-band {
background: linear-gradient(135deg, var(--earth-dk) 0%, var(--earth) 60%, rgba(192, 112, 51, .55) 100%);
border-radius: var(--rxl);
padding: var(--s8);
position: relative;
overflow: hidden;
margin-bottom: var(--s8);
}

.cta-band::after {
content: '';
position: absolute;
top: -60px;
right: -60px;
width: 240px;
height: 240px;
border-radius: 50%;
background: rgba(255, 255, 255, .04)
}

.cta-inner {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: var(--s5);
align-items: flex-start;
}

@media(min-width:700px) {
.cta-inner {
flex-direction: row;
align-items: center;
justify-content: space-between
}
}

.cta-text h2 {
font-family: var(--fd);
font-size: clamp(1.3rem, 3.5vw, 1.9rem);
font-weight: 700;
color: var(--white);
line-height: 1.3;
margin-bottom: var(--s2)
}

.cta-text h2 em {
font-style: italic;
color: var(--lion-lt)
}

.cta-text p {
font-size: 14px;
color: rgba(255, 255, 255, .62);
line-height: 1.65;
max-width: 440px
}

.cta-btns {
display: flex;
flex-wrap: wrap;
gap: var(--s3);
flex-shrink: 0
}

.cta-btn {
display: inline-flex;
align-items: center;
gap: var(--s2);
padding: var(--s4) var(--s6);
border-radius: var(--rpill);
font-size: 14px;
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
}

/* ================================================================
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: 120px
}

.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-row {
display: flex;
gap: var(--s2);
margin-top: var(--s4)
}

.f-social-link {
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-link:hover {
background: var(--savanna);
color: var(--white)
}

.f-social-link 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)
}
