/* =====================================================================
   Travel Designers - Watamu, Kenya
   Flat brand palette, mobile-first, no gradients anywhere.
   ===================================================================== */

:root {
  /* Brand */
  --brown: #522510;
  --brown-2: #3d1c0c;      /* hover / lifted brown */
  --orange: #e87915;
  --orange-2: #c4660f;     /* hover orange */
  --yellow: #f3960b;
  --gold: #f3960b;         /* golden orange accent (was coastal blue) */
  --white: #ffffff;

  /* Neutrals derived from the brown */
  --sand: #f5ede4;
  --sand-2: #ecd9c4;
  --sand-3: #e0b991;
  --ink: #2b1a0f;
  --ink-2: #5a473a;
  --ink-3: #7d6b5e;

  /* Semantics */
  --error: #b3261e;
  --error-bg: #fbeae8;
  --ok-bg: #e9f6ec;
  --ok: #1d6b34;
  --whatsapp: #25d366;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1400px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(82, 37, 16, 0.08);
  --shadow-lg: 0 20px 50px rgba(82, 37, 16, 0.14);
  --header-h: 72px;
}
@media (max-width: 959.98px) {
  :root { --header-h: 64px; }
}

/* ------------------------------------------------------------------ */
/* Reset & base                                                        */
/* ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--brown); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brown); }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown);
  line-height: 1.12;
  margin: 0 0 0.5em;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.125rem, 1.4rem + 3.6vw, 3.75rem); }
h2 { font-size: clamp(1.625rem, 1.2rem + 2vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.45rem); }
h1 em, h2 em { font-style: italic; color: var(--orange); font-weight: 500; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
address { font-style: normal; }
dl, dd { margin: 0; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--yellow); color: var(--brown); }

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--brown); color: var(--white); padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 820px; }
.container.narrow-sm { max-width: 520px; }

.lead { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); color: var(--ink-2); line-height: 1.55; max-width: 62ch; }
.overline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brown); margin: 0 0 0.75rem;
}
.overline-orange { color: var(--yellow); }
.overline-dark { color: var(--brown); }
.icon { flex: none; }

/* ------------------------------------------------------------------ */
/* Buttons                                                             */
/* ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 48px; padding: 0.7rem 1.35rem;
  border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 1rem; line-height: 1.2; text-decoration: none; cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--orange); color: var(--brown); border-color: var(--orange); }
.btn-primary:hover { background: var(--yellow); border-color: var(--yellow); color: var(--brown); }
.btn-secondary { background: var(--brown); color: var(--white); border-color: var(--brown); }
.btn-secondary:hover { background: var(--brown-2); border-color: var(--brown-2); color: var(--white); }
.btn-dark { background: var(--brown); color: var(--white); border-color: var(--brown); }
.btn-dark:hover { background: var(--white); color: var(--brown); border-color: var(--brown); }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-outline:hover { background: var(--brown); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-outline-dark:hover { background: var(--brown); color: var(--white); }
.btn-ghost { background: transparent; color: var(--brown); border-color: var(--sand-3); }
.btn-ghost:hover { border-color: var(--brown); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.45); }
.btn-ghost-light:hover { background: var(--white); color: var(--brown); border-color: var(--white); }
.btn-lg { min-height: 54px; padding: 0.85rem 1.7rem; font-size: 1.05rem; }
.btn-sm { min-height: 40px; padding: 0.45rem 1rem; font-size: 0.925rem; }
.btn-block { width: 100%; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 700; color: var(--brown); text-decoration: none; border-bottom: 2px solid var(--orange);
  padding-bottom: 2px; min-height: 44px;
}
.text-link:hover { color: var(--orange-2); }
.text-link .icon { transition: transform 0.15s ease; }
.text-link:hover .icon { transform: translateX(3px); }
.text-link-light { color: var(--white); }
.text-link-light:hover { color: var(--yellow); }

/* ------------------------------------------------------------------ */
/* Top bar + header                                                    */
/* ------------------------------------------------------------------ */
.topbar { background: var(--yellow); color: var(--brown); font-size: 0.875rem; font-weight: 600; }
.topbar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.25rem 1rem; min-height: 38px; padding-block: 4px; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--brown); text-decoration: none; white-space: nowrap; }
.topbar-item:hover { text-decoration: underline; }
.topbar-hide-sm { display: none; }
@media (min-width: 720px) { .topbar-hide-sm { display: inline-flex; } }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--brown); color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: inherit; align-self: stretch; min-width: 0; padding-block: 0; flex: none; }
.brand-logo {
  height: 100%;
  width: auto;
  max-width: 300px;
  display: block;
  object-fit: contain;
}
@media (max-width: 959.98px) {
  .brand { padding-block: 0; }
  .brand-logo { max-width: calc(100vw - 2 * var(--gutter) - 48px - 1rem); border-radius: var(--radius-sm); }
}
@media (max-width: 767.98px) {
  .brand { padding: 4px 8px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.06); }
  .brand-logo { max-width: calc(100vw - 2 * var(--gutter) - 48px - 1rem - 16px); }
  .footer-brand .brand-logo-footer { max-height: 48px; }
}

