/* ============================================================
   InAlb theme — tokens + layout. Brand: Acid Grotesk body,
   Fraunces editorial accents, lime #a3d445 on near-black ink.
   ============================================================ */
:root {
  --lime: #a3d445;
  --lime-soft: #eef7d9;
  --ink: #0a0a0a;
  --paper: #fff;
  --ink-60: rgba(10, 10, 10, 0.68);
  --ink-40: rgba(10, 10, 10, 0.56);
  --hair: rgba(10, 10, 10, 0.09);
  --green-text: #5f8f23;
  --bg: #faf9f6;
  --r: 20px;
  --shell: 1200px;
  --sh: 0 18px 40px -18px rgba(10, 10, 10, 0.28);
  --font-body: 'Acid Grotesk', Inter, system-ui, sans-serif;
  --font-display: 'Acid Grotesk', Inter, system-ui, sans-serif;
  --font-serif: Fraunces, Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 2px;
  border-radius: 6px;
}
.inalbth-shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 5vw;
}
.inalbth-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 16px;
  z-index: 99;
}
.inalbth-skip:focus {
  left: 8px;
  top: 8px;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

/* ---------- Buttons ---------- */
.inalbth-btn {
  display: inline-block;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 26px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.2s,
    color 0.2s;
}
.inalbth-btn:hover {
  transform: translateY(-2px);
}
.inalbth-btn:active {
  transform: translateY(0);
}
.inalbth-btn--lime {
  background: linear-gradient(135deg, #b8e45c, #95c736);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 7px 18px -7px rgba(132, 187, 44, 0.6);
}
.inalbth-btn--lime:hover {
  background: linear-gradient(135deg, #c2ed66, #9ccf3d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 26px -7px rgba(132, 187, 44, 0.72);
}
.inalbth-btn--ink {
  background: linear-gradient(135deg, #2c2c2c, #0a0a0a);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 7px 18px -7px rgba(10, 10, 10, 0.5);
}
.inalbth-btn--ink:hover {
  background: linear-gradient(135deg, #363636, #111);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 26px -7px rgba(10, 10, 10, 0.6);
}
.inalbth-btn--lg {
  font-size: 1rem;
  padding: 15px 34px;
}
.inalbth-btn span[aria-hidden] {
  transition: transform 0.2s;
}
.inalbth-btn:hover span[aria-hidden] {
  transform: translateX(3px);
}
.inalbth-center {
  text-align: center;
  margin-top: 34px;
}

/* ---------- Header ---------- */
.inalbth-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
}
body:not(.inalbth-has-hero) .inalbth-header {
  position: static;
  background: var(--ink);
}
.inalbth-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inalbth-header__logo img {
  display: block;
  width: 96px;
  height: auto;
}
.inalbth-header__tools {
  display: flex;
  align-items: center;
  gap: 18px;
}
.inalbth-burger {
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.inalbth-burger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.2s;
}
.inalbth-burger[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.inalbth-burger[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.inalbth-burger[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------- Overlay menu ---------- */
.inalbth-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(120% 120% at 82% 0%, #16180f 0%, #0a0a0a 58%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 20px 0 30px;
  overflow-y: auto;
}
.inalbth-overlay[hidden] {
  display: none;
}
.inalbth-overlay:not([hidden]) {
  animation: inalbth-ovfade 0.3s ease;
}
@keyframes inalbth-ovfade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.inalbth-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.inalbth-overlay__logo img {
  width: 90px;
  height: auto;
  display: block;
}
.inalbth-overlay__close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  background: none;
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.inalbth-overlay__close span {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 50%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.2s;
}
.inalbth-overlay__close span:first-child {
  transform: rotate(45deg);
}
.inalbth-overlay__close span:last-child {
  transform: rotate(-45deg);
}
.inalbth-overlay__close:hover {
  border-color: var(--lime);
  transform: rotate(90deg);
}
.inalbth-overlay__close:hover span {
  background: var(--lime);
}
.inalbth-overlay__nav {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 24px 0;
}
.inalbth-overlay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.inalbth-overlay__list li {
  opacity: 0;
  animation: inalbth-ovup 0.45s ease forwards;
  animation-delay: calc(0.055s * var(--i, 0) + 0.1s);
}
@keyframes inalbth-ovup {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.inalbth-overlay__list a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.25;
  padding: 7px 14px;
  transition:
    color 0.15s,
    transform 0.15s;
}
.inalbth-overlay__list a:hover {
  color: var(--lime);
  transform: translateX(6px);
}
.inalbth-overlay__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
  margin-top: 6px;
  width: 100%;
}
.inalbth-overlay__mail {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.inalbth-overlay__mail:hover {
  color: var(--lime);
}
.inalbth-overlay__social {
  display: flex;
  gap: 18px;
}
.inalbth-overlay__social a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
}
.inalbth-overlay__social a:hover {
  color: var(--lime);
}
@media (prefers-reduced-motion: reduce) {
  .inalbth-overlay__list li {
    opacity: 1;
    animation: none;
  }
}

/* ---------- Hero ---------- */
.inalbth-hero {
  position: relative;
  min-height: 92vh;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.inalbth-hero__h1 {
  position: absolute;
  top: 118px;
  left: 5vw;
  z-index: 4;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin: 0;
  max-width: 60ch;
}
.inalbth-hero__slides {
  position: relative;
  flex: 1;
  display: flex;
}
.inalbth-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 13vh;
}
.inalbth-hero__slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.78) 0%,
    rgba(10, 10, 10, 0.25) 55%,
    rgba(10, 10, 10, 0.45) 100%
  );
}
.inalbth-hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.inalbth-hero__slide .inalbth-shell {
  max-width: none;
  margin: 0;
  padding: 0 5vw;
}
.inalbth-hero__copy {
  position: relative;
  max-width: 760px;
  margin-right: auto;
}
.inalbth-hero__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.06;
  margin-bottom: 18px;
}
.inalbth-hero__copy p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 62ch;
  margin: 0 0 24px;
}
.inalbth-hero__nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}
.inalbth-hero__count {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.inalbth-hero__count i {
  opacity: 0.5;
  font-style: normal;
  margin: 0 7px;
}
.inalbth-hero__bars {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  flex-wrap: wrap;
}
.inalbth-hero__bar {
  height: 3px;
  width: 34px;
  border: 0;
  padding: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition:
    background 0.2s,
    width 0.2s;
}
.inalbth-hero__bar:hover {
  background: rgba(255, 255, 255, 0.6);
}
.inalbth-hero__bar.is-active {
  background: var(--lime);
  width: 46px;
}
.inalbth-hero__arrows {
  display: flex;
  gap: 8px;
  margin-left: auto;
}
.inalbth-hero__arrows button {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 99px;
  cursor: pointer;
  font-size: 1rem;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.inalbth-hero__arrows button:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

/* ---------- Sticky category pill nav (staging signature) ---------- */
.inalbth-pillnav {
  position: fixed;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.inalbth-pill {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px 13px 14px;
  border-radius: 999px;
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.16s ease,
    box-shadow 0.2s;
  white-space: nowrap;
}
.inalbth-pill:hover {
  transform: translateX(-5px);
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.55);
}
.inalbth-pill__ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  flex: none;
}
.inalbth-pill__ico svg {
  width: 20px;
  height: 20px;
}
.inalbth-pill--exp {
  background: linear-gradient(135deg, #f6a93b, #ef8a2c);
}
.inalbth-pill--day {
  background: linear-gradient(135deg, #f2728c, #ec5775);
}
.inalbth-pill--mdt {
  background: linear-gradient(135deg, #7cc4f0, #4ea8e6);
}
.inalbth-pill--tmt {
  background: linear-gradient(135deg, #a8d84f, #84bb2c);
  color: var(--ink);
}
.inalbth-pill--tmt .inalbth-pill__ico {
  background: rgba(10, 10, 10, 0.16);
}
@media (max-width: 1180px) {
  .inalbth-pillnav {
    display: none;
  }
}

/* ---------- Sections ---------- */
.inalbth-sec {
  padding: 64px 0;
}
.inalbth-sec--tint {
  background: var(--bg);
}
.inalbth-sec--ink {
  background: var(--ink);
  color: #fff;
}
.inalbth-sec__head {
  margin-bottom: 26px;
}
.inalbth-sec__head--center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.inalbth-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin: 0 0 6px;
}
.inalbth-sec--ink .inalbth-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}
/* staging-style pill eyebrow */
.inalbth-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #577a16;
  background: var(--lime-soft);
  border-radius: 999px;
  padding: 7px 16px;
  margin: 0 0 16px;
}
.inalbth-eyebrow-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}
.inalbth-sec--ink .inalbth-eyebrow-pill {
  color: var(--lime);
  background: rgba(163, 212, 69, 0.15);
}
.inalbth-sec__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
}
.inalbth-accent {
  color: #6aa329;
}
.inalbth-sec--ink .inalbth-accent {
  color: var(--lime);
}
.inalbth-sec__intro {
  color: var(--ink-60);
  margin: 16px auto 0;
  max-width: 64ch;
}
.inalbth-sec--ink .inalbth-sec__intro {
  color: rgba(255, 255, 255, 0.75);
}
/* "Most Booked X" divider + caption */
.inalbth-subhead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 34px 0 4px;
}
.inalbth-subhead__rule {
  height: 1px;
  width: min(120px, 16vw);
  background: var(--hair);
}
.inalbth-sec--ink .inalbth-subhead__rule {
  background: rgba(255, 255, 255, 0.2);
}
.inalbth-subhead__label {
  font-weight: 600;
  font-size: 1.05rem;
}
.inalbth-subhead__cap {
  text-align: center;
  color: var(--ink-60);
  margin: 0 0 6px;
}
.inalbth-sec--ink .inalbth-subhead__cap {
  color: rgba(255, 255, 255, 0.7);
}
.inalbth-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

