/* =====================================================================
   MAFIA ISLAND COLLECTION by TAITA — Design System (v5)

   Direction  Modern / premium / Apple-inspired: frosted glass panels,
              soft animated gradient mesh, generous rounded corners,
              restrained but real micro-interactions.
   Palette    Ink #0A0F14 · Paper #F7F8FA · Deep Teal #0F2E2B
              Lagoon #4FE8CE · Coral #FF7A54 · Violet #8B7CF6
              (teal → violet → coral = an Indian Ocean sunset gradient,
              used as the site's signature mesh, not a generic tech gradient)
   Type       Inter (UI/display) + Fraunces italic (quotes only — keeps
              TAITA's personal voice inside an otherwise modern system)
   ===================================================================== */

:root {
    --paper:      #F7F8FA;
    --paper-dim:  #EEF0F3;
    --ink:        #0A0F14;
    --ink-soft:   #4C5560;
    --ink-faint:  #89919B;
    --deep:       #0F2E2B;
    --deep-dim:   #081C1A;
    --clay:       #FF7A54;
    --clay-dim:   #E85E38;
    --lagoon:     #4FE8CE;
    --violet:     #8B7CF6;
    --brass:      #E3B873;
    --cream:      #FFFFFF;
    --line:       rgba(10, 15, 20, 0.09);
    --line-light: rgba(255, 255, 255, 0.16);

    --glass-bg-dark:    rgba(255, 255, 255, 0.07);
    --glass-bg-light:   rgba(255, 255, 255, 0.65);
    --glass-border-dark: rgba(255, 255, 255, 0.16);
    --glass-border-light: rgba(10, 15, 20, 0.08);

    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-quote:   'Fraunces', Georgia, serif;

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 20px;
    --radius-sm: 14px;
    --radius-lg: 28px;
    --shadow-soft: 0 20px 60px -25px rgba(10, 15, 20, 0.25);
    --shadow-deep: 0 30px 90px -30px rgba(10, 15, 20, 0.4);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--brass); color: var(--cream); }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
:focus-visible { outline: 1.5px solid var(--clay); outline-offset: 3px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 760px; }

.label {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--clay);
}
.section { padding: 120px 0; position: relative; }
.section.tight { padding: 84px 0; }
@media (max-width: 780px) { .section { padding: 76px 0; } .section.tight { padding: 56px 0; } }

.hr { height: 1px; background: var(--line); width: 100%; border: none; }

/* ---------- Buttons & links ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 30px; font-weight: 600; font-size: 14px; letter-spacing: -0.01em;
    border-radius: 999px; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.btn-solid { background: linear-gradient(135deg, var(--clay) 0%, var(--clay-dim) 100%); color: var(--cream); box-shadow: 0 14px 36px -14px rgba(255,122,84,0.55); }
.btn-solid:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 20px 46px -14px rgba(255,122,84,0.65); }
.btn-line { border: 1px solid currentColor; border-radius: 999px; }
.btn-line.on-light { color: var(--ink); }
.btn-line.on-light:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-line.on-dark { color: var(--cream); border-color: var(--line-light); }
.btn-line.on-dark:hover { background: rgba(255,255,255,0.12); border-color: var(--cream); transform: translateY(-2px); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; border-bottom: 1px solid currentColor; padding-bottom: 3px; transition: opacity 0.3s; }
.link-arrow i { font-size: 12px; transition: transform 0.3s var(--ease); }
.link-arrow:hover i { transform: translateX(5px); }
.link-arrow.clay { color: var(--clay); }

/* ---------- Utility bar ---------- */
.topbar { background: rgba(8,20,18,0.9); color: rgba(255,255,255,0.75); font-size: 12.5px; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar-contacts { display: flex; gap: 24px; }
.topbar-contacts a { display: inline-flex; align-items: center; gap: 7px; transition: color 0.25s; }
.topbar-contacts a:hover { color: var(--cream); }
.lang-switch { position: relative; }
.lang-switch summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 7px; }
.lang-switch summary::-webkit-details-marker { display: none; }
.lang-menu { 
    position: absolute; 
    top: 28px; 
    right: 0; 
    background: var(--cream); 
    color: var(--ink); 
    border-radius: var(--radius); 
    box-shadow: 0 16px 40px rgba(0,0,0,0.18); 
    padding: 6px; min-width: 150px; z-index: 900; }
.lang-menu a { display: flex; gap: 8px; padding: 9px 12px; border-radius: var(--radius-sm); font-size: 13px; }
    .lang-menu a:hover { 
    background: var(--paper-dim); 
    color: var(--ink);}
    .lang-menu a.is-active { color: var(--clay); font-weight: 700; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(8,20,18,0.28); backdrop-filter: blur(18px) saturate(160%); -webkit-backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid var(--glass-border-dark); padding: 24px 0; transition: background 0.4s var(--ease), padding 0.35s var(--ease), box-shadow 0.4s; }
