/* =============================================================
   MeshCore explainer — "What is a mesh core?"

   Page-specific layout only. Every colour, font, border and shadow
   comes from site.css tokens ("Mainframe Terminal"), so a site-wide
   redesign carries this page with it. No hex colours live here.

   Concept colour code, drawn from the palette:
     Agent      = phosphor   (--secondary-fixed)
     Skills     = sky        (--secondary-container)
     Memory     = pale navy  (--primary-fixed)
     Automation = red        (--error)   — the action colour
     MeshCore   = the enclosure itself (.band-dark + rivets)
   ============================================================= */

/* --- motion ------------------------------------------------------- */
@keyframes mcDraw { from { stroke-dashoffset: 400; } to { stroke-dashoffset: 0; } }
@keyframes mcPulseLine { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@keyframes mcPop { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mcHalo { 0% { opacity: 0; r: 40; } 40% { opacity: .9; } 100% { opacity: 0; r: 72; } }
@keyframes mcHand { from { transform: rotate(-95deg); } to { transform: rotate(-120deg); } }
@keyframes mcEnvelope { 0% { opacity: 0; transform: translate(0, 0); } 10% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; transform: translate(300px, 0); } }
@keyframes mcBlink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* The site's .reveal handles each row; children marked data-stagger
   follow it in sequence. */
.reveal [data-stagger] { opacity: 0; transform: translateY(10px); transition: opacity .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1); transition-delay: calc(.1s + var(--i, 0) * .08s); }
.reveal.in [data-stagger] { opacity: 1; transform: none; }

/* --- layout -------------------------------------------------------- */
.mc-split { display: grid; grid-template-columns: 2fr 3fr; gap: var(--sp-8); align-items: start; }
.mc-split .section-head { margin-bottom: 0; }
.mc-lede-tag { font-family: var(--font-mono); font-size: var(--label-caps); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--on-surface-variant); margin-top: var(--sp-3); }
.mc-note { margin-top: var(--sp-5); font-family: var(--font-mono); font-size: var(--data-display); color: var(--on-surface-variant); }
.mc-note a { color: var(--primary); }
.mc-hook { margin-top: var(--sp-2); font-family: var(--font-typewriter); font-size: var(--body-md); color: var(--primary); }
.mc-legend { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-6); margin: var(--sp-5) 0 0; font-family: var(--font-mono); font-size: var(--label-caps); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.band-dark .mc-legend { color: var(--secondary-fixed); }
.mc-legend i { display: inline-block; width: 10px; height: 10px; margin-right: var(--sp-2); vertical-align: -1px; border: 1px solid rgba(0, 0, 0, .4); }
.mc-closing { margin-top: var(--sp-5); text-align: center; }
/* Row 6 opener: the stamped plate at headline size. */
.mc-op-lg { font-size: var(--headline-sm); letter-spacing: .08em; padding: var(--sp-2) var(--sp-4); margin-bottom: var(--sp-5); }

