/* =========================================================
   Morehe Safaris – Main Stylesheet
   Design tokens + utilities layered on top of Tailwind CDN.
   Reference: stitch_morehe_safaris_design_system/DESIGN.md
   ========================================================= */

:root {
  /* ------- SURFACES ------- */
  --surface:                  #fbf6ef;   /* warm ivory – premium, not clinical */
  --surface-dim:              #ece0d1;
  --surface-container-lowest: #ffffff;
  --surface-container-low:    #f6ede1;
  --surface-container:        #f1e5d3;
  --surface-container-high:   #ecdcc6;
  --surface-container-highest:#e5d2b8;

  /* ------- TEXT ------- */
  --on-surface:         #1a1411;
  --on-surface-variant: #4a3d2f;
  --inverse-surface:    #2b241d;
  --inverse-on-surface: #fbf6ef;

  /* ------- OUTLINES ------- */
  --outline:         #80715c;
  --outline-variant: #d9c9b3;

  /* ------- BRAND CORE – tightened to 3 anchors ------- */
  --brand-dark:        #0d4247;          /* Deep teal (hero gradient, nav, headings on light) */
  --brand-dark-deep:   #072a2d;          /* Pressed state / footer dark alt */
  --brand-dark-trans:  rgba(13, 66, 71, 0.92);
  --brand-ochre:       #f8a11c;          /* Safari gold – primary CTA */
  --brand-ochre-hover: #ffb64a;
  --brand-ivory:       #fbf6ef;
  --brand-sand:        #fff4ca;          /* Savannah Dust – highlight backgrounds */

  /* Legacy tokens kept as aliases so no page breaks */
  --primary:           var(--brand-dark);
  --primary-container: var(--brand-ochre);
  --on-primary:        #ffffff;
  --secondary-container:#ffcc7a;
  --tertiary:          #0a6b7a;
  --brand-mint:        #f4fdfb;
  --brand-dust:        var(--brand-sand);
  --brand-dust-text:   #a86f1a;
  --brand-teal-soft:   #afcace;
  --brand-teal-outline:#7d9a9d;

  /* ------- CHANNEL COLOURS (non-brand, for consistency) ------- */
  --whatsapp:       #25d366;
  --whatsapp-dark:  #128c7e;

  /* ------- RADII ------- */
  --radius-sm: 0.25rem;
  --radius:    0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  /* ------- SHADOWS ------- */
  --shadow-sm: 0 1px 2px rgba(13, 66, 71, 0.06),
               0 1px 3px rgba(13, 66, 71, 0.05);
  --shadow-md: 0 4px 10px rgba(13, 66, 71, 0.08),
               0 2px 4px rgba(13, 66, 71, 0.06);
  --shadow-lg: 0 10px 28px rgba(13, 66, 71, 0.12),
               0 4px 10px rgba(13, 66, 71, 0.06);
  --shadow-hover: 0 18px 40px rgba(13, 66, 71, 0.18);
  --shadow-fab:   0 12px 28px rgba(18, 140, 126, 0.45);

  /* ------- MOTION ------- */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);

  /* ------- SPACING RHYTHM ------- */
  --section-space-mobile: clamp(3rem, 8vw, 4.5rem);
  --section-space-desktop: clamp(4.5rem, 8vw, 6.5rem);
  --stack-gap-mobile: 1rem;
  --stack-gap-desktop: 1.5rem;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--surface);
  color: var(--on-surface);
  /* Body: prefer DM Sans for a crisper, modern feel; fall back to Be Vietnam / system */
  font-family: 'DM Sans', 'Be Vietnam Pro', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01' on, 'cv11' on;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  /* Headings: prefer Fraunces (distinctive, travel-brand), fall back to Noto Serif */
  font-family: 'Fraunces', 'Noto Serif', Georgia, serif;
  font-feature-settings: 'ss01' on;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p {
  line-height: 1.68;
  text-wrap: pretty;
}

/* Lightweight section rhythm helpers across pages */
main > section {
  scroll-margin-top: 6.25rem;
}

main > section + section {
  margin-top: var(--section-space-mobile);
}
/* Keep Tailwind `.font-serif` working with our preferred stack */
.font-serif {
  font-family: 'Fraunces', 'Noto Serif', Georgia, serif !important;
}

/* ---------- Material Symbols refinement ---------- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ---------- Skip-to-content (a11y) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--brand-dark);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 0.5rem 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Overlays ---------- */
.hero-gradient {
  background:
    linear-gradient(100deg,
      rgba(7, 42, 45, 0.84) 0%,
      rgba(7, 42, 45, 0.62) 36%,
      rgba(7, 42, 45, 0.28) 64%,
      rgba(7, 42, 45, 0.12) 100%),
    linear-gradient(180deg,
      rgba(7, 42, 45, 0.02) 0%,
      rgba(7, 42, 45, 0.38) 62%,
      rgba(7, 42, 45, 0.86) 100%);
}
.hero-vignette {
  background:
    radial-gradient(120% 80% at 50% 0%,
      rgba(0,0,0,0) 45%,
      rgba(7,42,45,0.35) 100%);
}
.hero-image-zoom {
  animation: hero-drift 18s ease-out forwards;
}
@keyframes hero-drift {
  0% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1.08);
  }
}
.hero-copy-shadow {
  text-shadow: 0 2px 10px rgba(6, 22, 24, 0.35);
}
.card-overlay {
  background: linear-gradient(
    180deg,
    rgba(7, 42, 45, 0) 30%,
    rgba(7, 42, 45, 0.88) 100%
  );
}

