/* ==========================================================================
   Mabu Tours — site.min.css
   Hand-authored (no build step). Structure: tokens → fonts → reset →
   accessibility → utilities → components. Utility classes reference the
   brand tokens so re-skinning never touches structural CSS.
   ========================================================================== */

/* ---------- Self-hosted fonts (latin subset, variable) ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-var-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-var-latin.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --color-primary: #2F4A32;
  --color-primary-dark: #223528;
  --color-primary-darker: #17241A;
  --color-accent: #D97D3D;
  --color-accent-dark: #B5622C;
  --color-gold: #E8B04B;
  --color-gold-dark: #C8912F;
  --color-sand: #F5EFE6;

  --color-neutral-50:  #FBF8F3;
  --color-neutral-100: #F5EFE6;
  --color-neutral-200: #EAE1D3;
  --color-neutral-300: #D9CDB8;
  --color-neutral-400: #B7A88E;
  --color-neutral-500: #8C7D64;
  --color-neutral-600: #6A5D48;
  --color-neutral-700: #4C4235;
  --color-neutral-800: #332C22;
  --color-neutral-900: #211C15;

  --color-bg: #FBF8F3;
  --color-surface: #FFFFFF;
  --color-text: #2A241C;
  --color-text-muted: #574C3C;
  --color-heading: #223528;
  --color-border: #E3D9C8;

  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(33, 28, 21, .06), 0 2px 6px rgba(33, 28, 21, .05);
  --shadow: 0 4px 14px rgba(33, 28, 21, .08), 0 2px 4px rgba(33, 28, 21, .05);
  --shadow-lg: 0 18px 40px rgba(33, 28, 21, .16);
  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--color-accent-dark); }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-heading);
  line-height: 1.15;
  font-weight: 600;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
p { text-wrap: pretty; }
ul[class], ol[class] { list-style: none; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* ---------- Accessibility ---------- */
.sr-only {
  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: 8px; top: -60px; z-index: 1000;
  background: var(--color-primary); color: #fff; padding: .6rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; color: #fff; }

:focus-visible {
  outline: 3px solid var(--color-primary-darker);
  outline-offset: 2px;
  border-radius: 2px;
}
/* On dark surfaces, switch the focus ring to gold for contrast */
.site-header :focus-visible,
.hero :focus-visible,
.bg-primary :focus-visible,
.bg-primary-dark :focus-visible,
.cta-band :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--color-gold);
}

/* ==========================================================================
   Utilities (mobile-first; responsive variants via media queries below)
   ========================================================================== */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1rem; }

/* display / flex / grid */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-1 { flex: 1 1 0%; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* gap / spacing scale (rem): 1=.25 2=.5 3=.75 4=1 5=1.25 6=1.5 8=2 10=2.5 12=3 16=4 20=5 24=6 */
.gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; } .gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; } .gap-12 { gap: 3rem; }
.mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; } .mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; } .mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: .5rem; } .mb-3 { margin-bottom: .75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.mx-auto { margin-inline: auto; }
.py-4 { padding-block: 1rem; } .py-8 { padding-block: 2rem; } .py-12 { padding-block: 3rem; }
.pt-0 { padding-top: 0; }

/* type */
.text-xs { font-size: .75rem; } .text-sm { font-size: .875rem; } .text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; } .text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; } .text-4xl { font-size: 2.25rem; } .text-5xl { font-size: 3rem; }
.font-heading { font-family: var(--font-heading); }
.font-semibold { font-weight: 600; } .font-bold { font-weight: 700; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: .08em; }
.leading-relaxed { line-height: 1.75; }