/* --- concept tiles (inside .band-dark) ----------------------------- */
.mc-chassis { position: relative; padding: var(--sp-6); }
/* .band-dark > * forces position: relative; the stamped tag must stay absolute. */
.band-dark > .panel-tag, .cta-panel > .panel-tag { position: absolute; }
.band-dark > .rivets { position: absolute; inset: 0; pointer-events: none; }
.mc-demo > .panel-tag { left: auto; right: 0; }
.mc-tier { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.mc-node {
  --accent: var(--secondary-fixed);
  position: relative;
  display: flex; align-items: center; gap: var(--sp-3);
  min-height: 60px; padding: var(--sp-3) var(--sp-4);
  background: rgba(0, 0, 0, .35);
  border: var(--border-hair) solid var(--secondary);
  border-top: var(--border-panel) solid var(--accent);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, .5);
  color: var(--secondary-fixed);
  font-family: var(--font-mono); font-size: var(--data-display); font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: transform .1s linear, box-shadow .1s linear;
}
.mc-node svg { width: 22px; height: 22px; flex: none; color: var(--accent); }
.mc-node.is-agent { --accent: var(--secondary-fixed); }
.mc-node.is-skills { --accent: var(--secondary-container); }
.mc-node.is-memory { --accent: var(--primary-fixed); }
.mc-node.is-automation { --accent: var(--error); }
.mc-node:hover { transform: translateY(-2px); box-shadow: inset 0 2px 6px rgba(0, 0, 0, .5), 0 0 14px rgba(200, 230, 255, .25); }
.mc-node[data-tip]::after {
  content: attr(data-tip);
  position: absolute; left: 50%; bottom: calc(100% + 10px); transform: translate(-50%, 4px);
  white-space: nowrap; padding: 3px var(--sp-2);
  background: var(--inverse-surface); color: var(--inverse-on-surface); border: 1px solid var(--outline);
  font-size: var(--label-caps); letter-spacing: .1em;
  opacity: 0; pointer-events: none; transition: opacity .12s linear, transform .12s linear; z-index: 5;
}
.mc-node[data-tip]:hover::after { opacity: 1; transform: translate(-50%, 0); }
.mc-node .mc-node__sub { display: block; font-size: var(--label-caps); font-weight: 400; letter-spacing: .04em; text-transform: none; color: var(--secondary-fixed-dim); }
.mc-node .mc-lamps { margin-left: auto; display: flex; gap: 5px; }
.mc-node .mc-lamps i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.mc-node .mc-lamps .l-skills { background: var(--secondary-container); }
.mc-node .mc-lamps .l-memory { background: var(--primary-fixed); }
.mc-node .mc-lamps .l-automation { background: var(--error); }
.mc-wires { display: block; width: 100%; height: 72px; }
.mc-wires path { fill: none; stroke: var(--secondary); stroke-width: 1.5; stroke-dasharray: 400; stroke-dashoffset: 400; }
.reveal.in .mc-wires path { animation: mcDraw 1.4s ease-out forwards, mcPulseLine 3.2s ease-in-out 1.4s infinite; }
.mc-wires circle { fill: var(--secondary-fixed); opacity: 0; }
.reveal.in .mc-wires circle { opacity: 1; transition: opacity .4s 1.4s; }
.mc-badge {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 3px var(--sp-2);
  background: var(--inverse-surface); color: var(--secondary-fixed); border: 1px solid var(--secondary);
  font-family: var(--font-mono); font-size: var(--label-caps); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
}
.mc-badge svg { width: 12px; height: 12px; }
.mc-badge.at-lock { right: var(--sp-4); top: var(--sp-2); }
.mc-badge.at-vault { left: 50%; bottom: -12px; transform: translateX(-50%); }