.site-nav { flex: 1; min-width: 0; }
.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 0.25rem; justify-content: flex-end; }
.site-nav a:not(.btn) {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 0.65rem;
  color: rgba(255, 255, 255, 0.86); font-weight: 600; text-decoration: none; border-radius: var(--radius-sm);
  position: relative; white-space: nowrap;
}
.site-nav a:not(.btn):hover { color: var(--white); background: rgba(255, 255, 255, 0.07); }
.site-nav a:not(.btn)[aria-current="page"] { color: var(--white); }
.site-nav a:not(.btn)[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 6px; height: 3px; background: var(--orange); border-radius: 2px;
}
.nav-cta-item { margin-left: 0; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: var(--radius-sm); border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent; color: var(--white); cursor: pointer;
}
.nav-toggle-close { display: none; }
body.nav-open .nav-toggle-open { display: none; }
body.nav-open .nav-toggle-close { display: inline-flex; }

@media (max-width: 959.98px) {
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--brown); border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none; padding: 0.5rem var(--gutter) 1.25rem;
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .site-nav { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav li { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .site-nav a:not(.btn) { min-height: 52px; padding: 0 0.5rem; font-size: 1.05rem; border-radius: 0; }
  .site-nav a:not(.btn)[aria-current="page"]::after { left: 0; right: auto; width: 4px; height: 60%; top: 20%; bottom: auto; }
  .site-nav a:not(.btn)[aria-current="page"] { padding-left: 1rem; }
  .nav-cta-item { margin: 1rem 0 0; border: 0 !important; }
  .nav-cta-item .btn { width: 100%; min-height: 50px; }
}
@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav { display: block !important; }
  .site-nav ul { gap: 0.5rem; }
}
@media (min-width: 1200px) {
  .site-nav ul { gap: 0.75rem; }
}

