/* =============================================================
   Titiru Eco Lodge — Premium Eco-Resort Design System
   site.css — tokens, components, layout & animations
   ============================================================= */

/* ── RESET & TOKENS ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* — Palette — */
    --bg:      #F4F7F6;
    --bg2:     #E8EDEB;
    --bg3:     #DCE5E2;
    --ink:     #0A2E26;
    --ink2:    #163D33;
    --muted:   #5C7A71;
    --border:  #C8D8D2;
    --accent:  #116466;
    --accent-glow: rgba(17,100,102,.18);
    --accent2: #D4A574;
    --accent2-glow: rgba(212,165,116,.18);
    --sky:     #1A8FBF;
    --coral:   #D94E3F;
    --white:   #ffffff;
    --sand:    #F9F5F0;

    /* — Typography — */
    --h-font:  'Lora', serif;
    --f:       'Montserrat', system-ui, sans-serif;

    /* — Shadows — */
    --shadow-sm:  0 2px 8px rgba(10,46,38,.06);
    --shadow-md:  0 8px 30px rgba(10,46,38,.08);
    --shadow-lg:  0 16px 50px rgba(10,46,38,.12);
    --shadow-xl:  0 24px 80px rgba(10,46,38,.16);

    /* — Easing — */
    --ease-out: cubic-bezier(.22,1,.36,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--f);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6,
.hero-title, .services-title, .cta-band-title, .cases-title, .team-title, .testi-title, .booking-title {
    font-family: var(--h-font);
}

/* ── UTILITIES ────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

.btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--f); font-weight: 600; font-size: 0.82rem;
    padding: 12px 26px; border-radius: 100px;
    border: none; cursor: pointer;
    transition: all .3s var(--ease-out);
    text-decoration: none; white-space: nowrap;
    position: relative; overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.15) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform .5s var(--ease-out);
}
.btn:hover::after { transform: translateX(100%); }

.btn-dark    { background: var(--ink);    color: var(--bg); }
.btn-dark:hover { background: var(--accent); box-shadow: 0 4px 20px var(--accent-glow); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-accent  { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #0D5E5A; box-shadow: 0 4px 20px var(--accent-glow); transform: translateY(-1px); }
.btn-white   { background: var(--white);  color: var(--ink); }
.btn-white:hover { background: var(--sand); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 15px 34px; font-size: 0.88rem; }

/* Pulse effect on primary CTA */
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { box-shadow: 0 0 0 12px transparent; }
}
.btn-accent.btn-lg { animation: ctaPulse 3s ease-in-out infinite; }
.btn-accent.btn-lg:hover { animation: none; }

.tag-pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 6px 14px; border-radius: 100px;
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    backdrop-filter: blur(8px);
    transition: transform .2s var(--ease-out);
}
.tag-pill:hover { transform: scale(1.05); }

.eyebrow {
    font-size: 0.68rem; font-weight: 600;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent);
}