/* color */
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent-dark); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: #fff; }
.text-sand { color: var(--color-sand); }
.bg-primary { background: var(--color-primary); color: #fff; }
.bg-primary-dark { background: var(--color-primary-dark); color: #fff; }
.bg-sand { background: var(--color-sand); }
.bg-surface { background: var(--color-surface); }
.bg-neutral-50 { background: var(--color-neutral-50); }
.measure { max-width: 68ch; }
.measure-narrow { max-width: 54ch; }

/* ==========================================================================
   Components
   ========================================================================== */

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: 1rem; line-height: 1.2; text-align: center;
  padding: .8rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease, border-color .12s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: .55rem 1.1rem; font-size: .9375rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-accent { background: var(--color-accent); color: var(--color-primary-darker); }
.btn-accent:hover { background: var(--color-accent); color: var(--color-primary-darker); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-gold { background: var(--color-gold); color: var(--color-neutral-900); }
.btn-gold:hover { background: var(--color-gold); color: var(--color-neutral-900); box-shadow: var(--shadow); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost-light:hover { background: #fff; color: var(--color-primary); border-color: #fff; }

/* ---- Header / nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(47, 74, 50, .97);
  backdrop-filter: saturate(1.1) blur(6px);
  border-bottom: 1px solid rgba(232, 176, 75, .28);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 66px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: #fff; }
.brand:hover { color: #fff; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-word { font-family: var(--font-heading); font-weight: 600; font-size: 1.35rem; color: #fff; letter-spacing: -0.01em; }
.brand-footer .brand-word { color: var(--color-sand); }

.primary-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  display: inline-block; color: var(--color-sand); text-decoration: none;
  padding: .5rem .7rem; border-radius: var(--radius-sm); font-weight: 500; font-size: .95rem;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-menu a[aria-current="page"] { color: var(--color-gold); font-weight: 600; }
.nav-cta-item { margin-left: .4rem; }
.nav-cta-item .btn { color: var(--color-primary-darker); }

.nav-toggle {
  display: none; background: transparent; border: 0; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm);
}
.nav-toggle:hover { background: rgba(255,255,255,.1); }
.nav-toggle-bars { display: inline-block; width: 24px; height: 16px; position: relative; }
.nav-toggle-bars span {
  position: absolute; left: 0; height: 2px; width: 100%; background: #fff; border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 7px; }
.nav-toggle-bars span:nth-child(3) { top: 14px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ---- Sections ---- */
.section { padding-block: 3.5rem; }
.section-lg { padding-block: 5rem; }
.section-tight { padding-block: 2.5rem; }
.section-head { max-width: 62ch; margin-bottom: 2.25rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--color-accent-dark); margin-bottom: .6rem;
}
.bg-primary .eyebrow, .cta-band .eyebrow, .hero .eyebrow { color: var(--color-gold); }
.section-title { font-size: clamp(1.7rem, 1.2rem + 2.2vw, 2.5rem); }
.section-intro { font-size: 1.125rem; color: var(--color-text-muted); margin-top: .75rem; }
.bg-primary .section-title, .cta-band .section-title { color: #fff; }
.bg-primary .section-intro, .cta-band .section-intro { color: rgba(245, 239, 230, .85); }

/* ---- Hero ---- */
.hero { position: relative; color: #fff; overflow: hidden; background: var(--color-primary-darker); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(23, 36, 26, .55) 0%, rgba(23, 36, 26, .68) 55%, rgba(23, 36, 26, .82) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-block: clamp(3.5rem, 2rem + 9vw, 7rem); }
.hero-content { max-width: 40rem; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 1.4rem + 4vw, 3.6rem); line-height: 1.08; }
.hero-lead { font-size: clamp(1.05rem, .95rem + .6vw, 1.3rem); color: rgba(245, 239, 230, .92); margin-top: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; margin-top: 2.2rem; color: rgba(245,239,230,.85); font-size: .9rem; }
.hero-trust li { display: flex; align-items: center; gap: .5rem; }
.hero-trust svg { flex: none; }
.page-hero { background: var(--color-primary); color: #fff; padding-block: clamp(2.5rem, 1.5rem + 6vw, 4.5rem); }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 3vw, 3rem); }
.page-hero .lead { color: rgba(245, 239, 230, .9); font-size: 1.15rem; margin-top: .9rem; max-width: 60ch; }

/* ---- Breadcrumb ---- */
.breadcrumb { font-size: .85rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0; margin: 0; color: rgba(245,239,230,.75); }
.breadcrumb li::after { content: "/"; margin-left: .4rem; color: rgba(245,239,230,.5); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: rgba(245,239,230,.85); text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: #fff; }

/* ---- Cards / grids ---- */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  height: 100%;
}
.card-link { display: block; text-decoration: none; color: inherit; }
.card-link:hover { color: inherit; }
.card-link:hover .card { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--color-neutral-300); }
.card-icon {
  width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--color-sand); color: var(--color-primary); margin-bottom: 1rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.card p { color: var(--color-text-muted); font-size: .96rem; }
.card-more { display: inline-flex; align-items: center; gap: .35rem; margin-top: .9rem; font-weight: 600; color: var(--color-accent-dark); font-size: .92rem; }
.card-link:hover .card-more { gap: .6rem; }

/* Destination cards with image */
.dest-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.dest-card .dest-media { aspect-ratio: 3 / 2; background: var(--color-neutral-200); overflow: hidden; }
.dest-card .dest-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-link:hover .dest-card .dest-media img { transform: scale(1.05); }
.dest-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.dest-region { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--color-accent-dark); font-weight: 700; }
.dest-body h3 { font-size: 1.2rem; margin: .3rem 0 .4rem; }
.dest-body p { color: var(--color-text-muted); font-size: .95rem; flex: 1; }

/* ---- Feature list / included ---- */
.tick-list { list-style: none; padding: 0; display: grid; gap: .6rem; }
.tick-list li { position: relative; padding-left: 1.9rem; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 1.25rem; height: 1.25rem;
  background: var(--color-primary); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/76% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/76% no-repeat;
}

/* ---- Tour sections (alternating) ---- */
.tour {
  display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: start;
  padding-block: 2.75rem; border-top: 1px solid var(--color-border); scroll-margin-top: 90px;
}
.tour:first-of-type { border-top: 0; }
.tour-media { border-radius: var(--radius); overflow: hidden; background: var(--color-neutral-200); aspect-ratio: 4 / 3; box-shadow: var(--shadow-sm); }
.tour-media img { width: 100%; height: 100%; object-fit: cover; }
.tour-badge {
  display: inline-flex; align-items: center; gap: .4rem; background: var(--color-sand);
  color: var(--color-primary); font-weight: 600; font-size: .8rem; padding: .3rem .7rem;
  border-radius: 999px; margin-bottom: .7rem;
}
.tour h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); }
.tour .who { font-size: .95rem; color: var(--color-text-muted); font-style: italic; margin-top: .5rem; }
.tour-detail { margin-top: 1.1rem; }
.tour-detail h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-neutral-600); margin-bottom: .5rem; }