.site-header.is-scrolled { background: rgba(8,20,18,0.75); padding: 14px 0; box-shadow: 0 10px 40px -18px rgba(0,0,0,0.35); }
.site-header .container { max-width: 1320px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pill-badge { background: var(--glass-bg-dark); border: 1px solid var(--lagoon); color: var(--lagoon); font-size: 11px; font-weight: 700; letter-spacing: 0.04em; padding: 8px 16px; border-radius: 999px; text-transform: uppercase; backdrop-filter: blur(12px); transition: transform 0.3s var(--ease), background 0.3s; }
.pill-badge:hover { background: var(--lagoon); color: var(--deep-dim); transform: translateY(-1px); }
.brand-lockup { display: flex; flex-direction: column; line-height: 1.15; color: var(--cream); }
.brand-lockup .name { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.brand-lockup .by { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lagoon); margin-top: 3px; font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav a { color: rgba(251,249,243,0.88); font-weight: 600; font-size: 13.2px; position: relative; white-space: nowrap; }
.main-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--brass); transform: scaleX(0); transition: transform 0.3s var(--ease); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; color: var(--cream); font-size: 20px; }

@media (max-width: 1180px) {
    .main-nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); height: 100vh; background: var(--deep); flex-direction: column; justify-content: center; align-items: flex-start; gap: 22px; padding: 44px; transform: translateX(100%); transition: transform 0.4s var(--ease); z-index: 110; overflow-y: auto; }
    .main-nav.is-open { transform: translateX(0); }
    .main-nav a { font-size: 17px; }
    .nav-toggle { display: block; z-index: 120; }
    .pill-badge.hide-sm, .lang-switch.hide-sm { display: none; }
}

/* ---------- Photography placeholder blocks ----------
   No stock photography is bundled with this build. These duotone
   panels stand in for real photography — swap the element's
   background-image for a real photo/video still and the caption
   for its real credit; everything else (aspect ratio, overlay,
   caption position) is designed to hold a photograph, not a graphic. */
.photo {
    position: relative; 
    overflow: hidden; 
    background: var(--deep);
    background-image:
        url('../img/hero.jpg'),
        radial-gradient(120% 100% at 15% 10%, rgba(255,255,255,0.10), transparent 55%),
        linear-gradient(155deg, #35564F 0%, #26433F 45%, #16221F 100%);
    
    /* Fixes for the background image */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.photo::before {
    content: ''; position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

.photo-caption {
    position: absolute; left: 18px; bottom: 16px; z-index: 2;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(251,249,243,0.8);
    display: flex; align-items: center; gap: 7px;
}
.photo-caption i { color: var(--brass); }
.photo-wrap { position: relative; overflow: hidden; }
.photo-wrap .photo { position: absolute; inset: 0; }

/* ---------- Hero: gradient mesh + glass, Apple-keynote in spirit ---------- */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; color: var(--cream); margin-top: -110px; padding-top: 110px; overflow: hidden; background: var(--deep-dim); }
.hero .photo { position: absolute; inset: 0; opacity: 0.55; }
.hero .photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,14,13,0.55) 0%, rgba(6,14,13,0.45) 40%, rgba(6,14,13,0.88) 100%); }
.hero-mesh { position: absolute; inset: 0; z-index: 1; pointer-events: none; transition: transform 0.6s var(--ease); }
.hero-mesh span { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; }
.hero-mesh span.m1 { width: 620px; height: 620px; background: var(--lagoon); top: -220px; left: -160px; animation: driftA 22s ease-in-out infinite; }
.hero-mesh span.m2 { width: 560px; height: 560px; background: var(--violet); bottom: -260px; right: -140px; animation: driftB 26s ease-in-out infinite; }
.hero-mesh span.m3 { width: 420px; height: 420px; background: var(--clay); top: 30%; right: 12%; opacity: 0.35; animation: driftA 30s ease-in-out infinite reverse; }
@keyframes driftA { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.08); } }
@keyframes driftB { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px,30px) scale(1.05); } }
@media (prefers-reduced-motion: reduce) { .hero-mesh span { animation: none; } }

