/* ============================================================
   Best Defence Conference — shared subpage + homepage-update styles
   Builds on assets/site.css tokens. Load AFTER site.css.
   ============================================================ */

/* ---------- affiliation strip (above nav) ---------- */
.affbar {
  background: var(--ink);
  border-bottom: 1px solid var(--line-d);
  color: var(--text-d-2);
}
.affbar .wrap {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 42px; padding-block: 8px; text-align: center;
}
.affbar img { height: 20px; width: auto; }
.affbar .lbl {
  font-family: "Archivo", sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em; font-size: 11px;
  color: var(--text-d);
}
.affbar .lbl a { color: var(--orange); }
.affbar .lbl a:hover { text-decoration: underline; }
@media (max-width: 640px){ .affbar .lbl { letter-spacing: .1em; font-size: 9.5px; } }

/* Register nav item highlighted */
.nav-links a.reg { color: var(--orange); }

/* ---------- footer ODA lockup ---------- */
.foot-oda {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-d);
}
.foot-oda img { height: 30px; width: auto; }
.foot-oda span { font-size: 12px; line-height: 1.4; color: var(--text-d-2); max-width: 240px; }
.foot-oda a:hover { color: #fff; }

/* ---------- generic small pill / badge ---------- */
.pill-oda {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 10px; border-radius: 40px;
  background: rgba(255,255,255,.05); border: 1px solid var(--line-d);
  font-size: 12.5px; color: var(--text-d); font-weight: 600;
}
.pill-oda img { height: 16px; width: auto; }
.pill-oda b { color: var(--orange); }
.light .pill-oda, .mist .pill-oda { background: #fff; border-color: var(--line-l); color: var(--text-l); }

/* ---------- SUBPAGE HERO ---------- */
.subhero { position: relative; background: var(--ink); color: var(--text-d); overflow: hidden; }
.subhero .bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(110deg, #0B0F1A 0%, #0B0F1A 46%, rgba(11,15,26,.55) 100%),
    repeating-linear-gradient(135deg, #17203100 0 12px, #141b28 12px 24px), var(--ink-2);
}
.subhero .mosaic-strip {
  position: absolute; top: 0; right: 0; height: 100%; width: 42%;
  display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: 1fr;
  opacity: .85; pointer-events: none;
  -webkit-mask-image: linear-gradient(105deg, transparent 0%, transparent 26%, #000 78%);
          mask-image: linear-gradient(105deg, transparent 0%, transparent 26%, #000 78%);
}
.subhero .mosaic-strip i { display: block; }
.subhero .wrap { position: relative; z-index: 2; padding-block: clamp(54px, 8vh, 92px); }
.subhero .eyebrow { display: inline-flex; align-items: center; gap: 13px; color: #fff; margin-bottom: 20px; }
.subhero .eyebrow .bar { width: 28px; height: 2px; background: var(--orange); }
.subhero h1 { margin: 0; font-size: clamp(40px, 6vw, 78px); max-width: 15ch; }
.subhero h1 .em { color: var(--orange); }
.subhero .sub { margin: 22px 0 0; max-width: 640px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.55; color: var(--text-d); }
.subhero .sub b { color: #fff; }
.subhero .support { margin: 16px 0 0; max-width: 640px; font-size: 14.5px; line-height: 1.6; color: var(--text-d-2); }
.subhero .hero-cta { display: flex; gap: 13px; margin-top: 32px; flex-wrap: wrap; }
.subhero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 900px){ .subhero-grid { grid-template-columns: 1fr; } }

/* event detail card */
.eventcard {
  border: 1px solid var(--line-d); border-radius: 6px; background: rgba(255,255,255,.03);
  padding: 26px 26px 24px;
}
.eventcard .ek { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .1em; color: var(--orange); text-transform: uppercase; }
.eventcard h3 { margin: 12px 0 16px; font-family: "BDC Display"; font-style: italic; text-transform: uppercase; color: #fff; font-size: 24px; }
.eventcard .row { display: flex; gap: 12px; padding: 9px 0; border-top: 1px solid var(--line-d); font-size: 14px; color: var(--text-d); }
.eventcard .row:first-of-type { border-top: 0; }
.eventcard .row .k { color: var(--text-d-2); min-width: 74px; font-weight: 600; }

/* ---------- section utilities ---------- */
.rich p { font-size: 17px; line-height: 1.65; color: var(--text-l-2); max-width: 780px; }
.dark .rich p { color: var(--text-d-2); }
.rich p + p { margin-top: 16px; }
.narrow { max-width: 820px; }
.center { text-align: center; margin-inline: auto; }
.sec-note { font-size: 13px; color: var(--text-l-2); margin-top: 22px; font-style: italic; }
.dark .sec-note { color: var(--text-d-2); }
.anchor { scroll-margin-top: 130px; }

/* ---------- feature grid (icon-free, colored bar cards) ---------- */
.feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feats.two { grid-template-columns: repeat(2, 1fr); }
.feats.four { grid-template-columns: repeat(4, 1fr); }
.feat {
  border: 1px solid var(--line-l); border-radius: 5px; background: var(--paper);
  padding: 26px 24px; position: relative; overflow: hidden;
}
.dark .feat { background: var(--ink-2); border-color: var(--line-d); }
.mist .feat { background: #fff; }
.feat::before { content:""; position:absolute; left:0; top:0; height:3px; width:44px; background: var(--orange); }
.feat:nth-child(6n+2)::before { background: var(--magenta); }
.feat:nth-child(6n+3)::before { background: var(--blue); }
.feat:nth-child(6n+4)::before { background: var(--red); }
.feat:nth-child(6n+5)::before { background: var(--indigo); }
.feat h3 { margin: 6px 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.dark .feat h3 { color: #fff; }
.feat p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-l-2); }
.dark .feat p { color: var(--text-d-2); }

/* compact chip list (themes / areas / who-should) */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  border: 1px solid var(--line-l); border-radius: 3px; background: var(--paper);
  padding: 14px 20px; font-weight: 700; font-size: 15px; color: var(--text-l);
  display: flex; align-items: center; gap: 12px;
}
.dark .chip { background: var(--ink-2); border-color: var(--line-d); color: #fff; }
.chip::before { content:""; width: 8px; height: 8px; background: var(--orange); flex: 0 0 auto; }
.chip:nth-child(6n+2)::before { background: var(--magenta); }
.chip:nth-child(6n+3)::before { background: var(--blue); }
.chip:nth-child(6n+4)::before { background: var(--red); }
.chip:nth-child(6n+5)::before { background: var(--indigo); }

/* ---------- homepage ODA band ---------- */
.odaband { background: var(--ink-2); color: var(--text-d); border-block: 1px solid var(--line-d); padding-block: clamp(60px, 8vh, 100px); }
.odaband .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.odaband .lockup { display: flex; align-items: center; gap: 20px; margin-bottom: 22px; }
.odaband .lockup img { height: 54px; width: auto; }
.odaband h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 0; color: #fff; }
.odaband .lede { font-size: 16.5px; line-height: 1.65; color: var(--text-d-2); margin: 20px 0 26px; }
.odaband .tiles { display: grid; gap: 14px; }
.odatile { border: 1px solid var(--line-d); border-radius: 5px; background: var(--ink-3); padding: 22px 24px; position: relative; }
.odatile::before { content:""; position:absolute; left:0; top:0; width:3px; height:100%; background: var(--orange); }
.odatile:nth-child(2)::before { background: var(--magenta); }
.odatile:nth-child(3)::before { background: var(--blue); }
.odatile h4 { margin: 0 0 7px; font-size: 16px; color: #fff; font-weight: 700; }
.odatile p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text-d-2); }
@media (max-width: 900px){ .odaband .wrap { grid-template-columns: 1fr; } }

/* ---------- pricing / passes ---------- */
.passgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pass {
  border: 1px solid var(--line-l); border-radius: 6px; background: var(--paper);
  padding: 30px 28px; display: flex; flex-direction: column; position: relative;
}
.dark .pass { background: var(--ink-2); border-color: var(--line-d); }
.pass.feat-pass { border-color: var(--orange); box-shadow: 0 0 0 1px var(--orange); }
.pass .flag { position: absolute; top: -12px; left: 28px; background: var(--orange); color: #fff; font-family:"Archivo"; font-weight:700; font-size: 11px; letter-spacing:.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 2px; }
.pass .pk { font-family:"Archivo"; font-weight:700; text-transform: uppercase; letter-spacing:.08em; font-size: 12.5px; color: var(--text-l-2); }
.dark .pass .pk { color: var(--text-d-2); }
.pass .price { font-family:"BDC Display"; font-style: italic; font-weight: 800; font-size: 46px; line-height: 1; margin: 14px 0 4px; color: var(--ink); }
.dark .pass .price { color: #fff; }
.pass .price small { font-size: 15px; font-style: normal; font-weight: 700; color: var(--text-l-2); }
.pass .when { font-size: 13px; color: var(--orange); font-weight: 700; margin-bottom: 16px; }
.pass .desc { font-size: 14px; line-height: 1.55; color: var(--text-l-2); margin: 0 0 20px; flex: 1; }
.dark .pass .desc { color: var(--text-d-2); }
.pass .note { font-size: 12px; color: var(--text-l-2); margin-top: 14px; line-height: 1.45; }
.dark .pass .note { color: var(--text-d-2); }

/* add-on rows */
.addons { border: 1px solid var(--line-l); border-radius: 6px; overflow: hidden; }
.dark .addons { border-color: var(--line-d); }
.addon { display: flex; justify-content: space-between; gap: 20px; padding: 16px 22px; border-top: 1px solid var(--line-l); background: var(--paper); }
.dark .addon { border-top-color: var(--line-d); background: var(--ink-2); }
.addon:first-child { border-top: 0; }
.addon .ai .nm { font-weight: 700; font-size: 15px; color: var(--text-l); }
.dark .addon .ai .nm { color: #fff; }
.addon .ai .de { font-size: 13px; color: var(--text-l-2); margin-top: 3px; }
.dark .addon .ai .de { color: var(--text-d-2); }
.addon .amt { font-family:"BDC Display"; font-style: italic; font-weight: 800; font-size: 20px; color: var(--orange); white-space: nowrap; }

/* ---------- callout / notice ---------- */
.callout {
  border: 1px solid var(--line-d); border-left: 4px solid var(--orange); border-radius: 5px;
  background: var(--ink-2); color: var(--text-d); padding: 32px 34px;
}
.callout.light { background: var(--mist); color: var(--text-l); border-color: var(--line-l); border-left-color: var(--orange); }
.callout h3 { font-family:"BDC Display"; font-style: italic; text-transform: uppercase; margin: 0 0 12px; font-size: 24px; color: #fff; }
.callout.light h3 { color: var(--ink); }
.callout p { font-size: 15px; line-height: 1.6; color: var(--text-d-2); margin: 0 0 12px; }
.callout.light p { color: var(--text-l-2); }
.callout ul { margin: 12px 0 0; padding-left: 20px; }
.callout li { font-size: 14px; line-height: 1.6; color: var(--text-d-2); margin-bottom: 7px; }
.callout.light li { color: var(--text-l-2); }

.notice {
  border: 1px solid #6b3a1e; border-left: 5px solid var(--orange); border-radius: 5px;
  background: rgba(241,103,38,.08); padding: 28px 32px;
}
.notice h3 { font-family:"BDC Display"; font-style: italic; text-transform: uppercase; margin: 0 0 10px; font-size: 22px; color: var(--ink); display:flex; align-items:center; gap:12px; }
.notice h3::before { content:"!"; display:inline-flex; align-items:center; justify-content:center; width: 26px; height: 26px; background: var(--orange); color:#fff; border-radius: 50%; font-family:"Archivo"; font-style: normal; font-size: 15px; }
.notice p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-l); }

/* ---------- info notes list ---------- */
.notelist { display: grid; gap: 10px; max-width: 860px; }
.notelist li { list-style: none; font-size: 14.5px; line-height: 1.55; color: var(--text-l-2); padding-left: 26px; position: relative; }
.dark .notelist li { color: var(--text-d-2); }
.notelist li::before { content:""; position:absolute; left: 4px; top: 8px; width: 7px; height: 7px; background: var(--orange); }

/* ---------- hotels ---------- */
.hotelgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.hotel { border: 1px solid var(--line-l); border-radius: 6px; overflow: hidden; background: var(--paper); display:flex; flex-direction: column; }
.hotel .img { aspect-ratio: 16/8; background: repeating-linear-gradient(135deg, #e9ecf2 0 14px, #e2e6ee 14px 28px); position: relative; display:flex; align-items:flex-end; }
.hotel .img .mono { font-family: ui-monospace, monospace; font-size: 10.5px; color: var(--text-l-2); padding: 10px 14px; }
.hotel .img .rate { position:absolute; top: 14px; right: 14px; background: var(--ink); color:#fff; font-family:"BDC Display"; font-style:italic; font-weight:800; font-size: 16px; padding: 7px 12px; border-radius: 3px; }
.hotel .body { padding: 24px 26px 26px; display:flex; flex-direction: column; flex:1; }
.hotel h3 { margin: 0 0 10px; font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.hotel .meta { display:grid; gap: 7px; margin-bottom: 16px; }
.hotel .meta .r { font-size: 13.5px; color: var(--text-l-2); display:flex; gap: 8px; }
.hotel .meta .r b { color: var(--text-l); font-weight: 700; min-width: 92px; }
.hotel .deadline { font-size: 13px; color: var(--orange); font-weight: 700; margin-bottom: 16px; }
.hotel .cta-row { display:flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.hotel .cta-row .btn { padding: 11px 18px; font-size: 13.5px; }
@media (max-width: 760px){ .hotelgrid { grid-template-columns: 1fr; } }

/* ---------- comparison table ---------- */
.cmp-wrap { overflow-x: auto; border: 1px solid var(--line-l); border-radius: 6px; }
.dark .cmp-wrap { border-color: var(--line-d); }
.cmp { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
.cmp th, .cmp td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line-l); }
.dark .cmp th, .dark .cmp td { border-bottom-color: var(--line-d); }
.cmp thead th { background: var(--ink); color: #fff; font-family:"Archivo"; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 12px; }
.cmp thead th.hot { background: var(--orange); }
.cmp tbody th { font-weight: 700; color: var(--text-l); background: var(--mist); }
.dark .cmp tbody th { color: #fff; background: var(--ink-3); }
.cmp td { color: var(--text-l-2); }
.dark .cmp td { color: var(--text-d-2); }
.cmp .yes { color: var(--orange); font-weight: 800; }
.cmp .no { color: var(--line-l); }
.dark .cmp .no { color: #3a4256; }
.cmp tbody tr:hover td, .cmp tbody tr:hover th { background: rgba(241,103,38,.05); }

/* ---------- program agenda (extends .day/.slot from site.css) ---------- */
.agenda { display: grid; gap: 12px; }
.aslot {
  display: grid; grid-template-columns: 110px 1fr; gap: 22px;
  border: 1px solid var(--line-d); border-radius: 5px; background: var(--ink-2);
  padding: 20px 24px; align-items: start;
}
.aslot .time { font-family:"BDC Display"; font-style:italic; font-weight:800; font-size: 17px; color: var(--orange); font-variant-numeric: tabular-nums; }
.aslot .body h4 { margin: 0 0 6px; font-size: 17px; color: #fff; font-weight: 700; letter-spacing: -.01em; }
.aslot .body p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--text-d-2); }
.aslot .body .who { color: var(--blue); font-weight: 600; }
.aslot .body .spons { display:inline-block; margin-top: 8px; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .05em; color: var(--text-d-2); border: 1px solid var(--line-d); border-radius: 3px; padding: 3px 9px; }
.aslot.feature { border-color: rgba(241,103,38,.5); background: linear-gradient(180deg, rgba(241,103,38,.07), var(--ink-2)); }
.aslot.break { background: var(--ink); }
.aslot.break .body h4 { color: var(--text-d); }
.aslot.recep { border-color: rgba(207,60,149,.4); background: linear-gradient(180deg, rgba(207,60,149,.08), var(--ink-2)); }
@media (max-width: 560px){ .aslot { grid-template-columns: 1fr; gap: 8px; } }

.dayhdr { display:flex; align-items: baseline; gap: 16px; margin: 0 0 22px; padding-bottom: 16px; border-bottom: 1px solid var(--line-d); }
.dayhdr .dd { font-family:"BDC Display"; font-style:italic; font-weight:800; font-size: clamp(26px,3vw,38px); color: #fff; }
.dayhdr .dl { font-size: 14px; color: var(--orange); font-weight: 700; }

/* ---------- speakers (extend .spk from site.css) ---------- */
.spk .tag { display:inline-block; margin-top: 10px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--orange); }
.spk.sm .photo { aspect-ratio: 3/2; }
.spk.sm .meta { padding: 13px 14px 15px; }

/* ---------- news feed ---------- */
.newsfeed { display: grid; gap: 26px; max-width: 900px; }
.news {
  border: 1px solid var(--line-l); border-radius: 6px; background: var(--paper);
  display: grid; grid-template-columns: 1fr; overflow: hidden;
}
.news .nbody { padding: 30px 34px 32px; }
.news .nmeta { display:flex; align-items:center; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.news .date { font-family: ui-monospace, monospace; font-size: 12px; color: var(--text-l-2); letter-spacing: .04em; }
.news .cat { font-family:"Archivo"; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 11px; color: #fff; background: var(--orange); padding: 4px 10px; border-radius: 2px; }
.news .cat.upd { background: var(--blue); }
.news h3 { margin: 0 0 14px; font-size: clamp(21px,2.6vw,28px); font-weight: 700; letter-spacing: -.015em; line-height: 1.15; }
.news p { font-size: 15.5px; line-height: 1.65; color: var(--text-l-2); margin: 0 0 14px; }
.news .banner { background: var(--ink); color:#fff; display:flex; align-items:center; justify-content:center; gap: 26px; padding: 34px; flex-wrap: wrap; text-align:center; }
.news .banner img { height: 40px; width: auto; }
.news .banner .bt { font-family:"BDC Display"; font-style:italic; text-transform:uppercase; font-size: clamp(16px,2vw,22px); max-width: 26ch; line-height: 1.1; }
.news .n-cta { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { border: 1px solid var(--line-l); border-radius: 5px; background: var(--paper); padding: 26px 24px; position: relative; }
.dark .step { background: var(--ink-2); border-color: var(--line-d); }
.step .sn { font-family:"BDC Display"; font-style:italic; font-weight:800; font-size: 30px; color: var(--orange); line-height:1; margin-bottom: 12px; }
.step h4 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.dark .step h4 { color: #fff; }
.step p { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--text-l-2); }
.dark .step p { color: var(--text-d-2); }
@media (max-width: 860px){ .steps { grid-template-columns: repeat(2,1fr); } }

/* ---------- placeholder logo grid ---------- */
.logogrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.logoslot {
  height: 96px; border: 1px solid var(--line-l); border-radius: 5px; background: var(--paper);
  display:flex; align-items:center; justify-content:center; text-align:center; padding: 0 18px;
  font-weight: 700; font-size: 14px; color: var(--text-l-2);
}
.dark .logoslot { background: var(--ink-2); border-color: var(--line-d); color: var(--text-d); }
@media (max-width: 860px){ .logogrid { grid-template-columns: repeat(2,1fr); } }

/* ---------- contact card ---------- */
.contactcard {
  border: 1px solid var(--line-d); border-radius: 6px; background: var(--ink-2);
  padding: 30px 34px; display:flex; flex-wrap: wrap; gap: 26px; justify-content: space-between; align-items: center;
}
.contactcard .ci .nm { font-family:"BDC Display"; font-style:italic; text-transform:uppercase; font-size: 22px; color:#fff; }
.contactcard .ci .de { font-size: 14px; color: var(--text-d-2); margin-top: 8px; line-height: 1.6; }
.contactcard .ci .de a { color: var(--orange); }

/* ---------- two-col split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } }

/* ---------- audience stat band ---------- */
.audstats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.audstats .s { padding: 8px 22px; border-left: 1px solid var(--line-d); }
.audstats .s:first-child { border-left: 0; padding-left: 0; }
.audstats .n { font-family:"BDC Display"; font-style:italic; font-weight:800; font-size: clamp(30px,3.6vw,50px); line-height: .9; }
.audstats .s:nth-child(1) .n{color:var(--orange)} .audstats .s:nth-child(2) .n{color:var(--blue)}
.audstats .s:nth-child(3) .n{color:var(--magenta)} .audstats .s:nth-child(4) .n{color:#fff} .audstats .s:nth-child(5) .n{color:var(--red)}
.audstats .l { margin-top: 10px; font-size: 13px; color: var(--text-d-2); line-height: 1.4; }
@media (max-width: 860px){ .audstats { grid-template-columns: repeat(2,1fr); gap: 24px; } .audstats .s { border-left: 0; padding: 0; } }

/* two/three grid helpers */
.g2 { display:grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.g3 { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 860px){ .g2, .g3, .passgrid, .feats, .feats.four, .feats.two, .g3 { grid-template-columns: 1fr; } .audstats{} }
@media (max-width: 860px){ .feats.four { grid-template-columns: 1fr 1fr; } }

/* alacarte group */
.acgroup { margin-bottom: 40px; }
.acgroup .gh { font-family:"Archivo"; font-weight:700; text-transform: uppercase; letter-spacing: .12em; font-size: 12.5px; color: var(--text-l-2); margin-bottom: 16px; display:flex; align-items:center; gap: 12px; }
.acgroup .gh::after { content:""; flex:1; height:1px; background: var(--line-l); }
.dark .acgroup .gh { color: var(--text-d-2); }
.dark .acgroup .gh::after { background: var(--line-d); }
.ac { border: 1px solid var(--line-l); border-radius: 5px; background: var(--paper); padding: 22px 24px; }
.dark .ac { background: var(--ink-2); border-color: var(--line-d); }
.ac .top { display:flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.ac .nm { font-weight: 700; font-size: 16px; }
.dark .ac .nm { color: #fff; }
.ac .amt { font-family:"BDC Display"; font-style:italic; font-weight:800; font-size: 19px; color: var(--orange); white-space: nowrap; }
.ac .av { font-size: 12px; color: var(--text-l-2); margin-top: 4px; }
.dark .ac .av { color: var(--text-d-2); }
.ac .de { font-size: 13.5px; color: var(--text-l-2); margin-top: 10px; line-height: 1.5; }
.dark .ac .de { color: var(--text-d-2); }

/* ---------- inline text links ---------- */
.rich p a, .callout p a, .callout li a, .news p a, .subhero .sub a,
.subhero .support a, .notelist a, .contactcard a, a.tlink {
  color: var(--orange); text-decoration: none; font-weight: 600;
  border-bottom: 1px solid rgba(241,103,38,.4);
}
.rich p a:hover, .callout p a:hover, .callout li a:hover, .news p a:hover,
.subhero .sub a:hover, .subhero .support a:hover, .notelist a:hover,
.contactcard a:hover, a.tlink:hover { border-bottom-color: var(--orange); }

/* secondary text link under CTAs */
.textlink { display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:14px; color: var(--orange); }
.textlink:hover { text-decoration: underline; }
.dark .textlink, .subhero .textlink { color: var(--orange); }

/* ---------- package benefit list ---------- */
.plist { list-style: none; margin: 14px 0 20px; padding: 0; display: grid; gap: 8px; }
.plist li { font-size: 13px; line-height: 1.45; color: var(--text-l-2); padding-left: 20px; position: relative; }
.dark .plist li { color: var(--text-d-2); }
.plist li::before { content:""; position:absolute; left: 2px; top: 7px; width: 6px; height: 6px; background: var(--orange); }
.pass .avail { font-size: 12px; color: var(--text-l-2); margin-bottom: 4px; }
.dark .pass .avail { color: var(--text-d-2); }
.pkgcard { border-top: 4px solid var(--orange); }
.pkgcard.diamond { border-top-color: var(--blue); }
.pkgcard.platinum { border-top-color: var(--magenta); }
.pkgcard.gold { border-top-color: var(--orange); }
.pkgcard.silver { border-top-color: var(--indigo); }
.pkgcard.bronze { border-top-color: var(--red); }

/* ---------- engaging day-snapshot timeline ---------- */
.snap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.snapday {
  border: 1px solid var(--line-d); border-radius: 8px;
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2)); padding: 28px 30px 24px;
}
.snapday .top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--line-d); }
.snapday .top .dnum { font-family:"BDC Display"; font-style: italic; font-weight: 800; font-size: 52px; line-height: .78; color: var(--orange); }
.snapday .top .dname { font-family:"BDC Display"; font-style: italic; text-transform: uppercase; font-size: 20px; color: #fff; line-height: 1; }
.snapday .top .ddate { font-size: 12.5px; color: var(--text-d-2); margin-top: 5px; font-weight: 600; letter-spacing: .02em; }
.tl { list-style: none; margin: 0; padding: 0; position: relative; }
.tl::before { content:""; position: absolute; left: 82px; top: 12px; bottom: 12px; width: 2px; background: var(--line-d); }
.tl li { display: grid; grid-template-columns: 66px 1fr; gap: 16px; align-items: start; padding: 8px 0; }
.tl .tm { font-family: ui-monospace, monospace; font-size: 11px; color: var(--text-d-2); text-align: right; padding-top: 2px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.tl .ti { position: relative; padding-left: 22px; font-size: 13.5px; color: var(--text-d); line-height: 1.4; }
.tl .ti::before { content:""; position: absolute; left: 0; top: 4px; width: 9px; height: 9px; border-radius: 50%; background: var(--ink-2); border: 2px solid var(--blue); }
.tl li.key .ti { color: #fff; font-weight: 700; }
.tl li.key .ti::before { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 0 4px rgba(241,103,38,.18); }
.tl li.rec .ti::before { background: var(--magenta); border-color: var(--magenta); }
.tl .ti .fl { display: inline-block; margin-left: 8px; font-size: 8.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); vertical-align: middle; border: 1px solid rgba(241,103,38,.5); border-radius: 3px; padding: 1px 6px; }
@media (max-width: 860px){ .snap { grid-template-columns: 1fr; } }

/* ---------- clickable map location link (replaces map embeds) ---------- */
.maplink { text-decoration: none; flex-direction: column; gap: 8px; text-align: center; padding: 24px; cursor: pointer; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.maplink:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 16px 40px -22px rgba(241,103,38,.5); }
.maplink .mk-pin { width: 46px; height: 46px; }
.maplink .mk-pin svg { width: 100%; height: 100%; display: block; }
.maplink .mk-t { font-weight: 700; font-size: 18px; letter-spacing: -.01em; color: var(--text-l); }
.maplink .mk-s { font-size: 13px; color: var(--text-l-2); }
.maplink .mk-cta { margin-top: 8px; font-weight: 700; font-size: 13px; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }
.dark .maplink .mk-t { color: #fff; }
.dark .maplink .mk-s { color: var(--text-d-2); }

/* ---------- full-bleed photo band ---------- */
.photoband { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; background: var(--ink); }
.photoband img { width: 100%; height: clamp(220px, 26vw, 380px); object-fit: cover; display: block; }
@media (max-width: 760px){ .photoband { grid-template-columns: 1fr; } }

/* ---------- venue photo ---------- */
.vimg { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: 6px; display: block; border: 1px solid var(--line-l); }
.dark .vimg { border-color: var(--line-d); }
.venue.wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
@media (max-width: 1024px){ .venue.wrap { grid-template-columns: 1fr; } }