.hl { color: var(--accent); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
html.js-loaded .reveal   { opacity: 0; transform: translateY(30px);  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
html.js-loaded .reveal-l { opacity: 0; transform: translateX(-30px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
html.js-loaded .reveal-r { opacity: 0; transform: translateX(30px);  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.in, .reveal-l.in, .reveal-r.in { opacity: 1 !important; transform: none !important; }

/* Staggered child reveals — hidden state */
html.js-loaded .reveal .svc-card,
html.js-loaded .reveal .testi-card,
html.js-loaded .reveal .contact-card {
    opacity: 0; transform: translateY(20px);
    transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
/* Staggered child reveals — visible state (must match specificity!) */
html.js-loaded .reveal.in .svc-card,
html.js-loaded .reveal.in .testi-card,
html.js-loaded .reveal.in .contact-card {
    opacity: 1; transform: none;
}
html.js-loaded .reveal.in .svc-card:nth-child(1),
html.js-loaded .reveal.in .testi-card:nth-child(1),
html.js-loaded .reveal.in .contact-card:nth-child(1) { transition-delay: 0s; }
html.js-loaded .reveal.in .svc-card:nth-child(2),
html.js-loaded .reveal.in .testi-card:nth-child(2),
html.js-loaded .reveal.in .contact-card:nth-child(2) { transition-delay: .08s; }
html.js-loaded .reveal.in .svc-card:nth-child(3),
html.js-loaded .reveal.in .testi-card:nth-child(3) { transition-delay: .16s; }
html.js-loaded .reveal.in .svc-card:nth-child(4) { transition-delay: .24s; }
html.js-loaded .reveal.in .svc-card:nth-child(5) { transition-delay: .32s; }
html.js-loaded .reveal.in .svc-card:nth-child(6) { transition-delay: .40s; }
html.js-loaded .reveal.in .svc-card:nth-child(7) { transition-delay: .48s; }
html.js-loaded .reveal.in .svc-card:nth-child(8) { transition-delay: .56s; }
html.js-loaded .reveal.in .svc-card:nth-child(9) { transition-delay: .64s; }
html.js-loaded .reveal.in .svc-card:nth-child(10) { transition-delay: .72s; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.nav {
    position: fixed; inset: 0 0 auto 0; z-index: 600;
    height: 66px;
    display: flex; align-items: center;
    padding: 0 40px;
    background: rgba(244,247,246,.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,216,210,.5);
    transition: all .35s var(--ease-out);
}
.nav.nav-scrolled {
    height: 56px;
    background: rgba(244,247,246,.96);
    box-shadow: var(--shadow-sm);
    border-bottom-color: transparent;
}
.nav-logo {
    font-size: 1.1rem; font-weight: 800; letter-spacing: -0.03em;
    color: var(--ink); margin-right: auto;
}
.nav-logo span { color: var(--accent); }
.nav-links { list-style: none; display: flex; gap: 32px; margin-right: 28px; }
.nav-links a {
    font-size: 0.82rem; font-weight: 500; color: var(--muted);
    transition: color .2s var(--ease-out);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--accent);
    transform: scaleX(0);
    transition: transform .25s var(--ease-out);
    transform-origin: right;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── HAMBURGER BUTTON ─────────────────────────────────────── */
.hamburger {
    display: none;
    width: 36px; height: 36px;
    background: none; border: none; cursor: pointer;
    position: relative; z-index: 700;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    padding: 0;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transition: all .3s var(--ease-out);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ───────────────────────────────────── */
.mobile-nav-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 590;
    background: rgba(10,46,38,.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .3s var(--ease-out);
    pointer-events: none;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav-panel {
    display: none;
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 595;
    width: 300px; max-width: 85vw;
    background: var(--white);
    padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
}
.mobile-nav-panel.open { transform: translateX(0); }
.mobile-nav-panel ul {
    list-style: none; display: flex;
    flex-direction: column; gap: 6px;
}
.mobile-nav-panel a {
    display: block; padding: 14px 16px;
    font-size: 1rem; font-weight: 500; color: var(--ink);
    border-radius: 12px;
    transition: all .2s var(--ease-out);
}
.mobile-nav-panel a:hover { background: var(--bg); color: var(--accent); }
body.nav-open { overflow: hidden; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
    padding-top: 66px;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; overflow: hidden;
    background:
        linear-gradient(
            175deg,
            rgba(244,247,246,.88) 0%,
            rgba(244,247,246,.75) 40%,
            rgba(244,247,246,.6) 100%
        ),
        url('/images/im1_bck.jpg') center/cover no-repeat;
}
/* Decorative floating orbs */
.hero::before {
    content: '';
    position: absolute; top: -120px; right: -80px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(17,100,102,.08) 0%, transparent 70%);
    animation: floatOrb 8s ease-in-out infinite;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -60px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,165,116,.06) 0%, transparent 70%);
    animation: floatOrb 10s ease-in-out infinite reverse;
    pointer-events: none;
}
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-inner {
    padding: 60px 40px 48px;
    max-width: 1160px; margin: 0 auto; width: 100%;
    position: relative; z-index: 2;
}
.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 800; line-height: 1.02;
    letter-spacing: -0.04em;
    color: var(--ink); max-width: 860px;
    margin-bottom: 28px;
}
.hero-title .italic { font-style: italic; font-weight: 300; color: var(--accent); }
.hero-row {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    gap: 40px; flex-wrap: wrap;
}
.hero-desc {
    font-size: 1rem; font-weight: 300; line-height: 1.8;
    color: var(--muted); max-width: 420px;
}
.hero-desc strong { color: var(--ink); font-weight: 600; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* Avatar row */
.hero-avatars { display: flex; align-items: center; margin-top: 22px; }
.hero-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    border: 2.5px solid var(--bg);
    margin-left: -10px; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; font-weight: 700; color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar-label { margin-left: 14px; font-size: 0.78rem; font-weight: 500; color: var(--muted); }
.hero-avatar-label strong { color: var(--ink); }

/* Trust logos strip */
.hero-logos {
    border-top: 1px solid var(--border);
    margin-top: 56px;
    padding: 24px 40px;
    max-width: 1160px; margin-left: auto; margin-right: auto;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.hero-logos-label {
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--muted);
    margin-right: 8px; white-space: nowrap;
}
.logo-chip {
    padding: 7px 18px; border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.75rem; font-weight: 600;
    color: var(--muted); letter-spacing: 0.03em;
    background: var(--white);
    transition: all .25s var(--ease-out);
}
.logo-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Floating hero toggle */
.hero-toggle {
    position: absolute; top: 82px; right: 40px;
    display: flex; background: var(--white);
    border: 1px solid var(--border); border-radius: 100px;
    padding: 4px; gap: 4px;
    box-shadow: var(--shadow-md);
    z-index: 3;
}
.toggle-btn {
    padding: 8px 20px; border-radius: 100px; border: none;
    font-family: var(--f); font-size: 0.75rem; font-weight: 600;
    cursor: pointer; transition: all .25s var(--ease-out);
    background: transparent; color: var(--muted);
}
.toggle-btn.active { background: var(--ink); color: var(--white); }
.toggle-btn:hover:not(.active) { color: var(--ink); }

/* ── TICKER ───────────────────────────────────────────────── */
.ticker-outer {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    background: var(--white);
}
.ticker-track {
    display: flex; gap: 0;
    animation: tickerScroll 35s linear infinite;
    white-space: nowrap;
}
.ticker-track:hover { animation-play-state: paused; }
.ti {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 0 28px;
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); flex-shrink: 0;
    transition: color .2s;
}
.ti:hover { color: var(--ink); }
.ti-sep { color: var(--accent); font-size: 1rem; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── INTRO / ABOUT ────────────────────────────────────────── */
.intro { padding: 88px 0 72px; }
.intro-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start;
}
.intro-taglines { display: flex; flex-direction: column; gap: 14px; }
.intro-tagline {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 0.88rem; font-weight: 600; color: var(--ink);
    padding: 12px 20px; border-radius: 100px;
    border: 1.5px solid var(--border); background: var(--white);
    width: fit-content;
    transition: all .25s var(--ease-out);
}
.intro-tagline:hover {
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}
.intro-tagline .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.intro-tagline .num { margin-left: auto; font-size: 0.7rem; color: var(--muted); font-weight: 400; }
.intro-copy { padding-top: 12px; }
.intro-lead {
    font-size: 1.4rem; font-weight: 700; line-height: 1.5;
    letter-spacing: -0.02em; color: var(--ink); margin-bottom: 20px;
}
.intro-lead .hl { color: var(--accent); }
.intro-body { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.85; }

/* ── STATS ────────────────────────────────────────────────── */
.stats { padding: 0 0 88px; }
.stats-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 1px; background: var(--border);
    border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
}
.stat-item {
    background: var(--white); padding: 48px 44px;
    display: flex; flex-direction: column; gap: 10px;
    transition: background .3s;
}
.stat-item:hover { background: var(--sand); }
.stat-num {
    font-size: 3.8rem; font-weight: 800;
    letter-spacing: -0.04em; line-height: 1; color: var(--ink);
}
.stat-num .plus { color: var(--accent); }
.stat-desc { font-size: 0.82rem; font-weight: 400; color: var(--muted); line-height: 1.6; max-width: 200px; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services { 
    padding: 100px 0; 
    position: relative;
}
.services .container { position: relative; z-index: 2; }
.services .services-title { color: var(--white); }
.services .services-title .hl { color: var(--accent2); }
.services .intro-body.services-intro { color: rgba(255,255,255,0.85); text-shadow: 0 1px 3px rgba(0,0,0,0.4); }
.services .intro-body.services-intro strong { color: var(--white); }
.services .eyebrow { color: var(--accent2); }
.services-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px; flex-wrap: wrap; gap: 24px;
}
.services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
}
.services-title .hl { color: var(--accent); }
.services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.svc-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 22px; padding: 34px 30px;
    display: flex; flex-direction: column; gap: 14px;
    transition: all .35s var(--ease-out);
    position: relative;
}
.svc-card::before {
    content: '';
    position: absolute; top: -1px; left: 24px; right: 24px;
    height: 3px; border-radius: 0 0 3px 3px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform .35s var(--ease-out);
}
.svc-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: rgba(17,100,102,.2);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-icon {
    width: 52px; height: 52px; border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    transition: transform .3s var(--ease-spring);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-3deg); }
.svc-name { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.svc-desc { font-size: 0.82rem; font-weight: 300; color: var(--muted); line-height: 1.75; flex: 1; }
.svc-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.svc-features li {
    font-size: 0.75rem; color: var(--muted); font-weight: 400;
    padding-left: 16px; position: relative;
}
.svc-features li::before { content: '→'; position: absolute; left: 0; color: var(--accent); font-size: 0.7rem; }

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band-inner {
    background: linear-gradient(135deg, var(--ink) 0%, #0D3D35 50%, #0A2E26 100%);
    border-radius: 28px;
    padding: 64px 68px;
    display: grid; grid-template-columns: 1fr auto;
    gap: 48px; align-items: center;
    position: relative; overflow: hidden;
}
/* Shimmer effect */
.cta-band-inner::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(17,100,102,.15) 50%, transparent 70%);
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}
.cta-band-inner::after {
    content: '';
    position: absolute; top: -50px; right: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(212,165,116,.08);
    pointer-events: none;
}
.cta-band-eyebrow { color: var(--accent2); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-band-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800; letter-spacing: -0.03em;
    line-height: 1.15; color: var(--white);
    position: relative; z-index: 1;
}
.cta-band-title em { font-style: italic; font-weight: 300; color: var(--accent2); }
.cta-band-sub {
    margin-top: 12px; font-size: 0.88rem; font-weight: 300;
    color: rgba(244,247,246,.5); line-height: 1.7;
    position: relative; z-index: 1;
}
.cta-band-btns { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; position: relative; z-index: 1; }

/* ── CASE STUDIES (Experiences) ───────────────────────────── */
.cases { padding: 96px 0; }
.cases-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.cases-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
}
.cases-title .italic { font-style: italic; font-weight: 300; color: var(--muted); }
.cases-list { display: flex; flex-direction: column; gap: 20px; }