.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; padding: 60px 0 54px; }
.hero-badge-pill {
    display: inline-flex; align-items: center; gap: 8px; background: var(--glass-bg-dark); border: 1px solid var(--glass-border-dark);
    backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 999px; padding: 10px 22px; font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.92); margin-bottom: 34px;
}
.hero-badge-pill i { color: var(--lagoon); }
.hero-inner h1 {
    font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 6vw, 74px); line-height: 1.04;
    max-width: 880px; margin: 0 auto 6px; letter-spacing: -0.035em;
}
.hero-inner h1 .by {
    display: block; font-weight: 600; font-size: 0.38em; margin-top: 14px; letter-spacing: -0.01em;
    background: linear-gradient(90deg, var(--lagoon), var(--violet) 55%, var(--clay));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-tagline { font-family: var(--font-quote); font-style: italic; font-weight: 400; font-size: 20px; color: rgba(255,255,255,0.9); margin: 26px auto 18px; }
.hero-inner p.lead { font-size: 16px; color: rgba(255,255,255,0.68); max-width: 600px; margin: 0 auto 42px; line-height: 1.7; font-weight: 400; }
.hero-actions { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }
.btn-outline-cream {
    display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px;
    background: var(--glass-bg-dark); border: 1px solid var(--glass-border-dark);
    backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 999px; font-weight: 600; font-size: 14px; color: var(--cream); transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.btn-outline-cream:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

.hero-stat-row {
    display: flex; justify-content: center; gap: 0; max-width: 940px; margin: 0 auto;
    background: var(--glass-bg-dark); border: 1px solid var(--glass-border-dark);
    backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: var(--radius-lg); padding: 26px 10px;
}
.hero-stat-row .cell { flex: 1; display: flex; align-items: flex-start; gap: 10px; padding: 0 20px; border-left: 1px solid var(--glass-border-dark); text-align: left; }
.hero-stat-row .cell:first-child { border-left: none; }
.hero-stat-row .cell i { color: var(--lagoon); font-size: 15px; margin-top: 3px; }
.hero-stat-row .cell strong { display: block; font-size: 13px; color: var(--cream); font-weight: 600; }
.hero-stat-row .cell span { font-size: 11px; color: rgba(255,255,255,0.55); }

@media (max-width: 900px) {
    .hero { min-height: auto; padding: 150px 0 40px; }
    .hero-inner { padding: 20px 0; }
    .hero-stat-row { flex-wrap: wrap; row-gap: 18px; border-radius: var(--radius); padding: 22px 16px; }
    .hero-stat-row .cell { flex: 1 1 45%; border-left: none; padding: 0; }
}

/* ---------- Persona marquee ---------- */
.marquee-strip { background: var(--deep); overflow: hidden; padding: 22px 0; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: marquee 34s linear infinite; }
.marquee-track span { font-family: var(--font-quote); font-style: italic; font-size: 18px; color: rgba(255,255,255,0.85); white-space: nowrap; display: flex; align-items: center; gap: 46px; }
.marquee-track span i { font-size: 11px; color: var(--lagoon); font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-strip:hover .marquee-track { animation-play-state: paused; }

/* ---------- Trust / practical strip ---------- */
.practical-strip { background: var(--paper-dim); border-bottom: 1px solid var(--line); }
.practical-strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; padding: 22px 32px; }
.practical-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.practical-item i { color: var(--clay); font-size: 13px; }

/* ---------- Welcome note ---------- */
.welcome { text-align: center; }
.welcome blockquote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.5; color: var(--ink); }
.welcome blockquote em { color: var(--clay); font-style: italic; }
.welcome .sig { display: block; margin-top: 30px; font-family: var(--font-body); font-style: normal; font-size: 13.5px; letter-spacing: 0.04em; color: var(--ink-soft); }
.welcome .sig strong { color: var(--ink); }

/* ---------- By the Numbers strip ---------- */
.stats-strip { background: var(--paper-dim); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: 44px 30px; text-align: center; border-left: 1px solid var(--line); }
.stat-cell:first-child { border-left: none; }
.stat-cell strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 2.6vw, 34px); color: var(--deep); margin-bottom: 8px; }
.stat-cell span { font-size: 12.5px; color: var(--ink-soft); }
@media (max-width: 780px) { .stats-strip .container { grid-template-columns: 1fr 1fr; } .stat-cell:nth-child(3) { border-left: none; } .stat-cell { border-top: 1px solid var(--line); } .stat-cell:nth-child(-n+2) { border-top: none; } }

/* ---------- Story timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; top: 11px; left: 0; right: 0; height: 1px; background: var(--line); }
.timeline-item { position: relative; padding: 0 26px 0 0; }
.timeline-item .dot { width: 23px; height: 23px; border-radius: 50%; background: var(--paper); border: 1.5px solid var(--clay); position: relative; z-index: 1; margin-bottom: 22px; }
.timeline-item .year { font-family: var(--font-display); font-style: italic; font-size: 21px; color: var(--clay); display: block; margin-bottom: 10px; }
.timeline-item p { font-size: 14px; color: var(--ink-soft); max-width: 300px; }
@media (max-width: 780px) { .timeline { grid-template-columns: 1fr; gap: 30px; } .timeline::before { top: 0; bottom: 0; left: 11px; right: auto; width: 1px; height: auto; } .timeline-item { padding-left: 40px; } .timeline-item .dot { position: absolute; left: 0; top: 2px; margin-bottom: 0; } }

/* ---------- Chapter quote (used under several section heads) ---------- */
.chapter-quote { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--ink-soft); max-width: 620px; margin: 18px auto 0; text-align: center; line-height: 1.6; }