/* ---------- Facts ---------- */
.inalbth-sec--facts {
  padding: 48px 0;
  border-bottom: 1px solid var(--hair);
}
.inalbth-facts {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.62;
  max-width: 66ch;
  margin: 0;
  color: rgba(10, 10, 10, 0.82);
  font-weight: 400;
  border-left: 3px solid var(--lime);
  padding-left: 24px;
}

/* ---------- Tailor-made steps ---------- */
.inalbth-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.inalbth-step {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r);
  padding: 22px;
}
.inalbth-step h3 {
  font-size: 1.02rem;
  margin: 0 0 8px;
  color: var(--lime);
}
.inalbth-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

/* ---------- FAQ ---------- */
.inalbth-faq {
  margin-top: 22px;
  max-width: 820px;
}
.inalbth-faq__item {
  border-bottom: 1px solid var(--hair);
  padding: 4px 0;
}
.inalbth-faq__item summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.02rem;
  padding: 14px 0;
  list-style: none;
  position: relative;
  padding-right: 34px;
}
.inalbth-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--ink-40);
  transition: transform 0.2s;
}
.inalbth-faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.inalbth-faq__item p {
  margin: 0 0 16px;
  color: var(--ink-60);
  max-width: 70ch;
}

/* ---------- Newsletter ---------- */
.inalbth-news {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.inalbth-news h2 {
  font-family: var(--font-serif);
  margin: 0 0 8px;
}
.inalbth-news p {
  margin: 0;
  color: var(--ink-60);
  max-width: 48ch;
}
.inalbth-news__form {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 430px;
}
.inalbth-news__form input {
  flex: 1;
  border: 1.5px solid var(--hair);
  border-radius: 999px;
  padding: 12px 20px;
  font: inherit;
}
.inalbth-news__form input:focus {
  outline: 2px solid var(--lime);
}

/* ---------- Blog ---------- */
.inalbth-bloggrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.inalbth-blogcard {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition:
    transform 0.2s,
    box-shadow 0.25s;
}
.inalbth-blogcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.inalbth-blogcard img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.inalbth-blogcard__body {
  padding: 18px;
}
.inalbth-blogcard h2 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.inalbth-blogcard p {
  margin: 0 0 10px;
  color: var(--ink-60);
  font-size: 0.9rem;
}
.inalbth-blogcard__meta {
  font-size: 0.78rem;
  color: var(--ink-40);
}
.inalbth-article__shell {
  max-width: 780px;
  padding-top: 120px;
  padding-bottom: 70px;
}
body:not(.inalbth-has-hero) .inalbth-article__shell {
  padding-top: 46px;
}
.inalbth-article__head h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 10px;
}
.inalbth-article__meta {
  color: var(--ink-40);
  font-size: 0.9rem;
  margin: 0 0 26px;
}
.inalbth-article__hero {
  border-radius: var(--r);
  margin-bottom: 30px;
}
.inalbth-prose {
  font-size: 1.04rem;
  line-height: 1.7;
}
.inalbth-prose h2 {
  font-family: var(--font-serif);
}
.inalbth-prose img {
  border-radius: 14px;
}

/* ---------- Footer ---------- */
.inalbth-footer {
  background: var(--ink);
  color: #fff;
  margin-top: 70px;
  padding: 60px 0 0;
}
.inalbth-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 38px;
}
.inalbth-footer__brand img {
  margin-bottom: 14px;
}
.inalbth-footer__brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  max-width: 34ch;
}
.inalbth-footer__col h2 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 14px;
}
.inalbth-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.inalbth-footer__col li {
  margin-bottom: 9px;
}
.inalbth-footer__col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.93rem;
}
.inalbth-footer__col a:hover {
  color: var(--lime);
}
.inalbth-footer__col address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.93rem;
  line-height: 1.7;
}
.inalbth-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 46px;
  padding-top: 18px;
  padding-bottom: 22px;
}
.inalbth-footer__legal p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .inalbth-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .inalbth-hero__cats {
    display: none;
  }
}
@media (max-width: 640px) {
  .inalbth-sec {
    padding: 46px 0;
  }
  .inalbth-sec__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .inalbth-footer__grid {
    grid-template-columns: 1fr;
  }
  .inalbth-hero {
    min-height: 84vh;
  }
  .inalbth-news__form {
    max-width: none;
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

/* ---------- Hero video background (YouTube, covers section) ---------- */
.inalbth-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  background-size: cover;
  background-position: center;
}
.inalbth-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.inalbth-hero__slides {
  z-index: 1;
}
.inalbth-hero__slide::before {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.82) 0%,
    rgba(10, 10, 10, 0.18) 55%,
    rgba(10, 10, 10, 0.5) 100%
  );
}

/* ---------- Quote ---------- */
.inalbth-quote {
  margin: 34px auto 8px;
  max-width: 760px;
  text-align: center;
}
.inalbth-quote p {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.45;
  font-weight: 500;
  margin: 0 0 14px;
}
.inalbth-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.inalbth-quote cite span {
  letter-spacing: 0.12em;
  color: var(--lime);
}
.inalbth-quote--light cite {
  color: var(--ink-40);
}
.inalbth-quote--light cite span {
  color: var(--ink);
}

/* ---------- Experts ---------- */
/* ---------- Tailor-made split: pitch + step journey + featured expert ---------- */
.inalbth-sec--warm {
  background: linear-gradient(180deg, #faf8f1, #f4f1e7);
}
.inalbth-tailor {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.inalbth-tailor__pitch {
  position: sticky;
  top: 96px;
}
.inalbth-tailor .inalbth-sec__title {
  margin-top: 14px;
}
.inalbth-tailor__intro {
  margin: 14px 0 0;
  max-width: 52ch;
}
.inalbth-tailor__quote {
  margin: 24px 0 26px;
  padding-left: 18px;
  border-left: 3px solid var(--lime);
}
.inalbth-tailor__quote p {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 10px;
}
.inalbth-tailor__quote cite {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--ink-40);
}
.inalbth-tailor__quote cite span {
  letter-spacing: 0.1em;
  color: #74b32e;
  font-weight: 600;
}
.inalbth-journey {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  position: relative;
}
.inalbth-journey::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 18px;
  bottom: 24px;
  width: 2px;
  background: repeating-linear-gradient(
    var(--lime) 0 7px,
    transparent 7px 15px
  );
}
.inalbth-journey__step {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 0 0 26px;
}
.inalbth-journey__step:last-child {
  padding-bottom: 0;
}
.inalbth-journey__num {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: var(--lime);
  color: var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow:
    0 0 0 6px #f6f2e9,
    0 6px 16px -8px rgba(10, 10, 10, 0.4);
  transition: transform 0.2s;
}
.inalbth-journey__num svg {
  width: 22px;
  height: 22px;
}
.inalbth-journey__step:hover .inalbth-journey__num {
  transform: scale(1.07);
}
.inalbth-journey__body {
  padding-top: 7px;
}
.inalbth-journey__body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--ink);
}
.inalbth-journey__body p {
  margin: 0;
  color: var(--ink-60);
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 42ch;
}
.inalbth-feat__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin: 0 0 14px;
}
.inalbth-feat {
  position: relative;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: var(--r);
  box-shadow: 0 16px 44px -24px rgba(10, 10, 10, 0.45);
  overflow: hidden;
}
.inalbth-feat__panel {
  display: none;
  grid-template-columns: minmax(0, 210px) 1fr;
}
.inalbth-feat__panel.is-active {
  display: grid;
  animation: inalbth-fade 0.4s ease;
}
@keyframes inalbth-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.inalbth-feat__photo {
  aspect-ratio: 4/5;
}
.inalbth-feat__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inalbth-feat__info {
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  justify-content: center;
}
.inalbth-feat__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.inalbth-feat__role {
  color: var(--green-text);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.inalbth-feat__langs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
}
.inalbth-feat__langs li {
  font-size: 0.72rem;
  background: var(--lime-soft);
  color: #4f6f15;
  border-radius: 999px;
  padding: 4px 11px;
}
.inalbth-feat__bio {
  color: var(--ink-60);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}