/* ------------------------------------------------------------------ */
/* Flash messages                                                      */
/* ------------------------------------------------------------------ */
.flash-stack { margin-top: 1rem; display: grid; gap: 0.5rem; }
.flash { padding: 0.85rem 1rem; border-radius: var(--radius-sm); font-weight: 600; border: 1px solid transparent; }
.flash-success { background: var(--ok-bg); color: var(--ok); border-color: #bfe3c8; }
.flash-error { background: var(--error-bg); color: var(--error); border-color: #f1c4c0; }

/* ------------------------------------------------------------------ */
/* Sections                                                            */
/* ------------------------------------------------------------------ */
.section { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section-tight { padding-block: clamp(1.5rem, 4vw, 3rem) clamp(3rem, 6vw, 5rem); }
.section-sand { background: var(--sand); }
.section-brown { background: var(--brown); color: rgba(255, 255, 255, 0.86); }
.section-brown h2, .section-brown h3 { color: var(--white); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.section-head h2 { margin-bottom: 0; }
.section-head-center { flex-direction: column; align-items: center; text-align: center; }
.section-intro { max-width: 58ch; margin: 0.75rem 0 0; }

/* ------------------------------------------------------------------ */
/* Hero (home)                                                         */
/* ------------------------------------------------------------------ */
.hero { padding-block: clamp(2.5rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4rem); position: relative; overflow: hidden; }
.hero-grid { display: grid; gap: 2.5rem; align-items: center; }
.hero-copy h1 { margin-bottom: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 1.25rem; }
.hero-proof { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; color: var(--ink-2); font-weight: 600; font-size: 0.95rem; }
.hero-proof li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-proof .icon { color: var(--orange); }

.hero-art { position: relative; margin-inline: auto; width: 100%; max-width: 560px; }
.hero-frame { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--sand); box-shadow: var(--shadow-lg); }
.hero-frame img { width: 100%; aspect-ratio: 8 / 7; object-fit: cover; }
.hero-art::before {
  content: ""; position: absolute; inset: 1.25rem -1rem -1rem 1.25rem; background: var(--gold); border-radius: var(--radius); z-index: -1;
}
.hero-badge {
  position: absolute; left: -0.5rem; bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--orange); color: var(--brown); padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  box-shadow: var(--shadow); max-width: 260px; font-weight: 600; font-size: 0.85rem; line-height: 1.3;
}
.hero-badge-big { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; line-height: 1; white-space: nowrap; flex: none; }

@media (max-width: 959.98px) {
  .hero-art { width: calc(100% - 0.75rem); margin-inline: 0 auto; }
  .hero-badge { left: 0.75rem; }
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .hero-art { justify-self: end; }
  .hero-badge { left: -2rem; }
}

/* Trust strip */
.strip { background: var(--sand); border-block: 1px solid var(--sand-2); }
.strip-grid { display: grid; gap: 1rem; padding-block: 1.25rem; grid-template-columns: 1fr; }
.strip-item { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--brown); }
.strip-item .icon { color: var(--orange); margin-top: 2px; }
.strip-item strong { display: block; font-size: 0.95rem; }
.strip-item span { display: block; font-size: 0.85rem; color: var(--ink-2); }
@media (min-width: 600px) { .strip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .strip-grid { grid-template-columns: repeat(4, 1fr); padding-block: 1.5rem; } }

/* ------------------------------------------------------------------ */
/* Page hero (inner pages)                                             */
/* ------------------------------------------------------------------ */
.page-hero { background: var(--sand); border-bottom: 1px solid var(--sand-2); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero-inner { max-width: 860px; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero .lead { margin-bottom: 0; }

/* ------------------------------------------------------------------ */
/* Cards: tours                                                        */
/* ------------------------------------------------------------------ */
.card-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }

.tour-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--sand-2); border-radius: var(--radius); overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sand-3); }
.tour-card-media { position: relative; display: block; background: var(--sand); }
.tour-card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tour-card-category {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: var(--white); color: var(--brown); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.65rem; border-radius: 999px;
}
.tour-card-body { display: flex; flex-direction: column; gap: 0.6rem; padding: 1.25rem 1.25rem 1.35rem; flex: 1; }
.tour-card-title { margin: 0; font-size: 1.3rem; }
.tour-card-title a { color: var(--brown); text-decoration: none; }
.tour-card-title a:hover { color: var(--orange-2); }
.tour-card-summary { color: var(--ink-2); font-size: 0.95rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.tour-card-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 0.85rem; color: var(--ink-3); font-weight: 600; margin-top: auto; }
.tour-card-meta > div { display: inline-flex; align-items: center; gap: 0.35rem; }
.tour-card-meta .icon { color: var(--gold); }
.tour-card-price { margin: 0.5rem 0 0; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--orange); }
.tour-card-price-from { font-family: var(--font-body); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-weight: 600; margin-right: 0.25rem; }
.tour-card .text-link { align-self: flex-start; min-height: 36px; }