/* ---------- Tab switcher (Our Story) ---------- */
.tabs-nav { display: inline-flex; gap: 4px; background: var(--glass-bg-light); border: 1px solid var(--glass-border-light); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 5px; border-radius: 999px; margin: 0 auto 46px; box-shadow: var(--shadow-soft); }
.tabs-nav button { padding: 11px 22px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--ink-soft); transition: background 0.35s var(--ease), color 0.35s var(--ease); }
.tabs-nav button.is-active { background: var(--ink); color: var(--cream); }
.tabs-head { text-align: center; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }
.story-split { display: grid; grid-template-columns: 1fr 0.85fr; gap: 60px; align-items: center; }
.story-text blockquote { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--deep); background: var(--paper-dim); border-left: 3px solid var(--brass); padding: 18px 22px; margin-bottom: 24px; line-height: 1.55; }
.story-text p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.75; }
.story-photo .photo { aspect-ratio: 4/3; border-radius: var(--radius); position: relative; }
.story-photo .caption-box { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 2; background: rgba(12,20,19,0.82); backdrop-filter: blur(4px); padding: 16px 18px; border-radius: var(--radius-sm); }
.story-photo .caption-box .loc { font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brass); display: block; margin-bottom: 6px; }
.story-photo .caption-box p { font-family: var(--font-display); font-style: italic; font-size: 14px; color: var(--cream); line-height: 1.5; }
@media (max-width: 900px) { .story-split { grid-template-columns: 1fr; gap: 30px; } .tabs-nav { display: flex; flex-wrap: wrap; justify-content: center; } }

/* ---------- Icon feature grid (Why Mafia Island) ---------- */
.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.icon-card { background: var(--paper-dim); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.icon-card:hover { transform: translateY(-5px) scale(1.015); box-shadow: 0 24px 48px -20px rgba(10,15,20,0.18); }
.icon-card .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--deep); color: var(--brass); display: flex; align-items: center; justify-content: center; font-size: 17px; margin-bottom: 20px; }
.icon-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.icon-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 900px) { .icon-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .icon-grid { grid-template-columns: 1fr; } }

/* ---------- Filter pills (experiences / accommodation) ---------- */
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-pills button { padding: 10px 20px; border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); transition: all 0.35s var(--ease); }
.filter-pills button.is-active, .filter-pills button:hover { background: var(--deep); border-color: var(--deep); color: var(--cream); transform: translateY(-1px); }
.filterable-item { transition: opacity 0.3s, transform 0.3s; }
.filterable-item.is-hidden { display: none; }

/* ---------- Circular arrow button (paired with pill CTAs) ---------- */
.btn-row { display: flex; align-items: center; gap: 10px; }
.btn-pill-outline { flex: 1; text-align: center; padding: 13px 18px; border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--ink); transition: all 0.35s var(--ease); }
.btn-pill-outline:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); transform: translateY(-2px); }
.btn-circle { width: 42px; height: 42px; min-width: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--deep), var(--deep-dim)); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: transform 0.35s var(--ease), background 0.35s; }
.btn-circle:hover { background: linear-gradient(135deg, var(--clay), var(--clay-dim)); transform: scale(1.1); }

/* ---------- "TAITA's Local Take" quote box (signature accommodation element) ---------- */
.local-take { background: rgba(47,214,196,0.08); border: 1px solid rgba(38,67,63,0.18); border-radius: var(--radius); padding: 14px 16px; margin: 14px 0 16px; }
.local-take .lbl { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--deep); font-weight: 700; display: block; margin-bottom: 6px; }
.local-take p { font-family: var(--font-display); font-style: italic; font-size: 13.5px; color: var(--ink); line-height: 1.5; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: 12.5px; color: var(--ink-faint); padding: 22px 0; }
.breadcrumb a { color: var(--ink-soft); transition: color 0.25s; }
.breadcrumb a:hover { color: var(--clay); }
.breadcrumb i { font-size: 9px; margin: 0 8px; opacity: 0.6; }

/* ---------- Package hero ---------- */
.pd-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; border-radius: var(--radius-lg); }
.pd-hero .photo { position: absolute; inset: 0; }
.pd-hero .photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,14,13,0.15) 0%, rgba(6,14,13,0.8) 100%); }
.pd-hero-inner { position: relative; z-index: 2; padding: 50px 46px; width: 100%; }
.pd-hero .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.pd-hero .tags span { background: var(--glass-bg-dark); border: 1px solid var(--glass-border-dark); backdrop-filter: blur(10px); padding: 6px 14px; border-radius: 999px; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.pd-hero h1 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.03em; font-size: clamp(32px, 4.6vw, 54px); line-height: 1.06; max-width: 760px; margin-bottom: 12px; }
.pd-hero .tagline { font-family: var(--font-quote); font-style: italic; font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; }
.pd-hero-meta { display: flex; gap: 26px; margin-top: 28px; flex-wrap: wrap; }
.pd-hero-meta div { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.85); }
.pd-hero-meta i { color: var(--lagoon); }