.inalbth-feat__cta {
  margin-top: 6px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 3px;
  transition: color 0.2s;
}
.inalbth-feat__cta:hover {
  color: #74b32e;
}
.inalbth-feat__cta span {
  display: inline-block;
  transition: transform 0.2s;
}
.inalbth-feat__cta:hover span {
  transform: translateX(3px);
}
.inalbth-feat__select {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.inalbth-feat__thumbs {
  display: flex;
  gap: 10px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.inalbth-feat__thumb {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
  opacity: 0.55;
  transition:
    opacity 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.inalbth-feat__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inalbth-feat__thumb:hover {
  opacity: 1;
}
.inalbth-feat__thumb.is-active {
  opacity: 1;
  border-color: var(--lime);
  transform: scale(1.06);
}
.inalbth-feat__arrow {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--hair);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.inalbth-feat__arrow:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}
.inalbth-feat__note {
  text-align: center;
  color: var(--ink-40);
  font-size: 0.82rem;
  margin: 16px 0 0;
}
@media (max-width: 980px) {
  .inalbth-tailor {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inalbth-tailor__pitch {
    position: static;
  }
}
@media (max-width: 560px) {
  .inalbth-feat__panel.is-active {
    grid-template-columns: 1fr;
  }
  .inalbth-feat__photo {
    aspect-ratio: 16/10;
  }
  .inalbx-pcard i {
    bottom: 15px !important;
    line-height: 1;
  }
  .inalbx .stars i {
    position: relative;
  }
  .inalbx .stars i::before {
    position: absolute;
  }
}

/* ---------- Glimpse gallery ---------- */
.inalbth-glimpse {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 26px;
}
.inalbth-glimpse img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.inalbth-glimpse img:nth-child(3n + 1) {
  grid-row: span 2;
  height: 100%;
}

/* ---------- Find us on ---------- */
.inalbth-findus {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.inalbth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 158px;
  padding: 0 26px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 16px;
  box-shadow: 0 2px 10px -6px rgba(10, 10, 10, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.inalbth-logo img {
  max-height: 42px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.inalbth-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -14px rgba(10, 10, 10, 0.25);
}
.inalbth-logo--add {
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 2px dashed rgba(10, 10, 10, 0.22);
  cursor: pointer;
  color: var(--ink-60);
  font-family: inherit;
}
.inalbth-logo--add:hover {
  border-color: var(--lime);
  background: var(--lime-soft);
  color: #5f8f23;
  transform: translateY(-3px);
  box-shadow: none;
}
.inalbth-logo__plus {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 400;
}
.inalbth-logo__addlabel {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
/* Partner questionnaire modal */
.inalbth-pmodal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
}
.inalbth-pmodal[hidden] {
  display: none;
}
.inalbth-pmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(3px);
}
.inalbth-pmodal__box {
  position: relative;
  background: #fff;
  border-radius: var(--r);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 34px 36px 36px;
  box-shadow: 0 30px 80px -28px rgba(10, 10, 10, 0.6);
  animation: inalbth-pmin 0.28s ease;
}
@keyframes inalbth-pmin {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.inalbth-pmodal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  background: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.inalbth-pmodal__close:hover {
  border-color: var(--lime);
  color: #5f8f23;
}
.inalbth-pmodal__box .inalbth-sec__title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 12px 0 0;
}
.inalbth-pmodal__intro {
  color: var(--ink-60);
  margin: 10px 0 20px;
}
.inalbth-pform {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inalbth-pform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.inalbth-pform label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-60);
}
.inalbth-pform input,
.inalbth-pform select,
.inalbth-pform textarea {
  border: 1.5px solid var(--hair);
  border-radius: 12px;
  padding: 11px 14px;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
}
.inalbth-pform input:focus,
.inalbth-pform select:focus,
.inalbth-pform textarea:focus {
  outline: 2px solid var(--lime);
  border-color: var(--lime);
}
.inalbth-pform button[type='submit'] {
  align-self: flex-start;
  margin-top: 6px;
  border: 0;
}
.inalbth-pmodal__thanks {
  text-align: center;
  padding: 14px 0 6px;
}
@media (max-width: 520px) {
  .inalbth-pform__row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Card image carousel (shared by both product plugins) ---------- */
.inalb-cardcar {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.inalb-cardcar__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.42s ease;
}
.inalb-cardcar__track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inalb-cardcar__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  gap: 6px;
  justify-content: center;
  z-index: 3;
}
.inalb-cardcar__dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.inalb-cardcar__dots button.is-active {
  background: #fff;
  transform: scale(1.35);
}
.inalb-cardcar__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 10, 10, 0.5);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.2s,
    background 0.2s;
  z-index: 3;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
}
.inalb-cardcar__nav:hover {
  background: rgba(10, 10, 10, 0.8);
}
.ph:hover .inalb-cardcar__nav,
.inalb-dt-related-card__ph:hover .inalb-cardcar__nav {
  opacity: 1;
}
.inalb-cardcar__nav--prev {
  left: 8px;
}
.inalb-cardcar__nav--next {
  right: 8px;
}
@media (hover: none) {
  .inalb-cardcar__nav {
    display: none;
  }
}

/* ---------- 404 + search ---------- */
.inalbth-404 {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 30px 0;
}
.inalbth-404 .inalbth-sec__intro {
  margin-left: auto;
  margin-right: auto;
}
.inalbth-404__links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.inalbth-searchform {
  max-width: 460px;
  margin: 22px auto 0;
}
.inalbth-searchform label {
  display: block;
}
.inalbth-searchform .search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.inalbth-searchform input[type='search'] {
  flex: 1;
  min-width: 240px;
  border: 1.5px solid var(--hair);
  border-radius: 999px;
  padding: 12px 20px;
  font: inherit;
}
.inalbth-searchform input[type='search']:focus {
  outline: 2px solid var(--lime);
}
.inalbth-searchform input[type='submit'] {
  background: var(--ink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.inalbth-searchform input[type='submit']:hover {
  background: var(--lime);
  color: var(--ink);
}

/* ---------- Partner band ---------- */
.inalbth-sec--partner {
  padding: 46px 0;
}
.inalbth-partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.inalbth-partner h2 {
  color: #fff;
  margin: 0 0 4px;
}
.inalbth-partner p {
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ---------- Benefits ---------- */
.inalbth-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.inalbth-benefit {
  border: 1px solid var(--hair);
  border-radius: var(--r);
  padding: 30px 28px;
  background: #fff;
  box-shadow: 0 2px 10px -6px rgba(10, 10, 10, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease;
}
.inalbth-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh);
}
.inalbth-benefit__ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--lime);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.inalbth-benefit__ico img {
  width: 30px;
  height: 30px;
  margin: 0;
}
.inalbth-benefit h3 {
  font-family: var(--font-serif);
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}
.inalbth-benefit p {
  margin: 0;
  color: var(--ink-60);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ---------- Sustainability ---------- */
.inalbth-sustain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
  align-items: start;
}
.inalbth-sustain__col {
  border-radius: var(--r);
  padding: 30px 32px;
}
.inalbth-sustain__col--bad {
  background: #f3f1ec;
  border: 1px solid var(--hair);
}
.inalbth-sustain__col--bad .inalbth-eyebrow {
  color: #b06a5e;
}
.inalbth-sustain__col--good {
  background: var(--ink);
  color: #fff;
  position: relative;
  box-shadow: 0 28px 60px -32px rgba(10, 10, 10, 0.6);
}
.inalbth-sustain__col--good::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--lime);
  border-radius: var(--r) var(--r) 0 0;
}
.inalbth-sustain__col--good .inalbth-eyebrow {
  color: var(--lime);
}
.inalbth-sustain__col h3 {
  font-family: var(--font-serif);
  margin: 4px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}