/* ------------------------------------------------------------------ */
/* Steps                                                               */
/* ------------------------------------------------------------------ */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; counter-reset: step; }
.step { background: var(--white); border-radius: var(--radius); padding: 1.75rem 1.5rem; border: 1px solid var(--sand-2); position: relative; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: var(--brown); color: var(--yellow);
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { margin: 0; color: var(--ink-2); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ------------------------------------------------------------------ */
/* Info cards (travel info)                                            */
/* ------------------------------------------------------------------ */
.info-grid { display: grid; gap: 1.25rem; }
@media (min-width: 720px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: var(--brown-2); color: rgba(255, 255, 255, 0.86); text-decoration: none;
  padding: 1.5rem; border-radius: var(--radius); border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.15s ease, transform 0.2s ease;
}
.info-card:hover { background: #6b3a1c; transform: translateY(-3px); color: rgba(255, 255, 255, 0.92); }
.info-card h3 { color: var(--white); margin: 0; }
.info-card p { margin: 0; font-size: 0.95rem; flex: 1; }
.info-topic { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow); }
.info-meta { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; color: var(--yellow); font-size: 0.9rem; margin-top: 0.5rem; }

.article-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .article-grid { grid-template-columns: repeat(3, 1fr); } }
.article-card {
  display: flex; flex-direction: column; gap: 0.5rem; text-decoration: none; color: var(--ink-2);
  background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card h2 { font-size: 1.35rem; margin: 0; }
.article-card p { margin: 0; flex: 1; font-size: 0.95rem; }
.article-card .info-topic { color: var(--brown); }
.article-card .info-meta { color: var(--brown); }

/* ------------------------------------------------------------------ */
/* Why / stats / features                                              */
/* ------------------------------------------------------------------ */
.why-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 960px) { .why-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.why-copy p { color: var(--ink-2); }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: grid; gap: 0.9rem; }
.feature-list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.feature-list .icon { color: var(--white); background: var(--gold); border-radius: 50%; padding: 3px; width: 24px; height: 24px; margin-top: 2px; }
.feature-list strong { color: var(--brown); }

.why-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat { background: var(--sand); border-radius: var(--radius); padding: 1.5rem 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; border: 1px solid var(--sand-2); }
.stat-num { font-family: var(--font-display); font-size: clamp(2rem, 1.5rem + 2vw, 3rem); font-weight: 700; color: var(--brown); line-height: 1; }
.stat-label { font-size: 0.9rem; color: var(--ink-2); font-weight: 600; }
.why-stats .stat:nth-child(2) { background: var(--orange); border-color: var(--orange); }
.why-stats .stat:nth-child(2) .stat-label { color: var(--brown); }
.why-stats .stat:nth-child(3) { background: var(--brown); border-color: var(--brown); }
.why-stats .stat:nth-child(3) .stat-num { color: var(--yellow); }
.why-stats .stat:nth-child(3) .stat-label { color: rgba(255, 255, 255, 0.85); }

.values-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value { background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: 1.75rem 1.5rem; }
.value .icon { color: var(--orange); margin-bottom: 1rem; }
.value h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.value p { margin: 0; color: var(--ink-2); font-size: 0.95rem; }

/* ------------------------------------------------------------------ */
/* Testimonials                                                        */
/* ------------------------------------------------------------------ */
.testimonial-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) and (max-width: 1023.98px) { .testimonial-grid { grid-template-columns: repeat(2, 1fr); } }
.testimonial { margin: 0; background: var(--white); border-radius: var(--radius); padding: 1.75rem 1.5rem; border: 1px solid var(--sand-2); display: flex; flex-direction: column; position: relative; }
.testimonial-mark { color: var(--yellow); margin-bottom: 0.75rem; }
.testimonial blockquote { margin: 0 0 1.25rem; flex: 1; }
.testimonial blockquote p { margin: 0; color: var(--ink); font-size: 1rem; }
.testimonial figcaption { display: flex; flex-direction: column; font-size: 0.9rem; color: var(--ink-3); border-top: 1px solid var(--sand-2); padding-top: 1rem; }
.testimonial figcaption strong { color: var(--brown); font-size: 1rem; }
.testimonial-trip { color: var(--brown); font-weight: 600; margin-top: 0.25rem; }

/* ------------------------------------------------------------------ */
/* CTA band                                                            */
/* ------------------------------------------------------------------ */
.cta-band { background: var(--orange); color: var(--brown); padding-block: clamp(2.5rem, 5vw, 4rem); }
.cta-band-inner { display: grid; gap: 1.5rem; align-items: center; }
.cta-band h2 { color: var(--brown); margin-bottom: 0.5rem; }
.cta-band p { margin: 0; font-weight: 500; max-width: 56ch; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 900px) { .cta-band-inner { grid-template-columns: 1.4fr 1fr; } .cta-band-actions { justify-content: flex-end; } }