/* ---- Destination detail blocks ---- */
.dest-detail { padding-block: 2.75rem; border-top: 1px solid var(--color-border); scroll-margin-top: 90px; }
.dest-detail:first-of-type { border-top: 0; }
.dest-detail .dest-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 1rem; }
.dest-detail h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); }
.dest-facts { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
.fact { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.fact h3 { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--color-accent-dark); margin-bottom: .35rem; }
.fact p { font-size: .95rem; color: var(--color-text); margin: 0; }

/* ---- Trust / stats ---- */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; }
.trust-item .t-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,.12); display: inline-flex; align-items: center; justify-content: center; color: var(--color-gold); }
.trust-item h3 { color: #fff; font-size: 1.1rem; margin-bottom: .25rem; }
.trust-item p { color: rgba(245,239,230,.82); font-size: .95rem; }

/* ---- Testimonials ---- */
.quote-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.quote {
  background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote blockquote { font-family: var(--font-heading); font-size: 1.15rem; line-height: 1.45; color: var(--color-heading); font-weight: 500; }
.quote .q-mark { color: var(--color-gold); font-size: 2.4rem; line-height: 1; font-family: var(--font-heading); margin-bottom: .3rem; }
.quote figcaption { margin-top: 1.1rem; display: flex; align-items: center; gap: .75rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: inline-flex;
  align-items: center; justify-content: center; font-weight: 700; color: #fff; font-family: var(--font-heading);
  background: var(--color-primary); font-size: 1rem;
}
.avatar.a2 { background: var(--color-accent-dark); }
.avatar.a3 { background: var(--color-gold-dark); color: var(--color-neutral-900); }
.q-name { font-weight: 600; color: var(--color-text); font-size: .95rem; }
.q-meta { color: var(--color-text-muted); font-size: .85rem; }

/* ---- CTA band ---- */
.cta-band { background: var(--color-primary); color: #fff; position: relative; overflow: hidden; }
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,176,75,.25), transparent 70%); pointer-events: none;
}
.cta-band .cta-inner { position: relative; display: flex; flex-direction: column; gap: 1.4rem; align-items: flex-start; padding-block: 3.25rem; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 1.3rem + 2vw, 2.4rem); max-width: 24ch; }
.cta-band p { color: rgba(245,239,230,.88); max-width: 56ch; }