.inalbth-sustain__col p {
  font-size: 0.93rem;
  color: inherit;
  opacity: 0.72;
  margin: 0 0 18px;
  max-width: 46ch;
}
.inalbth-sustain__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.inalbth-sustain__col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 9px 0;
  font-size: 0.92rem;
  line-height: 1.45;
}
.inalbth-sustain__col li + li {
  border-top: 1px solid rgba(127, 127, 127, 0.14);
}
.inalbth-sustain__col--good li + li {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.inalbth-sustain__col li::before {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}
.inalbth-sustain__col--bad li::before {
  content: '✕';
  background: rgba(185, 75, 64, 0.14);
  color: #b94b40;
}
.inalbth-sustain__col--good li::before {
  content: '✓';
  background: rgba(163, 212, 69, 0.22);
  color: var(--lime);
}
.inalbth-sustain__join {
  font-family: Caveat, cursive;
  font-size: 1.5rem;
  color: var(--ink-60);
  margin-top: 20px;
  text-align: center;
}
.inalbth-news__privacy {
  color: var(--ink-40);
  font-size: 0.8rem;
  margin-top: 14px;
}
@media (max-width: 860px) {
  .inalbth-sustain {
    grid-template-columns: 1fr;
  }
}

/* ===== Pill rail refinement (audit 2026-06-09): cohesive glass body, category-colored icons, collapse-to-dot + hover/focus reveal ===== */
.inalbth-pill--exp,
.inalbth-pill--day,
.inalbth-pill--mdt,
.inalbth-pill--tmt {
  background: rgba(17, 17, 17, 0.55) !important;
  color: #fff !important;
}
.inalbth-pill {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  flex-direction: row-reverse;
  text-align: right;
  max-width: 54px;
  overflow: hidden;
  padding: 8px;
  gap: 10px;
  transition:
    max-width 0.3s ease,
    background 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.55);
}
.inalbth-pill:hover,
.inalbth-pill:focus,
.inalbth-pill:focus-visible {
  max-width: 292px;
  transform: none;
  background: rgba(17, 17, 17, 0.72) !important;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.6);
}
.inalbth-pill__t {
  opacity: 0;
  transition: opacity 0.2s ease 0.05s;
}
.inalbth-pill:hover .inalbth-pill__t,
.inalbth-pill:focus .inalbth-pill__t,
.inalbth-pill:focus-visible .inalbth-pill__t {
  opacity: 1;
}
.inalbth-pill__ico {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.16);
}
.inalbth-pill--exp .inalbth-pill__ico {
  background: linear-gradient(135deg, #f6a93b, #ef8a2c) !important;
}
.inalbth-pill--day .inalbth-pill__ico {
  background: linear-gradient(135deg, #f2728c, #ec5775) !important;
}
.inalbth-pill--mdt .inalbth-pill__ico {
  background: linear-gradient(135deg, #7cc4f0, #4ea8e6) !important;
}
.inalbth-pill--tmt .inalbth-pill__ico {
  background: linear-gradient(135deg, #a8d84f, #84bb2c) !important;
}
.inalbth-pill--tmt .inalbth-pill__ico svg {
  color: #0a0a0a;
  stroke: #0a0a0a;
}
@media (prefers-reduced-motion: reduce) {
  .inalbth-pill,
  .inalbth-pill__t {
    transition: none;
  }
}

/* ===== INALB-REDESIGN START (v2 live trial — reversible: delete to here-to-END) ===== */
.inalbx-sub {
  position: sticky;
  top: 0;
  z-index: 55;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ece7dd;
}
.inalbx-sub__in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 26px;
  overflow-x: auto;
}
.inalbx-sub__logo {
  font-weight: 700;
  color: #100f0d;
  font-size: 1.05rem;
}
.inalbx-sub a.inalbx-chip {
  font-size: 0.85rem;
  font-weight: 600;
  color: #100f0d;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid #ece7dd;
  white-space: nowrap;
  text-decoration: none;
}
.inalbx-sub a.inalbx-chip:hover {
  border-color: #a3d445;
  background: #eef6dd;
  color: #56770f;
}
.inalbx-sub__cta {
  margin-left: auto;
  background: #a3d445;
  color: #1c2806 !important;
  border-color: #a3d445 !important;
}
.inalbx-intro {
  background: #fff;
  padding: 58px 0;
}
.inalbx-intro__in {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 26px;
  text-align: center;
}
.inalbx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef6dd;
  color: #56770f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
}
.inalbx-intro p {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.38rem;
  line-height: 1.5;
  color: #2a2922;
  margin: 18px auto 0;
  max-width: 880px;
}
.inalbx-intro p b {
  color: #100f0d;
  font-weight: 600;
}
.inalbx-stats {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.inalbx-stats b {
  display: block;
  font-size: 1.6rem;
  color: #100f0d;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}
.inalbx-stats span {
  font-size: 0.74rem;
  color: #6f6e69;
  letter-spacing: 0.05em;
}
.inalbx-band {
  padding: 72px 0;
}
.inalbx-band--warm {
  background: #faf8f3;
}
.inalbx-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
}
.inalbx-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}
.inalbx-head h2 {
  font-size: 2.05rem;
  font-weight: 700;
  color: #100f0d;
  margin: 13px 0 6px;
  line-height: 1.1;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}
.inalbx-head h2 .a {
  color: #a3d445;
}
.inalbx-head p {
  color: #6f6e69;
  margin: 0;
}
.inalbx-more {
  white-space: nowrap;
  color: #56770f;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
}
.inalbx-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.inalbx-pcard {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3/4.15;
  box-shadow: 0 14px 30px -20px rgba(0, 0, 0, 0.55);
}
.inalbx-pcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.inalbx-pcard:hover img {
  transform: scale(1.07);
}
.inalbx-pcard::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.66) 100%
  );
}
.inalbx-pcard b {
  position: absolute;
  left: 16px;
  right: 12px;
  bottom: 33px;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.15;
}
.inalbx-pcard i {
  position: absolute;
  left: 16px;
  right: 12px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-style: normal;
}
.inalbx-stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.inalbx-story {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #ece7dd;
  background: #fff;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s;
}
.inalbx-story:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.4);
}
.inalbx-story .im {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.inalbx-story .im img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inalbx-story .cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.93);
  color: #56770f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.inalbx-story .bd {
  padding: 16px 18px 20px;
}
.inalbx-story .bd h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.28;
  color: #100f0d;
  margin: 0 0 8px;
}
.inalbx-story .bd em {
  color: #56770f;
  font-weight: 600;
  font-size: 0.85rem;
  font-style: normal;
}
.inalbx-pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}
.inalbx-pillars a {
  font-size: 0.86rem;
  font-weight: 600;
  color: #100f0d;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid #ece7dd;
  text-decoration: none;
}
.inalbx-pillars a:hover {
  border-color: #a3d445;
  background: #eef6dd;
  color: #56770f;
}
@media (max-width: 900px) {
  .inalbx-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .inalbx-stories {
    grid-template-columns: 1fr;
  }
  .inalbx-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ===== INALB-REDESIGN END ===== */

/* ===== INALB-HERO START (v2 live trial — reversible) ===== */
#inalbth-hero .inalbth-hero__slide,
#inalbth-hero .inalbth-hero__nav {
  display: none !important;
}
#inalbth-hero {
  display: flex;
  align-items: center;
}
.inalbx-ytwrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.inalbx-ytwrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.inalbx-ytscrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(8, 10, 6, 0.76),
    rgba(8, 10, 6, 0.42) 52%,
    rgba(8, 10, 6, 0.12)
  );
}
.inalbx-herobox {
  position: relative;
  z-index: 3;
  max-width: 700px;
}
.inalbx-herobox .inalbth-hero__h1 {
  position: static !important;
  font-size: 3.7rem !important;
  line-height: 1.07 !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 14px 0 16px !important;
  max-width: 680px;
  letter-spacing: -0.01em;
}
.inalbx-hero-eye {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: 999px;
}
.inalbx-hero-sub {
  color: #f1f0ea;
  font-size: 1.14rem;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 0 26px;
}
.inalbx-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.inalbx-hero-rate {
  margin-top: 22px;
  color: #f1f0ea;
  font-size: 0.92rem;
}
.inalbx-hero-rate b {
  color: #cfe89a;
  letter-spacing: 2px;
}
@media (max-width: 760px) {
  .inalbx-herobox .inalbth-hero__h1 {
    font-size: 2.4rem !important;
  }
}
/* ===== INALB-HERO END ===== */

/* ===== INALB-CARDS START (unify day-trip card to multi-day box — reversible) ===== */
.inalb-dt-related-card {
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.04);
  overflow: hidden;
}
.inalb-dt-related-card__body {
  padding: 15px 17px 17px;
}
/* ===== INALB-CARDS END ===== */