/* ------------------------------------------------------------------ */
/* Split (about)                                                       */
/* ------------------------------------------------------------------ */
.split { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; } }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-media::after { content: ""; position: absolute; right: -0.75rem; bottom: -0.75rem; width: 45%; height: 45%; background: var(--yellow); border-radius: var(--radius); z-index: -1; }
.split-copy p { color: var(--ink-2); }
.split-copy strong { color: var(--brown); }

/* ------------------------------------------------------------------ */
/* Filters / chips                                                     */
/* ------------------------------------------------------------------ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-bottom: 1.25rem; }
.filter-sep { width: 1px; height: 28px; background: var(--sand-3); margin-inline: 0.5rem; }
.chip {
  display: inline-flex; align-items: center; min-height: 42px; padding: 0.4rem 1rem;
  border-radius: 999px; border: 2px solid var(--sand-3); background: var(--white); color: var(--brown);
  font-weight: 600; font-size: 0.925rem; text-decoration: none; cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.chip:hover { border-color: var(--brown); }
.chip.is-active { background: var(--brown); border-color: var(--brown); color: var(--white); }
.results-count { color: var(--ink-3); font-size: 0.9rem; font-weight: 600; margin-bottom: 1.5rem; }

.note-box {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--white); border: 1px solid var(--sand-2); border-left: 6px solid var(--orange); border-radius: var(--radius); padding: 2rem;
}
.note-box h2 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.note-box p { margin: 0; color: var(--ink-2); max-width: 60ch; }

/* ------------------------------------------------------------------ */
/* Breadcrumb                                                          */
/* ------------------------------------------------------------------ */
.breadcrumb { padding-block: 1rem 0; font-size: 0.875rem; }
.breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; color: var(--ink-3); }
.breadcrumb li + li::before { content: "/"; margin-right: 0.35rem; color: var(--sand-3); }
.breadcrumb a { color: var(--ink-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--brown); text-decoration: underline; }
.breadcrumb [aria-current] { color: var(--brown); font-weight: 600; }

/* ------------------------------------------------------------------ */
/* Tour detail                                                         */
/* ------------------------------------------------------------------ */
.tour-detail { padding-block: 1.5rem clamp(3rem, 6vw, 5rem); }
.tour-detail-head { display: grid; gap: 2rem; align-items: center; margin-bottom: 2.5rem; }
.tour-detail-head h1 { margin-bottom: 0.75rem; }
.tour-detail-media img { border-radius: var(--radius); aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow-lg); }
@media (min-width: 900px) { .tour-detail-head { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.tour-detail-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .tour-detail-grid { grid-template-columns: minmax(0, 1fr) 360px; gap: 4rem; } .tour-detail-side { position: sticky; top: calc(var(--header-h) + 1rem); } }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.facts > div { display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 0.75rem; background: var(--sand); border-radius: var(--radius-sm); padding: 1rem; }
.facts .icon { grid-row: 1 / 3; color: var(--gold); align-self: center; }
.facts dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-weight: 700; }
.facts dd { font-weight: 700; color: var(--brown); font-size: 0.95rem; }

.prose { max-width: 70ch; margin-bottom: 2rem; }
.prose h2 { font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem); margin-top: 0; }
.prose p, .prose li { color: var(--ink-2); }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 0.4em; }
.two-col { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .two-col { grid-template-columns: 1fr 1fr; } }

.check-list, .dot-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.check-list .icon { color: var(--white); background: var(--orange); border-radius: 50%; padding: 3px; width: 22px; height: 22px; flex: none; margin-top: 2px; }
.dot-list li { padding-left: 1.1rem; position: relative; }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.booking-card { background: var(--white); border: 2px solid var(--brown); border-radius: var(--radius); padding: 1.75rem 1.5rem; display: grid; gap: 0.75rem; }
.booking-price-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); font-weight: 700; margin: 0; }
.booking-price { font-family: var(--font-display); font-size: 1.75rem; color: var(--brown); font-weight: 700; margin: 0; line-height: 1.1; }
.booking-price-from { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); font-weight: 600; margin-right: 0.35rem; }
.booking-note { color: var(--ink-2); font-size: 0.925rem; margin: 0 0 0.5rem; }
.booking-call { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; color: var(--brown); font-weight: 700; text-decoration: none; min-height: 44px; }
.booking-trust { list-style: none; padding: 1rem 0 0; margin: 0; border-top: 1px solid var(--sand-2); display: grid; gap: 0.4rem; font-size: 0.875rem; color: var(--ink-2); }
.booking-trust li { display: flex; gap: 0.4rem; align-items: center; }
.booking-trust .icon { color: var(--ok); }