/* ---- Prose (legal + articles) ---- */
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 { font-size: 1.6rem; margin-top: 2.4rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8rem; }
.prose p, .prose li { color: var(--color-text); }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a { color: var(--color-primary); font-weight: 500; }
.prose strong { color: var(--color-heading); }
.prose blockquote { border-left: 4px solid var(--color-gold); padding: .3rem 0 .3rem 1.1rem; color: var(--color-text-muted); font-style: italic; }
.prose code { background: var(--color-neutral-100); border: 1px solid var(--color-border); border-radius: 4px; padding: .1em .4em; font-size: .9em; }
.lead-para { font-size: 1.2rem; color: var(--color-text-muted); line-height: 1.6; }

/* ---- Article cards (insights index) ---- */
.article-card { display: flex; flex-direction: column; height: 100%; }
.article-card .a-media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--color-neutral-200); }
.article-card .a-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-link:hover .article-card .a-media img { transform: scale(1.04); }
.article-card .a-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.a-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--color-accent-dark); }
.article-card h3 { font-size: 1.2rem; margin: .35rem 0 .5rem; }
.article-card p { color: var(--color-text-muted); font-size: .95rem; flex: 1; }
.a-read { font-size: .85rem; color: var(--color-text-muted); margin-top: .9rem; }

/* article meta on a single insight page */
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; color: var(--color-text-muted); font-size: .9rem; margin-top: .8rem; }
.article-figure { margin: 1.8rem 0; }
.article-figure img { width: 100%; border-radius: var(--radius); }
.article-figure figcaption { font-size: .82rem; color: var(--color-text-muted); margin-top: .5rem; text-align: center; }
.callout { background: var(--color-sand); border: 1px solid var(--color-border); border-left: 4px solid var(--color-accent); border-radius: var(--radius); padding: 1.2rem 1.3rem; }
.callout h3 { margin-top: 0; font-size: 1.05rem; }

/* ---- Team ---- */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.team-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.team-avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1rem; display: flex;
  align-items: center; justify-content: center; font-family: var(--font-heading);
  font-weight: 600; font-size: 1.8rem; color: #fff; background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}
.team-avatar.tv2 { background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark)); color: var(--color-primary-darker); }
.team-avatar.tv3 { background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark)); color: var(--color-neutral-900); }
.team-card h3 { font-size: 1.15rem; margin-bottom: .1rem; }
.team-role { color: var(--color-accent-dark); font-weight: 600; font-size: .85rem; margin-bottom: .6rem; }
.team-card p { color: var(--color-text-muted); font-size: .92rem; }