/* ===== INALB-POLISH START (size/spacing pass — reversible) ===== */
.inalbx-head {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.inalbx-head h2 {
  font-size: 2.6rem !important;
  margin: 14px 0 8px;
}
.inalbx-head > div {
  max-width: 700px;
}
.inalbx-more {
  margin-top: 16px;
  display: inline-block;
}
.inalbx-pcard {
  aspect-ratio: 3/3.9;
}
.inalbx-pcard b {
  font-size: 1.05rem;
  bottom: 35px;
}
.inalbx-pcard i {
  font-size: 0.82rem;
}
.inalbx-herobox .inalbth-hero__h1 {
  font-size: 3.35rem !important;
  max-width: 600px;
}
.inalbx-intro p {
  font-size: 1.3rem;
}
.inalbx-band {
  padding: 80px 0;
}
/* ===== INALB-POLISH END ===== */

/* ===== INALB-HERO2 START (visual hero + remove pill rail — reversible) ===== */
.inalbth-pillnav {
  display: none !important;
}
.inalbx-herobox {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.inalbx-hero-eye {
  margin: 0 auto;
}
.inalbx-herobox .inalbth-hero__h1 {
  font-size: 3.7rem !important;
  max-width: 780px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.inalbx-hero-sub {
  display: none;
}
.inalbx-hero-ctas {
  justify-content: center;
  margin-top: 6px;
  margin-bottom: 12px;
}
.inalbx-hero-ctas .inalbth-btn {
  padding: 19px 44px !important;
  font-size: 1.12rem !important;
  border-radius: 999px !important;
}
.inalbx-hero-rate {
  text-align: center;
  margin-top: 24px;
}
.inalbx-ytscrim {
  background: linear-gradient(
    180deg,
    rgba(8, 10, 6, 0.42),
    rgba(8, 10, 6, 0.12) 38%,
    rgba(8, 10, 6, 0.55)
  ) !important;
}
@media (max-width: 760px) {
  .inalbx-herobox .inalbth-hero__h1 {
    font-size: 2.3rem !important;
  }
  .inalbx-hero-ctas .inalbth-btn {
    padding: 15px 30px !important;
    font-size: 1rem !important;
  }
}
/* ===== INALB-HERO2 END ===== */

/* ===== INALB-V3 START (hero-left, bigger sticky nav, bigger offer cards + descriptions — reversible) ===== */
.inalbx-herobox {
  max-width: 640px !important;
  margin: 0 !important;
  text-align: left !important;
}
.inalbx-hero-eye {
  margin: 0 !important;
}
.inalbx-herobox .inalbth-hero__h1 {
  margin: 14px 0 16px 0 !important;
  max-width: 640px !important;
  font-size: 3.5rem !important;
}
.inalbx-hero-ctas {
  justify-content: flex-start !important;
}
.inalbx-hero-rate {
  text-align: left !important;
}
/* INALB-HEROLIGHT: brighter hero — lighter scrim (text protected by left gradient + shadow) + brightness lift on the video */
.inalbx-ytscrim {
  background: linear-gradient(
    90deg,
    rgba(8, 10, 6, 0.52),
    rgba(8, 10, 6, 0.24) 48%,
    rgba(8, 10, 6, 0)
  ) !important;
}
.inalbx-ytwrap iframe,
.inalbth-hero__video,
.inalbth-hero__media {
  filter: brightness(1.18) saturate(1.06);
}
.inalbx-herobox .inalbth-hero__h1 {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
.inalbx-hero-rate,
.inalbx-hero-pay,
.inalbx-hero-eye {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}
.inalbx-sub__in {
  padding: 16px 26px !important;
  gap: 12px !important;
}
.inalbx-sub__logo {
  font-size: 1.25rem !important;
}
.inalbx-sub a.inalbx-chip {
  font-size: 1rem !important;
  padding: 11px 20px !important;
}
.inalbx-cards {
  gap: 18px;
}
.inalbx-pcard {
  aspect-ratio: 3/3.7;
}
.inalbx-pcard b {
  font-size: 1.12rem;
  bottom: 34px;
}
.inalbx-cardcell {
  display: flex;
  flex-direction: column;
}
.inalbx-offerdesc {
  font-size: 0.9rem;
  color: #5a5953;
  line-height: 1.5;
  margin-top: 12px;
  text-align: left;
}
@media (max-width: 900px) {
  .inalbx-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== INALB-V3 END ===== */

/* ===== INALB-MDSPLIT START (split multi-day into Group / Private — reversible) ===== */
.inalbx-mdsplit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 30px;
  align-items: start;
}
.inalbx-mdcol {
  position: relative;
  padding-top: 20px;
  border-top: 3px solid #ddd;
}
.inalbx-mdcol--g {
  border-top-color: #4ea8e6;
}
.inalbx-mdcol--p {
  border-top-color: #1d9e75;
}
.inalbx-mdcol__h {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.inalbx-mdcol__h b {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #100f0d;
}
.inalbx-mdcol__h .dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.inalbx-mdcol--g .dot {
  background: #4ea8e6;
}
.inalbx-mdcol--p .dot {
  background: #1d9e75;
}
.inalbx-mdcol__d {
  color: #6f6e69;
  font-size: 0.96rem;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 430px;
}
.inalbx-mdcol__cards {
  display: grid;
  gap: 20px;
}
@media (max-width: 900px) {
  .inalbx-mdsplit {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
/* ===== INALB-MDSPLIT END ===== */
/* ===== INALB-SSR START (v0.4.0 — server-rendered homepage support) ===== */
.inalbx-hero-ghost {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.inalbx-hero-ghost:hover {
  border-color: #fff;
}
.inalbx-intro__in p.inalbx-intro__facts {
  margin: 1.6rem auto 0;
  max-width: 48rem;
  font-size: 0.84rem;
  line-height: 1.6;
  color: #6b6b63;
  text-align: center;
}
.inalbx-mdcol__cards .inalb-arch__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.inalbx-mdcol__cards .inalb-mdt-featured__heading {
  display: none;
}
/* ===== INALB-SSR END ===== */

/* ===== INALB-CAROUSEL START (v0.4.2 — scroll-snap card carousels) ===== */
.inalbx-carousel {
  position: relative;
  margin: 1.4rem 0 0.4rem;
}
.inalbx-car__viewport {
  position: relative;
}
.inalbx-carousel .inalb-dt-related-grid,
.inalbx-carousel .inalb-arch__grid {
  display: flex !important;
  grid-template-columns: none !important;
  overflow-x: auto;
  gap: 1.1rem;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.25rem 1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.inalbx-carousel .inalb-dt-related-grid::-webkit-scrollbar,
.inalbx-carousel .inalb-arch__grid::-webkit-scrollbar {
  display: none;
}
.inalbx-carousel .inalb-dt-related-grid > *,
.inalbx-carousel .inalb-arch__grid > * {
  flex: 0 0 clamp(250px, 26vw, 330px);
  scroll-snap-align: start;
  margin: 0 !important;
}
.inalbx-car__btn {
  position: absolute;
  top: 42%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #0a0a0a;
  background: #fff;
  color: #0a0a0a;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(10, 10, 10, 0.14);
  transition:
    background 0.18s,
    transform 0.18s,
    opacity 0.18s;
}
.inalbx-car__btn:hover {
  background: #a3d445;
  transform: scale(1.06);
}
.inalbx-car__btn--prev {
  left: -10px;
}
.inalbx-car__btn--next {
  right: -10px;
}
.inalbx-car__btn[disabled] {
  opacity: 0;
  pointer-events: none;
}
.inalbx-carousel::before,
.inalbx-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 760px) {
  .inalbx-car__btn {
    display: none;
  }
  .inalbx-carousel .inalb-dt-related-grid > *,
  .inalbx-carousel .inalb-arch__grid > * {
    flex-basis: 78vw;
  }
}
/* ===== INALB-CAROUSEL END ===== */

/* ===== INALB-LOGOWALL START (v0.4.3 — bigger, calmer, grayscale-to-color) ===== */
.inalbth-findus {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 68rem;
  margin: 0 auto;
}
.inalbth-logo {
  height: 142px;
  min-width: 0;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  padding: 0 18px;
}
.inalbth-logo img {
  max-height: 84px;
  max-width: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}
.inalbth-logo:hover {
  border-color: var(--lime);
  box-shadow:
    0 0 0 3px rgba(163, 212, 69, 0.25),
    0 18px 34px -16px rgba(10, 10, 10, 0.3);
  transform: translateY(-4px);
}
.inalbth-logo:hover img {
  transform: scale(1.07);
  filter: saturate(1.15);
}
/* shine sweep (matches the footer social icons) */
.inalbth-logo:not(.inalbth-logo--add):not(.inalbth-logo--placeholder)::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -85%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: rotate(25deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.inalbth-logo:hover::after {
  left: 140%;
}
@media (prefers-reduced-motion: reduce) {
  .inalbth-logo::after {
    transition: none;
  }
}
@media (max-width: 980px) {
  .inalbth-findus {
    grid-template-columns: repeat(3, 1fr);
  }
  .inalbth-logo {
    height: 112px;
  }
  .inalbth-logo img {
    max-height: 64px;
  }
}
@media (max-width: 560px) {
  .inalbth-findus {
    grid-template-columns: repeat(2, 1fr);
  }
  .inalbth-logo {
    height: 86px;
  }
  .inalbth-logo img {
    max-height: 48px;
  }
}
/* ===== INALB-LOGOWALL END ===== */

/* ===== INALB-FINETUNE START (v0.4.4 — hero aside, pill burger, travelife ph) ===== */
/* Hero copy hugs the left edge so the video graphics breathe. */
.inalbth-hero .inalbth-shell {
  max-width: none;
  margin: 0;
  max-width: 1200px;
  width: 100%;
  padding: 0 5vw 120px 5vw;
}
.inalbx-herobox {
  max-width: 580px !important;
}
.inalbx-herobox .inalbth-hero__h1 {
  font-size: 3rem !important;
  max-width: 520px !important;
}
@media (max-width: 760px) {
  .inalbx-herobox .inalbth-hero__h1 {
    font-size: 2.2rem !important;
  }
}

/* Burger → capsule duo: glass pill with MENU label + lime ball (X when open). */
button.inalbth-burger {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 5px 6px 5px 20px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  transition:
    background 0.25s,
    transform 0.22s;
}
button.inalbth-burger:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: scale(1.03);
}
button.inalbth-burger span {
  width: auto;
  height: auto;
  background: none;
  transform: none;
}
button.inalbth-burger .inalbth-burger__label {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
button.inalbth-burger .inalbth-burger__ball {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
button.inalbth-burger .inalbth-burger__ball span {
  display: block;
  width: 14px;
  height: 2px;
  background: #0a0a0a;
  border-radius: 2px;
  transition: transform 0.25s;
}
button.inalbth-burger:hover .inalbth-burger__ball {
  transform: rotate(180deg);
}
button.inalbth-burger[aria-expanded='true']
  .inalbth-burger__ball
  span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}
button.inalbth-burger[aria-expanded='true']
  .inalbth-burger__ball
  span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* Travelife placeholder card */
.inalbth-logo--placeholder {
  border: 2px dashed rgba(10, 10, 10, 0.2);
  background: #fdfdfb;
  box-shadow: none;
  cursor: default;
}
.inalbth-logo--placeholder:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--lime);
}
.inalbth-logo__ph {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: rgba(10, 10, 10, 0.35);
}
/* ===== INALB-FINETUNE END ===== */

/* ===== INALB-AWARD START (v0.4.7 — Travelife Partner award card in sustainability) ===== */
.inalbx-award {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 2.6rem auto 1.6rem;
}
.inalbth-prose details summary::after {
  content: none !important;
}

.polsec summary::after {
  content: none !important;
  display: none !important;
}
.inalbx-award__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(500px, 86vw);
  height: 192px;
  border: 2px dashed rgba(10, 10, 10, 0.2);
  border-radius: 22px;
  background: #fdfdfb;
  background-image: url('https://inalb.al/wp-content/uploads/2026/07/unnamed.jpg');
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.inalbx-award__link {
  display: inline-block;
  text-decoration: none;
}
.inalbx-award__card:hover {
  border-color: var(--lime);
}
.inalbx-award__card .inalbth-logo__ph {
  font-size: 1.7rem;
}
.inalbx-award__card img {
  max-height: 130px;
  max-width: 300px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.inalbx-award__ribbon {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--lime);
  color: #0a0a0a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 99px;
}
.inalbx-award__note {
  max-width: 30rem;
  text-align: center;
  font-size: 0.92rem;
  color: #6b6b63;
  margin: 0;
}
/* ===== INALB-AWARD END ===== */

/* ===== INALB-STICKYNAV START (v0.4.8 — scroll-spy + mobile bottom dock) ===== */
.inalbx-sub a.inalbx-chip {
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.inalbx-sub a.inalbx-chip.is-active {
  background: var(--lime);
  border-color: var(--lime);
  color: #1c2806;
  font-weight: 700;
}
.inalbx-sub__in::-webkit-scrollbar {
  display: none;
}
.inalbx-sub__in {
  scrollbar-width: none;
}
@media (max-width: 760px) {
  .inalbx-sub {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    border-bottom: 0;
    border-top: 1px solid #ece7dd;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -8px 24px -12px rgba(10, 10, 10, 0.18);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .inalbx-sub__in {
    padding: 10px 14px !important;
    gap: 8px !important;
  }
  .inalbx-sub__logo {
    display: none;
  }
  .inalbx-sub a.inalbx-chip {
    font-size: 0.85rem !important;
    padding: 9px 14px !important;
  }
  .inalbx-sub__cta {
    margin-left: 0;
  }
  body.inalbth-has-hero {
    padding-bottom: 64px;
  }
}
/* ===== INALB-STICKYNAV END ===== */

/* ===== INALB-OFFERCARDS START (v0.4.9 — bigger, editorial category cards; hide internal type tags) ===== */
#inalbx-offer .inalbx-wrap {
  max-width: 1320px;
}
.inalbx-cards {
  gap: 20px;
}
.inalbx-pcard {
  aspect-ratio: 3/3.6;
  border-radius: 22px;
}
.inalbx-pcard::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.74) 100%
  );
}
.inalbx-pcard b {
  font-size: 1.3rem;
  bottom: 40px;
  left: 18px;
  letter-spacing: -0.01em;
}
.inalbx-pcard i {
  font-size: 0.85rem;
  bottom: 17px;
  left: 18px;
  color: #cde98f;
  font-weight: 600;
}
.inalbx-offerdesc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4c4b45;
  margin: 0.85rem 4px 0;
}
@media (max-width: 900px) {
  .inalbx-pcard b {
    font-size: 1.15rem;
  }
}
/* Internal classification tags (experience/day trip/group tour/etc.) are system data, not visible UI. */
.inalb-dt-related-card__badge,
.inalb-dt-related-card__typ,
.inalb-arch__card .typ {
  display: none !important;
}
/* ===== INALB-OFFERCARDS END ===== */

/* ===== INALB-AIMODE START (v0.5.1 — bright AI button + white full-page mode) ===== */
a.inalbx-ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0a0a0a;
  border: 2px solid var(--lime);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  position: relative;
  box-shadow: 0 0 0 0 rgba(163, 212, 69, 0.55);
  animation: inalbx-aipulse 2.6s infinite;
  transition:
    transform 0.2s,
    background 0.2s;
}
a.inalbx-ai-btn:hover {
  transform: scale(1.06);
  background: var(--lime);
}
@keyframes inalbx-aipulse {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 212, 69, 0.55);
  }
  70% {
    box-shadow: 0 0 0 11px rgba(163, 212, 69, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(163, 212, 69, 0);
  }
}
.inalbx-ai-btn__spark {
  color: #699223;
  font-size: 1.05rem;
  animation: inalbx-spin 4s linear infinite;
}
@keyframes inalbx-spin {
  50% {
    transform: rotate(180deg) scale(1.25);
  }
}
.inalbx-aimode {
  max-width: 880px;
  margin: 0 auto;
  padding: 120px 22px 60px;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
}
.inalbx-aimode__head {
  text-align: center;
  margin-bottom: 1.6rem;
}
.inalbx-aimode__title {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.inalbx-aimode__title .spark {
  color: #699223;
}
.inalbx-aimode__title em {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #1c2806;
  background: var(--lime);
  padding: 4px 11px;
  border-radius: 99px;
}
.inalbx-aimode__sub {
  max-width: 40rem;
  margin: 0 auto;
  color: #6b6b63;
  font-size: 1rem;
  line-height: 1.6;
}
.inalbx-aimode__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fbfaf6;
  border: 1px solid #ece7dd;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 24px 60px -42px rgba(10, 10, 10, 0.35);
}
.inalbx-ai-thread--light {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  padding: 0 0 16px;
}
.inalbx-ai-thread--light .inalbx-ai-msg--bot {
  background: #fff;
  border: 1px solid #ece7dd;
  color: #1d1d1a;
}
.inalbx-ai-thread--light .inalbx-ai-typing span {
  background: #b9b7ac;
}
.inalbx-ai-chips--light {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
}
.inalbx-ai-chips--light .inalbx-ai-chip {
  border-color: #d8d3c6;
  color: #1d1d1a;
}
.inalbx-ai-chips--light .inalbx-ai-chip:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: #1c2806;
}
.inalbx-ai-cards {
  margin: 4px 0;
}
.inalbx-ai-cards .inalb-dt-related-grid,
.inalbx-ai-cards .inalb-arch__grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.inalbx-ai-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.97rem;
  line-height: 1.55;
}
.inalbx-ai-msg--bot {
  background: #1d1d1a;
  color: #f1f0ea;
  border-bottom-left-radius: 6px;
  align-self: flex-start;
}
.inalbx-ai-msg--me {
  background: var(--lime);
  color: #1c2806;
  font-weight: 600;
  border-bottom-right-radius: 6px;
  align-self: flex-end;
}
.inalbx-ai-typing {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
}
.inalbx-ai-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7a7a72;
  animation: inalbx-blink 1s infinite;
}
.inalbx-ai-typing span:nth-child(2) {
  animation-delay: 0.18s;
}
.inalbx-ai-typing span:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes inalbx-blink {
  0%,
  80%,
  100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}