.case-card {
    display: grid; grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: 22px; overflow: hidden;
    background: var(--white);
    transition: box-shadow .3s var(--ease-out);
}
.case-card:hover { box-shadow: var(--shadow-lg); }
.case-card.flip { direction: rtl; }
.case-card.flip > * { direction: ltr; }

.case-visual {
    position: relative; min-height: 340px;
    display: flex; align-items: center; justify-content: center;
    padding: 40px; overflow: hidden;
}
.case-visual img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.case-visual-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.3), rgba(0,0,0,.05));
    pointer-events: none;
}
.case-visual-mockup {
    position: relative; z-index: 2;
    background: var(--white); border-radius: 16px; padding: 20px;
    max-width: 280px; width: 100%;
    box-shadow: var(--shadow-xl);
}
.mockup-bar  { display: flex; gap: 5px; margin-bottom: 14px; }
.m-dot       { width: 9px; height: 9px; border-radius: 50%; }
.mockup-heading { height: 10px; border-radius: 4px; margin-bottom: 7px; }
.mockup-line    { height: 6px;  border-radius: 4px; margin-bottom: 5px; opacity: .45; }
.mockup-grid    { display: flex; gap: 8px; margin-top: 12px; }
.mockup-block   { flex: 1; border-radius: 8px; }