/* --- Row 1: Web Query panel ---------------------------------------- */
.mc-demo .title-plate { margin: calc(var(--panel-padding) * -1) calc(var(--panel-padding) * -1) 0; }
.mc-demo form { display: flex; flex-direction: column; gap: var(--sp-3); }
.mc-demo form .field { flex: 1; margin: 0; }
.mc-chips { margin-top: var(--sp-4); display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.mc-chip {
  font-family: var(--font-mono); font-size: var(--label-caps); letter-spacing: .04em;
  padding: 5px var(--sp-3);
  background: var(--surface-container-low); color: var(--primary);
  border: 1px solid var(--outline-variant); border-radius: var(--radius);
  cursor: pointer; transition: background-color .1s linear, border-color .1s linear;
}
.mc-chip:hover { background: var(--surface-container-lowest); border-color: var(--outline); }
.mc-chip:disabled { opacity: .5; cursor: default; }
.mc-shield {
  margin-top: var(--sp-4); display: flex; align-items: flex-start; gap: var(--sp-3);
  border: var(--border-hair) solid var(--ok);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--data-display); line-height: 1.5;
}
.mc-shield svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--ok); }
.mc-shield p { margin: 0; }
.mc-shield b { color: inherit; }
.mc-skel {
  margin-top: var(--sp-4); padding: var(--sp-4);
  font-family: var(--font-mono); font-size: var(--data-display); letter-spacing: .08em; text-transform: uppercase;
  color: var(--secondary-fixed);
}
.mc-skel .cursor { display: inline-block; width: .6em; height: 1em; vertical-align: -2px; background: var(--secondary-fixed); margin-left: 4px; animation: mcBlink 1s steps(1) infinite; }
.mc-err { margin-top: var(--sp-4); padding: var(--sp-4); background: var(--error-container); color: var(--on-error-container); border: var(--border-hair) solid var(--error); font-size: var(--data-display); }
.mc-result { margin-top: var(--sp-4); border: var(--border-hair) solid var(--outline); background: var(--surface-container-lowest); }
.mc-result__head { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-4); border-bottom: 1px solid var(--outline-variant); }
.mc-result__exp { margin: 0; font-family: var(--font-typewriter); font-size: var(--body-md); color: var(--on-surface); }
.mc-result__meta { margin: var(--sp-1) 0 0; font-family: var(--font-mono); font-size: var(--label-caps); letter-spacing: .06em; color: var(--secondary); }
.mc-result__btns { display: flex; gap: var(--sp-2); flex: none; }
.mc-result__btns .btn { padding: 8px 14px; min-height: 36px; font-size: var(--label-caps); }
.mc-sql { margin: 0; padding: var(--sp-4); white-space: pre; overflow-x: auto; font-family: var(--font-mono); font-size: var(--data-display); line-height: 1.6; color: var(--secondary-fixed); }
.mc-result__filter { padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--outline-variant); margin: 0; }
.mc-result__filter input { max-width: 22rem; min-height: 40px; padding: 8px 12px; }
.mc-tablewrap { border: 0; max-height: 440px; overflow: auto; }
.mc-table th { position: sticky; top: 0; cursor: pointer; -webkit-user-select: none; user-select: none; white-space: nowrap; }
.mc-table th:hover { color: var(--secondary-fixed); }
.mc-table th span { margin-left: var(--sp-1); color: var(--secondary-fixed); }
.mc-table td { white-space: nowrap; }
.mc-table td.num { text-align: right; font-variant-numeric: tabular-nums; }
.mc-empty { padding: var(--sp-5); text-align: center; font-family: var(--font-mono); font-size: var(--data-display); color: var(--on-surface-variant); margin: 0; }

/* --- file cards (Rows 2 & 5) --------------------------------------- */
.mc-filecard { width: 100%; text-align: left; font: inherit; color: inherit; cursor: pointer; white-space: normal; }
.mc-filecard h3 { font-family: var(--font-typewriter); font-weight: 700; font-size: var(--headline-sm); line-height: 1.3; }
.mc-filecard__lines { display: flex; flex-direction: column; gap: 7px; margin-top: var(--sp-4); }
.mc-filecard__lines i { display: block; height: 6px; background: var(--surface-container-high); }
.mc-filecard__lines i:nth-child(1) { width: 80%; }
.mc-filecard__lines i:nth-child(2) { width: 62%; }
.mc-filecard__lines i:nth-child(3) { width: 71%; }
.mc-filecard__lines i:nth-child(4) { width: 45%; }
.mc-open { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-4); font-family: var(--font-mono); font-size: var(--label-caps); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--error); }
.mc-open svg { width: 12px; height: 12px; }
.mc-callouts { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-4); }
.mc-callout {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: 4px var(--sp-3);
  background: var(--surface-container-highest); color: var(--on-surface-variant); border: 1px solid var(--outline-variant);
  box-shadow: var(--inset-panel);
  font-family: var(--font-mono); font-size: var(--label-caps); letter-spacing: .04em;
}
.mc-callout svg { width: 13px; height: 13px; color: var(--primary); }
.mc-agentcard { max-width: none; margin: var(--sp-6) auto 0; }

