/* ===========================================================================
   MS CREATIVE EVENTS — design system
   Colour variables are injected from src/config.js, so changing your brand
   colours there restyles this entire file.
   =========================================================================*/

/* ---- Tokens -------------------------------------------------------------*/
:root {
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-body: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --white: #fff;
  --ink-70: color-mix(in srgb, var(--ink) 70%, transparent);
  --ink-55: color-mix(in srgb, var(--ink) 55%, transparent);
  --ink-35: color-mix(in srgb, var(--ink) 35%, transparent);
  --line:   color-mix(in srgb, var(--ink) 12%, transparent);
  --line-2: color-mix(in srgb, var(--ink) 20%, transparent);
  --tint:   color-mix(in srgb, var(--brand) 8%, var(--white));
  --tint-2: color-mix(in srgb, var(--brand) 16%, var(--white));

  --good: #2E7D5B; --good-bg: #E8F4EE;
  --warn: #9A6212; --warn-bg: #FBF0DC;
  --bad:  #A93A33; --bad-bg:  #FBEAE8;
  --info: #2C5C7A; --info-bg: #E6F0F6;

  --r-sm: 8px; --r: 14px; --r-lg: 22px; --r-xl: 32px; --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(42,35,32,.05), 0 2px 8px rgba(42,35,32,.05);
  --sh-2: 0 2px 6px rgba(42,35,32,.06), 0 12px 28px rgba(42,35,32,.09);
  --sh-3: 0 8px 20px rgba(42,35,32,.10), 0 30px 60px rgba(42,35,32,.13);

  --wrap: 1180px;
  --gap: clamp(18px, 3vw, 32px);
  --sec-y: clamp(56px, 8vw, 108px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Reset --------------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  font-size: clamp(16px, .4vw + 15px, 17.5px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--tint-2); }

h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 600; line-height: 1.14; letter-spacing: -.015em; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4.05rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.6vw, 1.45rem); line-height: 1.25; }
h4 { font-size: 1.08rem; line-height: 1.3; }
p  { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }

.wrap { width: min(100% - 2.4rem, var(--wrap)); margin-inline: auto; }
main.is-wide .wrap { --wrap: 1380px; }
.sec { padding-block: var(--sec-y); }
.sec.tight { padding-block: clamp(38px, 5vw, 64px); }
.sec.sand { background: var(--sand); }
.sec.tinted { background: var(--tint); }
.sec.ink { background: var(--ink); color: color-mix(in srgb, var(--cream) 92%, transparent); }
.sec.ink h2, .sec.ink h3 { color: var(--cream); }
.sec.ink .eyebrow { color: var(--accent); }
.sec.ink .lede { color: color-mix(in srgb, var(--cream) 76%, transparent); }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; z-index: 999; background: var(--ink); color: var(--cream); padding: .7rem 1.1rem; border-radius: var(--r-sm); }

.eyebrow {
  font-size: .74rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase;
  color: var(--brand-dark); margin-bottom: .7rem;
}
.lede { font-size: clamp(1.02rem, 1.1vw, 1.2rem); color: var(--ink-70); max-width: 62ch; }
.micro { font-size: .84rem; color: var(--ink-55); }
.sec-head { max-width: 74ch; margin-bottom: clamp(28px, 4vw, 52px); position: relative; }
.sec-head.is-center { margin-inline: auto; text-align: center; }
.sec-head.is-center .lede { margin-inline: auto; }
.sec-title { margin-bottom: .55rem; }
.sec-action { margin-top: 1.4rem; display: flex; gap: .7rem; flex-wrap: wrap; }
.sec-head.is-center .sec-action { justify-content: center; }
.mt { margin-top: 1.6rem; }

/* ---- Buttons ------------------------------------------------------------*/
.btn {
  --btn-bg: var(--brand); --btn-fg: #fff; --btn-bd: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .82em 1.5em; border: 1.5px solid var(--btn-bd);
  border-radius: 1.3em .65em 1.15em .75em / .75em 1.15em .65em 1.3em;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: .95rem; font-weight: 650; letter-spacing: .01em; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease), background .16s, color .16s, border-color .16s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-2); color: var(--btn-fg); }