/* FAQ */
.faq { display: grid; gap: 0.75rem; }
.faq-item { background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius-sm); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1rem 3rem 1rem 1.25rem; font-weight: 700; color: var(--brown); position: relative; min-height: 52px; display: flex; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--sand); color: var(--brown);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.25rem; line-height: 1;
}
.faq-item[open] summary::after { content: "\2212"; background: var(--orange); }
.faq-item p { margin: 0; padding: 0 1.25rem 1.25rem; color: var(--ink-2); }

/* ------------------------------------------------------------------ */
/* Article (travel info)                                               */
/* ------------------------------------------------------------------ */
.article-layout { display: grid; gap: 3rem; padding-block: 1.5rem clamp(3rem, 6vw, 5rem); align-items: start; }
@media (min-width: 960px) { .article-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 4rem; } .article-side { position: sticky; top: calc(var(--header-h) + 1rem); } }
.article-head { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--sand-2); }
.article-head h1 { margin: 0.5rem 0 1rem; }
.article-meta { color: var(--ink-3); font-size: 0.9rem; font-weight: 600; margin: 0; }
.article .prose { max-width: 68ch; }
.article-cta { background: var(--sand); border-radius: var(--radius); padding: 1.75rem; border-left: 6px solid var(--orange); }
.article-cta .hero-actions { margin: 1rem 0 0; }
.side-heading { font-size: 1.1rem; margin-bottom: 1rem; }
.side-list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.5rem; }
.side-list a { display: flex; flex-direction: column; gap: 0.15rem; padding: 0.9rem 1rem; background: var(--sand); border-radius: var(--radius-sm); color: var(--brown); text-decoration: none; font-weight: 600; }
.side-list a:hover { background: var(--sand-2); }
.side-list .info-topic { color: var(--brown); }

/* ------------------------------------------------------------------ */
/* Gallery                                                             */
/* ------------------------------------------------------------------ */
.gallery-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }
.gallery-item figure { margin: 0; }
.gallery-item.is-hidden { display: none; }
.gallery-open { display: block; width: 100%; padding: 0; border: 0; background: var(--sand); border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.gallery-open img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.3s ease; }
.gallery-open:hover img { transform: scale(1.04); }
.gallery-item figcaption { display: flex; flex-direction: column; gap: 0.1rem; padding: 0.6rem 0.25rem 0; font-size: 0.9rem; font-weight: 600; color: var(--brown); }
.gallery-item .info-topic { color: var(--brown); font-size: 0.68rem; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1100px); width: auto; }
.lightbox::backdrop { background: rgba(51, 21, 4, 0.92); }
.lightbox img { max-height: 80vh; width: auto; max-width: 100%; margin-inline: auto; border-radius: var(--radius); background: var(--sand); }
.lightbox p { color: var(--white); text-align: center; font-weight: 600; margin: 1rem 0 0; }
.lightbox-close { position: fixed; top: 1rem; right: 1rem; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--orange); color: var(--brown); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }

/* ------------------------------------------------------------------ */
/* Contact                                                             */
/* ------------------------------------------------------------------ */
.contact-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; } }
.contact-details { display: grid; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); }
.contact-icon { flex: none; width: 48px; height: 48px; border-radius: 50%; background: var(--sand); color: var(--brown); display: inline-flex; align-items: center; justify-content: center; }
.contact-card h2 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.contact-card > div > a:not(.text-link) { font-weight: 700; color: var(--brown); font-size: 1.05rem; text-decoration: none; display: inline-block; min-height: 32px; }
.contact-card > div > a:not(.text-link):hover { color: var(--orange-2); text-decoration: underline; }
.contact-card p { margin: 0.25rem 0 0; color: var(--ink-2); font-size: 0.925rem; }
.contact-card address { color: var(--brown); font-weight: 600; }
.contact-card-hours { background: var(--brown); border-color: var(--brown); color: rgba(255, 255, 255, 0.85); }
.contact-card-hours h2 { color: var(--white); }
.contact-card-hours .contact-icon { background: var(--orange); }
.contact-card-hours p { color: rgba(255, 255, 255, 0.8); }
.hours-big { font-family: var(--font-display); font-size: 1.6rem !important; color: var(--yellow) !important; font-weight: 700; margin: 0 !important; line-height: 1.1; }
.map-section iframe { display: block; width: 100%; height: 420px; border: 0; filter: saturate(0.85); }