/* --- Rows 3 & 4: images on the screen ------------------------------ */
.mc-screen { position: relative; max-width: none; margin: 0 auto; border: var(--border-panel) solid var(--outline); padding: var(--sp-3); }
.mc-screen img { width: 100%; height: auto; display: block; }
/* The memory folder reads better small; the clock keeps the full width. */
.mc-screen--sm { max-width: 470px; }
.mc-screen--sm + .mc-caption { max-width: 470px; }
.mc-screen .mc-figure { position: relative; }
.mc-tab {
  position: absolute; z-index: 3; padding: 2px 6px;
  background: rgba(0, 30, 46, .85); color: var(--secondary-fixed); border: 1px solid var(--secondary);
  font-family: var(--font-mono); font-size: var(--label-caps); letter-spacing: .04em; white-space: nowrap; pointer-events: none;
}
.mc-tab.is-top { background: var(--secondary-fixed); color: var(--on-secondary-fixed); border-color: var(--secondary-fixed); font-weight: 700; }
.mc-tab.is-folder { color: var(--error-container); border-color: var(--error); }
.mc-hotspot { position: absolute; z-index: 3; border: 2px dashed transparent; background: transparent; cursor: pointer; padding: 0; transition: border-color .12s linear, background-color .12s linear; }
.mc-hotspot:hover, .mc-hotspot:focus-visible { border-color: var(--secondary-fixed); background: rgba(200, 230, 255, .08); }
.mc-hotspot .mc-open { position: absolute; right: var(--sp-2); bottom: var(--sp-2); margin: 0; color: var(--secondary-fixed); opacity: 0; transition: opacity .12s linear; }
.mc-hotspot:hover .mc-open, .mc-hotspot:focus-visible .mc-open { opacity: 1; }
.mc-caption { max-width: none; margin: var(--sp-4) auto 0; }

/* --- Row 5: the agent loop ---------------------------------------- */
.mc-flow-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.mc-flow { display: block; width: 100%; min-width: 820px; height: auto; font-family: var(--font-mono); }
.mc-flow text { fill: var(--secondary-fixed); font-size: 13px; letter-spacing: .04em; }
.mc-flow .dim { fill: var(--secondary-fixed-dim); font-size: 11px; }
.mc-flow .red { fill: var(--error-container); }
.mc-flow .box { fill: rgba(0, 0, 0, .35); stroke: var(--secondary); stroke-width: 2; }
.mc-flow .box.b-agent { stroke: var(--secondary-fixed); }
.mc-flow .box.b-skills { stroke: var(--secondary-container); }
.mc-flow .box.b-memory { stroke: var(--primary-fixed); }
.mc-flow .box.b-automation { stroke: var(--error); }
.mc-flow .box.b-chat { stroke: var(--error); }
.mc-flow .wire { fill: none; stroke: var(--secondary); stroke-width: 2; stroke-dasharray: 400; stroke-dashoffset: 400; }
.mc-flow .wire.w-red { stroke: var(--error); }
.mc-flow .tick, .mc-flow .tag, .mc-flow .env, .mc-flow .bubble { opacity: 0; }
.mc-flow .hand { transform-origin: 120px 180px; transform: rotate(-95deg); }
.mc-flow .agent-halo { opacity: 0; fill: none; stroke: var(--secondary-fixed); stroke-width: 2; }
.mc-flow.play .hand { animation: mcHand 1s ease-in-out forwards; }
.mc-flow.play .w1 { animation: mcDraw 1.2s ease-out 1s forwards; }
.mc-flow.play .agent-halo { animation: mcHalo 1.2s ease-out 2.2s forwards; }
.mc-flow.play .w2 { animation: mcDraw 1s ease-out 2.6s forwards; }
.mc-flow.play .t1 { animation: mcPop .4s ease-out 3.6s forwards; }
.mc-flow.play .t2 { animation: mcPop .4s ease-out 4.2s forwards; }
.mc-flow.play .t3 { animation: mcPop .4s ease-out 4.8s forwards; }
.mc-flow.play .w3 { animation: mcDraw 1s ease-out 5.2s forwards; }
.mc-flow.play .tag { animation: mcPop .5s ease-out 6.2s forwards; }
.mc-flow.play .w4 { animation: mcDraw 1.4s ease-out 6.8s forwards; }
.mc-flow.play .env { animation: mcEnvelope 2.2s cubic-bezier(.4, 0, .2, 1) 6.9s forwards; }
.mc-flow.play .bubble { animation: mcPop .6s ease-out 9s forwards; }