/* ---------- In-page sticky section nav ---------- */
.pd-subnav { position: sticky; top: 78px; z-index: 60; background: var(--glass-bg-light); border: 1px solid var(--glass-border-light); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border-radius: 999px; margin: 26px auto 0; padding: 6px; display: inline-flex; gap: 2px; max-width: 100%; overflow-x: auto; box-shadow: var(--shadow-soft); }
.pd-subnav a { padding: 10px 18px; border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--ink-soft); white-space: nowrap; transition: background 0.3s, color 0.3s; }
.pd-subnav a.is-active, .pd-subnav a:hover { background: var(--ink); color: var(--cream); }
.pd-subnav-wrap { text-align: center; }

/* ---------- Facts grid ("At a Glance") ---------- */
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fact-cell { display: flex; gap: 14px; align-items: flex-start; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.fact-cell .ic { width: 40px; height: 40px; min-width: 40px; border-radius: 12px; background: var(--paper-dim); color: var(--clay); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.fact-cell .label { font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 4px; }
.fact-cell .value { font-size: 14px; color: var(--ink); font-weight: 600; }
@media (max-width: 800px) { .facts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .facts-grid { grid-template-columns: 1fr; } }

/* ---------- Highlights ---------- */
.highlights-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.highlights-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink); }
.highlights-list i { color: var(--cream); background: linear-gradient(135deg, var(--lagoon), var(--deep)); border-radius: 50%; width: 22px; height: 22px; min-width: 22px; display: flex; align-items: center; justify-content: center; font-size: 10px; margin-top: 2px; }
@media (max-width: 700px) { .highlights-list { grid-template-columns: 1fr; } }

/* ---------- Overview prose ---------- */
.pd-prose { font-size: 16px; color: var(--ink-soft); line-height: 1.8; max-width: 760px; }
.pd-prose p { margin-bottom: 18px; }

/* ---------- Activities row ---------- */
.activities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.activity-chip { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.activity-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.activity-chip .ic { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--deep), var(--deep-dim)); color: var(--lagoon); display: flex; align-items: center; justify-content: center; font-size: 17px; margin: 0 auto 14px; }
.activity-chip h5 { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.activity-chip p { font-size: 11.5px; color: var(--ink-faint); }
@media (max-width: 900px) { .activities-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Day-by-day itinerary accordion ---------- */
.itinerary-list { border-top: 1px solid var(--line); }
.itinerary-day { border-bottom: 1px solid var(--line); }
.itinerary-day summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 20px; padding: 24px 6px; }
.itinerary-day summary::-webkit-details-marker { display: none; }
.itinerary-day .day-num { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--clay); min-width: 60px; }
.itinerary-day summary .head-text { flex: 1; }
.itinerary-day summary h4 { font-size: 17px; font-weight: 600; color: var(--ink); }
.itinerary-day summary .loc { font-size: 12.5px; color: var(--ink-faint); margin-top: 3px; }
.itinerary-day summary .chevron { color: var(--ink-faint); transition: transform 0.35s var(--ease); }
.itinerary-day[open] summary .chevron { transform: rotate(180deg); }
.itinerary-day .day-body { padding: 0 6px 28px 80px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; max-width: 700px; }
@media (max-width: 600px) { .itinerary-day .day-body { padding-left: 6px; } }

/* ---------- Route map ---------- */
.route-map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
#route-map { height: 440px; width: 100%; background: var(--paper-dim); }
.route-map-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; display: flex; align-items: center; gap: 8px; }

/* ---------- Stay mini cards (Where You'll Stay) ---------- */
.stay-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stay-mini { display: flex; gap: 16px; align-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; transition: transform 0.35s var(--ease); }
.stay-mini:hover { transform: translateY(-4px); }
.stay-mini .photo { width: 84px; height: 84px; min-width: 84px; border-radius: var(--radius-sm); }
.stay-mini h5 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.stay-mini p { font-size: 12px; color: var(--ink-faint); }
@media (max-width: 900px) { .stay-mini-grid { grid-template-columns: 1fr; } }

/* ---------- Inclusions / exclusions ---------- */
.inclusions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.inclusions-col h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 18px; }
.inclusions-col.included h4 { color: var(--deep); }
.inclusions-col.excluded h4 { color: var(--ink-faint); }
.inclusions-col ul { display: grid; gap: 13px; }
.inclusions-col li { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; color: var(--ink-soft); }
.inclusions-col.included li i { color: var(--lagoon); }
.inclusions-col.excluded li i { color: var(--ink-faint); }
.inclusions-col li i { margin-top: 3px; font-size: 13px; }
@media (max-width: 700px) { .inclusions-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Side trips ---------- */
.sidetrip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sidetrip-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.sidetrip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.sidetrip-card .photo { aspect-ratio: 16/10; }
.sidetrip-card .body { padding: 18px 20px 20px; }
.sidetrip-card h5 { font-size: 15.5px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.sidetrip-card p { font-size: 12.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 14px; }
.sidetrip-card .meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-faint); padding-top: 12px; border-top: 1px solid var(--line); }
.sidetrip-card .meta strong { color: var(--clay); }
@media (max-width: 900px) { .sidetrip-grid { grid-template-columns: 1fr; } }