/* ---------- Navigation ---------- */
.nav-frosted {
  background-color: var(--brand-dark-trans);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid rgba(175, 202, 206, 0.3);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-brand-logo {
  height: 5.5rem;
  width: auto;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform 0.3s var(--ease-out);
}
.nav-brand:hover .nav-brand-logo {
  transform: scale(1.035);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
@media (min-width: 768px) {
  .nav-shell > nav[aria-label="Primary"] {
    display: flex;
    flex: 1;
    margin-left: 1.5rem;
  }
  .nav-shell > nav[aria-label="Primary"] .nav-list {
    width: 100%;
    justify-content: flex-end;
  }
}
.nav-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  line-height: 1;
  text-transform: uppercase;
  padding: 0.62rem 0.56rem;
  border-radius: 0.5rem;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  transition: background-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.2s var(--ease-out);
  cursor: pointer;
}
.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.nav-link--trigger .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.2s var(--ease-out);
}
.nav-link.is-active {
  color: var(--brand-ochre);
  font-weight: 700;
}
.nav-dropdown {
  position: relative;
}
.nav-submenu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  width: min(92vw, 28rem);
  max-height: min(70vh, 28rem);
  overflow-y: auto;
  display: grid;
  gap: 0.15rem;
  padding: 0.6rem;
  background: #ffffff;
  border: 1px solid rgba(7, 42, 45, 0.14);
  border-radius: 0.85rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0.2s;
  z-index: 85;
}
.nav-submenu--sm {
  width: min(92vw, 22rem);
}
.nav-submenu a {
  display: block;
  padding: 0.62rem 0.72rem;
  border-radius: 0.55rem;
  color: var(--brand-dark);
  font-size: 0.9rem;
  line-height: 1.35;
}
.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(13, 66, 71, 0.08);
  color: var(--brand-dark-deep);
}
.nav-submenu-divider {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(13, 66, 71, 0.14);
}
.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-link--trigger .material-symbols-outlined,
.nav-dropdown:focus-within .nav-link--trigger .material-symbols-outlined,
.nav-dropdown.is-open .nav-link--trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

/* Package cards focus ring (keyboard) */
.package-card a:focus-visible {
  outline: 2px solid var(--brand-ochre);
  outline-offset: 3px;
  border-radius: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.875rem 1.5rem;
  border-radius: 9999px;
  transition: transform 0.15s var(--ease-out),
              background-color 0.2s var(--ease-out),
              box-shadow 0.2s var(--ease-out),
              color 0.2s var(--ease-out),
              border-color 0.2s var(--ease-out);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: normal;
  word-break: break-word;
  min-height: 44px;
  text-align: center;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background-color: var(--brand-ochre);
  color: var(--brand-dark);
  box-shadow: 0 4px 14px rgba(248, 161, 28, 0.35);
}
.btn-primary:hover {
  background-color: var(--brand-ochre-hover);
  box-shadow: 0 8px 22px rgba(248, 161, 28, 0.45);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-dark);
}
.btn-secondary:hover {
  background-color: var(--brand-dark);
  color: #ffffff;
}

.btn-ghost-light {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp-branded button – green is the universal recognised cue */
.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background-color: var(--whatsapp-dark);
  box-shadow: 0 8px 22px rgba(18, 140, 126, 0.45);
  color: #fff;
}
.btn-whatsapp svg { width: 18px; height: 18px; fill: currentColor; }

.btn-sm {
  padding: 0.6rem 1.1rem;
  font-size: 14px;
}

/* ---------- Chips / Tags ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background-color: var(--brand-sand);
  color: var(--brand-dust-text);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.chip-light {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(4px);
}
.chip-dark {
  background-color: rgba(7, 42, 45, 0.85);
  color: #fff;
}

/* Urgency pill – real scarcity, not fake ticker */
.urgency-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #fff1ec;
  color: #9a3412;
  border: 1px solid #fdba74;
  padding: 0.3rem 0.7rem;
  border-radius: 9999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.urgency-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: #ea580c;
  box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
  animation: urgency-pulse 1.6s infinite;
}
@keyframes urgency-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(234, 88, 12, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(234, 88, 12, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(234, 88, 12, 0);   }
}

/* "Most booked" ribbon */
.ribbon-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--brand-ochre);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(248, 161, 28, 0.35);
}

/* Price anchor pill */
.price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: 'Fraunces', 'Noto Serif', serif;
}
.price-pill .price-from {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.price-pill .price-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--brand-dark);
  line-height: 1;
}
.price-pill .price-pp {
  font-size: 12px;
  color: var(--on-surface-variant);
  font-family: 'DM Sans', sans-serif;
}

/* ---------- Cards ---------- */
.card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(175, 202, 206, 0.3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  overflow: hidden;
}