.btn:active { transform: translateY(0); }
.btn-primary:hover { --btn-bg: var(--brand-dark); --btn-bd: var(--brand-dark); }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-2); }
.btn-outline:hover { --btn-bd: var(--brand); --btn-fg: var(--brand-dark); }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: transparent; }
.btn-ghost:hover { --btn-bg: var(--tint); box-shadow: none; }
.btn-soft { --btn-bg: var(--tint); --btn-fg: var(--brand-dark); --btn-bd: transparent; }
.btn-soft:hover { --btn-bg: var(--tint-2); }
.btn-ink { --btn-bg: var(--ink); --btn-bd: var(--ink); }
.btn-ink:hover { --btn-bg: #000; --btn-bd: #000; }
.btn-danger { --btn-bg: var(--bad); --btn-bd: var(--bad); }
.btn-sm { padding: .62em 1.05em; font-size: .86rem; }
.btn-lg { padding: 1em 1.9em; font-size: 1.03rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.ic { flex: none; }

/* ---- Top bar ------------------------------------------------------------*/
.topbar { background: var(--ink); color: color-mix(in srgb, var(--cream) 80%, transparent); font-size: .8rem; }
.topbar-in { display: flex; align-items: center; gap: .7rem; height: 38px; }
.topbar-item { display: inline-flex; align-items: center; gap: .4em; color: inherit; text-decoration: none; }
.topbar-item:hover { color: var(--accent); }
.topbar-sep { opacity: .4; }
.topbar-grow { flex: 1; }
@media (max-width: 860px) { .topbar-hide, .topbar-sep { display: none; } .topbar-in { justify-content: space-between; } }

/* ---- Header -------------------------------------------------------------*/
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s;
}
.site-head.is-stuck { box-shadow: var(--sh-1); }
.head-in { display: flex; align-items: center; gap: 1.2rem; min-height: 74px; }
.logo { display: flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--ink); flex: none; }
.logo-mark { border-radius: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong { font-family: var(--font-display); font-size: 1.24rem; font-weight: 600; letter-spacing: -.01em; }
.logo-text em { font-style: normal; font-size: .66rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-55); margin-top: .18rem; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 1.4rem; }
.nav-list { list-style: none; padding: 0; display: flex; align-items: center; gap: .25rem; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: inline-flex; align-items: center; gap: .3em;
  padding: .62rem .72rem; border-radius: var(--r-sm);
  font-size: .93rem; font-weight: 550; color: var(--ink); text-decoration: none;
}
.nav-list > li > a:hover, .nav-list > li > a.is-active { background: var(--tint); color: var(--brand-dark); }
.chev { width: 6px; height: 6px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .55; }
.nav-cta { display: flex; align-items: center; gap: .5rem; }

.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 0;
  min-width: 480px; padding: 1.1rem; border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--sh-3);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.has-menu:hover .mega, .has-menu:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega::before { content: ""; position: absolute; inset: -12px 0 auto; height: 14px; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem; }
.mega-link {
  display: flex; align-items: center; gap: .65rem; padding: .6rem .7rem;
  border-radius: var(--r-sm); text-decoration: none; color: var(--ink); font-size: .92rem; font-weight: 500;
}
.mega-link:hover { background: var(--tint); color: var(--brand-dark); }
.mega-link .ic { color: var(--brand); }
.mega-all {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem; padding: .55rem .7rem;
  font-size: .86rem; font-weight: 650; color: var(--brand-dark); text-decoration: none;
  border-top: 1px solid var(--line); width: 100%;
}
.sub-toggle { display: none; }
.head-quote { display: none; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: .5rem; cursor: pointer; margin-left: auto; }
.nav-toggle-x { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle-x { display: block; }
.nav-toggle[aria-expanded="true"] > .ic:first-child { display: none; }

@media (max-width: 1080px) {
  .head-quote { display: inline-flex; margin-left: auto; white-space: nowrap; }
  .nav-toggle { display: flex; margin-left: 0; }
  .main-nav {
    position: fixed; inset: 112px 0 0; z-index: 55;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 1.2rem 1.4rem 3rem; overflow-y: auto;
    background: var(--cream); border-top: 1px solid var(--line);
    transform: translateX(100%); transition: transform .28s var(--ease);
  }
  .main-nav.is-open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li > a { padding: .95rem .2rem; font-size: 1.08rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .chev { display: none; }
  .nav-list > li { position: relative; }
  .sub-toggle {
    display: block; position: absolute; top: 0; right: 0; width: 56px; height: 56px;
    background: none; border: 0; border-left: 1px solid var(--line); cursor: pointer; padding: 0;
  }
  .sub-toggle::before {
    content: ""; position: absolute; top: 50%; left: 50%; width: 9px; height: 9px;
    border-right: 2px solid var(--ink-70); border-bottom: 2px solid var(--ink-70);
    transform: translate(-50%, -70%) rotate(45deg); transition: transform .2s var(--ease);
  }
  .sub-toggle[aria-expanded="true"]::before { transform: translate(-50%, -30%) rotate(225deg); }
  .mega {
    position: static; translate: none; opacity: 1; visibility: visible; transform: none;
    min-width: 0; box-shadow: none; border: 0; background: transparent; padding: .3rem 0 .8rem;
    display: none;
  }
  .has-menu.is-sub-open .mega { display: block; border-bottom: 1px solid var(--line); }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-link { padding: .55rem .2rem .55rem 1rem; font-size: .95rem; color: var(--ink-70); }
  .nav-cta { margin-top: 1.6rem; flex-direction: column; align-items: stretch; }
  .nav-cta .btn { width: 100%; padding: .9em 1.5em; font-size: 1rem; }
}

/* ---- Breadcrumbs --------------------------------------------------------*/
.crumbs { border-bottom: 1px solid var(--line); background: color-mix(in srgb, var(--sand) 45%, var(--cream)); }
.crumbs ol { list-style: none; padding: .7rem 0; margin: 0; display: flex; flex-wrap: wrap; gap: .5rem; font-size: .82rem; color: var(--ink-55); }
.crumbs li + li::before { content: "/"; margin-right: .5rem; opacity: .5; }
.crumbs a { color: var(--ink-70); text-decoration: none; }
.crumbs a:hover { color: var(--brand-dark); text-decoration: underline; }

/* ---- Hero ---------------------------------------------------------------*/
.hero { position: relative; overflow: hidden; background: linear-gradient(168deg, var(--sand) 0%, var(--cream) 58%); }
.hero-in { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(28px, 4vw, 60px); align-items: center; padding-block: clamp(48px, 7vw, 96px); }
.hero-copy { position: relative; z-index: 2; max-width: 40rem; }
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 .accent { font-style: italic; color: var(--brand-dark); }
.hero .lede { font-size: clamp(1.06rem, 1.25vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.8rem; }
.hero-note { margin-top: 1.15rem; display: flex; align-items: center; gap: .5rem; font-size: .86rem; color: var(--ink-55); }
.hero-rating { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 1.2rem; padding: .42rem .8rem .42rem .55rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); box-shadow: var(--sh-1); font-size: .84rem; }
.hero-rating strong { font-weight: 700; }

.hero-art { position: relative; }
.hero-collage { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: clamp(58px, 7vw, 92px); gap: 12px; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-2); }
.hero-collage .c1 { grid-column: 1 / 4; grid-row: 1 / 4; }
.hero-collage .c2 { grid-column: 4 / 7; grid-row: 1 / 3; }
.hero-collage .c3 { grid-column: 4 / 7; grid-row: 3 / 6; }
.hero-collage .c4 { grid-column: 1 / 4; grid-row: 4 / 6; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .45; z-index: 0; }
.hero-blob.b1 { width: 380px; height: 380px; background: var(--brand); top: -80px; right: -60px; }
.hero-blob.b2 { width: 300px; height: 300px; background: var(--accent); bottom: -100px; left: -80px; opacity: .3; }
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-collage { grid-auto-rows: 72px; }
}