.case-content {
    padding: 48px 52px;
    display: flex; flex-direction: column; justify-content: center; gap: 18px;
}
.case-num  { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.case-name { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
.case-desc { font-size: 0.88rem; font-weight: 300; color: var(--muted); line-height: 1.75; }
.case-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.case-result { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.case-result-num   { font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
.case-result-label { font-size: 0.78rem; font-weight: 400; color: var(--muted); line-height: 1.4; max-width: 140px; }

/* ── TEAM / COMPLIMENTARY ─────────────────────────────────── */
.team {
    padding: 88px 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(17,100,102,.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,165,116,.03) 0%, transparent 50%),
        var(--bg);
}
.team-head { margin-bottom: 48px; }
.team-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.team-sub   { margin-top: 10px; font-size: 0.9rem; font-weight: 300; color: var(--muted); }
.team-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.team-card  {
    border-radius: 22px; overflow: hidden;
    background: var(--white); border: 1.5px solid var(--border);
    transition: all .3s var(--ease-out);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(17,100,102,.15); }
.team-photo { height: 240px; position: relative; overflow: hidden; }
.team-photo-fill {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem;
}
.team-info    { padding: 22px; }
.team-name    { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 3px; }
.team-role    { font-size: 0.76rem; font-weight: 400; color: var(--muted); margin-bottom: 12px; }
.team-socials { display: flex; gap: 8px; }
.team-social  {
    width: 30px; height: 30px; border-radius: 8px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; transition: all .2s var(--ease-out);
}
.team-social:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery { padding: 88px 0; background: var(--bg); }
.gallery-head { text-align: center; margin-bottom: 48px; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 16px;
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--border);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s var(--ease-out);
}
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,46,38,.7) 0%, rgba(10,46,38,0) 60%);
    opacity: 0;
    transition: opacity .4s var(--ease-out);
    display: flex; align-items: flex-end; justify-content: flex-start;
    padding: 24px;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
    color: var(--white); display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.4);
    transform: translateY(10px); opacity: 0;
    transition: all .4s var(--ease-spring); transition-delay: .1s;
}
.gallery-item:hover .gallery-icon { transform: translateY(0); opacity: 1; }

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testi {
    padding: 88px 0;
    background: var(--bg2);
}
.testi-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.testi-head  { margin-bottom: 48px; }
.testi-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.03em; }
.testi-title em { font-style: italic; font-weight: 300; color: var(--muted); }
.testi-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
}
.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 20px; padding: 34px 30px;
    display: flex; flex-direction: column; gap: 16px;
    transition: all .3s var(--ease-out);
}
.testi-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-left-color: var(--accent2);
}
.testi-stars  { color: var(--accent2); font-size: 0.9rem; letter-spacing: 2px; }
.testi-quote  { font-size: 0.9rem; font-weight: 400; line-height: 1.8; color: var(--ink2); flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.testi-name { font-size: 0.82rem; font-weight: 700; }
.testi-loc  { font-size: 0.73rem; color: var(--muted); margin-top: 1px; }
.testi-stat {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--ink) 0%, #0D3D35 100%);
    border-radius: 22px; padding: 48px 56px;
    display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
    position: relative; overflow: hidden;
}
.testi-stat::before {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 160px; height: 160px; border-radius: 50%;
    background: rgba(17,100,102,.15);
    pointer-events: none;
}
.testi-stat-num  { font-size: 4.2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--accent2); line-height: 1; position: relative; }
.testi-stat-text { font-size: 1rem; font-weight: 400; color: rgba(244,247,246,.55); line-height: 1.65; max-width: 380px; position: relative; }
.testi-stat-text strong { color: var(--white); }