.inalbx-ai-chip {
  background: none;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 17px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.inalbx-ai-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: flex-start;
  margin: 4px 0 2px;
}
.inalbx-ai-alt {
  color: #699223;
  font-size: 0.88rem;
  text-decoration: none;
}
.inalbx-ai-note--light {
  max-width: 46rem;
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 0.8rem;
  color: #8b8a82;
}
@media (max-width: 700px) {
  .inalbx-aimode {
    padding-top: 100px;
  }
  .inalbx-aimode__title {
    font-size: 1.7rem;
  }
}
/* ===== INALB-SUSTAIN2 START (v0.5.0 — force-for-good cards polish) ===== */
.inalbth-sustain {
  gap: 30px;
  max-width: 66rem;
  margin-left: auto;
  margin-right: auto;
}
.inalbth-sustain__col {
  border-radius: 24px;
  padding: 36px 38px;
}
.inalbth-sustain__col--bad {
  background: #faf7f1;
  border: 1px solid #eee5d8;
  position: relative;
}
.inalbth-sustain__col--bad::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: #d8a79e;
  border-radius: 24px 24px 0 0;
}
.inalbth-sustain__col--good::before {
  border-radius: 24px 24px 0 0;
}
.inalbth-sustain__col h3 {
  font-size: 1.5rem;
  margin: 6px 0 12px;
}
.inalbth-sustain__col li {
  padding: 10px 0;
  font-size: 0.94rem;
}
.inalbth-sustain__col li + li {
  border-top: 0;
}
.inalbth-sustain__col li::before {
  width: 26px;
  height: 26px;
  font-size: 0.78rem;
}
.inalbth-sustain__col--bad li::before {
  background: rgba(185, 75, 64, 0.1);
  color: #b94b40;
}
.inalbth-sustain__col--good li::before {
  background: rgba(163, 212, 69, 0.16);
}
.inalbth-sustain__col li {
  transition: transform 0.18s;
}
.inalbth-sustain__col li:hover {
  transform: translateX(4px);
}
/* ===== INALB-SUSTAIN2 END ===== */