/* ---- Trust strip --------------------------------------------------------*/
.trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 1px; background: var(--line); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.trust-item { display: flex; align-items: center; gap: .8rem; padding: 1.05rem 1.2rem; background: var(--white); }
.trust-ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--tint); color: var(--brand-dark); flex: none; }
.trust-txt { display: flex; flex-direction: column; line-height: 1.25; }
.trust-txt strong { font-size: 1.02rem; font-weight: 700; }
.trust-txt em { font-style: normal; font-size: .8rem; color: var(--ink-55); }

/* ---- Cards & grids ------------------------------------------------------*/
.grid { display: grid; gap: var(--gap); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 292px), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fill, minmax(min(100%, 232px), 1fr)); }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-2); }
.card-media { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: scale .5s var(--ease); }
.card:hover .card-media img { scale: 1.045; }
.card-flag { position: absolute; top: .7rem; left: .7rem; padding: .3rem .65rem; border-radius: var(--r-pill); background: color-mix(in srgb, var(--ink) 82%, transparent); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.card-body { padding: 1.05rem 1.15rem 1.15rem; display: flex; flex-direction: column; gap: .34rem; flex: 1; }
.card-cat { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-35); }
.card-title { font-size: 1.14rem; }
.card-title a { color: inherit; text-decoration: none; }
.card-title a::after { content: ""; position: absolute; inset: 0; }
.item-card, .post-card { position: relative; }
.card-desc { font-size: .89rem; color: var(--ink-55); line-height: 1.55; }
.card-foot { margin-top: auto; padding-top: .8rem; display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.card-more a { position: relative; z-index: 2; font-size: .87rem; font-weight: 650; text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; }
.price { display: flex; align-items: baseline; gap: .25rem; font-size: 1.06rem; }
.price .from { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-35); font-weight: 700; }
.price .unit { font-size: .78rem; color: var(--ink-55); }
.price .quote-price { font-size: .92rem; font-weight: 600; color: var(--brand-dark); }
.js-add { position: relative; z-index: 3; }

.cat-card { display: flex; align-items: center; gap: 1rem; padding: 1.15rem 1.25rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); text-decoration: none; color: var(--ink); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--brand); color: var(--ink); }
.cat-icon { display: grid; place-items: center; width: 52px; height: 52px; flex: none; border-radius: 16px; background: var(--tint); color: var(--brand-dark); }
.cat-body { display: flex; flex-direction: column; gap: .18rem; flex: 1; }
.cat-name { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; }
.cat-desc { font-size: .85rem; color: var(--ink-55); line-height: 1.45; }
.cat-arrow { color: var(--ink-35); transition: transform .2s var(--ease), color .2s; }
.cat-card:hover .cat-arrow { transform: translateX(4px); color: var(--brand); }

