/* Boat Komodo Trip — rich static styles
   Mobile-first, responsive, dark-ocean + warm-sand palette.
   No framework. Target ~35-40KB uncompressed. */

:root {
  --c-ink: #0b1e2d;
  --c-ink-soft: #475565;
  --c-ink-soft-2: #6a7685;
  --c-ocean-deep: #072136;
  --c-ocean: #0b2e4a;
  --c-ocean-light: #1d5384;
  --c-cyan: #3ba3b8;
  --c-sand: #faf5eb;
  --c-sand-warm: #f1e6cf;
  --c-cream: #fff9ef;
  --c-coral: #d94f3f;
  --c-coral-deep: #b84133;
  --c-gold: #c79a4e;
  --c-wa: #25d366;
  --c-white: #ffffff;
  --c-line: rgba(11, 30, 74, 0.1);
  --c-line-strong: rgba(11, 30, 74, 0.2);
  --c-bg: #fbfaf6;
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 40px;
  --shadow-sm: 0 2px 6px rgba(11, 30, 74, 0.06);
  --shadow-md: 0 10px 24px rgba(11, 30, 74, 0.12);
  --shadow-lg: 0 24px 60px rgba(11, 30, 74, 0.18);
  --max-w: 1240px;
  --max-w-prose: 70ch;
  --space: clamp(1rem, 2vw, 1.75rem);
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", "Libre Caslon Text", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* Accessibility — visible focus ring (WCAG 2.4.7) */
:focus-visible {
  outline: 2px solid var(--c-ocean);
  outline-offset: 2px;
  border-radius: 3px;
}
.btn:focus-visible, .btn--wa:focus-visible, .btn--primary:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 3px;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.015em; color: var(--c-ocean); margin: 0 0 .6em; line-height: 1.2; }
h1 { font-size: clamp(2.25rem, 5.2vw, 4rem); line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); line-height: 1.15; }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.625rem); }
h4 { font-size: 1.125rem; }
p { margin: 0 0 1em; }
p + p { margin-top: 1em; }
.prose p { font-size: 1.05rem; color: var(--c-ink-soft); }
.prose strong { color: var(--c-ink); }

