/* Cavmir Resource Hub — directory + deep-dive layouts.
   Hero uses canonical .client-hero from main.css.
   Card typography uses --font-editorial + --font-primary so it matches the rest of the site.
*/

/* Slight overrides on top of .client-hero for resource pages */
.resource-hero-bleed { min-height: 480px; }
.resource-hero-bleed .client-hero__sub { max-width: 720px; }

/* Author byline strip (under the hero) ─────────────────────────────── */
.resource-byline-wrap { padding: 28px 0 0; background: #fff; }
.resource-byline {
  margin: 0; padding: 18px 22px;
  background: #fff;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 12px 28px -22px rgba(107,33,75,0.20);
}
.resource-byline__authors {
  display: flex; gap: 28px; flex-wrap: wrap;
}
.resource-byline__author {
  display: flex; gap: 12px; align-items: center;
  text-decoration: none; color: #2A1A23;
  font-family: var(--font-primary);
}
.resource-byline__author img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--gold);
}
.resource-byline__author span { font-size: 13px; line-height: 1.4; }
.resource-byline__author strong { font-weight: 500; color: var(--burgundy); }
.resource-byline__author span span { color: rgba(42,26,35,0.65); font-size: 12px; }
.resource-byline__meta {
  font-size: 12px; color: rgba(42,26,35,0.6);
  display: flex; gap: 10px; flex-wrap: wrap;
  font-family: var(--font-primary);
}

/* Hub tiles ───────────────────────────────────────────────────────── */
.resource-tiles { padding: 80px 0; background: #fff; }
.resource-tiles .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.resource-tiles__grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.resource-tile {
  display: block; padding: 36px 30px;
  background: #fff;
  border: 1px solid rgba(107,33,75,0.10);
  border-radius: 16px;
  text-decoration: none; color: #2A1A23;
  font-family: var(--font-primary);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.resource-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(107,33,75,0.30);
  border-color: var(--gold);
}
.resource-tile__eyebrow {
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px;
}
.resource-tile__title {
  font-family: var(--font-editorial);
  font-weight: 400; font-size: 32px; line-height: 1.1;
  color: var(--burgundy); margin: 0 0 14px;
}
.resource-tile__desc {
  font-family: var(--font-primary);
  font-size: 15px; line-height: 1.6; margin: 0 0 22px;
  color: rgba(42,26,35,0.85);
}
.resource-tile__cta {
  font-family: var(--font-primary);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--burgundy);
}
.resource-tile--coming { opacity: 0.85; }
.resource-tile--coming::after {
  content: ''; display: block; height: 3px; width: 40px;
  background: var(--gold); margin-top: 16px;
}