/* ---- Reviews ------------------------------------------------------------*/
.stars { display: inline-flex; gap: 1px; color: var(--accent); }
.star.off { color: var(--line-2); }
.star.half { background: linear-gradient(90deg, var(--accent) 50%, var(--line-2) 50%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.star.half svg { fill: currentColor; }
.review-card { padding: 1.4rem 1.45rem; gap: .75rem; }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.review-src { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-35); }
.review-title { font-size: 1.05rem; }
.review-card blockquote { font-size: .94rem; line-height: 1.65; color: var(--ink-70); }
.review-card blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 2.2rem; line-height: 0; vertical-align: -.35em; color: var(--brand); opacity: .4; margin-right: .1em; }
.review-foot { margin-top: auto; padding-top: .7rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .12rem; }
.review-who { font-weight: 650; font-size: .92rem; }
.review-meta { font-size: .78rem; color: var(--ink-35); }
.review-reply { margin-top: .5rem; padding: .7rem .85rem; background: var(--tint); border-radius: var(--r); font-size: .84rem; color: var(--ink-70); }
.rating-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; padding: 1.4rem 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); }
.rating-big { font-family: var(--font-display); font-size: 3rem; line-height: 1; }
.rating-sources { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.rating-src { display: flex; flex-direction: column; gap: .1rem; font-size: .84rem; }
.rating-src strong { font-size: 1.05rem; }

/* ---- Gallery ------------------------------------------------------------*/
.gal-grid { columns: 4 240px; column-gap: 14px; }
.gal-tile { break-inside: avoid; margin: 0 0 14px; position: relative; border-radius: var(--r); overflow: hidden; background: var(--sand); }
.gal-tile img { width: 100%; transition: scale .5s var(--ease); }
.gal-tile:hover img { scale: 1.05; }
.gal-tile figcaption { position: absolute; inset: auto 0 0; padding: 1.4rem .9rem .75rem; font-size: .82rem; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.72)); opacity: 0; transition: opacity .25s; }
.gal-tile:hover figcaption { opacity: 1; }
.gal-tile figcaption span { opacity: .75; }

/* ---- FAQ ----------------------------------------------------------------*/
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); max-width: 860px; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.15rem .2rem; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 1.14rem; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand-dark); }
.faq-mark { position: relative; width: 16px; height: 16px; flex: none; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; transition: transform .22s var(--ease), opacity .22s; }
.faq-mark::before { inset: 7px 0; height: 2px; }
.faq-mark::after { inset: 0 7px; width: 2px; }
.faq[open] .faq-mark::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 .2rem 1.3rem; color: var(--ink-70); font-size: .96rem; max-width: 70ch; }
.faq-a p + p, .faq-a ul { margin-top: .7rem; }
.faq-a ul { padding-left: 1.2rem; }

/* ---- Prose (blog, long copy) -------------------------------------------*/
.prose { max-width: 72ch; }
.prose > * + * { margin-top: 1.05rem; }
.prose h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-top: 2.4rem; }
.prose h3 { font-size: 1.25rem; margin-top: 1.9rem; }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose li + li { margin-top: .35rem; }
.prose blockquote { border-left: 3px solid var(--brand); padding: .2rem 0 .2rem 1.2rem; font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--ink-70); }
.prose code { background: var(--sand); padding: .12em .4em; border-radius: 5px; font-size: .9em; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin-block: 2rem; }
.prose img { border-radius: var(--r); }