/* ---------- Leaflet route-marker override ---------- */
.route-marker span {
    display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--clay), var(--clay-dim)); color: #fff; font-family: var(--font-display);
    font-weight: 700; font-size: 13px; box-shadow: 0 6px 16px -4px rgba(255,122,84,0.6); border: 2px solid #fff;
}
.leaflet-popup-content-wrapper { border-radius: var(--radius-sm); font-family: var(--font-body); }
.leaflet-popup-content { font-size: 12.5px; }

/* ---------- Expert banner ---------- */
.expert-banner {
    background: radial-gradient(100% 140% at 20% 0%, rgba(139,124,246,0.18), transparent 55%), radial-gradient(90% 100% at 90% 100%, rgba(79,232,206,0.16), transparent 55%), var(--deep);
    border-radius: var(--radius-lg); color: var(--cream); padding: 44px 40px; display: flex; align-items: center; gap: 34px; flex-wrap: wrap;
}
.expert-banner .avatar { width: 72px; height: 72px; min-width: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--lagoon), var(--violet)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--deep-dim); }
.expert-banner .txt { flex: 1; min-width: 240px; }
.expert-banner .label { color: var(--lagoon); display: block; margin-bottom: 10px; }
.expert-banner h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; font-size: 24px; margin-bottom: 10px; }
.expert-banner p { font-size: 14px; color: rgba(255,255,255,0.72); max-width: 520px; }
@media (max-width: 700px) { .expert-banner { padding: 32px 26px; } }

/* ---------- Section head ---------- */
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .label { display: block; margin-bottom: 16px; }
.section-head h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; color: var(--ink); }
.section-head h2 em {
    font-style: normal; font-weight: 700;
    background: linear-gradient(90deg, var(--deep), var(--lagoon) 70%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 16px; font-weight: 400; }
.section-head.on-dark h2 { color: var(--cream); }
.section-head.on-dark p { color: rgba(251,249,243,0.7); }
.section-head.on-dark .label { color: var(--brass); }
.section-foot { margin-top: 54px; }
.section-foot.center { text-align: center; }

/* ---------- Discover Mafia (split) ---------- */
.discover .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 74px; align-items: center; }
.discover-photo .photo { aspect-ratio: 4/5; border-radius: var(--radius); }
.discover-body p { color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; max-width: 460px; }
.discover-body p:last-of-type { margin-bottom: 28px; }
@media (max-width: 900px) { .discover .container { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- The Collection (accommodation) ---------- */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stay-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.stay-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 60px -24px rgba(10,15,20,0.3); }
.stay-card .photo-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.stay-card .photo-wrap .photo { position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.stay-card:hover .photo-wrap .photo { transform: scale(1.05); }
.stay-card .photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,20,19,0.75) 0%, transparent 55%); z-index: 1; }
.stay-card .loc-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(12,20,19,0.75); color: var(--cream); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.stay-card .photo-wrap h3 { position: absolute; left: 18px; bottom: 14px; right: 18px; z-index: 2; font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--cream); }
.stay-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.stay-card .tagline { font-size: 12.5px; color: var(--clay); font-weight: 700; margin-bottom: 8px; }
.stay-card .desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 4px; }
.stay-card .amenity-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.stay-card .amenity-tags span { font-size: 10.5px; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; }
@media (max-width: 900px) { .collection-grid { grid-template-columns: 1fr; } }

/* ---------- Journeys / itineraries ---------- */
.journeys { background: var(--paper-dim); }
.journey-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.journey-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.journey-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 60px -24px rgba(10,15,20,0.3); }
.journey-card .photo-wrap { position: relative; aspect-ratio: 16/11; }
.journey-card .photo-wrap .stay-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--clay); color: var(--cream); font-size: 10px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.journey-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.journey-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.journey-card .tagline { font-family: var(--font-display); font-style: italic; font-size: 13.5px; color: var(--clay); margin-bottom: 10px; }
.journey-card p.summary { font-size: 13px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.journey-card .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; flex: 1; align-content: flex-start; }
.journey-card .tags span { font-size: 10.5px; color: var(--deep); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; }

.journey-bespoke {
    background: linear-gradient(155deg, rgba(79,232,206,0.14), rgba(139,124,246,0.10) 60%, rgba(255,122,84,0.08)), var(--deep);
    border: 1px solid var(--glass-border-dark); backdrop-filter: blur(10px);
    color: var(--cream); border-radius: var(--radius); padding: 34px 30px; display: flex; flex-direction: column;
}
.journey-bespoke .label { color: var(--brass); margin-bottom: 14px; display: block; }
.journey-bespoke h3 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin-bottom: 14px; }
.journey-bespoke p { font-size: 13.5px; color: rgba(251,249,243,0.72); margin-bottom: 20px; }
.journey-bespoke ul { display: grid; gap: 9px; margin-bottom: 26px; flex: 1; }
.journey-bespoke ul li { font-size: 12.5px; display: flex; gap: 8px; align-items: flex-start; color: rgba(251,249,243,0.85); }
.journey-bespoke ul li i { color: var(--brass); margin-top: 3px; }