a { color: var(--c-ocean-light); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; transition: color .15s; }
a:hover { color: var(--c-coral); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.25rem; margin: 0 0 1em; }
li { margin: 0 0 .35rem; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space); }
.sr-only, .visually-subtle { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--c-ocean); color: #fff; padding: .5rem 1rem; z-index: 1000; }
.skip-link:focus { left: 0; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: .95rem; text-decoration: none; transition: all .2s; border: 0; cursor: pointer; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--c-coral); color: #fff; box-shadow: 0 6px 18px rgba(217, 79, 63, 0.35); }
.btn--primary:hover { background: var(--c-coral-deep); box-shadow: 0 10px 24px rgba(217, 79, 63, 0.45); color: #fff; }
.btn--ghost { background: transparent; color: var(--c-ocean); border: 1.5px solid var(--c-ocean); }
.btn--ghost:hover { background: var(--c-ocean); color: #fff; }
.btn--wa { background: var(--c-wa); color: #fff; padding: .6rem 1.1rem; font-size: .9rem; box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
.btn--wa:hover { background: #1fb558; color: #fff; }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.1rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--c-line); }
.site-header__inner { display: flex; align-items: center; gap: 1rem; padding: .9rem 0; }
.site-logo { text-decoration: none; }
.site-logo img { height: 56px; width: 56px; object-fit: contain; border-radius: 8px; }
.site-nav { margin-left: auto; display: flex; align-items: center; }
.site-nav__toggle { display: none; background: none; border: 0; padding: .5rem; cursor: pointer; }
.hamburger { display: block; width: 26px; height: 2px; background: var(--c-ink); position: relative; }
.hamburger::before, .hamburger::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--c-ink); }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.site-nav__menu { list-style: none; display: flex; gap: 1.75rem; margin: 0; padding: 0; align-items: center; }
.site-nav__menu > li > a { color: var(--c-ink); font-weight: 500; font-size: .95rem; text-decoration: none; padding: .85rem .25rem; position: relative; min-height: 44px; display: inline-flex; align-items: center; }
.site-nav__menu > li > a:hover { color: var(--c-coral); }
.site-nav__menu > li > a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--c-coral); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.site-nav__menu > li > a:hover::after { transform: scaleX(1); }
.site-nav__item.has-children { position: relative; }
.site-nav__sub { display: none; position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); padding: .5rem 0; min-width: 200px; box-shadow: var(--shadow-md); list-style: none; margin: 0; }
.site-nav__sub li { margin: 0; }
.site-nav__sub li a { display: block; padding: .55rem 1.1rem; color: var(--c-ink); font-size: .92rem; text-decoration: none; }
.site-nav__sub li a:hover { background: var(--c-sand); color: var(--c-coral); }
.site-nav__item.has-children:hover .site-nav__sub, .site-nav__item.has-children:focus-within .site-nav__sub { display: block; }
.site-header__cta { display: flex; gap: .75rem; align-items: center; margin-left: 1.25rem; }
.lang-switch { position: relative; }
.lang-switch > button { background: transparent; border: 1px solid var(--c-line-strong); border-radius: 999px; padding: .4rem .9rem; font: inherit; font-size: .88rem; cursor: pointer; }
.lang-switch ul { display: none; list-style: none; padding: .4rem 0; margin: 0; position: absolute; right: 0; top: calc(100% + .25rem); background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); min-width: 180px; box-shadow: var(--shadow-md); }
.lang-switch:hover ul, .lang-switch:focus-within ul { display: block; }
.lang-switch li { margin: 0; }
.lang-switch li a { display: block; padding: .5rem 1.1rem; color: var(--c-ink); font-size: .9rem; text-decoration: none; }
.lang-switch li a:hover { background: var(--c-sand); }