/* ---- Forms --------------------------------------------------------------*/
.fld { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.05rem; }
.fld label { font-size: .86rem; font-weight: 650; }
.req { color: var(--brand); }
.fld input, .fld select, .fld textarea, .inp {
  width: 100%; padding: .78rem .9rem; border: 1.5px solid var(--line-2); border-radius: var(--r-sm);
  background: var(--white); font-size: .97rem; transition: border-color .16s, box-shadow .16s;
}
.fld textarea { resize: vertical; min-height: 96px; }
.fld input:focus, .fld select:focus, .fld textarea:focus, .inp:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}
.fld-help { font-size: .8rem; color: var(--ink-55); }
.fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.fld-row-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0 1rem; }
.check { display: flex; align-items: flex-start; gap: .6rem; padding: .55rem 0; font-size: .93rem; cursor: pointer; }
.check input { width: 19px; height: 19px; margin-top: .16rem; accent-color: var(--brand); flex: none; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
fieldset { border: 0; padding: 0; }
legend { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin-bottom: .9rem; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(1.4rem, 3vw, 2.4rem); box-shadow: var(--sh-1); }

/* ---- Alerts, badges, pills ---------------------------------------------*/
.alert { display: flex; gap: .7rem; align-items: flex-start; padding: .9rem 1.1rem; border-radius: var(--r); font-size: .92rem; margin-bottom: 1.2rem; border: 1px solid transparent; }
.alert-info { background: var(--info-bg); color: var(--info); border-color: color-mix(in srgb, var(--info) 22%, transparent); }
.alert-success, .alert-good { background: var(--good-bg); color: var(--good); border-color: color-mix(in srgb, var(--good) 22%, transparent); }
.alert-warn { background: var(--warn-bg); color: var(--warn); border-color: color-mix(in srgb, var(--warn) 22%, transparent); }
.alert-error, .alert-bad { background: var(--bad-bg); color: var(--bad); border-color: color-mix(in srgb, var(--bad) 22%, transparent); }
.alert a { color: inherit; }

.badge, .pill { display: inline-flex; align-items: center; gap: .3em; padding: .26em .7em; border-radius: var(--r-pill); font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-neutral, .pill-neutral { background: var(--sand); color: var(--ink-70); }
.badge-good, .pill-good { background: var(--good-bg); color: var(--good); }
.badge-warn, .pill-warn { background: var(--warn-bg); color: var(--warn); }
.badge-bad,  .pill-bad  { background: var(--bad-bg);  color: var(--bad); }
.badge-info, .pill-info { background: var(--info-bg); color: var(--info); }
.badge-brand { background: var(--tint-2); color: var(--brand-dark); }

/* ---- Tables -------------------------------------------------------------*/
.tbl { width: 100%; border-collapse: collapse; font-size: .92rem; }
.tbl th, .tbl td { padding: .72rem .8rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl thead th { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-35); font-weight: 700; white-space: nowrap; }
.tbl tbody tr:hover { background: color-mix(in srgb, var(--sand) 45%, transparent); }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; }
.tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.totals { width: 100%; max-width: 460px; border-collapse: collapse; font-size: .94rem; }
.totals th { text-align: left; font-weight: 500; color: var(--ink-70); padding: .42rem 0; }
.totals td { text-align: right; font-variant-numeric: tabular-nums; padding: .42rem 0; }
.totals tfoot { border-top: 1.5px solid var(--line-2); }
.totals .is-total th, .totals .is-total td { font-size: 1.16rem; font-weight: 700; padding-top: .8rem; color: var(--ink); }
.totals .is-deposit th, .totals .is-deposit td { color: var(--brand-dark); font-weight: 650; }
.totals .is-discount th, .totals .is-discount td { color: var(--good); }
.totals .is-balance th, .totals .is-balance td { font-weight: 700; }

/* ---- Empty / pager ------------------------------------------------------*/
.empty { display: grid; place-items: center; gap: .55rem; padding: 3.4rem 1.4rem; text-align: center; color: var(--ink-55); background: var(--white); border: 1px dashed var(--line-2); border-radius: var(--r-lg); }
.empty .ic { color: var(--line-2); }
.pager { display: flex; gap: .3rem; justify-content: center; margin-top: 2.4rem; flex-wrap: wrap; }
.pg { min-width: 40px; padding: .5rem .75rem; text-align: center; border: 1px solid var(--line); border-radius: var(--r-sm); text-decoration: none; color: var(--ink); font-size: .9rem; background: var(--white); }
.pg:hover { border-color: var(--brand); color: var(--brand-dark); }
.pg.is-on { background: var(--ink); color: var(--cream); border-color: var(--ink); font-weight: 650; }
.pg-gap { padding: .5rem .3rem; color: var(--ink-35); }

/* ---- Filters (rentals catalog) -----------------------------------------*/
.filters { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; margin-bottom: 1.8rem; }
.chip { display: inline-flex; align-items: center; gap: .35rem; padding: .5rem .95rem; border: 1.5px solid var(--line-2); border-radius: var(--r-pill); background: var(--white); font-size: .87rem; text-decoration: none; color: var(--ink); white-space: nowrap; }
.chip:hover { border-color: var(--brand); color: var(--brand-dark); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: var(--cream); font-weight: 600; }
.searchbar { position: relative; flex: 1; min-width: 220px; }
.searchbar .ic { position: absolute; left: .85rem; top: 50%; translate: 0 -50%; color: var(--ink-35); pointer-events: none; }
.searchbar input { padding-left: 2.6rem; border-radius: var(--r-pill); }

/* ---- Quote cart (floating) ---------------------------------------------*/
.cart-fab {
  position: fixed; right: clamp(14px, 3vw, 28px); bottom: clamp(14px, 3vw, 28px); z-index: 70;
  display: none; align-items: center; gap: .6rem; padding: .9rem 1.35rem;
  background: var(--ink); color: var(--cream); border: 0; border-radius: var(--r-pill);
  box-shadow: var(--sh-3); cursor: pointer; font-size: .95rem; font-weight: 650; text-decoration: none;
}
.cart-fab.is-on { display: inline-flex; animation: pop .3s var(--ease); }
.cart-fab:hover { color: var(--cream); background: #000; }
.cart-count { display: grid; place-items: center; min-width: 24px; height: 24px; padding: 0 .4rem; border-radius: var(--r-pill); background: var(--brand); font-size: .8rem; }
@keyframes pop { from { transform: scale(.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.toast { position: fixed; left: 50%; bottom: 24px; translate: -50% 0; z-index: 90; padding: .8rem 1.3rem; background: var(--ink); color: var(--cream); border-radius: var(--r-pill); font-size: .9rem; box-shadow: var(--sh-3); opacity: 0; pointer-events: none; transition: opacity .25s, translate .25s; }
.toast.is-on { opacity: 1; translate: -50% -6px; }

/* ---- Steps (quote builder) ---------------------------------------------*/
.steps { display: flex; gap: .4rem; margin-bottom: 2rem; flex-wrap: wrap; counter-reset: s; }
.step { display: flex; align-items: center; gap: .55rem; padding: .6rem 1rem; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--line); font-size: .85rem; color: var(--ink-55); }
.step::before { counter-increment: s; content: counter(s); display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--sand); font-size: .76rem; font-weight: 700; color: var(--ink-55); }
.step.is-on { border-color: var(--ink); color: var(--ink); font-weight: 650; }
.step.is-on::before { background: var(--ink); color: var(--cream); }
.step.is-done::before { background: var(--good); color: #fff; content: "✓"; }

/* ---- Split feature ------------------------------------------------------*/
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); align-items: center; }
.split.rev > *:first-child { order: 2; }
.split-media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-2); aspect-ratio: 4/3; object-fit: contain; background: #fff; }
@media (max-width: 820px) { .split, .split.rev > *:first-child { grid-template-columns: 1fr; order: 0; } }

.ticks { list-style: none; padding: 0; display: grid; gap: .6rem; margin-top: 1.3rem; }
.ticks li { display: flex; gap: .65rem; align-items: flex-start; font-size: .95rem; }
.ticks li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: .18rem; border-radius: 50%; background: var(--tint-2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='m4 12 5 5L20 6'/></svg>") center/12px no-repeat; }

/* ---- Social strip -------------------------------------------------------*/
.social-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 176px), 1fr)); gap: 10px; }
.social-tile { position: relative; aspect-ratio: 1; border-radius: var(--r); overflow: hidden; background: var(--sand); display: block; }
.social-tile img { width: 100%; height: 100%; object-fit: cover; transition: scale .4s var(--ease); }
.social-tile:hover img { scale: 1.07; }
.social-tile .social-badge { position: absolute; top: .5rem; right: .5rem; color: #fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,.5)); }
.socials { display: flex; gap: .45rem; margin-top: 1rem; }
.socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); color: var(--ink-70); text-decoration: none; transition: background .16s, color .16s, border-color .16s, transform .16s; }
.socials a:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }

/* ---- Pre-footer CTA -----------------------------------------------------*/
.prefoot { background: var(--ink); color: color-mix(in srgb, var(--cream) 90%, transparent); padding-block: clamp(48px, 6vw, 84px); }
.prefoot-in { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.prefoot h2 { color: var(--cream); margin-bottom: .6rem; }
.prefoot .eyebrow { color: var(--accent); }
.prefoot .lede { color: color-mix(in srgb, var(--cream) 72%, transparent); }
.prefoot-actions { display: flex; flex-direction: column; gap: .7rem; align-items: flex-start; }
.prefoot-actions .btn-outline { --btn-fg: var(--cream); --btn-bd: color-mix(in srgb, var(--cream) 35%, transparent); }
.prefoot-actions .btn-outline:hover { --btn-bg: color-mix(in srgb, var(--cream) 12%, transparent); --btn-fg: var(--cream); --btn-bd: var(--cream); }
.prefoot .micro { color: color-mix(in srgb, var(--cream) 55%, transparent); }
@media (max-width: 820px) { .prefoot-in { grid-template-columns: 1fr; } }

/* ---- Footer -------------------------------------------------------------*/
.site-foot { background: color-mix(in srgb, var(--ink) 96%, #000); color: color-mix(in srgb, var(--cream) 66%, transparent); padding-top: clamp(40px, 5vw, 68px); font-size: .89rem; }
.site-foot a { color: color-mix(in srgb, var(--cream) 72%, transparent); text-decoration: none; }
.site-foot a:hover { color: var(--accent); text-decoration: underline; }
.foot-grid { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); padding-bottom: 2.4rem; }
.foot-brand p { margin: .8rem 0; max-width: 34ch; }
.logo-foot .logo-text strong { color: var(--cream); }
.foot-brand address { font-style: normal; line-height: 1.75; }
.foot-col h3 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-family: var(--font-body); font-weight: 700; margin-bottom: .8rem; }
.foot-col ul { list-style: none; padding: 0; display: grid; gap: .42rem; }
.foot-col .hours li { display: flex; justify-content: space-between; gap: .8rem; font-size: .82rem; }
.foot-news { border-top: 1px solid color-mix(in srgb, var(--cream) 14%, transparent); padding-block: 1.6rem; }
.news-form label { display: block; margin-bottom: .6rem; }
.news-row { display: flex; gap: .5rem; max-width: 460px; }
.news-row input { flex: 1; padding: .7rem .9rem; border-radius: var(--r-pill); border: 1px solid color-mix(in srgb, var(--cream) 22%, transparent); background: color-mix(in srgb, var(--cream) 8%, transparent); color: var(--cream); }
.news-row input::placeholder { color: color-mix(in srgb, var(--cream) 40%, transparent); }
.foot-legal { border-top: 1px solid color-mix(in srgb, var(--cream) 14%, transparent); padding-block: 1.3rem 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .8rem; color: color-mix(in srgb, var(--cream) 45%, transparent); }
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---- Utilities ----------------------------------------------------------*/
.sr { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.center { text-align: center; }
.stack { display: flex; flex-direction: column; gap: 1rem; }
.row { display: flex; flex-wrap: wrap; gap: .7rem; align-items: center; }
.row-end { justify-content: flex-end; }
.between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.muted { color: var(--ink-55); }
.nowrap { white-space: nowrap; }
.mono { font-variant-numeric: tabular-nums; font-family: ui-monospace, "SF Mono", Menlo, monospace; }
.hide-sm { display: initial; }
@media (max-width: 700px) { .hide-sm { display: none; } .gal-grid { columns: 2 150px; } }

/* ---- Print (quotes / packing lists) ------------------------------------*/
@media print {
  .topbar, .site-head, .crumbs, .prefoot, .site-foot, .cart-fab, .no-print { display: none !important; }
  body { background: #fff; font-size: 12pt; }
  .card, .form-card { box-shadow: none; border: 1px solid #ccc; }
  a { text-decoration: none; color: #000; }
}

/* ===========================================================================
   Content module additions (gallery / blog / FAQ) — src/modules/content.js
   =========================================================================*/
.featured-post { background: var(--sand); border-radius: var(--r-xl); padding: clamp(20px, 3vw, 40px); margin-bottom: clamp(28px, 4vw, 48px); }
.featured-post .split-media img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--sh-2); }

.faq-layout { display: grid; grid-template-columns: 200px 1fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
.faq-nav { position: sticky; top: 96px; display: flex; flex-direction: column; gap: .4rem; }
.faq-nav a { font-size: .87rem; font-weight: 600; color: var(--ink-70); text-decoration: none; padding: .3rem 0; }
.faq-nav a:hover { color: var(--brand-dark); }
.faq-topic { margin-bottom: 2.6rem; }
.faq-topic h2 { margin-bottom: .4rem; scroll-margin-top: 96px; }
@media (max-width: 780px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-nav { position: static; flex-direction: row; flex-wrap: wrap; gap: .6rem .9rem; padding-bottom: .8rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
}

/* ---------------------------------------------------------------------------
   Shared two-column + definition-list layouts.
   These are also used by the owner dashboard, but they are defined here so
   public pages (the quote builder, the customer quote page, item specs) can
   use them without loading the dashboard stylesheet.
   -------------------------------------------------------------------------*/
.cols { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
.cols-even { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; }
@media (max-width: 1000px) { .cols, .cols-even { grid-template-columns: 1fr; } }

.kv { display: grid; grid-template-columns: auto 1fr; gap: .45rem 1.2rem; font-size: .93rem; }
.kv dt { color: var(--ink-55); }
.kv dd { margin: 0; font-weight: 550; }

/* A proper half-filled star (the old text-clip trick did not work on SVG). */
.star { display: inline-flex; position: relative; }
.star.half { color: var(--line-2); }
.star.half::before {
  content: ""; position: absolute; inset: 0; width: 50%; overflow: hidden;
  background: currentColor; color: var(--accent);
  -webkit-mask: var(--star-mask) left center / auto 100% no-repeat;
          mask: var(--star-mask) left center / auto 100% no-repeat;
}
:root { --star-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='m12 2.5 2.9 6.1 6.6.9-4.8 4.6 1.2 6.6L12 17.6 6.1 20.7l1.2-6.6L2.5 9.5l6.6-.9Z'/></svg>"); }

/* A simple icon + text list (used in the quote sidebar's "what happens next"). */
.steplist { display: grid; gap: .7rem; }
.steplist li { display: grid; grid-template-columns: 20px 1fr; gap: .65rem; align-items: start; font-size: .92rem; line-height: 1.5; }
.steplist li .ic { color: var(--brand); margin-top: .15rem; }

/* ---- Marquee letter / number picker -------------------------------------
   Added for the marquee item pages: a compact grid of characters, each with
   its own quantity box and a note of how many we own. */
.mq-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(84px,1fr));gap:.55rem}
.mq-tile{border:1px solid var(--line);border-radius:10px;padding:.5rem .45rem;text-align:center;background:var(--cream)}
.mq-tile label{display:block;cursor:pointer;margin-bottom:.3rem}
.mq-tile .mq-char{display:block;font-weight:700;font-size:1.15rem;line-height:1.2;color:var(--ink)}
.mq-tile .mq-stock{display:block;font-size:.68rem;opacity:.65;margin-top:.1rem}
.mq-tile .inp{padding:.3rem;text-align:center;font-size:.9rem}

/* ---- Balloon color swatches ---------------------------------------------
   Added for the balloon item pages: tap up to three colors; the choice rides
   along to the quote as a note. */
.swatch-grid{display:flex;flex-wrap:wrap;gap:.45rem;margin-top:.4rem}
.swatch{display:flex;align-items:center;gap:.4rem;border:1px solid var(--line);border-radius:999px;
  background:var(--cream);padding:.28rem .7rem .28rem .35rem;cursor:pointer;font-size:.78rem;color:var(--ink)}
.swatch-dot{width:20px;height:20px;border-radius:50%;background:var(--sw);border:1px solid rgba(0,0,0,.15);flex:none}
.swatch[aria-pressed="true"]{border-color:var(--primary);box-shadow:0 0 0 2px var(--primary);font-weight:600}
.swatch:focus-visible{outline:2px solid var(--primary);outline-offset:2px}

/* ---- Header search ------------------------------------------------------*/
.nav-search{display:flex;align-items:center}
.nav-search .inp{width:150px;padding:.4rem .7rem;font-size:.82rem;border-radius:999px}
@media (max-width: 980px){ .nav-search .inp{width:100%} .nav-search{width:100%;padding:.4rem 0} }

/* Word-length picker tiles (charger styles, jungle animals) */
.mq-tile-word{min-width:110px}
.mq-word{font-size:.85rem;font-weight:600;line-height:1.25}

/* ---- The wordmark logo ---------------------------------------------------
   The brand logo is a wide two-line wordmark, not a square mark, so it gets
   real width in the header and footer instead of icon sizing. */
.logo-word{width:320px;height:auto;display:block}
.site-foot .logo-word{width:260px}
@media (max-width: 700px){ .logo-word{width:180px} .head-in{gap:.7rem} .head-quote{font-size:.78rem; padding:.6em 1em} }


/* ---- Playful pass: wavy mix-and-match buttons, pastel accents ------------- */
.btn:nth-of-type(even), .nav-cta .btn, form .btn:nth-child(even) {
  border-radius: .7em 1.25em .8em 1.2em / 1.2em .8em 1.25em .7em;
}
.btn:hover { transform: translateY(-1px) rotate(-1deg) scale(1.02); }
.btn:active { transform: rotate(.5deg) scale(.99); }
.card-media img { border-radius: 0; }
.hero-blob.b1 { background: var(--sea); opacity: .5; }
.hero-blob.b2 { background: var(--accent); opacity: .35; }
.eyebrow { color: var(--brand-dark); }
.form-card, .card { border-radius: 22px 14px 22px 14px; }
strong, b { font-weight: 700; }


/* ---- Item photo follows you down the page --------------------------------- */
@media (min-width: 900px) {
  .split { align-items: start; }
  .split-media { position: sticky; top: calc(var(--headh, 120px) + 14px); }
}

/* ---- Founders hero photo --------------------------------------------------- */
.hero-founders { width: 100%; border-radius: 26px 16px 26px 16px; box-shadow: var(--sh-2); object-fit: cover; aspect-ratio: 4/5; }


/* ---- Space rental calendar ------------------------------------------------ */
.cal-wrap { display: flex; flex-wrap: wrap; gap: 1.1rem; }
.cal-month { flex: 1 1 200px; min-width: 200px; }
.cal-title { font-weight: 700; margin-bottom: .35rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { font-size: .68rem; text-align: center; color: var(--ink-55); font-weight: 700; }
.cal-cell { display: grid; place-items: center; aspect-ratio: 1; font-size: .82rem; border-radius: 8px; border: 1px solid transparent; }
.cal-off { color: color-mix(in srgb, var(--ink) 25%, transparent); }
.cal-booked { color: color-mix(in srgb, var(--ink) 40%, transparent); text-decoration: line-through; background: color-mix(in srgb, var(--ink) 7%, transparent); }
.cal-open { background: #fff; border-color: var(--line); cursor: pointer; font-weight: 600; }
.cal-open:hover { border-color: var(--brand); }
.cal-open[aria-pressed="true"] { background: var(--brand); color: #fff; border-color: var(--brand); }
.cal-key { display: inline-block; width: 12px; height: 12px; border-radius: 4px; vertical-align: -1px; }
.cal-open-key { background: #fff; border: 1px solid var(--line); }
.cal-booked-key { background: color-mix(in srgb, var(--ink) 12%, transparent); }
.cal-off-key { background: color-mix(in srgb, var(--ink) 4%, transparent); }