@media (max-width: 1080px) { .journey-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .journey-grid { grid-template-columns: 1fr; } }

/* ---------- Experience Mafia (photo cards) ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exp-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.exp-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 30px 60px -24px rgba(10,15,20,0.3); }
.exp-card .photo-wrap { position: relative; aspect-ratio: 4/3; }
.exp-card .photo-wrap .cat-tag { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--deep); color: var(--brass); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.exp-card .body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.exp-card h4 { font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.exp-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 16px; flex: 1; }
.exp-card .meta { display: flex; gap: 16px; font-size: 11.5px; color: var(--ink-faint); padding-top: 14px; border-top: 1px solid var(--line); margin-bottom: 16px; }
.exp-card .meta i { color: var(--clay); margin-right: 5px; }
@media (max-width: 1080px) { .exp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .exp-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.process { background: linear-gradient(160deg, var(--deep) 0%, var(--deep-dim) 100%); color: var(--cream); position: relative; overflow: hidden; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.process-item { background: var(--glass-bg-dark); border: 1px solid var(--glass-border-dark); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); border-radius: var(--radius); padding: 26px 22px; transition: transform 0.35s var(--ease); }
.process-item:hover { transform: translateY(-4px); }
.process-item .num { font-family: var(--font-quote); font-style: italic; font-size: 26px; color: var(--lagoon); display: block; margin-bottom: 14px; }
.process-item h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 8px; }
.process-item p { font-size: 13.5px; color: rgba(255,255,255,0.65); }
@media (max-width: 900px) { .process-list { grid-template-columns: 1fr 1fr; row-gap: 34px; } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }

/* ---------- Beyond Mafia (growth teaser) ---------- */
.beyond .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.beyond-panel { position: relative; min-height: 300px; padding: 46px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
.beyond-panel .photo { position: absolute; inset: 0; }
.beyond-panel .content { position: relative; z-index: 2; color: var(--cream); }
.beyond-panel .label { color: var(--brass); margin-bottom: 14px; display: block; }
.beyond-panel h3 { font-family: var(--font-display); font-size: 25px; font-weight: 500; margin-bottom: 12px; }
.beyond-panel p { font-size: 14px; color: rgba(251,249,243,0.78); max-width: 380px; margin-bottom: 18px; }
@media (max-width: 800px) { .beyond .container { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials .container.narrow { text-align: center; }
.testi-slide blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 2.4vw, 27px); line-height: 1.5; color: var(--ink); margin-bottom: 26px; }
.testi-slide .who { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.02em; }
.testi-slide .who strong { color: var(--ink); }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.testi-dots button { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background 0.3s; }
.testi-dots button.is-active { background: var(--clay); }

/* ---------- Meet the team (e.g. "Meet Ally") ---------- */
.team-feature { background: var(--paper-dim); }
.team-feature .container { display: grid; grid-template-columns: 0.6fr 1fr; gap: 60px; align-items: center; }
.team-photo .photo { aspect-ratio: 1/1; border-radius: var(--radius); }
.team-body .label { display: block; margin-bottom: 16px; }
.team-body h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 2.6vw, 32px); color: var(--ink); margin-bottom: 6px; }
.team-body .role { font-size: 13.5px; color: var(--clay); font-weight: 700; margin-bottom: 20px; display: block; }
.team-body p.bio { font-size: 16px; color: var(--ink-soft); max-width: 480px; }
@media (max-width: 800px) { .team-feature .container { grid-template-columns: 1fr; gap: 28px; } .team-photo .photo { aspect-ratio: 16/10; max-width: 260px; } }

/* ---------- Hippo aside / local-secret callout ---------- */
.aside-box {
    background: var(--cream); border: 1px solid var(--line); border-left: 3px solid var(--brass);
    padding: 26px 30px; max-width: 640px; margin: 0 auto; border-radius: var(--radius-sm);
}
.aside-box .label { color: var(--brass); display: block; margin-bottom: 10px; }
.aside-box p { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--ink); line-height: 1.5; }