/* Blog index: pillars + featured row spacing */
.inalbx-pillars--blog {
  justify-content: center;
  margin: 0 0 1rem;
}
.inalbx-blogfeat-h {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b8a82;
  margin: 2.2rem 0 1.2rem;
}
.inalbx-stories--blog {
  margin-bottom: 2.4rem;
}

/* ===== INALB-HEROTRUST START (v0.5.2 — clickable rating, payments line, review-source rotor) ===== */
a.inalbx-hero-rate {
  display: inline;
  max-width: 430px;
  color: #fff;
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.65;
}
a.inalbx-hero-rate b {
  margin-right: 6px;
}
.inalbx-hero-rate__arrow {
  margin-left: 5px;
}
a.inalbx-hero-rate b {
  color: var(--lime);
  letter-spacing: 2px;
}
a.inalbx-hero-rate:hover .inalbx-hero-rate__arrow {
  transform: translateX(4px);
}
.inalbx-hero-rate__arrow {
  display: inline-block;
  transition: transform 0.2s;
  color: var(--lime);
}
.inalbx-hero-pay {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}
.inalbx-hero-pay svg {
  flex: none;
  color: var(--lime);
}
.inalbx-revsrc {
  text-align: center;
  font-size: 0.95rem;
  color: #5f5e56;
  margin: -0.6rem 0 1.6rem;
}
.inalbx-rotor {
  display: inline-block;
  min-width: 11ch;
  text-align: left;
  font-weight: 700;
  color: #1c2806;
  background: var(--lime-soft, #eef6dd);
  padding: 2px 10px;
  border-radius: 99px;
  transition: opacity 0.25s;
}
.inalbx-rotor.is-fading {
  opacity: 0;
}
/* ===== INALB-HEROTRUST END ===== */

/* ===== INALB-OFFER3 START (v0.5.3 — premium category cards w/ live counts) ===== */
#inalbx-offer .inalbx-wrap {
  max-width: 1400px;
}
.inalbx-cards {
  gap: 22px;
}
.inalbx-pcard {
  aspect-ratio: 3/4.1;
  border-radius: 26px;
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.5);
}
.inalbx-pcard::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0) 28%,
    rgba(0, 0, 0, 0.78) 100%
  );
}
.inalbx-pcard b {
  font-size: 1.42rem;
  bottom: 46px;
  left: 20px;
  right: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.inalbx-pcard i {
  font-size: 0.88rem;
  bottom: 20px;
  left: 20px;
  color: #cde98f;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.inalbx-pcard__count {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  color: #1c2806;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 13px;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.inalbx-pcard__count b {
  position: static;
  font-size: 0.95rem;
  font-weight: 800;
  color: #1c2806;
  text-shadow: none;
}
.inalbx-pcard__go {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lime);
  color: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.inalbx-pcard:hover .inalbx-pcard__go {
  opacity: 1;
  transform: none;
}
.inalbx-pcard:hover {
  box-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.6);
}
.inalbx-offerdesc {
  font-size: 0.97rem;
  line-height: 1.62;
  color: #4c4b45;
  margin: 1rem 6px 0;
}
@media (max-width: 900px) {
  .inalbx-pcard b {
    font-size: 1.2rem;
  }
  .inalbx-pcard__count {
    font-size: 0.7rem;
  }
}
/* ===== INALB-OFFER3 END ===== */

/* ===== INALB-JOURNAL: editorial Stories & Guides (4 pillars, featured Art of Traveling) ===== */
.inalbx-head--journal {
  position: relative;
}
.inalbx-jscript {
  font-family: 'Caveat', cursive;
  font-size: 1.55rem;
  color: #7fb52a;
  margin: 0.35rem 0 0;
  transform: rotate(-1.5deg);
  transform-origin: left;
}
.inalbx-journal {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}
.inalbx-jcard {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 34px rgba(10, 10, 10, 0.06);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1),
    box-shadow 0.35s;
}
.inalbx-jcard.is-in {
  opacity: 1;
  transform: none;
}
.inalbx-jcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(163, 212, 69, 0.24);
}
.inalbx-jcard .im {
  position: relative;
  overflow: hidden;
}
.inalbx-jcard .im img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.inalbx-jcard:hover .im img {
  transform: scale(1.06);
}
.inalbx-jcard .cat {
  position: absolute;
  left: 14px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0a0a0a;
}
.inalbx-jcard .cat i,
.inalbx-jcard .cat b {
  color: #7fb52a;
  font-style: normal;
}
.inalbx-jcard--feat .im {
  height: 330px;
}
.inalbx-jcard--feat .jnote {
  position: absolute;
  right: 18px;
  bottom: 12px;
  font-family: 'Caveat', cursive;
  font-size: 1.45rem;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
  transform: rotate(-4deg);
}
.inalbx-jcard--feat .bd {
  padding: 24px 28px 26px;
}
.inalbx-jcard--feat h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.65rem;
  line-height: 1.18;
  margin: 0 0 10px;
}
.inalbx-jcard--feat .ex {
  color: #5c5b54;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.inalbx-jcard--feat .go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #a3d445;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  padding: 10px 20px;
  transition:
    box-shadow 0.2s,
    gap 0.2s;
}
.inalbx-jcard--feat:hover .go {
  gap: 13px;
  box-shadow: 0 0 0 4px rgba(163, 212, 69, 0.25);
}
.inalbx-jside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.inalbx-jcard--row {
  display: flex;
  align-items: stretch;
  flex: 1;
}
.inalbx-jcard--row .im {
  flex: 0 0 158px;
  min-height: 118px;
}
.inalbx-jcard--row .bd {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex: 1;
}
.inalbx-jcard--row .cat {
  position: static;
  background: none;
  backdrop-filter: none;
  padding: 0;
  margin-bottom: 6px;
  color: #8b8a80;
}
.inalbx-jcard--row h3 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.3;
  margin: 0;
  padding-right: 30px;
}
.inalbx-jcard--row .go {
  position: absolute;
  right: 16px;
  bottom: 14px;
  font-size: 1.05rem;
  color: #7fb52a;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.inalbx-jcard--row:hover .go {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .inalbx-journal {
    grid-template-columns: 1fr;
  }
  .inalbx-jcard--feat .im {
    height: 220px;
  }
  .inalbx-jcard--feat h3 {
    font-size: 1.35rem;
  }
  .inalbx-jcard--row .im {
    flex-basis: 118px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .inalbx-jcard {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .inalbx-jcard .im img {
    transition: none;
  }
}
/* ===== INALB-JOURNAL END ===== */

/* ===== INALB-SOCIAL: footer icon row + overlay menu sign-off ===== */
.inalbth-overlay__foot {
  justify-content: center !important;
  text-align: center;
}
.inalbth-overlay__found {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  color: #a3d445;
  margin: 0;
  transform: rotate(-1.5deg);
}
.inalbth-overlay__found span {
  display: inline-block;
  animation: spin 8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .inalbth-overlay__found span {
    animation: none;
  }
}
.inalbth-social {
  display: flex;
  gap: 11px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.inalbth-social a {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 4px 14px rgba(0, 0, 0, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.22s cubic-bezier(0.2, 0.7, 0.3, 1.4),
    box-shadow 0.25s;
}
.inalbth-social a svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}
/* glossy top highlight */
.inalbth-social a::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  right: 6px;
  height: 46%;
  z-index: 1;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45),
    rgba(255, 255, 255, 0)
  );
}
/* shine sweep on hover */
.inalbth-social a::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 55%;
  height: 220%;
  z-index: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: rotate(25deg);
  transition: left 0.55s ease;
}
.inalbth-social a:hover {
  transform: translateY(-4px) scale(1.06);
}
.inalbth-social a:hover::after {
  left: 130%;
}
@media (prefers-reduced-motion: reduce) {
  .inalbth-social a,
  .inalbth-social a::after {
    transition: none;
  }
}
/* brand colors + matching glow */
.inalbth-social a[aria-label='Instagram'] {
  background: radial-gradient(
    circle at 28% 110%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}
.inalbth-social a[aria-label='Instagram']:hover {
  box-shadow: 0 8px 22px rgba(214, 36, 159, 0.55);
}
.inalbth-social a[aria-label='Facebook'] {
  background: #1877f2;
}
.inalbth-social a[aria-label='Facebook']:hover {
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.55);
}
.inalbth-social a[aria-label='TikTok'] {
  background: #010101;
  box-shadow:
    0 4px 14px rgba(37, 244, 238, 0.25),
    inset 0 -2px 4px rgba(254, 44, 85, 0.35);
}
.inalbth-social a[aria-label='TikTok']:hover {
  box-shadow:
    0 8px 22px rgba(254, 44, 85, 0.5),
    0 0 14px rgba(37, 244, 238, 0.45);
}
.inalbth-social a[aria-label='YouTube'] {
  background: #ff0000;
}
.inalbth-social a[aria-label='YouTube']:hover {
  box-shadow: 0 8px 22px rgba(255, 0, 0, 0.55);
}
.inalbth-social a[aria-label='X'] {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.inalbth-social a[aria-label='X']:hover {
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.25);
}
.inalbth-social a[aria-label='Pinterest'] {
  background: #e60023;
}
.inalbth-social a[aria-label='Pinterest']:hover {
  box-shadow: 0 8px 22px rgba(230, 0, 35, 0.55);
}
.inalbth-social a[aria-label='Reddit'] {
  background: #ff4500;
}
.inalbth-social a[aria-label='Reddit']:hover {
  box-shadow: 0 8px 22px rgba(255, 69, 0, 0.55);
}
.inalbth-social a[aria-label='Google'] {
  background: #fff;
  color: #4285f4;
}
.inalbth-social a[aria-label='Google']:hover {
  box-shadow: 0 8px 22px rgba(66, 133, 244, 0.5);
}
/* ===== INALB-SOCIAL END ===== */