/* ---- Forms ---- */
.form-input, .form-textarea, .form-select {
  width: 100%; background: var(--color-surface); border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm); padding: .7rem .85rem; font-size: 1rem; color: var(--color-text);
  transition: border-color .12s ease, box-shadow .12s ease;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--color-neutral-500); }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(47,74,50,.15);
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-field { display: block; margin-bottom: 1.1rem; }
.form-label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: .35rem; color: var(--color-heading); }
.form-req { color: var(--color-accent-dark); }
.form-hint { font-size: .82rem; color: var(--color-text-muted); margin-top: .3rem; }
.form-error-text { color: #9a2f18; font-size: .85rem; margin-top: .35rem; font-weight: 500; }
.form-input[aria-invalid="true"], .form-textarea[aria-invalid="true"], .form-select[aria-invalid="true"] { border-color: #b23a1a; }
.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-flash { border-radius: var(--radius-sm); padding: .85rem 1rem; font-size: .95rem; margin-bottom: 1rem; }
.form-flash-success { background: #e6efe4; border: 1px solid #b9d3b0; color: #244a1f; }
.form-flash-error { background: #f7e6df; border: 1px solid #e2b7a2; color: #7c2c12; }

/* Newsletter (footer) */
.newsletter { background: var(--color-primary-dark); color: #fff; }
.newsletter-inner { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: center; padding-block: 2.75rem; }
.newsletter-title { color: #fff; font-size: 1.6rem; }
.newsletter-text { color: rgba(245,239,230,.85); margin-top: .5rem; max-width: 52ch; }
.newsletter-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.newsletter-row .form-input { flex: 1 1 220px; min-width: 0; }
.newsletter .form-flash { color: #17241a; }

/* ---- Footer ---- */
.site-footer { background: var(--color-primary-darker); color: var(--color-sand); }
.footer-main { padding-block: 3rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.footer-heading { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer-blurb { color: rgba(245,239,230,.78); font-size: .95rem; margin-top: 1rem; max-width: 40ch; }
.footer-links { display: grid; gap: .55rem; list-style: none; padding: 0; }
.footer-links a { color: rgba(245,239,230,.82); text-decoration: none; font-size: .95rem; }
.footer-links a:hover { color: var(--color-gold); }
.footer-address { font-style: normal; color: rgba(245,239,230,.82); font-size: .95rem; display: grid; gap: .75rem; margin-bottom: 1.2rem; }
.footer-address a { color: rgba(245,239,230,.9); }
.footer-address a:hover { color: var(--color-gold); }
.social-list { display: flex; gap: 1rem; margin-top: 1rem; list-style: none; padding: 0; }
.social-list a { color: var(--color-sand); font-size: .9rem; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.08); padding-block: 1.25rem; }
.footer-bar-inner { display: flex; flex-direction: column; gap: .8rem; align-items: center; text-align: center; }
.footer-copy { color: rgba(245,239,230,.7); font-size: .85rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; justify-content: center; list-style: none; padding: 0; }
.footer-legal a { color: rgba(245,239,230,.75); text-decoration: none; font-size: .85rem; }
.footer-legal a:hover { color: var(--color-gold); }

/* ---- Map ---- */
.map-embed { border: 0; width: 100%; height: 380px; border-radius: var(--radius); display: block; }
.map-wrap { border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ---- Misc ---- */
.pill { display: inline-flex; align-items: center; gap: .4rem; background: var(--color-sand); color: var(--color-primary); border-radius: 999px; padding: .3rem .8rem; font-size: .82rem; font-weight: 600; }
.divider { height: 1px; background: var(--color-border); border: 0; margin-block: 2rem; }
.anchor-nav { display: flex; flex-wrap: wrap; gap: .5rem; }
.anchor-nav a { background: var(--color-surface); border: 1px solid var(--color-border); color: var(--color-primary); padding: .4rem .85rem; border-radius: 999px; text-decoration: none; font-size: .88rem; font-weight: 500; }
.anchor-nav a:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius); background: var(--color-surface); padding: 1.2rem 1.35rem; box-shadow: var(--shadow-sm); }
.faq-item + .faq-item { margin-top: 1rem; }
.faq-item h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.faq-item p { color: var(--color-text-muted); }
.faq-item p + p { margin-top: .7rem; }
.img-note { display: none; }

/* ---- Scene illustrations (brand-owned SVG placeholders for photography) ---- */
.scene { width: 100%; height: 100%; display: block; }
.hero-media .scene { position: absolute; inset: 0; }
.dest-media .scene, .a-media .scene, .tour-media .scene { transition: transform .4s ease; }
.card-link:hover .dest-media .scene,
.card-link:hover .a-media .scene { transform: scale(1.05); }

/* ---- Inline icon sizing ---- */
.card-more svg, .link-arrow svg { width: 18px; height: 18px; }
.hero-trust svg { width: 19px; height: 19px; color: var(--color-gold); }
.pill svg, .tour-badge svg { width: 16px; height: 16px; }
.fact-icon { color: var(--color-accent-dark); }
.link-arrow { display: inline-flex; align-items: center; gap: .35rem; font-weight: 600; color: var(--color-accent-dark); text-decoration: none; }
.link-arrow:hover { gap: .55rem; color: var(--color-accent-dark); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
  .dest-facts { grid-template-columns: repeat(2, 1fr); }
  .footer-bar-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .hero-actions { flex-wrap: nowrap; }
}

@media (min-width: 768px) {
  .section { padding-block: 4.5rem; }
  .section-lg { padding-block: 6rem; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1.2fr 1fr; gap: 2.5rem; }
  .cta-band .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cta-band .cta-inner .cta-text { flex: 1; }
  .tour { grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
  .tour.reverse .tour-media { order: 2; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.5rem; }
  .dest-facts { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: start; }
  .split-even { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
}

/* ---- Mobile nav behaviour ---- */
@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--color-primary); border-top: 1px solid rgba(232,176,75,.25);
    padding: .6rem 1rem 1.1rem; box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - 66px); overflow-y: auto;
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: .75rem .6rem; font-size: 1rem; border-radius: var(--radius-sm); }
  .nav-cta-item { margin: .5rem 0 0; }
  .nav-cta-item .btn { width: 100%; }
  .primary-nav { position: static; }
  .site-header .container { position: relative; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu { display: flex !important; }
}