/* --- Row 5b: the outcome (the real email) -------------------------- */
.mc-mail .title-plate { margin: calc(var(--panel-padding) * -1) calc(var(--panel-padding) * -1) 0; }
.mc-mail .title-plate h3 { font-size: var(--data-display); }
.mc-mail__meta { display: grid; grid-template-columns: 1.1fr 1.6fr 1.1fr; gap: var(--sp-4); margin: var(--sp-5) 0; font-family: var(--font-mono); font-size: var(--data-display); }
.mc-mail__meta div { border-left: var(--border-hair) solid var(--outline-variant); padding-left: var(--sp-3); }
.mc-mail__meta dt { font-size: var(--label-caps); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--on-surface-variant); }
.mc-mail__meta dd { margin: 2px 0 0; color: var(--on-surface); overflow-wrap: anywhere; }
/* The email is shown on a screen, but without the CRT scanlines: it is
   long-form reading, which the design system keeps scanline-free. */
.mc-mail__screen { border: var(--border-panel) solid var(--outline); background: var(--on-secondary-fixed); box-shadow: var(--inset-screen); padding: var(--sp-3); overflow: hidden; }
.mc-mail__frame { display: block; width: 100%; height: 760px; border: 0; background: transparent; }
.mc-mail .uc-caption { margin-top: var(--sp-4); }
.mc-mail .uc-caption a { color: var(--primary); }

/* --- modal ---------------------------------------------------------- */
.mc-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: var(--sp-5); }
.mc-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 30, 46, .82); }
.mc-modal__card { position: relative; width: 100%; max-width: 800px; max-height: 88vh; display: flex; flex-direction: column; padding: 0; box-shadow: var(--shadow-lg); }
.mc-modal__head { flex: none; }
.mc-modal__head .mc-modal__title { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-family: var(--font-mono); font-size: var(--data-display); color: var(--inverse-on-surface); }
.mc-modal__head .mc-modal__title b { color: var(--secondary-fixed); }
.mc-modal__close { flex: none; min-height: 36px; padding: 6px 12px; }
.mc-modal__close svg { width: 14px; height: 14px; }
.mc-modal__body { overflow: auto; padding: var(--sp-5) var(--sp-6) var(--sp-7); }
.mc-md { max-width: none; }
.mc-md > * + * { margin-top: var(--sp-4); }
.mc-md h1 { font-size: var(--headline-md); margin: 0 0 var(--sp-3); }
.mc-md h2 { font-size: 1.35rem; margin: var(--sp-6) 0 var(--sp-3); }
.mc-md h3 { font-family: var(--font-mono); font-size: var(--label-caps); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--on-surface-variant); margin: var(--sp-5) 0 var(--sp-2); }
.mc-md p { margin: 0; font-size: var(--body-md); line-height: 1.7; }
.mc-md ul, .mc-md ol { margin: var(--sp-2) 0 0; padding-left: 22px; }
.mc-md li { margin-bottom: var(--sp-1); line-height: 1.6; }
.mc-md pre { margin: 0; padding: var(--sp-4); overflow-x: auto; background: var(--on-secondary-fixed); color: var(--secondary-fixed); border: var(--border-hair) solid var(--outline); box-shadow: var(--inset-screen); font-family: var(--font-mono); font-size: var(--data-display); line-height: 1.6; }
.mc-md pre code { background: none; color: inherit; padding: 0; font-size: inherit; border: 0; }
.mc-md blockquote { margin: 0; padding: var(--sp-3) var(--sp-4); border-left: var(--border-panel) solid var(--error); background: var(--surface-container-low); font-family: var(--font-typewriter); }
.mc-md hr { margin: var(--sp-6) 0; }