/* Hero */
.hero { position: relative; padding: clamp(4.5rem, 10vw, 8rem) 0 clamp(3.5rem, 8vw, 6rem); background: linear-gradient(135deg, var(--c-ocean-deep) 0%, var(--c-ocean) 50%, var(--c-ocean-light) 100%); color: #fff; overflow: hidden; isolation: isolate; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: var(--hero-bg, none); background-size: cover; background-position: center; opacity: .55; z-index: -1; transform: scale(1.05); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,33,54,.65) 0%, rgba(11,46,74,.55) 50%, rgba(29,83,132,.4) 100%); z-index: -1; }
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero__title { color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.hero__intro { font-size: clamp(1.1rem, 1.8vw, 1.375rem); color: rgba(255,255,255,.94); margin-bottom: 2rem; max-width: 640px; line-height: 1.55; }
.hero .breadcrumb { color: rgba(255,255,255,.82); margin-bottom: 1rem; }
.hero .breadcrumb a { color: rgba(255,255,255,.82); text-decoration: none; }
.hero .breadcrumb a:hover { color: #fff; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Breadcrumb */
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0 0 1rem; font-size: .88rem; }
.breadcrumb li { display: flex; gap: .4rem; align-items: center; margin: 0; }
.breadcrumb li [aria-hidden="true"] { color: rgba(11, 30, 74, 0.4); }
.hero .breadcrumb li [aria-hidden="true"] { color: rgba(255,255,255,.4); }

/* Content sections */
.content-section { padding: clamp(3rem, 5vw, 4.5rem) 0; border-bottom: 1px solid var(--c-line); }
.content-section:last-of-type { border-bottom: 0; }
.content-section:nth-of-type(even) { background: var(--c-cream); }
.content-section__inner { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.content-section__text { max-width: var(--max-w-prose); }
.content-section__media img { width: 100%; border-radius: var(--r-md); box-shadow: var(--shadow-md); object-fit: cover; aspect-ratio: 4 / 3; }
.content-section--img-right .content-section__inner { grid-template-columns: 1fr; }
.content-section--img-left .content-section__inner { grid-template-columns: 1fr; }
@media (min-width: 880px) {
  .content-section--img-right .content-section__inner { grid-template-columns: 1.2fr 1fr; }
  .content-section--img-right .content-section__media { order: 2; }
  .content-section--img-left .content-section__inner { grid-template-columns: 1fr 1.2fr; }
  .content-section--img-left .content-section__text { order: 2; }
}

/* Gallery */
.gallery { padding: clamp(3rem, 5vw, 4.5rem) 0; background: var(--c-cream); }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (min-width: 640px) { .gallery__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__item { margin: 0; border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.gallery__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--0 { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/1; }
@media (min-width: 640px) { .gallery__item--0 { aspect-ratio: 1/1; } }

/* Pricing */
.pricing { padding: clamp(3rem, 5vw, 4.5rem) 0; background: var(--c-sand-warm); }
.pricing h2 { text-align: center; margin-bottom: .5rem; }
.pricing__note { text-align: center; max-width: 640px; margin: 0 auto 2rem; color: var(--c-ink-soft); font-size: .98rem; }
.pricing__table { overflow-x: auto; max-width: 920px; margin: 0 auto; background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.pricing__table table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.pricing__table th, .pricing__table td { padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid var(--c-line); vertical-align: top; }
.pricing__table th { background: var(--c-ocean); color: #fff; font-weight: 600; letter-spacing: .02em; }
.pricing__table tr:last-child td { border-bottom: 0; }
.pricing__table tr:hover { background: var(--c-cream); }
.pricing__label { display: block; color: var(--c-ink); font-weight: 500; }
.pricing__section { display: block; font-size: .82rem; color: var(--c-ink-soft-2); margin-top: .25rem; }
.pricing__amount { color: var(--c-coral); font-weight: 700; font-size: 1.05rem; white-space: nowrap; }
.pricing__cta { text-align: center; margin-top: 2rem; }

/* Trip details tabs */
.details { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.details h2 { text-align: center; margin-bottom: 2rem; }
.details__accordion { max-width: 900px; margin: 0 auto; display: grid; gap: .6rem; }
.details__item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 1.1rem 1.4rem; transition: border-color .2s, box-shadow .2s; }
.details__item[open] { border-color: var(--c-ocean-light); box-shadow: var(--shadow-sm); }
.details__item summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--c-ocean); font-size: 1.02rem; text-transform: capitalize; }
.details__item summary::-webkit-details-marker { display: none; }
.details__item summary::after { content: "+"; font-size: 1.75rem; color: var(--c-ocean); line-height: 1; font-weight: 300; transition: transform .25s; }
.details__item[open] summary::after { content: "−"; }
.details__body { padding: .85rem 0 .25rem; color: var(--c-ink-soft); }
.details__body p { margin: 0 0 .65rem; line-height: 1.6; }

/* Itinerary */
.itinerary { padding: clamp(3rem, 5vw, 4.5rem) 0; background: var(--c-sand); }
.itinerary h2 { text-align: center; margin-bottom: 2.5rem; }
.itinerary__timeline { max-width: 820px; margin: 0 auto; position: relative; }
.itinerary__timeline::before { content: ""; position: absolute; left: 19px; top: 0; bottom: 0; width: 2px; background: var(--c-ocean-light); opacity: .3; }
.itinerary__day { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2rem; position: relative; }
.itinerary__marker { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--c-coral); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; z-index: 1; box-shadow: 0 4px 14px rgba(217,79,63,.35); }
.itinerary__content { flex: 1; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 1rem 1.4rem; box-shadow: var(--shadow-sm); }
.itinerary__content h3 { margin: 0 0 .4rem; font-family: var(--font-body); font-size: 1.05rem; color: var(--c-ocean); font-weight: 700; letter-spacing: .02em; }
.itinerary__content p { margin: 0; color: var(--c-ink-soft); font-size: .95rem; line-height: 1.6; }

/* FAQ */
.faq { padding: clamp(3rem, 5vw, 4.5rem) 0; background: var(--c-sand); }
.faq h2 { text-align: center; margin-bottom: 2rem; }
.faq__list { display: grid; gap: .6rem; max-width: 860px; margin: 0 auto; }
.faq__item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 1.1rem 1.4rem; transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: var(--c-ocean-light); box-shadow: var(--shadow-sm); }
.faq__item summary { font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: var(--c-ink); font-size: 1.02rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 1.75rem; color: var(--c-ocean); line-height: 1; font-weight: 300; transition: transform .25s; flex-shrink: 0; }
.faq__item[open] summary::after { content: "−"; }
.faq__answer { padding: .85rem 0 .25rem; color: var(--c-ink-soft); line-height: 1.65; }

/* Catalog grid + cards */
.catalog-section { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }
.catalog-section--alt { background: var(--c-cream); }
.catalog-section--related { background: var(--c-sand); border-top: 1px solid var(--c-line); }
.catalog-section h2 { margin-bottom: 1rem; }
.catalog-section__lead { color: var(--c-ink-soft); max-width: 720px; margin: 0 0 1.5rem; }
.catalog-section__view-all { font-weight: 600; color: var(--c-coral); text-decoration: none; white-space: nowrap; }
.catalog-section__view-all:hover { text-decoration: underline; color: var(--c-coral-deep); }
.catalog-section__more { text-align: center; color: var(--c-ink-soft); margin-top: 1.5rem; font-size: .92rem; }
.catalog-block { padding: 1.5rem 0 2rem; }
.catalog-block + .catalog-block { border-top: 1px solid var(--c-line); }
.catalog-block__header { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.catalog-block__title { margin: 0; font-size: clamp(1.25rem, 2vw, 1.5rem); color: var(--c-ocean); letter-spacing: .03em; }
.catalog-block__count { color: var(--c-ink-soft-2); font-size: .9rem; padding: .25rem .7rem; background: var(--c-sand); border-radius: 999px; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; }
@media (min-width: 880px) { .card-grid { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.5rem; } }

.card { display: block; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); overflow: hidden; text-decoration: none; color: var(--c-ink); transition: transform .25s, box-shadow .25s, border-color .25s; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--c-ocean-light); text-decoration: none; }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--c-sand); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.card:hover .card__media img { transform: scale(1.04); }
.card__badge { position: absolute; top: .75rem; left: .75rem; background: var(--c-ocean); color: #fff; padding: .25rem .65rem; border-radius: 999px; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.card__badge--vvip { background: var(--c-gold); color: #000; }
.card__badge--vip { background: var(--c-coral); }
.card__badge--deluxe { background: var(--c-ocean-light); }
.card__badge--speedboat { background: var(--c-cyan); }
.card__badge--tour { background: var(--c-coral-deep); }
.card__badge--region { background: rgba(11,46,74,.85); }
.card__body { padding: 1.1rem 1.25rem 1.25rem; }
.card__title { margin: 0 0 .5rem; font-family: var(--font-serif); font-size: 1.15rem; line-height: 1.25; color: var(--c-ocean); }
.card__intro { margin: 0 0 .75rem; font-size: .9rem; color: var(--c-ink-soft); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card__cta { color: var(--c-coral); font-weight: 600; font-size: .9rem; }
.card:hover .card__cta { color: var(--c-coral-deep); }

/* Related links */
.related { padding: clamp(2.5rem, 4.5vw, 4rem) 0; background: var(--c-sand); }
.related h2 { text-align: center; margin-bottom: 2rem; }
.related__list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; max-width: 1100px; margin-inline: auto; }
.related__item { margin: 0; }
.related__item a { display: block; background: #fff; padding: 1rem 1.15rem; border-radius: var(--r-md); border: 1px solid var(--c-line); text-decoration: none; color: var(--c-ink); transition: border-color .2s, transform .2s, box-shadow .2s; }
.related__item a:hover { border-color: var(--c-ocean-light); transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--c-ocean); }
.related__kind { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--c-ink-soft-2); margin-bottom: .35rem; }
.related__anchor { font-weight: 600; line-height: 1.35; }

/* WA CTA */
.wa-cta { padding: clamp(3.5rem, 6vw, 5rem) 0; background: linear-gradient(135deg, var(--c-ocean-deep), var(--c-ocean) 50%, var(--c-ocean-light)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.wa-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(59,163,184,.25) 0, transparent 50%), radial-gradient(circle at 70% 80%, rgba(217,79,63,.2) 0, transparent 50%); }
.wa-cta__inner { position: relative; }
.wa-cta h2 { color: #fff; margin-bottom: 1rem; }
.wa-cta p { color: rgba(255,255,255,.88); max-width: 640px; margin: 0 auto 2rem; font-size: 1.08rem; }

/* WA Float */
.wa-float { position: fixed; bottom: 1.4rem; right: 1.4rem; background: var(--c-wa); color: #fff; padding: .85rem 1.2rem; border-radius: 999px; display: inline-flex; align-items: center; gap: .55rem; box-shadow: 0 8px 28px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.15); z-index: 40; text-decoration: none; font-weight: 600; transition: transform .2s, box-shadow .2s; }
.wa-float:hover { background: #1fb558; text-decoration: none; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.45); color: #fff; }
.wa-float__label { font-size: .95rem; }

/* Footer */
.site-footer { background: var(--c-ocean-deep); color: rgba(255,255,255,.85); padding: clamp(3rem, 5vw, 4rem) 0 1.5rem; margin-top: 0; }
.site-footer h3 { color: #fff; font-size: 1.05rem; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 600; }
.site-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; }
.site-footer__brand { max-width: 340px; }
.site-footer__brand img { margin-bottom: 1rem; height: 72px; width: 72px; object-fit: contain; border-radius: 12px; background: #fff; padding: 4px; }
.site-footer__brand p { color: rgba(255,255,255,.72); font-size: .95rem; }
.site-footer__brand address { font-style: normal; font-size: .88rem; color: rgba(255,255,255,.72); margin-top: 1rem; line-height: 1.6; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .92rem; }
.site-footer ul li { margin: 0; }
.site-footer .socials { display: flex; gap: .55rem; margin-top: .9rem; }
.site-footer .socials a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; font-size: .85rem; font-weight: 600; transition: background .2s; }
.site-footer .socials a:hover { background: rgba(255,255,255,.15); text-decoration: none; }
.site-footer__contact p { margin-bottom: 1rem; }
.site-footer__bottom { margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.55); text-align: center; }

/* Mobile nav */
@media (max-width: 900px) {
  .site-nav__toggle { display: inline-flex; order: 2; }
  .site-nav__menu { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: #fff; padding: 1.2rem var(--space); border-bottom: 1px solid var(--c-line); gap: .25rem; box-shadow: var(--shadow-md); }
  .site-nav__menu.is-open { display: flex; }
  .site-nav__menu > li { width: 100%; }
  .site-nav__menu > li > a { display: block; padding: .7rem 0; }
  .site-nav__sub { position: static; box-shadow: none; border: 0; padding-left: 1rem; min-width: 0; }
  .site-header__cta .btn--wa { display: none; }
  .site-header__cta { margin-left: auto; }
  .wa-float__label { display: none; }
  .wa-float { padding: .85rem; }
}

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }

@media (prefers-color-scheme: dark) {
  /* Keep brand identity light in dark mode for now. Dark theme pass = future work. */
}

/* ===== GDPR Consent Banner ================================================ */
.bkt-consent { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: center; background: rgba(6,18,30,.55); backdrop-filter: blur(4px); animation: bkt-consent-in .25s ease-out; }
.bkt-consent__panel { background: #fff; color: #0b2e4a; width: min(760px, calc(100% - 1.5rem)); margin: 0 .75rem .75rem; border-radius: 14px 14px 12px 12px; padding: 1.5rem 1.5rem 1.25rem; box-shadow: 0 -8px 40px rgba(0,0,0,.28); max-height: 88vh; overflow: auto; position: relative; }
.bkt-consent__title { margin: 0 0 .5rem; font-size: 1.15rem; font-weight: 700; line-height: 1.3; padding-right: 2rem; }
.bkt-consent__body { margin: 0 0 1rem; font-size: .92rem; line-height: 1.55; color: #334c66; }
.bkt-consent__body a { color: #0b6aa7; text-decoration: underline; }
.bkt-consent__close { position: absolute; top: .5rem; right: .75rem; background: transparent; border: 0; font-size: 1.5rem; line-height: 1; cursor: pointer; color: #6b7a8a; padding: .25rem .5rem; border-radius: 6px; }
.bkt-consent__close:hover { background: #f1f5f9; color: #0b2e4a; }
.bkt-consent__actions { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: flex-end; }
.bkt-consent__btn { font: inherit; font-size: .9rem; font-weight: 600; padding: .65rem 1.1rem; border-radius: 8px; cursor: pointer; border: 1px solid transparent; transition: background .15s, transform .1s; }
.bkt-consent__btn:active { transform: translateY(1px); }
.bkt-consent__btn--primary { background: #0b6aa7; color: #fff; border-color: #0b6aa7; }
.bkt-consent__btn--primary:hover { background: #085a8f; }
.bkt-consent__btn--ghost { background: #fff; color: #0b2e4a; border-color: #d3dce5; }
.bkt-consent__btn--ghost:hover { background: #f1f5f9; }
.bkt-consent__cats { display: flex; flex-direction: column; gap: .75rem; margin: .25rem 0 1.1rem; padding: .9rem; background: #f7fafc; border-radius: 10px; border: 1px solid #e5ecf2; }
.bkt-consent__cat { display: flex; gap: .85rem; align-items: flex-start; }
.bkt-consent__cat-body { flex: 1; }
.bkt-consent__cat-body strong { font-size: .92rem; margin-right: .4rem; }
.bkt-consent__cat-body p { margin: .25rem 0 0; font-size: .82rem; line-height: 1.45; color: #566a7e; }
.bkt-consent__cat-badge { font-size: .7rem; font-weight: 600; padding: .1rem .5rem; border-radius: 999px; background: #e1eaf3; color: #0b2e4a; text-transform: uppercase; letter-spacing: .03em; }
.bkt-consent__switch { position: relative; display: inline-block; width: 40px; height: 22px; flex-shrink: 0; margin-top: 2px; }
.bkt-consent__switch input { opacity: 0; width: 0; height: 0; }
.bkt-consent__slider { position: absolute; inset: 0; background: #b6c3d0; border-radius: 999px; cursor: pointer; transition: background .18s; }
.bkt-consent__slider::before { content: ''; position: absolute; left: 3px; top: 3px; width: 16px; height: 16px; background: #fff; border-radius: 50%; transition: transform .18s; box-shadow: 0 1px 3px rgba(0,0,0,.2); }
.bkt-consent__switch input:checked + .bkt-consent__slider { background: #0b6aa7; }
.bkt-consent__switch input:checked + .bkt-consent__slider::before { transform: translateX(18px); }
.bkt-consent__switch input:disabled + .bkt-consent__slider { opacity: .65; cursor: not-allowed; }
@keyframes bkt-consent-in { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 640px) {
  .bkt-consent__panel { padding: 1.15rem 1.1rem 1rem; }
  .bkt-consent__actions { justify-content: stretch; }
  .bkt-consent__btn { flex: 1 1 auto; }
}