/* ===== INALB-ARTICLE: blog single upgrade (v0.6.1 — TOC, author box, mentions, patterns) ===== */
.inalbx-artcat {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #577a16;
  background: var(--lime-soft);
  border-radius: 999px;
  padding: 6px 14px;
  text-decoration: none;
  margin-bottom: 14px;
}
.inalbth-article__meta a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--lime);
}
.inalbx-toc {
  background: #fbfaf6;
  border: 1px solid #ece7dd;
  border-radius: 18px;
  padding: 20px 24px;
  margin: 0 0 30px;
}
.inalbx-toc__h {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b8a82;
  margin: 0 0 10px;
}
.inalbx-toc ol {
  margin: 0;
  padding-left: 1.2rem;
}
.inalbx-toc li {
  margin: 5px 0;
  font-size: 0.95rem;
}
.inalbx-toc a {
  color: #3c3b35;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.inalbx-toc a:hover {
  color: #577a16;
  border-color: var(--lime);
}
/* Key facts box */
.inalbx-keyfacts {
  background: var(--lime-soft);
  border-radius: 18px;
  padding: 22px 26px;
  margin: 1.8rem 0;
  border-left: 4px solid var(--lime);
}
.inalbx-keyfacts h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}
.inalbx-keyfacts ul {
  margin: 0;
  padding-left: 1.2rem;
}
.inalbx-keyfacts li {
  margin: 6px 0;
  font-size: 0.97rem;
}
.inalbx-keyfacts strong {
  color: #3c5a0c;
}
/* FAQ details in prose */
.inalbth-prose details {
  border-bottom: 1px solid var(--hair);
  padding: 4px 0;
}
.inalbth-prose details summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 13px 30px 13px 0;
  list-style: none;
  position: relative;
}
.inalbth-prose details summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--ink-40);
  transition: transform 0.2s;
}
.inalbth-prose details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.inalbth-prose details p {
  margin: 0 0 14px;
  color: var(--ink-60);
}
/* Trip CTA card */
.inalbx-tripcta {
  background: var(--ink);
  color: #fff;
  border-radius: 20px;
  padding: 26px 28px;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.inalbx-tripcta::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(163, 212, 69, 0.4), transparent 70%);
}
.inalbx-tripcta__eyebrow {
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime) !important;
  margin: 0 0 4px !important;
}
.inalbx-tripcta h3 {
  color: #fff;
  font-family: var(--font-serif);
  margin: 0 0 6px;
  font-size: 1.35rem;
}
.inalbx-tripcta p {
  color: #cfd6c2;
  margin: 0 0 14px;
}
.inalbx-tripcta .wp-block-button__link {
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 24px;
  font-weight: 600;
  text-decoration: none;
}
/* Expert quote */
.inalbx-equote {
  border-left: 3px solid var(--lime);
  padding: 6px 0 6px 22px;
  margin: 2rem 0;
}
.inalbx-equote p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.45;
  margin: 0 0 8px;
}
.inalbx-equote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: #577a16;
  font-weight: 600;
}
/* Sources */
.inalbx-sources {
  border-top: 1px solid var(--hair);
  margin-top: 2.4rem;
  padding-top: 1.2rem;
}
.inalbx-sources h3 {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin: 0 0 8px;
}
.inalbx-sources ul {
  margin: 0;
  padding-left: 1.2rem;
}
.inalbx-sources li {
  font-size: 0.88rem;
  color: var(--ink-60);
  margin: 4px 0;
}
/* Mentions + author + related */
.inalbx-mentions {
  margin: 3rem 0 0;
}
.inalbx-mentions__h {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b8a82;
  margin: 0 0 16px;
  text-align: center;
}
.inalbx-mentions__grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.inalbx-mentions__plain {
  display: block;
  background: var(--lime-soft);
  border-radius: 14px;
  padding: 18px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
}
.inalbx-authorbox {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fbfaf6;
  border: 1px solid #ece7dd;
  border-radius: 20px;
  padding: 24px 26px;
  margin: 3rem 0 0;
}
.inalbx-authorbox__img {
  border-radius: 50%;
  flex: none;
}
.inalbx-authorbox__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #577a16;
  margin: 0 0 2px;
}
.inalbx-authorbox__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 6px;
}
.inalbx-authorbox__name a {
  text-decoration: none;
  color: var(--ink);
}
.inalbx-authorbox__bio {
  font-size: 0.92rem;
  color: var(--ink-60);
  line-height: 1.55;
  margin: 0 0 8px;
}
.inalbx-authorbox__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: #577a16;
  text-decoration: none;
}
.inalbx-related {
  margin: 3rem 0 0;
}
.inalbx-stories--single {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 760px) {
  .inalbx-stories--single {
    grid-template-columns: 1fr;
  }
  .inalbx-authorbox {
    flex-direction: column;
  }
}
/* ===== INALB-ARTICLE END ===== */

/* ===== v0.6.2 blog hotfix (local test 2026-06-13) ===== */
.ph {
  position: relative;
}
.inalbth-article__hero {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  max-height: 480px;
}

/* ===== Carousel arrows outside the cards on wide screens — 8 Jul 2026 ===== */
@media (min-width: 1280px) {
  .inalbx-car__btn--prev {
    left: -58px;
  }
  .inalbx-car__btn--next {
    right: -58px;
  }
}

/* Guest reviews server-rendered fallback (hidden by theme.js when the live Trustindex widget mounts) */
.inalbth-reviews-fallback {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.inalbth-reviews-fallback__lead {
  grid-column: 1/-1;
  text-align: center;
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.inalbth-review-quote {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.inalbth-review-quote p {
  margin: 0 0 12px;
  font-size: 0.95rem;
  line-height: 1.55;
}
.inalbth-review-quote footer {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.75;
}