/* --- responsive ----------------------------------------------------- */
@media (min-width: 640px) {
  .mc-demo form { flex-direction: row; align-items: flex-start; }
  .mc-result__head { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (max-width: 900px) {
  .mc-split { grid-template-columns: 1fr; gap: var(--sp-6); }
  .mc-mail__meta { grid-template-columns: 1fr; }
  .mc-tier { gap: var(--sp-2); }
  .mc-node { padding: var(--sp-2) var(--sp-3); min-height: 48px; font-size: var(--label-caps); gap: var(--sp-2); }
  .mc-node svg { width: 18px; height: 18px; }
}
@media (max-width: 520px) {
  .mc-chassis { padding: var(--sp-4); }
  .mc-node { flex-direction: column; text-align: center; padding: var(--sp-2) 4px; }
  .mc-node .mc-lamps { margin: var(--sp-1) auto 0; }
  .mc-tab { display: none; }
  .mc-tab.is-top { display: block; }
  .mc-modal { padding: var(--sp-2); }
  .mc-modal__body { padding: var(--sp-4); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal [data-stagger] { opacity: 1; transform: none; transition: none; }
  .mc-wires path, .mc-flow .wire { stroke-dashoffset: 0; animation: none; }
  .mc-wires circle, .mc-flow .tick, .mc-flow .tag, .mc-flow .bubble { opacity: 1; }
  .mc-flow .env { opacity: 0; }
  .mc-flow .hand { transform: rotate(-120deg); animation: none; }
  .mc-flow.play * { animation: none !important; }
  .mc-node, .mc-hotspot { transition: none; }
  .mc-skel .cursor { animation: none; }
}

/* The automation row's clock photo reads as a thumbnail, not a hero: one
   fifth of the column, centred. The hotspot is percentage-positioned so it
   scales with it. */
#row-automation .mc-screen { max-width: 20%; margin-inline: auto; }

/* Santa Maria Lodge panel — the Italian tricolour. Light ground so the white
   stripe reads; green edge left, red edge right, the flag as a bar on top. */
.cta-panel.mc-lodge {
  --it-green: #009246; --it-red: #ce2b37;
  position: relative; overflow: hidden;
  margin-top: var(--sp-6);
  background: var(--surface-container-lowest);
  color: var(--on-surface);
  border: var(--border-hair) solid var(--outline-variant);
  border-left: 14px solid var(--it-green);
  border-right: 14px solid var(--it-red);
}
.cta-panel.mc-lodge::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 10px;
  background: linear-gradient(90deg, var(--it-green) 0 33.34%, #ffffff 33.34% 66.67%, var(--it-red) 66.67% 100%);
  border-bottom: 1px solid var(--outline-variant);
}
.cta-panel.mc-lodge .panel-tag { background: var(--it-green); color: #ffffff; top: 10px; }
.cta-panel.mc-lodge h2 { color: var(--it-green); }
.cta-panel.mc-lodge p { color: var(--on-surface); }
.cta-panel.mc-lodge p strong { color: var(--it-red); }
.cta-panel.mc-lodge .btn { background: var(--it-red); color: #ffffff; border-color: var(--it-red); }
.cta-panel.mc-lodge .btn:hover { background: #b0232e; border-color: #b0232e; color: #ffffff; }