/* Business cards (PMS + Booking) ──────────────────────────────────── */
.biz-grid-section { padding: 64px 0; background: #fafafa; }
.biz-grid-section .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.biz-grid {
  display: grid; gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}
.biz-grid--booking { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }

.biz-card {
  background: #fff;
  border: 1px solid rgba(107,33,75,0.10);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column;
  font-family: var(--font-primary);
  color: #2A1A23;
  transition: box-shadow .25s ease, border-color .25s ease, transform .25s ease;
}
.biz-card:hover {
  box-shadow: 0 28px 56px -28px rgba(107,33,75,0.25);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.biz-card__head {
  display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px;
}
.biz-card__logo {
  flex: 0 0 80px; width: 80px; height: 80px; border-radius: 14px;
  background: linear-gradient(135deg, #fff, rgba(212,175,55,0.10));
  border: 1px solid rgba(107,33,75,0.08);
  display: flex; align-items: center; justify-content: center;
  padding: 8px; overflow: hidden;
}
.biz-card__logo img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  object-fit: contain;
}
.biz-card__title { flex: 1 1 auto; min-width: 0; }
.biz-card__category {
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--burgundy); opacity: 0.75;
  margin: 0 0 4px;
}
.biz-card__title h2 {
  font-family: var(--font-editorial);
  font-weight: 400; font-size: 28px; line-height: 1.1;
  color: var(--burgundy); margin: 0 0 6px;
}
.biz-card__pitch {
  font-family: var(--font-primary);
  font-size: 14px; line-height: 1.5; color: rgba(42,26,35,0.85);
  margin: 0;
}
.biz-card__meta {
  margin: 0 0 16px; padding: 14px 0;
  border-top: 1px solid rgba(107,33,75,0.08);
  border-bottom: 1px solid rgba(107,33,75,0.08);
  display: grid; gap: 10px;
}
.biz-card__meta > div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; align-items: baseline; }
.biz-card__meta dt {
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.biz-card__meta dd {
  font-family: var(--font-primary);
  margin: 0; font-size: 13px; line-height: 1.5; color: #2A1A23;
}
.biz-card__features {
  margin: 0 0 16px; padding: 0; list-style: none;
  display: grid; gap: 6px;
}
.biz-card__features li {
  font-family: var(--font-primary);
  font-size: 13px; line-height: 1.45; padding-left: 18px; position: relative;
  color: rgba(42,26,35,0.85);
}
.biz-card__features li::before {
  content: '◆'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: 9px; line-height: 1.6;
}
.biz-card__note {
  font-family: var(--font-primary);
  font-size: 13px; line-height: 1.55; padding: 12px 14px;
  background: rgba(212,175,55,0.10);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  margin: 0 0 18px;
}
.biz-card__cta {
  margin-top: auto; align-self: flex-start;
  font-family: var(--font-primary);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--burgundy); text-decoration: none;
  padding: 10px 18px; border: 1px solid currentColor;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.biz-card__cta:hover { background: var(--burgundy); color: #fff; }

/* Management cards (2-up grid on desktop, denser type) ─────────────── */
.mgmt-section { padding: 48px 0 72px; background: #fafafa; }
.mgmt-section .container { max-width: 1320px; margin: 0 auto; padding: 0 16px; }
.mgmt-section__head { max-width: 720px; margin: 0 0 28px; }
.mgmt-section__eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 12px;
}
.mgmt-section__head h2 {
  font-family: var(--font-editorial); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 40px); line-height: 1.05;
  color: var(--burgundy); margin: 0 0 12px;
}
.mgmt-section__head p {
  font-family: var(--font-primary);
  font-size: 15px; line-height: 1.55; color: rgba(42,26,35,0.80); margin: 0;
}
.platform-matrix__legend a:hover { color: var(--burgundy) !important; }
.mgmt-list {
  display: grid; gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.mgmt-card {
  background: #fff; padding: 22px; border-radius: 14px;
  border: 1px solid rgba(107,33,75,0.10);
  box-shadow: 0 18px 38px -28px rgba(107,33,75,0.20);
  font-family: var(--font-primary);
  color: #2A1A23;
}
.mgmt-card__head {
  display: flex; gap: 14px; align-items: center; margin-bottom: 14px;
  padding-bottom: 14px; border-bottom: 1px solid rgba(107,33,75,0.10);
}
.mgmt-card__logo {
  flex: 0 0 64px; width: 64px; height: 64px; border-radius: 12px;
  background: linear-gradient(135deg, #fff, rgba(212,175,55,0.10));
  border: 1px solid rgba(107,33,75,0.08);
  display: flex; align-items: center; justify-content: center;
  padding: 7px;
}
.mgmt-card__logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mgmt-card__title { flex: 1 1 auto; min-width: 0; }
.mgmt-card__region {
  font-family: var(--font-primary);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 4px;
}
.mgmt-card__title h2 {
  font-family: var(--font-editorial);
  font-weight: 400; font-size: 24px; line-height: 1.1;
  color: var(--burgundy); margin: 0 0 4px;
  word-wrap: break-word;
}
.mgmt-card__site {
  font-family: var(--font-primary);
  font-size: 11px; color: var(--burgundy); text-decoration: none;
  border-bottom: 1px dotted currentColor;
  word-break: break-all;
}
.mgmt-card__meta {
  display: grid; gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 0 14px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(107,33,75,0.08);
}
.mgmt-card__meta > div { display: grid; gap: 2px; }
.mgmt-card__meta-wide { grid-column: 1 / -1; }
.mgmt-card__meta dt {
  font-family: var(--font-primary);
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.mgmt-card__meta dd {
  font-family: var(--font-primary);
  margin: 0; font-size: 12.5px; line-height: 1.45; color: #2A1A23;
}
.mgmt-card__body {
  font-family: var(--font-primary);
  font-size: 13.5px; line-height: 1.65; color: #2A1A23;
}
@media (max-width: 1024px) {
  .mgmt-section .container { max-width: 980px; padding: 0 20px; }
  .mgmt-list { grid-template-columns: 1fr; gap: 28px; }
  .mgmt-card { padding: 28px; }
  .mgmt-card__logo { flex: 0 0 80px; width: 80px; height: 80px; }
  .mgmt-card__title h2 { font-size: 28px; }
  .mgmt-card__site { font-size: 13px; }
  .mgmt-card__meta dd { font-size: 14px; }
  .mgmt-card__body { font-size: 15px; line-height: 1.7; }
}

/* Coming-soon shell ───────────────────────────────────────────────── */
.resource-coming { padding: 64px 0 96px; background: #fafafa; }
.resource-coming .container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.resource-coming__card {
  background: #fff; padding: 40px; border-radius: 18px;
  border: 1px solid rgba(107,33,75,0.10);
  text-align: left;
  font-family: var(--font-primary);
  color: #2A1A23;
}
.resource-coming__card h2 {
  font-family: var(--font-editorial);
  font-weight: 400; font-size: 32px; color: var(--burgundy);
  margin: 0 0 16px;
}
.resource-coming__list { padding: 0; margin: 16px 0 24px; list-style: none; display: grid; gap: 12px; }
.resource-coming__list li {
  font-family: var(--font-primary);
  font-size: 15px; line-height: 1.55; padding: 12px 16px;
  background: rgba(212,175,55,0.08); border-radius: 10px;
}
.resource-coming__list li strong { color: var(--burgundy); }

/* CTA section ─────────────────────────────────────────────────────── */
.resource-cta {
  padding: 88px 0; text-align: center; background: #fff;
  border-top: 1px solid rgba(107,33,75,0.08);
}
.resource-cta .container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.resource-cta h2 {
  font-family: var(--font-editorial);
  font-weight: 400; font-size: clamp(30px, 4vw, 44px);
  color: var(--burgundy); margin: 0 0 14px;
}
.resource-cta p {
  font-family: var(--font-primary);
  font-size: 17px; line-height: 1.6; margin: 0 0 30px;
  color: #2A1A23;
}
.resource-cta__btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 500; letter-spacing: 0.04em;
  background: var(--burgundy); color: #fff;
  padding: 16px 32px; border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.resource-cta__btn:hover { background: #50163A; transform: translateY(-2px); }

/* ────────────────────────────────────────────────────────────────────
   Booking Platforms — premium 2026 components
   Comparison matrix · expanded card · FAQ · related guides · last-updated
   ────────────────────────────────────────────────────────────────── */

/* Last-updated freshness pulse strip */
.resource-updated {
  margin: 14px 0 0; padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-primary);
  font-size: 12px; letter-spacing: 0.04em; color: rgba(42,26,35,0.7);
  background: linear-gradient(135deg, rgba(212,175,55,0.10), rgba(212,175,55,0.02));
  border: 1px solid rgba(212,175,55,0.30);
  border-radius: 999px;
}
.resource-updated time { font-weight: 500; color: var(--burgundy); }
.resource-updated__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1D6F4F;
  box-shadow: 0 0 0 0 rgba(29,111,79,0.6);
  animation: resource-pulse 2.4s ease-out infinite;
}
@keyframes resource-pulse {
  0% { box-shadow: 0 0 0 0 rgba(29,111,79,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(29,111,79,0); }
  100% { box-shadow: 0 0 0 0 rgba(29,111,79,0); }
}

/* Comparison matrix — premium 2026 ──────────────────────────────── */
.platform-matrix {
  position: relative;
  padding: 80px 0 56px;
  background: linear-gradient(180deg, #fff 0%, #FBF8F2 70%, #FBF8F2 100%);
  overflow: hidden;
}
.platform-matrix::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 480px at 12% 0%, rgba(212,175,55,0.10), transparent 70%),
    radial-gradient(700px 460px at 92% 30%, rgba(107,33,75,0.06), transparent 70%);
}
.platform-matrix .container {
  position: relative; max-width: 1240px; margin: 0 auto; padding: 0 24px;
}
.platform-matrix__intro { max-width: 720px; margin: 0 0 28px; }
.platform-matrix__eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 12px;
}
.platform-matrix__intro h2 {
  font-family: var(--font-editorial); font-weight: 400;
  font-size: clamp(34px, 4.6vw, 52px); line-height: 1.05;
  color: var(--burgundy); margin: 0 0 14px;
}
.platform-matrix__intro p {
  font-family: var(--font-primary);
  font-size: 16px; line-height: 1.6; color: rgba(42,26,35,0.80); margin: 0;
}
.platform-matrix__legend {
  display: flex; gap: 18px; flex-wrap: wrap;
  margin: 0 0 32px;
  font-family: var(--font-primary);
  font-size: 12px; color: rgba(42,26,35,0.75);
}
.platform-matrix__legend > span {
  display: inline-flex; align-items: center; gap: 8px;
}
.legend-dot {
  width: 18px; height: 8px; border-radius: 4px;
  display: inline-block;
}

.platform-matrix__grid { display: grid; gap: 20px; }
.matrix-group {
  background: #fff;
  border: 1px solid rgba(107,33,75,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 48px -36px rgba(107,33,75,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.matrix-group:hover { box-shadow: 0 32px 56px -32px rgba(107,33,75,0.22); }
.matrix-group__head {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 26px 18px;
  border-bottom: 1px solid rgba(107,33,75,0.06);
  background: linear-gradient(180deg, #fff, #FBF8F2);
}
.matrix-group__rail {
  align-self: stretch; border-radius: 4px;
}
.matrix-group__title h3 {
  font-family: var(--font-editorial); font-weight: 400;
  font-size: 24px; line-height: 1.1;
  color: var(--burgundy); margin: 0 0 4px;
}
.matrix-group__title p {
  font-family: var(--font-primary);
  font-size: 13px; line-height: 1.5;
  color: rgba(42,26,35,0.72); margin: 0;
}
.matrix-group__count {
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.matrix-group__rows { padding: 4px 0; }

.matrix-row {
  display: grid;
  grid-template-columns: 1.7fr 1.2fr 2fr 1.1fr 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-top: 1px solid rgba(107,33,75,0.05);
  transition: background .2s ease;
}
.matrix-row:first-child { border-top: 0; }
.matrix-row:hover { background: rgba(212,175,55,0.04); }
.matrix-row__name {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 500;
  color: var(--burgundy);
  text-decoration: none;
  transition: color .2s ease;
}
.matrix-row__name:hover { color: var(--gold); }
.matrix-row__name img {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, #fff, rgba(212,175,55,0.10));
  border: 1px solid rgba(107,33,75,0.08);
  padding: 4px; object-fit: contain;
}
.matrix-row__fee {
  font-family: var(--font-primary);
  font-size: 13px; line-height: 1.4;
  color: rgba(42,26,35,0.85);
}
.matrix-row__regions {
  display: inline-flex; gap: 6px; flex-wrap: wrap;
}
.matrix-row__jump {
  font-family: var(--font-primary);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--burgundy);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(107,33,75,0.18);
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.matrix-row__jump:hover { background: var(--burgundy); color: #fff; border-color: var(--burgundy); }

/* Pills shared between matrix + cards */
.matrix-pill {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.matrix-pill--tier {
  color: #fff;
  text-transform: uppercase; font-size: 10px; letter-spacing: 0.10em;
  box-shadow: 0 4px 12px -6px rgba(0,0,0,0.30);
}
.matrix-pill--list {
  background: #fff;
  border: 1px solid currentColor;
}
.matrix-pill--region {
  background: rgba(107,33,75,0.06);
  color: var(--burgundy);
  border: 1px solid rgba(107,33,75,0.10);
}

/* Section heading on the deep-dives ───────────────────────────────── */
.biz-grid-section--booking { padding: 64px 0 80px; background: #FBF8F2; }
.biz-grid-section__head {
  max-width: 720px; margin: 0 0 36px;
}
.biz-grid-section__eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 12px;
}
.biz-grid-section__head h2 {
  font-family: var(--font-editorial); font-weight: 400;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.05;
  color: var(--burgundy); margin: 0 0 14px;
}
.biz-grid-section__head p {
  font-family: var(--font-primary);
  font-size: 16px; line-height: 1.6; color: rgba(42,26,35,0.80); margin: 0;
}

/* Booking-specific card additions ─────────────────────────────────── */
.biz-card--book .biz-card__title { display: flex; flex-direction: column; gap: 4px; }
.biz-card__tier {
  align-self: flex-start;
  display: inline-flex; align-items: center;
  font-family: var(--font-primary);
  font-size: 10px; font-weight: 500; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 4px;
  box-shadow: 0 4px 12px -6px rgba(0,0,0,0.30);
}
.biz-card__chips {
  display: inline-flex; flex-wrap: wrap; gap: 6px;
  margin: 0 0 14px;
}
.biz-card__body {
  margin-top: 18px; padding-top: 20px;
  border-top: 1px dashed rgba(107,33,75,0.18);
}
.biz-card__body-h {
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin: 0 0 10px;
}
.biz-card__body-prose {
  font-family: var(--font-primary);
  font-size: 14px; line-height: 1.7; color: rgba(42,26,35,0.88);
}
.biz-card--book .biz-card__cta { margin-top: 20px; }

/* FAQ accordion ───────────────────────────────────────────────────── */
.resource-faq {
  padding: 80px 0; background: #fff;
  border-top: 1px solid rgba(107,33,75,0.06);
}
.resource-faq .container { max-width: 920px; margin: 0 auto; padding: 0 24px; }
.resource-faq__intro { margin: 0 0 32px; max-width: 680px; }
.resource-faq__eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 12px;
}
.resource-faq__intro h2 {
  font-family: var(--font-editorial); font-weight: 400;
  font-size: clamp(30px, 4vw, 44px); line-height: 1.05;
  color: var(--burgundy); margin: 0 0 12px;
}
.resource-faq__intro p {
  font-family: var(--font-primary);
  font-size: 16px; line-height: 1.6; color: rgba(42,26,35,0.80); margin: 0;
}
.resource-faq__list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(107,33,75,0.10);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-item[open] {
  border-color: rgba(212,175,55,0.40);
  box-shadow: 0 18px 40px -28px rgba(107,33,75,0.20);
}
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-primary);
  font-size: 16px; font-weight: 500; color: var(--burgundy);
  line-height: 1.4;
  transition: color .2s ease;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { color: var(--gold); }
.faq-item__chev {
  flex: 0 0 28px;
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,0.12); color: var(--gold);
  font-size: 18px; font-weight: 400; line-height: 1;
  transition: transform .25s ease, background .25s ease;
}
.faq-item[open] .faq-item__chev {
  transform: rotate(45deg);
  background: var(--gold); color: #fff;
}
.faq-item__a {
  padding: 0 24px 22px;
  font-family: var(--font-primary);
  font-size: 14px; line-height: 1.7; color: rgba(42,26,35,0.85);
}
.faq-item__a a { color: var(--burgundy); border-bottom: 1px dotted currentColor; }

/* Related guides — bidirectional cross-link ──────────────────────── */
.resource-related {
  padding: 72px 0 80px; background: #FBF8F2;
}
.resource-related .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.resource-related__intro { margin: 0 0 28px; max-width: 720px; }
.resource-related__eyebrow {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 12px;
}
.resource-related__intro h2 {
  font-family: var(--font-editorial); font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px); line-height: 1.05;
  color: var(--burgundy); margin: 0;
}
.resource-related__grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.related-guide {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid rgba(107,33,75,0.10);
  border-radius: 16px;
  padding: 24px;
  text-decoration: none; color: #2A1A23;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.related-guide:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 56px -32px rgba(107,33,75,0.28);
  border-color: var(--gold);
}
.related-guide__cat {
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 10px;
}
.related-guide h3 {
  font-family: var(--font-editorial); font-weight: 400;
  font-size: 22px; line-height: 1.2;
  color: var(--burgundy); margin: 0 0 14px;
  flex: 1 1 auto;
}
.related-guide__cta {
  font-family: var(--font-primary);
  font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--burgundy);
}

/* Mobile ──────────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .matrix-row {
    grid-template-columns: 1.5fr 1fr;
    grid-template-areas:
      'name jump'
      'tier tier'
      'fee  fee'
      'list regions';
    gap: 10px;
  }
  .matrix-row__name { grid-area: name; }
  .matrix-row__jump { grid-area: jump; justify-self: end; }
  .matrix-pill--tier { grid-area: tier; justify-self: start; }
  .matrix-row__fee { grid-area: fee; }
  .matrix-pill--list { grid-area: list; justify-self: start; }
  .matrix-row__regions { grid-area: regions; justify-content: flex-end; }
}

@media (max-width: 720px) {
  .resource-hero-bleed { min-height: 380px; }
  .biz-card { padding: 22px; }
  .biz-card__logo { flex: 0 0 64px; width: 64px; height: 64px; }
  .biz-card__title h2 { font-size: 24px; }
  .mgmt-card { padding: 24px; }
  .mgmt-card__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mgmt-card__logo { flex: 0 0 80px; width: 80px; height: 80px; }
  .mgmt-card__meta { grid-template-columns: 1fr; }
  .mgmt-card__title h2 { font-size: 30px; }
  .biz-card__meta > div { grid-template-columns: 100px 1fr; }
  .platform-matrix { padding: 56px 0 40px; }
  .matrix-group__head { padding: 18px 18px 14px; gap: 12px; }
  .matrix-row { padding: 14px 18px; }
  .resource-faq { padding: 56px 0; }
  .resource-related { padding: 56px 0 64px; }
}

/* ──────────────────────────────────────────────────────────────────────
   STR ROI Calculator (calc-*) — interactive tool at /resources/calculators/
   Burgundy + gold, large legible typography, two-column input/result grid
   ────────────────────────────────────────────────────────────────────── */

.calc-hero { min-height: 420px; }
.calc-hero .client-hero__title { max-width: 880px; }
.calc-hero .client-hero__sub { max-width: 760px; }

.calc-shell {
  position: relative;
  padding: 72px 0 96px;
  background: linear-gradient(180deg, #faf6f3 0%, #f3ecea 100%);
  color: #2A1A23;
}
.calc-shell__inner { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

.calc-shell__intro { text-align: center; max-width: 740px; margin: 0 auto 44px; }
.calc-shell__eyebrow {
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
.calc-shell__eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
}
.calc-shell__title {
  font-family: var(--font-editorial);
  font-weight: 400; font-size: clamp(34px, 4.4vw, 52px);
  color: var(--burgundy); margin: 14px 0 14px; line-height: 1.05;
}
.calc-shell__sub {
  font-family: var(--font-primary);
  font-size: 17px; line-height: 1.6; color: #4a3340; margin: 0;
}
.calc-shell__sub em { font-style: normal; color: var(--burgundy); font-weight: 500; }

.calc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* INPUTS ─────────────────────────────────────────────────────────────── */
.calc-inputs {
  background: #fff;
  border-radius: 22px;
  padding: 8px 0 24px;
  border: 1px solid rgba(107,33,75,0.10);
  box-shadow: 0 24px 60px -32px rgba(107,33,75,0.25), 0 2px 6px -2px rgba(107,33,75,0.06);
}
.calc-group { border: 0; margin: 0; padding: 28px 32px 22px; }
.calc-group + .calc-group { border-top: 1px solid rgba(107,33,75,0.08); }

.calc-group__legend {
  font-family: var(--font-primary);
  font-size: 16px; font-weight: 600; color: var(--burgundy);
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0; margin-bottom: 18px;
}
.calc-group__num {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  width: 30px; height: 30px; border-radius: 999px;
  background: linear-gradient(135deg, var(--burgundy), #4a1535);
  color: var(--gold);
}
.calc-group__note {
  font-family: var(--font-primary);
  font-size: 13px; line-height: 1.55; color: #6b5560;
  margin: 14px 0 0; padding: 10px 14px;
  background: rgba(212,175,55,0.08);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.calc-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-bottom: 14px; }
.calc-row:has(.calc-field:nth-child(2):last-child) { grid-template-columns: repeat(2, minmax(0,1fr)); }
.calc-row:last-child { margin-bottom: 0; }

.calc-field { display: flex; flex-direction: column; gap: 6px; }
.calc-field--wide { margin-bottom: 14px; }
.calc-field label {
  font-family: var(--font-primary);
  font-size: 13px; font-weight: 500; color: #6b5560;
  letter-spacing: 0.01em;
}
.calc-field__inline {
  display: flex; align-items: stretch;
  background: #faf6f3;
  border: 1px solid rgba(107,33,75,0.14);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.calc-field__inline:focus-within {
  border-color: var(--burgundy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(107,33,75,0.12);
}
.calc-field__inline input {
  flex: 1 1 auto; min-width: 0;
  font-family: var(--font-primary);
  font-size: 17px; font-weight: 500; color: var(--burgundy);
  padding: 12px 12px;
  background: transparent;
  border: 0; outline: none;
  -moz-appearance: textfield;
}
.calc-field__inline input::-webkit-outer-spin-button,
.calc-field__inline input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-field__prefix, .calc-field__suffix {
  display: inline-flex; align-items: center;
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 600;
  color: #8a6a78;
  padding: 0 12px;
  background: rgba(107,33,75,0.05);
}
.calc-field__prefix { border-right: 1px solid rgba(107,33,75,0.10); }
.calc-field__suffix { border-left: 1px solid rgba(107,33,75,0.10); }

.calc-reset {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 4px 32px 0;
  font-family: var(--font-primary);
  font-size: 13px; font-weight: 500; color: #8a6a78;
  background: transparent; border: 0; cursor: pointer;
  padding: 8px 10px; border-radius: 8px;
}
.calc-reset:hover { color: var(--burgundy); background: rgba(107,33,75,0.05); }

/* RESULTS ────────────────────────────────────────────────────────────── */
.calc-results {
  position: sticky; top: 24px;
  background: linear-gradient(180deg, #fff 0%, #fdfaf8 100%);
  border-radius: 22px;
  padding: 0;
  border: 1px solid rgba(107,33,75,0.10);
  box-shadow: 0 32px 80px -32px rgba(107,33,75,0.32), 0 2px 6px -2px rgba(107,33,75,0.06);
  overflow: hidden;
}

.calc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--burgundy) 0%, #4a1535 100%);
  color: #fff;
}
.calc-toggle__head { display: flex; flex-direction: column; gap: 2px; }
.calc-toggle__eyebrow {
  font-family: var(--font-primary);
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.calc-toggle__title {
  font-family: var(--font-editorial);
  font-size: 22px; font-weight: 400; color: #fff;
}
.calc-toggle__switch {
  position: relative;
  width: 86px; height: 38px;
  border: 0; padding: 0;
  background: transparent; cursor: pointer;
  flex-shrink: 0;
}
.calc-toggle__track {
  position: absolute; inset: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  transition: background .2s ease;
  display: flex; align-items: center;
}
.calc-toggle__switch.is-on .calc-toggle__track { background: var(--gold); border-color: var(--gold); }
.calc-toggle__thumb {
  position: absolute; top: 3px; left: 3px;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform .25s cubic-bezier(.4,.0,.2,1);
}
.calc-toggle__switch.is-on .calc-toggle__thumb { transform: translateX(48px); }
.calc-toggle__on-label, .calc-toggle__off-label {
  position: absolute;
  font-family: var(--font-primary);
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  color: #fff;
  pointer-events: none;
}
.calc-toggle__on-label { left: 12px; opacity: 0; }
.calc-toggle__off-label { right: 12px; opacity: 1; color: rgba(255,255,255,0.7); }
.calc-toggle__switch.is-on .calc-toggle__on-label { opacity: 1; color: var(--burgundy); }
.calc-toggle__switch.is-on .calc-toggle__off-label { opacity: 0; }

.calc-bigstat {
  display: flex; flex-direction: column; gap: 6px;
  padding: 28px 24px 22px;
  border-bottom: 1px solid rgba(107,33,75,0.08);
}
.calc-bigstat__label {
  font-family: var(--font-primary);
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #8a6a78; font-weight: 600;
}
.calc-bigstat__value {
  font-family: var(--font-editorial);
  font-size: clamp(38px, 5.2vw, 56px);
  font-weight: 400; line-height: 1.0;
  color: var(--burgundy);
  letter-spacing: -0.01em;
}
.calc-bigstat__delta {
  font-family: var(--font-primary);
  font-size: 13px; font-weight: 500;
  color: #6b5560; min-height: 1.2em;
}
.calc-bigstat__delta.is-positive { color: #1f7a45; }
.calc-bigstat__delta.is-negative { color: #a83232; }

.calc-statgrid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  background: rgba(107,33,75,0.10);
  border-bottom: 1px solid rgba(107,33,75,0.08);
}
.calc-stat {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 14px;
  background: #fff;
}
.calc-stat__label {
  font-family: var(--font-primary);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #8a6a78; font-weight: 600;
}
.calc-stat__value {
  font-family: var(--font-editorial);
  font-size: 22px; font-weight: 500; line-height: 1.1;
  color: var(--burgundy);
}
.calc-stat__value--good { color: #1f7a45; }
.calc-stat__value--mid { color: #b67a14; }
.calc-stat__value--bad { color: #a83232; }
.calc-stat__hint {
  font-family: var(--font-primary);
  font-size: 10px; color: #a08294;
  letter-spacing: 0;
}

.calc-compare {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(107,33,75,0.08);
}
.calc-compare__title {
  font-family: var(--font-editorial);
  font-size: 20px; font-weight: 500; color: var(--burgundy);
  margin: 0 0 16px;
}
.calc-compare__row { margin-bottom: 14px; }
.calc-compare__row:last-of-type { margin-bottom: 10px; }
.calc-compare__row-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px;
  font-family: var(--font-primary);
  font-size: 13px; color: #4a3340;
}
.calc-compare__dot {
  width: 10px; height: 10px; border-radius: 999px;
  flex-shrink: 0;
}
.calc-compare__dot--off { background: #c9b6bf; }
.calc-compare__dot--on { background: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.20); }
.calc-compare__label { font-weight: 500; }
.calc-compare__val { margin-left: auto; font-weight: 600; color: var(--burgundy); font-variant-numeric: tabular-nums; }
.calc-compare__track {
  height: 14px; background: rgba(107,33,75,0.06);
  border-radius: 999px; overflow: hidden;
}
.calc-compare__bar {
  display: block; height: 100%;
  border-radius: 999px;
  transition: width .35s cubic-bezier(.4,.0,.2,1);
}
.calc-compare__bar--off { background: linear-gradient(90deg, #c9b6bf, #b09aa6); }
.calc-compare__bar--on { background: linear-gradient(90deg, var(--gold), #e8c75c); }
.calc-compare__bar.is-negative { background: linear-gradient(90deg, #d8a4a4, #c08585); }
.calc-compare__caption {
  font-family: var(--font-primary);
  font-size: 13px; line-height: 1.55; color: #4a3340;
  margin: 12px 0 0;
}
.calc-compare__caption strong { color: var(--burgundy); }

.calc-cta {
  padding: 20px 24px 24px;
  text-align: center;
  background: rgba(212,175,55,0.06);
}
.calc-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-primary);
  font-size: 15px; font-weight: 600; letter-spacing: 0.02em;
  background: var(--burgundy); color: #fff;
  padding: 14px 28px; border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
  box-shadow: 0 8px 20px -8px rgba(107,33,75,0.50);
}
.calc-cta__btn:hover { background: #4a1535; transform: translateY(-1px); }
.calc-cta__hint {
  font-family: var(--font-primary);
  font-size: 12px; color: #8a6a78;
  margin: 10px 0 0;
}

/* Assumptions ────────────────────────────────────────────────────────── */
.calc-assumptions {
  margin: 36px auto 0;
  max-width: 880px;
  background: #fff;
  border: 1px solid rgba(107,33,75,0.10);
  border-radius: 16px;
  overflow: hidden;
}
.calc-assumptions > summary {
  list-style: none; cursor: pointer;
  padding: 18px 24px;
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 600; color: var(--burgundy);
  letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 10px;
}
.calc-assumptions > summary::-webkit-details-marker { display: none; }
.calc-assumptions__icon { display: inline-block; transition: transform .2s ease; color: var(--gold); }
.calc-assumptions[open] .calc-assumptions__icon { transform: rotate(90deg); }
.calc-assumptions__body { padding: 0 24px 22px; }
.calc-assumptions__list {
  margin: 0; padding: 0; list-style: none;
  display: grid; gap: 10px;
  font-family: var(--font-primary);
  font-size: 14px; line-height: 1.6; color: #4a3340;
}
.calc-assumptions__list li {
  padding: 12px 16px;
  background: #faf6f3;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.calc-assumptions__list strong { color: var(--burgundy); font-weight: 600; }

/* Calculator responsive ──────────────────────────────────────────────── */
@media (max-width: 980px){
  .calc-grid { grid-template-columns: 1fr; gap: 22px; }
  .calc-results { position: static; }
  .calc-shell { padding: 56px 0 72px; }
  .calc-shell__inner { padding: 0 18px; }
}
@media (max-width: 640px){
  .calc-shell__title { font-size: 32px; }
  .calc-shell__sub { font-size: 15px; }
  .calc-group { padding: 22px 18px 18px; }
  .calc-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .calc-statgrid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .calc-bigstat__value { font-size: 38px; }
  .calc-toggle { padding: 14px 18px; }
  .calc-toggle__title { font-size: 18px; }
  .calc-reset { margin-left: 18px; margin-right: 18px; }
}
