/* ============================================
     Industry: Tourism Boards / DMOs
     Identity: tilted destination postcards,
     passport stamp marks, 3-day visitor arc
     ============================================ */

  .crumb {
    padding: 20px 0 0;
    font-size: 13px; color: var(--fg-mute);
    display: flex; gap: 10px; align-items: center;
  }
  .crumb a { color: var(--fg-mute); }
  .crumb a:hover { color: var(--accent); }
  .crumb .sep { opacity: 0.4; }

  .tb-hero {
    padding: 56px 0 80px;
    position: relative;
  }
  .tb-hero-grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
  }
  @media (max-width: 980px) { .tb-hero-grid { grid-template-columns: 1fr; } }
  .industry-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 10px 5px 8px; border-radius: 999px;
    background: color-mix(in oklch, var(--accent) 12%, var(--bg-card));
    border: 1px solid color-mix(in oklch, var(--accent) 35%, var(--border));
    font-size: 11.5px; font-family: "Geist Mono", monospace; letter-spacing: 0.06em;
    color: var(--accent); margin-bottom: 24px;
  }
  .industry-tag::before {
    content: ""; display: inline-block; width: 6px; height: 6px;
    background: var(--accent); border-radius: 50%;
  }
  .tb-hero h1 {
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.95; letter-spacing: -0.035em; font-weight: 600;
    margin: 0 0 24px;
  }
  .tb-hero h1 em {
    font-family: "Instrument Serif", serif;
    font-style: italic; font-weight: 400; letter-spacing: -0.02em;
    color: var(--accent);
  }
  .tb-hero .sub {
    font-size: 19px; color: var(--fg-dim);
    max-width: 540px; margin: 0 0 32px;
  }

  /* ─── POSTCARD STACK ─────────────────────── */
  .postcard-stack {
    position: relative;
    aspect-ratio: 1/1;
    display: grid; place-items: center;
  }
  .postcard {
    position: absolute;
    width: 74%;
    aspect-ratio: 4/3;
    border-radius: 6px;
    background: var(--bg-card);
    border: 2px solid oklch(0.18 0.015 50);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.24);
    padding: 20px 22px 24px;
    display: flex; flex-direction: column; justify-content: space-between;
    transition: transform 280ms ease, box-shadow 280ms ease;
    cursor: default;
  }
  .postcard::before {
    content: "";
    position: absolute; top: 14px; right: 14px;
    width: 52px; height: 52px;
    border: 2px dashed color-mix(in oklch, var(--accent) 50%, var(--border));
    border-radius: 50%;
    opacity: 0.85;
  }
  .postcard.stamped::after {
    content: "";
    position: absolute; top: 22px; right: 22px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: color-mix(in oklch, var(--accent) 18%, transparent);
    border: 2px solid var(--accent);
    box-shadow: inset 0 0 0 3px var(--bg-card);
    transition: transform 280ms ease;
  }
  .postcard.pc2 {
    transform: translate(-18%, -12%) rotate(-11deg);
    z-index: 1;
    background: oklch(0.96 0.008 75);
  }
  .postcard.pc3 {
    transform: translate(16%, 10%) rotate(9deg);
    z-index: 3;
    background: var(--accent);
    border-color: var(--accent);
    color: oklch(0.99 0 0);
  }
  .postcard.pc3::before {
    border-color: color-mix(in oklch, oklch(0.99 0 0) 60%, var(--accent));
  }
  .postcard.pc3.stamped::after {
    border-color: oklch(0.99 0 0);
    background: color-mix(in oklch, oklch(0.99 0 0) 25%, var(--accent));
    box-shadow: inset 0 0 0 3px var(--accent);
  }
  .postcard.pc1 {
    z-index: 2;
    transform: rotate(2deg);
  }
  .postcard .label {
    font-family: "Geist Mono", monospace; font-size: 10px;
    letter-spacing: 0.16em; text-transform: uppercase;
    opacity: 0.7;
  }
  .postcard .name {
    font-family: "Instrument Serif", serif; font-style: italic;
    font-size: clamp(22px, 2.6vw, 32px); line-height: 0.95;
    letter-spacing: -0.02em; margin-top: auto;
  }
  .postcard .sub {
    font-size: 10.5px; margin-top: 10px; opacity: 0.75;
    font-family: "Geist Mono", monospace;
  }
  .postcard.pc3 .sub { opacity: 0.9; }

  .postcard-stack:hover .postcard.pc2 {
    transform: translate(-20%, -16%) rotate(-13deg) translateY(-6px);
    box-shadow: 0 28px 60px -20px rgba(0,0,0,0.28);
  }
  .postcard-stack:hover .postcard.pc3 {
    transform: translate(18%, 6%) rotate(11deg) translateY(-10px);
    box-shadow: 0 32px 64px -20px rgba(0,0,0,0.32);
  }
  .postcard-stack:hover .postcard.pc1 {
    transform: rotate(3deg) translateY(-8px);
    box-shadow: 0 28px 60px -20px rgba(0,0,0,0.28);
  }
  .postcard-stack:hover .postcard.stamped::after {
    transform: scale(1.06);
  }

  /* ─── USE CASES ─────────────────────── */
  .use-cases {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  }
  @media (max-width: 900px) { .use-cases { grid-template-columns: 1fr; } }
  .use-case {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    position: relative;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease;
  }
  .use-case:hover {
    background: var(--bg-card);
    border-color: color-mix(in oklch, var(--accent) 35%, var(--border));
  }
  .use-case .uc-pin {
    position: absolute; top: -4px; right: 32px;
    width: 22px; height: 22px;
    background: var(--accent);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 2px solid oklch(0.18 0.015 50);
  }
  .use-case .uc-num {
    font-family: "Geist Mono", monospace; font-size: 10.5px;
    letter-spacing: 0.16em; color: var(--accent);
    margin-bottom: 16px;
  }
  .use-case h3 {
    font-size: 22px; letter-spacing: -0.02em;
    font-weight: 500; margin: 0 0 8px;
  }
  .use-case .platform {
    font-family: "Geist Mono", monospace; font-size: 11px;
    color: var(--fg-mute); margin-bottom: 18px;
  }
  .use-case p { color: var(--fg-dim); font-size: 14.5px; margin: 0 0 18px; }
  .use-case .uc-meta {
    display: flex; gap: 12px; padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 12px; color: var(--fg-mute);
  }
  .use-case .uc-meta .b { color: var(--fg); font-weight: 500; }

  /* ─── VISITOR JOURNEY (3-day) ─────────────────────── */
  .visitor-journey {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    padding: 40px;
    overflow: hidden;
  }
  .vj-days {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    margin-top: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  @media (max-width: 720px) { .vj-days { grid-template-columns: 1fr; } }
  .vj-day {
    padding: 28px 24px;
    border-right: 1px solid var(--border);
    position: relative;
  }
  .vj-day:last-child { border-right: 0; }
  @media (max-width: 720px) {
    .vj-day { border-right: 0; border-bottom: 1px solid var(--border); }
    .vj-day:last-child { border-bottom: 0; }
  }
  .vj-day.active {
    background: color-mix(in oklch, var(--accent) 10%, var(--bg-card));
  }
  .vj-day .d-label {
    font-family: "Geist Mono", monospace; font-size: 10px;
    letter-spacing: 0.14em; color: var(--accent);
    margin-bottom: 8px;
  }
  .vj-day h4 {
    margin: 0 0 8px; font-size: 17px; font-weight: 500;
    letter-spacing: -0.01em;
  }
  .vj-day p {
    margin: 0; font-size: 13px; color: var(--fg-mute); line-height: 1.45;
  }
  .vj-day .stops {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--border);
    font-family: "Geist Mono", monospace; font-size: 11px;
    color: var(--fg-dim);
  }
  .vj-day.active .stops { color: var(--accent); }
  .vj-route {
    position: relative;
    height: 8px;
    margin-top: 28px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
  }
  .vj-route-fill {
    position: absolute; inset: 0;
    width: 66%;
    background: linear-gradient(90deg,
      color-mix(in oklch, var(--accent) 40%, var(--bg-card)),
      var(--accent));
    border-radius: 999px;
  }
  .vj-route-dots {
    position: absolute; inset: 0;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 2%;
  }
  .vj-route-dots span {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--bg-elev);
    border: 2px solid var(--border-strong);
  }
  .vj-route-dots span.done {
    background: var(--accent);
    border-color: var(--accent);
  }
  .vj-route-dots span.current {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 0 4px color-mix(in oklch, var(--accent) 25%, transparent);
  }

  /* ─── IMPACT STATS ─────────────────────── */
  .rev-grid {
    display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--bg-elev);
  }
  @media (max-width: 980px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
  .rev-cell {
    padding: 36px 32px;
    border-right: 1px solid var(--border);
  }
  .rev-cell:last-child { border-right: 0; }
  @media (max-width: 980px) {
    .rev-cell { border-right: 0; border-bottom: 1px solid var(--border); }
    .rev-cell:nth-child(2n) { border-right: 0; }
  }
  .rev-cell.lead {
    background:
      radial-gradient(400px 200px at 0% 100%, color-mix(in oklch, var(--accent) 18%, transparent), transparent 60%),
      var(--bg-elev);
  }
  .rev-cell h4 { margin: 0 0 10px; font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
  .rev-cell p { margin: 0; color: var(--fg-mute); font-size: 13px; }
  .rev-cell .v {
    font-family: "Instrument Serif", serif; font-style: italic;
    font-size: clamp(40px, 4vw, 52px); line-height: 1; letter-spacing: -0.02em;
    color: var(--accent);
  }
  .rev-cell .l { font-size: 13px; color: var(--fg-mute); margin-top: 8px; }

  /* ─── DMO FEATURES ─────────────────────── */
  .tb-feats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--bg-elev);
  }
  @media (max-width: 800px) { .tb-feats { grid-template-columns: 1fr; } }
  .tf {
    padding: 28px 30px;
    display: flex; gap: 18px; align-items: start;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .tf:nth-child(2n) { border-right: 0; }
  .tf:nth-last-child(-n+2) { border-bottom: 0; }
  @media (max-width: 800px) {
    .tf { border-right: 0; }
    .tf:last-child { border-bottom: 0; }
  }
  .tf .icon {
    width: 38px; height: 38px; border-radius: 8px;
    background: color-mix(in oklch, var(--accent) 12%, var(--bg-card));
    border: 1px solid color-mix(in oklch, var(--accent) 28%, var(--border));
    display: grid; place-items: center; flex-shrink: 0;
  }
  .tf h4 { margin: 0 0 4px; font-size: 16px; font-weight: 500; letter-spacing: -0.005em; }
  .tf p { margin: 0; color: var(--fg-mute); font-size: 13.5px; line-height: 1.5; }

  /* ─── DIRECTOR QUOTE ─────────────────────── */
  .dmo-quote {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center;
    padding: 56px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
      radial-gradient(600px 300px at 100% 0%, color-mix(in oklch, var(--accent) 14%, transparent), transparent 60%),
      var(--bg-elev);
  }
  @media (max-width: 900px) { .dmo-quote { grid-template-columns: 1fr; padding: 36px; } }
  .dmo-photo {
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    background:
      linear-gradient(160deg,
        color-mix(in oklch, var(--accent) 10%, var(--bg-card)) 0%,
        var(--bg-card) 45%,
        color-mix(in oklch, var(--accent) 6%, var(--bg-card)) 100%);
    border: 1px solid var(--border);
    display: grid; place-items: center;
  }
  .dmo-photo::before {
    content: "[ DMO director ]";
    font-family: "Geist Mono", monospace; font-size: 12px;
    color: var(--fg-mute);
    background: var(--bg); padding: 6px 12px; border-radius: 6px;
    border: 1px solid var(--border);
  }
  .dmo-quote .q {
    font-family: "Instrument Serif", serif; font-style: italic;
    font-size: clamp(24px, 2.8vw, 34px); line-height: 1.2; letter-spacing: -0.02em;
    margin: 0 0 24px;
  }
  .dmo-quote .who {
    display: flex; gap: 14px; align-items: center;
    padding-top: 18px; border-top: 1px solid var(--border);
  }
  .dmo-quote .who .av {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), oklch(0.4 0.18 27));
  }

  /* ─── OTHER INDUSTRIES ─────────────────────── */
  .other-inds {
    border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; background: var(--bg-elev);
  }
  .oi-row {
    display: grid; grid-template-columns: 80px 1fr auto;
    gap: 24px; align-items: center;
    padding: 18px 28px;
    border-top: 1px solid var(--border);
    transition: 160ms ease;
    cursor: pointer; color: inherit; text-decoration: none;
  }
  .oi-row:first-child { border-top: 0; }
  .oi-row:hover { background: var(--bg-card); }
  .oi-row .id { font-family: "Geist Mono", monospace; font-size: 11px; color: var(--accent); letter-spacing: 0.1em; }
  .oi-row .name { font-size: 17px; font-weight: 500; letter-spacing: -0.005em; }
  .oi-row .desc { color: var(--fg-mute); font-size: 13px; margin-top: 2px; }
  .oi-row .arrow { color: var(--fg-mute); transition: 160ms; }
  .oi-row:hover .arrow { color: var(--accent); transform: translateX(4px); }

  .travel-cta {
    text-align: center;
    padding: 88px 32px;
    border-radius: var(--radius-lg);
    background:
      radial-gradient(600px 300px at 50% 0%, color-mix(in oklch, var(--accent) 22%, transparent), transparent 60%),
      var(--bg-elev);
    border: 1px solid var(--border);
  }
  .travel-cta h2 {
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -0.035em; line-height: 1;
    margin: 0 0 20px;
  }
  .travel-cta p { color: var(--fg-dim); font-size: 18px; max-width: 50ch; margin: 0 auto 32px; }

  @media (prefers-reduced-motion: reduce) {
    .postcard, .postcard.stamped::after, .postcard-stack:hover .postcard { transition: none; }
    .postcard-stack:hover .postcard.pc2 { transform: translate(-18%, -12%) rotate(-11deg); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.24); }
    .postcard-stack:hover .postcard.pc3 { transform: translate(16%, 10%) rotate(9deg); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.24); }
    .postcard-stack:hover .postcard.pc1 { transform: rotate(2deg); box-shadow: 0 20px 50px -20px rgba(0,0,0,0.24); }
    .postcard-stack:hover .postcard.stamped::after { transform: none; }
    .use-case, .oi-row { transition: none; }
  }