/* ------------------------------------------------------------------ */
/* Forms                                                               */
/* ------------------------------------------------------------------ */
.form-panel { background: var(--white); border: 1px solid var(--sand-2); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 2.5rem); box-shadow: var(--shadow); }
.form-panel h2:first-child, .form-panel h1 { margin-bottom: 0.25rem; }
.form-intro { color: var(--ink-3); margin-bottom: 1.5rem; }
.form { display: grid; gap: 1.1rem; }
.form fieldset { border: 0; padding: 0; margin: 0 0 0.5rem; display: grid; gap: 1.1rem; min-width: 0; }
.form legend { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--brown); margin-bottom: 0.75rem; padding: 0; }
.form-row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } .form > .btn { justify-self: start; } }
.field { display: grid; gap: 0.35rem; min-width: 0; }
.field label { font-weight: 700; color: var(--brown); font-size: 0.95rem; }
.req { color: var(--orange-2); }
.hint { margin: 0; font-size: 0.85rem; color: var(--ink-3); }
.field input, .field select, .field textarea, .form select {
  width: 100%; min-height: 50px; padding: 0.7rem 0.9rem;
  border: 2px solid var(--sand-3); border-radius: var(--radius-sm); background: var(--white); color: var(--ink);
  font: inherit; font-size: 1rem; transition: border-color 0.15s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: 3px solid rgba(4, 156, 197, 0.25); outline-offset: 0; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); }
.error { margin: 0; font-size: 0.875rem; color: var(--error); font-weight: 600; }
.check-grid { display: grid; gap: 0.5rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .check-grid { grid-template-columns: 1fr 1fr; } }
.check { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.9rem; border: 2px solid var(--sand-2); border-radius: var(--radius-sm); cursor: pointer; font-weight: 600; color: var(--brown); min-height: 48px; }
.check:hover { border-color: var(--sand-3); }
.check input { width: 20px; height: 20px; accent-color: var(--orange); flex: none; margin: 0; }
.check:has(input:checked) { border-color: var(--orange); background: #fbe9d6; }
.form-privacy { font-size: 0.85rem; color: var(--ink-3); margin: 0; }
.hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.plan-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 960px) { .plan-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 3rem; } .plan-side { position: sticky; top: calc(var(--header-h) + 1rem); } }
.plan-side { display: grid; gap: 1rem; }
.side-card { background: var(--sand); border-radius: var(--radius); padding: 1.5rem; }
.side-card h2 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.side-card p { color: var(--ink-2); font-size: 0.95rem; }
.side-card-tour img { border-radius: var(--radius-sm); margin-bottom: 1rem; aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.side-card-tour p { margin: 0; }
.side-card-brown { background: var(--brown); color: rgba(255, 255, 255, 0.85); display: grid; gap: 0.6rem; }
.side-card-brown h2 { color: var(--white); margin: 0; }
.side-card-brown p { color: rgba(255, 255, 255, 0.8); margin: 0 0 0.5rem; }
.mini-steps { margin: 0; padding-left: 1.2em; display: grid; gap: 0.5rem; color: var(--ink-2); font-size: 0.95rem; }
.mini-steps li::marker { color: var(--orange); font-weight: 700; }

/* Thank you / errors */
.thanks { text-align: center; padding-block: 2rem; }
.thanks .lead { margin-inline: auto; }
.thanks .hero-actions { justify-content: center; }
.thanks-mark { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: var(--orange); color: var(--brown); margin-bottom: 1.25rem; }

/* ------------------------------------------------------------------ */
/* Footer                                                              */
/* ------------------------------------------------------------------ */
.site-footer { background: var(--brown); color: rgba(255, 255, 255, 0.82); padding-top: clamp(3rem, 6vw, 4.5rem); margin-top: 0; }
.footer-grid { display: grid; gap: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 0.8fr 1fr; gap: 3rem; } }
.footer-brand p { max-width: 46ch; margin: 1.25rem 0; }
.footer-brand .brand-logo-footer { max-height: 64px; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-heading { font-family: var(--font-body); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--yellow); margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.footer-col a { color: rgba(255, 255, 255, 0.85); text-decoration: none; display: inline-flex; align-items: center; min-height: 36px; }
.footer-col a:hover { color: var(--yellow); text-decoration: underline; }
.footer-col address p { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.6rem; }
.footer-col address .icon { color: var(--orange); margin-top: 3px; }
.footer-col address a { min-height: 0; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.12); padding-block: 1.25rem calc(1.25rem + 90px); font-size: 0.85rem; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: rgba(255, 255, 255, 0.75); display: inline-flex; align-items: center; gap: 0.3rem; }
@media (min-width: 768px) { .footer-bottom { padding-bottom: 1.25rem; } }