/* Keep long package names and dynamic copy from causing mobile overflow. */
.package-card h3,
[data-package-id] h3 {
  overflow-wrap: anywhere;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Safari / itinerary feature card – image dominant */
.safari-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  background-color: var(--surface-container);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.safari-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.safari-card .safari-card__img {
  transition: transform 0.7s var(--ease-out);
}
.safari-card:hover .safari-card__img {
  transform: scale(1.06);
}

/* ---------- Inputs ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}
.field input,
.field select,
.field textarea {
  background-color: #ffffff;
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 16px;
  color: var(--on-surface);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-ochre);
  box-shadow: 0 0 0 3px rgba(248, 161, 28, 0.25);
}

/* ---------- Section utilities ---------- */
.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
}
.eyebrow--ochre { color: var(--brand-ochre); }

/* Trust strip under hero */
.trust-strip {
  background: rgba(13, 66, 71, 0.04);
  border-top: 1px solid rgba(13, 66, 71, 0.08);
  border-bottom: 1px solid rgba(13, 66, 71, 0.08);
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid var(--outline-variant);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--on-surface-variant);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.trust-badge strong {
  color: var(--brand-dark);
  font-weight: 700;
}
.trust-badge .material-symbols-outlined {
  color: var(--brand-ochre);
  font-size: 18px;
}

/* Quick-answer card (hero FAQ) */
.answer-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
}

/* ---------- Itinerary Timeline ---------- */
.itin-timeline {
  position: relative;
  padding-left: 32px;
}
.itin-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-dark) 0%, rgba(13, 66, 71, 0.15) 100%);
}
.itin-day {
  position: relative;
  padding-bottom: 2rem;
}
.itin-day::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  background-color: var(--brand-dark);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 2px var(--brand-dark);
}

/* ---------- Fade-in on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  transform: translateX(-100%);
  transition: transform 0.35s var(--ease-out);
  /* Keep mobile menu surface visually solid over hero media */
  background-color: rgba(13, 66, 71, 0.98);
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.mobile-drawer-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-list {
  display: grid;
  background-color: rgba(13, 66, 71, 0.96);
}
.mobile-nav-list > li > a,
.mobile-submenu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.mobile-submenu-toggle .material-symbols-outlined {
  font-size: 20px;
  transition: transform 0.2s var(--ease-out);
}
.mobile-submenu-group.is-open .mobile-submenu-toggle .material-symbols-outlined {
  transform: rotate(180deg);
}
.mobile-submenu {
  display: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.4rem 0 0.6rem;
}
.mobile-submenu-group.is-open .mobile-submenu {
  display: block;
}
.mobile-submenu li a {
  display: block;
  padding: 0.6rem 1rem 0.6rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}
.mobile-submenu li a:hover,
.mobile-submenu li a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1220px) {
  .nav-link {
    letter-spacing: 0.03em;
    padding: 0.62rem 0.44rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 767px) {
  .nav-shell {
    padding: 0.7rem 1rem;
  }
  .nav-brand-logo {
    height: 3.15rem;
  }
  /* Typography rhythm: tighten display scale and improve readability on small screens. */
  main h1.font-serif {
    font-size: clamp(2rem, 8.4vw, 2.8rem);
    line-height: 1.12;
    letter-spacing: -0.015em;
  }
  main h2.font-serif {
    font-size: clamp(1.55rem, 6.4vw, 2.15rem);
    line-height: 1.18;
  }
  main h3.font-serif {
    font-size: clamp(1.22rem, 4.9vw, 1.55rem);
    line-height: 1.24;
  }
  main .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  main p {
    font-size: 0.98rem;
    line-height: 1.72;
  }
  main [class*="space-y-"] > * + * {
    margin-top: var(--stack-gap-mobile);
  }
  .btn {
    width: 100%;
  }
  .chip {
    white-space: normal;
  }
  .hero-image-zoom {
    animation: hero-drift-mobile 18s ease-out forwards;
  }
  @keyframes hero-drift-mobile {
    0% {
      transform: scale(1.04);
    }
    100% {
      transform: scale(1.1);
    }
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  /* Mid-size devices: smoother heading transitions between phone and desktop. */
  main h1.font-serif {
    font-size: clamp(2.5rem, 5.6vw, 4rem);
    line-height: 1.08;
  }
  main h2.font-serif {
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    line-height: 1.14;
  }
}

@media (min-width: 768px) {
  main > section + section {
    margin-top: var(--section-space-desktop);
  }
  main [class*="space-y-"] > * + * {
    margin-top: var(--stack-gap-desktop);
  }
}

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--brand-ochre);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Placeholder image ---------- */
.img-ph {
  background:
    radial-gradient(circle at 30% 20%, rgba(248, 161, 28, 0.35), transparent 60%),
    radial-gradient(circle at 75% 65%, rgba(13, 66, 71, 0.45), transparent 55%),
    linear-gradient(135deg, #3a2f1f 0%, #0d4247 100%);
}

/* ---------- KBD / inline detail ---------- */
.kbd-inline {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  background: var(--brand-sand);
  color: var(--brand-dust-text);
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