/* ── BOOKING ──────────────────────────────────────────────── */
.booking {
    padding: 96px 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(17,100,102,.04) 0%, transparent 40%),
        var(--bg);
}
.booking-inner {
    display: grid; grid-template-columns: 1fr 440px;
    gap: 80px; align-items: start;
}
.booking-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px;
}
.booking-title .hl { color: var(--accent); }
.booking-subtitle { font-size: 0.9rem; font-weight: 300; color: var(--muted); line-height: 1.75; margin-bottom: 36px; }

.why-box {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 22px; padding: 34px 30px; margin-bottom: 22px;
    transition: border-color .3s;
}
.why-box:hover { border-color: rgba(17,100,102,.2); }
.why-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.why-list  { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: center; gap: 12px; font-size: 0.84rem; font-weight: 400; color: var(--ink2); }
.why-check {
    width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
    background: rgba(17,100,102,.1); border: 1px solid rgba(17,100,102,.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.62rem; font-weight: 700; color: var(--accent);
    transition: all .2s;
}
.why-list li:hover .why-check { background: var(--accent); color: var(--white); }

.info-box {
    background: linear-gradient(135deg, var(--ink) 0%, #0D3D35 100%);
    border-radius: 22px; padding: 30px; color: var(--white);
}
.info-box-title {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(244,247,246,.4); margin-bottom: 10px;
}
.info-box p   { font-size: 0.84rem; font-weight: 300; color: rgba(244,247,246,.55); line-height: 1.7; margin-bottom: 10px; }
.info-phone   { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; color: var(--accent2); }

/* Booking form card */
.booking-form {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 26px; padding: 38px 34px;
    box-shadow: var(--shadow-md);
    position: sticky; top: 80px;
}
.form-title { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 28px; }
.form-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-full  { grid-column: 1/-1; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted);
    transition: color .2s;
}
.field:focus-within label { color: var(--accent); }

.field input,
.field select,
.field textarea,
.form-control {
    background: var(--bg); border: 1.5px solid var(--border);
    border-radius: 12px; padding: 13px 16px;
    font-family: var(--f); font-size: 0.86rem; font-weight: 400;
    color: var(--ink); outline: none;
    transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
    width: 100%;
}
.field input:focus,
.field select:focus,
.field textarea:focus,
.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background: var(--white);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(0,0,0,.22); }
.field select option { background: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.field-err { font-size: 0.72rem; color: var(--coral); min-height: 14px; }

.form-submit {
    width: 100%; padding: 16px; font-size: 0.9rem;
    border-radius: 14px; justify-content: center; margin-top: 8px;
    font-weight: 700;
}
.form-msg {
    grid-column: 1/-1; padding: 14px 20px; border-radius: 12px;
    font-size: 0.84rem; text-align: center; margin-bottom: 16px;
}
.form-msg.ok  { background: rgba(17,100,102,.08);  border: 1px solid rgba(17,100,102,.2); color: var(--accent); }
.form-msg.err { background: rgba(217,78,63,.08);  border: 1px solid rgba(217,78,63,.18);  color: var(--coral);  }

/* ── QR CONFIRMATION CARD ─────────────────────────────────── */
.qr-confirmation-card {
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 22px;
    padding: 0;
    margin-bottom: 28px;
    overflow: hidden;
    animation: qrSlideIn .5s var(--ease-out);
}
@keyframes qrSlideIn {
    from { opacity: 0; transform: translateY(-12px) scale(.97); }
    to   { opacity: 1; transform: none; }
}
.qr-confirmation-header {
    background: linear-gradient(135deg, var(--ink) 0%, #0D3D35 100%);
    padding: 28px 28px 24px;
    text-align: center;
}
.qr-success-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; font-weight: 800;
    margin: 0 auto 14px;
    animation: qrPop .4s var(--ease-spring) .2s both;
}
@keyframes qrPop {
    from { transform: scale(0); }
    to   { transform: scale(1); }
}
.qr-confirmation-title {
    font-family: var(--h-font);
    font-size: 1.2rem; font-weight: 700;
    color: var(--white); margin-bottom: 6px;
}
.qr-confirmation-subtitle {
    font-size: 0.82rem; font-weight: 400;
    color: rgba(244,247,246,.6); line-height: 1.5;
}
.qr-code-area {
    padding: 28px;
    text-align: center;
    background: var(--sand);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.qr-code-label {
    font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 16px;
}
#booking-qrcode {
    display: flex; justify-content: center;
    padding: 14px; background: var(--white);
    border-radius: 14px; border: 1px solid var(--border);
    width: fit-content; margin: 0 auto;
    box-shadow: var(--shadow-sm);
}
.qr-booking-ref {
    margin-top: 12px;
    font-size: 0.88rem; font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.08em;
    color: var(--ink);
}
.qr-confirmation-footer {
    padding: 18px 28px;
    display: flex; flex-direction: column; gap: 6px;
}
.qr-confirmation-footer p {
    font-size: 0.78rem; font-weight: 400;
    color: var(--muted); line-height: 1.5;
}

/* ── CONTACT ──────────────────────────────────────────────── */
.contact { padding: 88px 0; background: var(--bg2); }
.contact-inner { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
.contact-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 48px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card  {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 18px; padding: 24px 26px;
    display: flex; gap: 16px; align-items: flex-start;
    transition: all .25s var(--ease-out);
}
.contact-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.cc-icon  {
    width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
    background: rgba(17,100,102,.06); border: 1px solid rgba(17,100,102,.1);
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    transition: all .2s;
}
.contact-card:hover .cc-icon { background: var(--accent); border-color: var(--accent); }
.contact-card:hover .cc-icon::after { filter: brightness(10); }
.cc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.cc-value { font-size: 0.84rem; font-weight: 400; color: var(--muted); line-height: 1.6; }
.cc-value a { color: inherit; transition: color .18s; }
.cc-value a:hover { color: var(--accent); }
.map-note { margin-top: 10px; font-size: 0.74rem; color: var(--muted); text-align: center; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
    background: linear-gradient(180deg, var(--ink) 0%, #061E18 100%);
    color: var(--bg);
    padding: 68px 40px 36px;
}
.footer-grid {
    max-width: 1160px; margin: 0 auto;
    display: grid; grid-template-columns: 1.8fr repeat(3,1fr);
    gap: 48px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo-name    { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; color: var(--bg); }
.footer-logo-name span { color: var(--accent2); }
.footer-logo-sub     { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-top: 2px; margin-bottom: 14px; }
.footer-tagline      { font-size: 0.82rem; font-weight: 300; color: rgba(244,247,246,.35); line-height: 1.7; max-width: 240px; }
.footer-col-title    { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,247,246,.25); margin-bottom: 18px; }
.footer-links        { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a      { font-size: 0.84rem; font-weight: 300; color: rgba(244,247,246,.45); transition: all .2s var(--ease-out); }
.footer-links a:hover { color: var(--accent2); transform: translateX(3px); }
.socials { display: flex; gap: 10px; margin-top: 8px; }
.social-btn {
    width: 36px; height: 36px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
    transition: all .2s var(--ease-out);
}
.social-btn:hover { border-color: var(--accent2); background: rgba(212,165,116,.1); transform: translateY(-2px); }
.footer-bottom {
    max-width: 1160px; margin: 24px auto 0;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.74rem; font-weight: 300; color: rgba(244,247,246,.2);
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(244,247,246,.3); transition: color .2s; }
.footer-bottom a:hover { color: var(--accent2); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .team-grid     { grid-template-columns: repeat(2,1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 860px) {
    .intro-inner    { grid-template-columns: 1fr; gap: 40px; }
    .case-card,
    .case-card.flip { grid-template-columns: 1fr; direction: ltr; }
    .case-visual    { min-height: 240px; }
    .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
    .booking-inner  { grid-template-columns: 1fr; }
    .booking-form   { position: static; }
    .contact-grid   { grid-template-columns: 1fr; }
    .testi-grid     { grid-template-columns: 1fr; }
    .stats-grid     { grid-template-columns: 1fr 1fr; }

    /* Show hamburger, hide desktop links */
    .nav-links      { display: none; }
    .nav > .btn     { display: none; }
    .hamburger      { display: flex; }
    .mobile-nav-overlay,
    .mobile-nav-panel { display: block; }
}

@media (max-width: 600px) {
    .hero-title      { font-size: 2.6rem; }
    .hero-inner      { padding: 40px 24px 36px; }
    .services-grid   { grid-template-columns: 1fr; }
    .team-grid       { grid-template-columns: 1fr 1fr; }
    .footer-grid     { grid-template-columns: 1fr; }
    .form-grid       { grid-template-columns: 1fr; }
    .stats-grid      { grid-template-columns: 1fr; }
    .hero-toggle     { display: none; }
    .hero-logos       { padding: 20px 24px; }
    .cta-band-inner  { padding: 36px 28px; border-radius: 20px; }
    .testi-stat      { padding: 32px 24px; gap: 24px; }
    .nav { padding: 0 20px; }
    .container { padding: 0 20px; }
    .contact-grid { gap: 32px; }
}

@media (max-width: 420px) {
    .hero-title { font-size: 2.2rem; }
    .team-grid  { grid-template-columns: 1fr; }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .btn { width: 100%; justify-content: center; }
    .testi-stat { flex-direction: column; text-align: center; }
}