/* ------------------------------------------------------------------ */
/* Floating actions (WhatsApp + Call)                                  */
/* ------------------------------------------------------------------ */
.floating-actions {
  position: fixed; right: max(1rem, env(safe-area-inset-right)); bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 0.6rem;
}
.fab {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-width: 56px; height: 56px; padding: 0 1rem; border-radius: 999px; text-decoration: none; font-weight: 700;
  box-shadow: 0 8px 24px rgba(51, 21, 4, 0.28); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.fab:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(51, 21, 4, 0.34); }
.fab-label { display: none; font-size: 0.95rem; }
.fab-call { background: var(--orange); color: var(--brown); }
.fab-whatsapp { background: var(--whatsapp); color: var(--brown); }
@media (max-width: 767.98px) { .fab { width: 56px; padding: 0; } }
@media (min-width: 768px) { .fab-label { display: inline; } .fab { padding: 0 1.25rem 0 1rem; } }

/* ------------------------------------------------------------------ */
/* Admin                                                               */
/* ------------------------------------------------------------------ */
.page-admin .floating-actions { display: none; }
.page-admin .form-panel h1 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); margin-bottom: 1rem; }
.admin-actions { display: flex; gap: 0.5rem; align-items: center; }
.admin-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (min-width: 720px) { .admin-stats { grid-template-columns: repeat(4, 1fr); } }
.enquiry-list { display: grid; gap: 1rem; }
.enquiry { background: var(--white); border: 1px solid var(--sand-2); border-left: 6px solid var(--sand-3); border-radius: var(--radius); padding: 1.5rem; }
.enquiry-new { border-left-color: var(--orange); }
.enquiry-replied { border-left-color: var(--gold); }
.enquiry-closed { opacity: 0.7; }
.enquiry-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.enquiry-head h2 { font-size: 1.3rem; margin: 0.5rem 0 0.25rem; }
.enquiry-head small { font-size: 0.9rem; color: var(--ink-3); font-family: var(--font-body); font-weight: 500; }
.enquiry-meta { margin: 0; font-size: 0.875rem; color: var(--ink-3); }
.enquiry-status { display: flex; gap: 0.5rem; align-items: center; }
.enquiry-status select { min-height: 40px; padding: 0.35rem 0.6rem; border: 2px solid var(--sand-3); border-radius: var(--radius-sm); font: inherit; }
.badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.55rem; border-radius: 999px; margin-right: 0.25rem; }
.badge-trip { background: var(--orange); color: var(--brown); }
.badge-contact { background: var(--gold); color: var(--white); }
.badge-status { background: var(--sand); color: var(--brown); }
.enquiry-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.75rem; margin-bottom: 1rem; }
.enquiry-facts dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-weight: 700; }
.enquiry-facts dd { font-weight: 600; color: var(--brown); font-size: 0.95rem; }
.enquiry-subject { margin-bottom: 0.5rem; }
.enquiry-message { margin: 0; white-space: pre-line; color: var(--ink-2); background: var(--sand); padding: 1rem; border-radius: var(--radius-sm); }

/* ------------------------------------------------------------------ */
/* Print                                                               */
/* ------------------------------------------------------------------ */
@media print {
  .topbar, .site-header, .site-footer, .floating-actions, .cta-band, .nav-toggle { display: none !important; }
  body { color: #000; }
  a { color: #000; }
}