/* ---------- B2B / Trade section (teaser — full portal lives on trade.php) ---------- */
.b2b { background: radial-gradient(120% 100% at 15% 0%, rgba(139,124,246,0.16), transparent 55%), radial-gradient(100% 90% at 90% 100%, rgba(79,232,206,0.14), transparent 55%), var(--deep-dim); color: var(--cream); text-align: center; }
.b2b .label { color: var(--brass); margin-bottom: 16px; display: block; }
.b2b h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.2; }
.b2b h2 em { font-style: italic; color: var(--brass); display: block; }
.b2b .chapter-quote { color: rgba(251,249,243,0.68); margin-top: 20px; margin-bottom: 50px; }
.b2b-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 46px; }
.b2b-icons .card { background: var(--glass-bg-dark); border: 1px solid var(--glass-border-dark); backdrop-filter: blur(16px) saturate(160%); -webkit-backdrop-filter: blur(16px) saturate(160%); border-radius: var(--radius); padding: 26px 24px; text-align: left; transition: transform 0.35s var(--ease); }
.b2b-icons .card:hover { transform: translateY(-4px); }
.b2b-icons .card .ic { width: 40px; height: 40px; border-radius: 12px; background: rgba(79,232,206,0.18); color: var(--lagoon); display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 16px; }
.b2b-icons .card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.b2b-icons .card p { font-size: 12.5px; color: rgba(251,249,243,0.65); line-height: 1.55; }
@media (max-width: 800px) { .b2b-icons { grid-template-columns: 1fr; } }

/* ---------- Dual CTA (traveller / trade) ---------- */
.dual-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ---------- Sticky mobile conversion bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 780px) {
    .mobile-bar {
        display: grid; grid-template-columns: 1fr 1fr 1.3fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
        background: rgba(8,20,18,0.85); backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
        border-top: 1px solid var(--glass-border-dark); box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    }
    .mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 12px 4px 14px; color: var(--cream); font-size: 11px; font-weight: 600; border-right: 1px solid var(--glass-border-dark); }
    .mobile-bar a i { font-size: 16px; }
    .mobile-bar a.primary { background: linear-gradient(135deg, var(--clay), var(--clay-dim)); border-right: none; }
    body { padding-bottom: 64px; }
    .wa-tab { display: none; }
}

/* ---------- Closing CTA ---------- */
.closing { background: radial-gradient(90% 120% at 50% 0%, rgba(255,122,84,0.14), transparent 60%), radial-gradient(80% 100% at 85% 100%, rgba(139,124,246,0.16), transparent 55%), var(--ink); color: var(--cream); text-align: center; }
.closing .label { color: var(--brass); }
.closing h2 { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(28px, 3.6vw, 44px); margin: 20px 0 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.closing .actions { display: flex; gap: 28px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-dim); color: rgba(251,249,243,0.72); padding: 70px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 50px; padding-bottom: 54px; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand-lockup { color: var(--cream); margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; max-width: 280px; margin-bottom: 22px; color: rgba(251,249,243,0.65); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-light); display: flex; align-items: center; justify-content: center; transition: all 0.3s; font-size: 13px; }
.footer-social a:hover { background: var(--brass); color: var(--deep-dim); border-color: var(--brass); }
.footer-col h5 { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 13.5px; transition: color 0.25s; }
.footer-col a:hover { color: var(--cream); }
.footer-contact li { display: flex; gap: 10px; font-size: 13.5px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact i { color: var(--brass); margin-top: 3px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 12px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }

/* ---------- Quiet WhatsApp tab (not a pulsing bubble) ---------- */
.wa-tab {
    position: fixed; bottom: 26px; right: 0; z-index: 80;
    display: flex; align-items: center; gap: 9px;
    background: linear-gradient(135deg, var(--deep), var(--deep-dim)); color: var(--cream); padding: 13px 20px 13px 18px;
    border-radius: 999px 0 0 999px; font-size: 13px; font-weight: 600;
    box-shadow: 0 14px 34px -10px rgba(0,0,0,0.3);
    transition: transform 0.35s var(--ease), padding-right 0.3s;
}
.wa-tab:hover { transform: translateX(-4px); padding-right: 26px; }
.wa-tab i { font-size: 16px; color: var(--lagoon); }

/* ---------- Popup: a quiet corner card, not a screen-covering modal ---------- */
.popup-card-wrap {
    position: fixed; bottom: 26px; left: 26px; z-index: 200;
    max-width: 340px; width: calc(100% - 52px);
    background: var(--glass-bg-light); border: 1px solid var(--glass-border-light);
    backdrop-filter: blur(20px) saturate(160%); -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-deep);
    border-left: 3px solid var(--clay);
    transform: translateY(140%); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.popup-card-wrap.is-visible { transform: translateY(0); opacity: 1; }
.popup-card-wrap .inner { padding: 24px 24px 22px; position: relative; }
.popup-card-wrap .label { display: block; margin-bottom: 10px; }
.popup-card-wrap h4 { font-family: var(--font-display); font-size: 19px; font-weight: 500; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.popup-card-wrap p { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; }
.popup-close { position: absolute; top: 14px; right: 14px; color: var(--ink-faint); font-size: 13px; }
.popup-close:hover { color: var(--ink); }
.popup-dismiss { display: block; margin-top: 10px; font-size: 12px; color: var(--ink-faint); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 560px) { .popup-card-wrap { left: 16px; bottom: 16px; } }

/* ---------- Reveal on scroll (fade + subtle scale, no bounce) ---------- */
.reveal { opacity: 0; transform: translateY(22px) scale(0.98); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-inview { opacity: 1; transform: translateY(0) scale(1); }
