/* =========================================================
   SPIRIT EVENTS — LANDING PAGE DEMO
   Plain CSS, no build step, no framework.
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* A safety net only — the grids below are fixed so nothing needs it. */
  overflow-x: clip;
  scroll-padding-top: calc(var(--header) + 12px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-locked {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -0.015em;
  /* Syne is wide; a long word must break rather than push past its column. */
  overflow-wrap: break-word;
  hyphens: auto;
}
p {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--plum-bright);
  outline-offset: 3px;
  border-radius: 6px;
}
::selection {
  background: var(--plum);
  color: #fff;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--plum);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.skip:focus {
  top: 1rem;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}

.eyebrow--light {
  color: var(--plum-bright);
}

/* =========================================================
   LOGO
========================================================= */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: none;
  --logo-a: #9b3f9b;
  --logo-b: #5e1b5b;
  --logo-top: #5c1a5a;
  --logo-bottom: #8c3a8c;
}
.logo--light {
  --logo-a: #d16ad1;
  --logo-b: #a13ca1;
  --logo-top: #ffffff;
  --logo-bottom: #d9a6d9;
}
.logo__mark {
  width: 38px;
  height: 42px;
}
.logo__a {
  fill: var(--logo-a);
}
.logo__b {
  fill: var(--logo-b);
}
.logo__type {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  line-height: 0.92;
}
.logo__top {
  font-family: var(--body);
  font-weight: 800;
  font-size: 1.28rem;
  letter-spacing: 0.01em;
  color: var(--logo-top);
}
.logo__bottom {
  font-family: var(--body);
  font-weight: 300;
  font-size: 1.28rem;
  letter-spacing: 0.035em;
  color: var(--logo-bottom);
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: var(--tap);
  padding: 0 1.35rem;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.btn:active {
  transform: translateY(1px);
}
.btn--plum {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 10px 28px -12px var(--plum-glow);
}
.btn--plum:hover {
  background: var(--plum-deep);
  box-shadow: 0 14px 34px -12px var(--plum-glow);
  transform: translateY(-1px);
}
.btn--outline {
  border-color: var(--plum);
  color: var(--plum);
}
.btn--outline:hover {
  background: var(--plum-wash);
}
.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn--outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn--wa {
  background: var(--whatsapp);
  color: #0b2a17;
}
.btn--wa:hover {
  filter: brightness(1.06);
}
.btn--white {
  background: #fff;
  color: var(--plum-deep);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.35);
}
.btn--white:hover {
  background: #f7eef7;
  transform: translateY(-1px);
}
.btn--sm {
  min-height: 38px;
  padding: 0 1rem;
  font-size: 0.86rem;
}
.btn--lg {
  min-height: 54px;
  padding: 0 1.8rem;
  font-size: 1rem;
}
.btn--block {
  width: 100%;
}
.btn[disabled] {
  opacity: 0.6;
  cursor: progress;
  transform: none;
}

.iconbtn {
  display: inline-grid;
  place-items: center;
  width: var(--tap);
  height: var(--tap);
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.iconbtn:hover {
  border-color: var(--plum);
  color: var(--plum);
}
.iconbtn .icon {
  width: 20px;
  height: 20px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--plum);
}
.link-arrow .icon {
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover .icon {
  transform: translateX(3px);
}

/* =========================================================
   HEADER
========================================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(0, 0, 0, 0.35);
}
.header__bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header);
}
.nav {
  margin-left: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 0.8rem;
  border-radius: var(--pill);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition:
    color 0.2s,
    background-color 0.2s;
}
.nav__list a:hover {
  color: var(--plum);
  background: var(--plum-wash);
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menubtn {
  display: none;
}
/* The menu's own "Plan your event" is for the phone panel; on a laptop the
   header button is already beside it. */
.nav__cta-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .menubtn {
    display: inline-grid;
  }
  .header__actions {
    margin-left: auto;
  }
  .nav {
    position: fixed;
    inset: var(--header) 0 0 0;
    background: var(--paper);
    padding: 1.2rem var(--gutter) 2rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.22s var(--ease),
      transform 0.22s var(--ease),
      visibility 0.22s;
  }
  .header[data-open='true'] .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav__list a {
    min-height: 56px;
    border-radius: 0;
    border-bottom: 1px solid var(--line-soft);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--ink);
  }
  .nav__cta-mobile {
    display: block;
    margin-top: 1.4rem;
  }
  .nav__list .nav__cta-mobile a {
    justify-content: center;
    border: 0;
    border-radius: var(--pill);
    background: var(--plum);
    color: #fff;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 600;
  }
}
@media (max-width: 520px) {
  .header__call,
  .header__enquire {
    display: none;
  }
}

/* =========================================================
   PHOTO SLOTS
   A real photo, or a designed slot that says which photo it is
   waiting for. There is no third option.
========================================================= */

.photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--stage-soft);
  max-width: 100%;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo--slot {
  color: #fff;
  isolation: isolate;
}
.photo--plum {
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(200, 87, 200, 0.55), transparent 55%),
    radial-gradient(90% 80% at 100% 100%, rgba(103, 27, 101, 0.95), transparent 60%),
    linear-gradient(140deg, #2b0f2b, #120a12);
}
.photo--stage {
  background:
    radial-gradient(60% 70% at 70% 20%, rgba(200, 87, 200, 0.28), transparent 60%),
    radial-gradient(50% 60% at 10% 90%, rgba(140, 52, 140, 0.35), transparent 60%),
    linear-gradient(180deg, #1b121b, #0d0a0d);
}
/* A faint diagonal grain so an empty slot still reads as a surface. */
.photo--slot::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 11px);
}
.photo__label {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--pill);
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}
.photo__label b {
  font-weight: 600;
  color: #fff;
}
.photo__brief {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--stage);
  color: var(--stage-text);
  min-height: min(92svh, 860px);
  display: flex;
  align-items: flex-end;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero__media .photo {
  position: absolute;
  inset: 0;
  aspect-ratio: auto !important;
  border-radius: 0;
}
.hero__media .photo__label {
  top: auto;
  left: auto;
  right: var(--gutter);
  bottom: 1.2rem;
}
.hero__media .photo__brief {
  display: none;
}
/* Stage lights. Two slow beams in the brand colour, so the first screen moves
   even before the real footage arrives. */
.hero__beams {
  position: absolute;
  inset: -20% -10% 0;
  z-index: -2;
  pointer-events: none;
}
.hero__beams::before,
.hero__beams::after {
  content: '';
  position: absolute;
  top: -10%;
  width: 55%;
  height: 120%;
  background: conic-gradient(from 180deg at 50% 0%, transparent 42%, rgba(200, 87, 200, 0.22) 50%, transparent 58%);
  filter: blur(18px);
  transform-origin: 50% 0%;
  animation: sweep 11s var(--ease) infinite alternate;
}
.hero__beams::before {
  left: 5%;
}
.hero__beams::after {
  right: 0;
  background: conic-gradient(from 180deg at 50% 0%, transparent 44%, rgba(255, 255, 255, 0.12) 50%, transparent 56%);
  animation-duration: 14s;
  animation-direction: alternate-reverse;
}
@keyframes sweep {
  from { transform: rotate(-16deg); }
  to { transform: rotate(16deg); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(18, 16, 18, 0.1) 0%, rgba(18, 16, 18, 0.55) 55%, rgba(18, 16, 18, 0.96) 100%),
    linear-gradient(90deg, rgba(18, 16, 18, 0.75) 0%, transparent 70%);
}
.hero__inner {
  padding-block: calc(var(--header) + 3rem) clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}
.hero__copy {
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.hero__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero__title em {
  font-style: normal;
  color: var(--plum-bright);
}
.hero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(244, 242, 244, 0.82);
  max-width: 40rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.hero__direct {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  font-size: 0.93rem;
  color: var(--stage-muted);
}
.hero__direct a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: var(--tap);
  color: #fff;
  font-weight: 500;
}
.hero__direct a:hover {
  color: var(--plum-bright);
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.fact {
  padding: 1.2rem 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.fact + .fact {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.fact__value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.fact__label {
  font-size: 0.82rem;
  color: var(--stage-muted);
}
@media (max-width: 720px) {
  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fact:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

/* =========================================================
   CLIENTS
========================================================= */

.clients {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.clients__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.4rem;
}
.clients__label {
  flex: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.marquee {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  width: max-content;
  gap: 3rem;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__copy {
  display: contents;
}
.marquee__item {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #8a868a;
  white-space: nowrap;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .clients__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .marquee {
    width: 100%;
  }
}

/* =========================================================
   SECTIONS
========================================================= */

.section {
  padding-block: var(--section);
}
.section--mist {
  background: var(--mist);
}
.section--stage {
  background: var(--stage);
  color: var(--stage-text);
}
.section__head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 46rem;
  margin-bottom: clamp(2.2rem, 5vw, 3.5rem);
}
.section__head--split {
  max-width: none;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.section__head--split > div {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 46rem;
}
.section__title {
  font-weight: 800;
  font-size: clamp(1.75rem, 3.6vw, 2.9rem);
}
.section--stage .section__title {
  color: #fff;
}
/* In a two-column layout the heading gets a third or half of the width, and
   Syne's longest words ("Frequently", "Conceptualization") must still fit
   whole. */
.faq .section__title,
.talk .section__title,
.legacy .section__title {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
}
.detail .section__title {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}
.section--stage .eyebrow {
  color: var(--plum-bright);
}
.section__lead {
  font-size: 1.08rem;
  color: var(--muted);
}
.section--stage .section__lead {
  color: var(--stage-muted);
}
.section--stage .link-arrow {
  color: var(--plum-bright);
}

/* =========================================================
   SERVICES
========================================================= */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 330px), 1fr));
  gap: 1rem;
  counter-reset: svc;
}
.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  height: 100%;
  min-height: 15rem;
  padding: 1.6rem 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.svc::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--plum), var(--plum-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(140, 52, 140, 0.35);
  box-shadow: 0 22px 44px -28px rgba(92, 26, 90, 0.45);
}
.svc:hover::after {
  transform: scaleX(1);
}
.svc__no {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--plum);
}
.svc__name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}
.svc__blurb {
  color: var(--muted);
  font-size: 0.95rem;
}
.svc__go {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum);
}
.svc__go .icon {
  transition: transform 0.25s var(--ease);
}
.svc:hover .svc__go .icon {
  transform: translate(2px, -2px);
}

/* =========================================================
   FEATURED WORK
========================================================= */

.work {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}
.work__item {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}
.work__item:nth-child(1),
.work__item:nth-child(2) {
  grid-column: span 6;
}
.work__item .photo {
  transition: transform 0.4s var(--ease);
}
a.work__item:hover .photo {
  transform: scale(0.985);
}
.work__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.work__meta {
  font-size: 0.85rem;
  color: var(--stage-muted);
}
.work__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum-bright);
}
@media (max-width: 900px) {
  .work__item,
  .work__item:nth-child(1),
  .work__item:nth-child(2) {
    grid-column: span 6;
  }
}
@media (max-width: 560px) {
  .work__item,
  .work__item:nth-child(1),
  .work__item:nth-child(2) {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   WHY SPIRIT EVENTS
========================================================= */

.why {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.why__media {
  position: sticky;
  top: calc(var(--header) + 1.5rem);
}
.reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 2.2rem;
}
.reason {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-top: 1.1rem;
  border-top: 2px solid var(--plum);
}
.reason h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.reason p {
  color: var(--muted);
  font-size: 0.96rem;
}
.crew {
  margin-top: 2.8rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--mist);
}
.crew__title {
  font-family: var(--body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.crew__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.6rem;
}
.crew__item {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}
.crew__item b {
  font-weight: 600;
  font-size: 0.95rem;
}
.crew__item span {
  font-size: 0.8rem;
  color: var(--muted);
}
@media (max-width: 900px) {
  .why {
    grid-template-columns: 1fr;
  }
  .why__media {
    position: static;
  }
}
@media (max-width: 560px) {
  .reasons {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   HOW WE WORK
========================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.step__no {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
}
.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.4rem;
}
.step p {
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   CLIENT WORDS
========================================================= */

.words {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}
.words__card {
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(140, 52, 140, 0.4);
  background: var(--plum-wash);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.words__card h3 {
  font-size: 1.3rem;
  font-weight: 700;
}
.words__card p {
  color: var(--ink-soft);
}
.words__rating {
  background: var(--stage);
  color: var(--stage-text);
  border: 0;
}
.words__rating p {
  color: var(--stage-muted);
}
.words__rating h3 {
  color: #fff;
}
@media (max-width: 760px) {
  .words {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FAQ
========================================================= */

.faq {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
}
.faq .section__head {
  margin-bottom: 0;
}
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 1rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q::after {
  content: '+';
  flex: none;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--plum);
  transition: transform 0.25s var(--ease), background-color 0.25s;
}
.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
  background: var(--plum-wash);
}
.faq__q:hover {
  color: var(--plum);
}
.faq__a {
  padding: 0 3rem 1.3rem 0;
  color: var(--muted);
}
@media (max-width: 900px) {
  .faq {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   ENQUIRY
========================================================= */

.enquire {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.enquire__aside {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.enquire__aside .section__head {
  margin-bottom: 0;
}
.direct {
  display: grid;
  gap: 0.6rem;
}
.direct__link {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--stage-line);
  background: var(--stage-soft);
  transition:
    border-color 0.2s,
    transform 0.2s var(--ease);
}
.direct__link:hover {
  border-color: var(--plum-bright);
  transform: translateX(3px);
}
.direct__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: rgba(200, 87, 200, 0.14);
  color: var(--plum-bright);
}
.direct__icon--wa {
  background: rgba(37, 211, 102, 0.14);
  color: var(--whatsapp);
}
.direct__icon--call {
  background: rgba(37, 150, 211, 0.16);
  color: #5fb6e6;
}
.direct__icon .icon {
  width: 20px;
  height: 20px;
}
.direct__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.direct__label {
  font-size: 0.75rem;
  color: var(--stage-muted);
}
.direct__value {
  font-weight: 600;
  color: #fff;
  overflow-wrap: anywhere;
}
.enquire__note {
  font-size: 0.88rem;
  color: var(--stage-muted);
}
.enquire__note a {
  color: var(--plum-bright);
  font-weight: 600;
}

.form {
  position: relative;
  padding: clamp(1.4rem, 3.5vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}
.form__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.form__sub {
  color: var(--muted);
  font-size: 0.93rem;
  margin-bottom: 1.4rem;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.field--full {
  grid-column: 1 / -1;
}
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.field label .opt {
  font-weight: 400;
  color: var(--muted);
}
.input {
  width: 100%;
  min-height: 50px;
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: var(--mist);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  transition:
    border-color 0.2s,
    background-color 0.2s,
    box-shadow 0.2s;
}
.input::placeholder {
  color: #9a969a;
}
.input:hover {
  border-color: #cfcfcf;
}
.input:focus {
  outline: none;
  border-color: var(--plum);
  background: var(--paper);
  box-shadow: 0 0 0 4px var(--plum-wash);
}
select.input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.6rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 55%,
    calc(100% - 14px) 55%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
textarea.input {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}
.input[aria-invalid='true'] {
  border-color: var(--err);
  background: var(--err-wash);
}
.field__err {
  font-size: 0.82rem;
  color: var(--err);
  font-weight: 500;
}
.field__hint {
  font-size: 0.78rem;
  color: var(--muted);
}
/* The honeypot. Off-screen rather than display:none, which some bots skip. */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form__foot {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.form__small {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}
.form__notice {
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  background: var(--err-wash);
  color: var(--err);
  border: 1px solid rgba(179, 38, 30, 0.25);
}
.form__notice--warn {
  background: var(--warn-wash);
  color: var(--warn);
  border-color: rgba(154, 98, 0, 0.25);
}
@media (max-width: 900px) {
  .enquire {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  background: #0b090b;
  color: var(--stage-muted);
  font-size: 0.92rem;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding-block: 4rem 3rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-start;
}
.footer__tag {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.footer h2 {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  margin-bottom: 1rem;
}
.footer li + li {
  margin-top: 0.45rem;
}
.footer a:hover {
  color: var(--plum-bright);
}
.social {
  display: flex;
  gap: 0.45rem;
}
.social a {
  display: grid;
  place-items: center;
  width: var(--tap);
  height: var(--tap);
  border-radius: 50%;
  border: 1px solid var(--stage-line);
  color: #fff;
}
.social a:hover {
  border-color: var(--plum-bright);
}
.social .icon {
  width: 19px;
  height: 19px;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 2rem;
  padding-block: 1.4rem 2rem;
  border-top: 1px solid var(--stage-line);
  font-size: 0.82rem;
}
.footer__demo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}
.footer__demo a {
  color: var(--plum-bright);
}
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE ACTION BAR — replaces the chat plugin
========================================================= */

.actionbar {
  display: none;
}
@media (max-width: 720px) {
  .actionbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 55;
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem max(0.6rem, env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
  }
  .actionbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 48px;
    border-radius: var(--pill);
    font-weight: 600;
    font-size: 0.9rem;
  }
  .actionbar__call {
    border: 1.5px solid var(--line);
    color: var(--ink);
  }
  .actionbar__wa {
    background: var(--whatsapp);
    color: #0b2a17;
  }
  .actionbar__enquire {
    background: var(--plum);
    color: #fff;
  }
  body.has-actionbar {
    padding-bottom: 76px;
  }
}

/* =========================================================
   REVEAL — only once JavaScript is known to be running
========================================================= */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   BADGES AND TOASTS
========================================================= */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.16rem 0.6rem;
  border-radius: var(--pill);
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid currentColor;
}
.badge--ok {
  color: var(--ok);
  background: var(--ok-wash);
}
.badge--warn {
  color: var(--warn);
  background: var(--warn-wash);
}
.badge--err {
  color: var(--err);
  background: var(--err-wash);
}
.badge--plum {
  color: var(--plum);
  background: var(--plum-wash);
}
.badge--muted {
  color: var(--muted);
}

.toasts {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%);
  z-index: 120;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(420px, calc(100% - 2rem));
}
.toast {
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
  background: var(--stage);
  color: #fff;
  font-size: 0.92rem;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, 0.6);
  animation: toast-in 0.3s var(--ease);
}
.toast--ok {
  border-left: 4px solid var(--whatsapp);
}
.toast--err {
  border-left: 4px solid #ff6b60;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
}
@media (max-width: 720px) {
  .has-actionbar .toasts {
    bottom: 5.5rem;
  }
}

/* =========================================================
   ENQUIRY CONFIRMATION
========================================================= */

.thanks {
  background: var(--stage);
  color: var(--stage-text);
  min-height: calc(100svh - var(--header));
  padding-block: clamp(3rem, 8vw, 6rem);
}
.thanks__card {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.thanks__tick {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  box-shadow: 0 0 0 10px rgba(140, 52, 140, 0.18);
}
.thanks__tick .icon {
  width: 30px;
  height: 30px;
}
.thanks__title {
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  color: #fff;
}
.thanks__lead {
  font-size: 1.1rem;
  color: var(--stage-muted);
}
.thanks__ref {
  font-family: var(--mono);
  color: #fff;
  background: var(--stage-soft);
  border: 1px solid var(--stage-line);
  border-radius: var(--pill);
  padding: 0.15rem 0.7rem;
}
.summary {
  border-radius: var(--radius-lg);
  background: var(--stage-soft);
  border: 1px solid var(--stage-line);
  padding: 0.4rem 1.3rem;
}
.summary .kv dt {
  color: var(--stage-muted);
}
.summary .kv + .kv {
  border-color: var(--stage-line);
}
.next {
  display: grid;
  gap: 0.8rem;
  counter-reset: next;
}
.next li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  color: var(--stage-muted);
}
.next li::before {
  counter-increment: next;
  content: counter(next);
  flex: none;
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  border: 1px solid var(--plum-bright);
  color: var(--plum-bright);
  font-weight: 700;
  font-size: 0.85rem;
}
.next b {
  color: #fff;
  font-weight: 600;
}
.thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* =========================================================
   REVIEW PAGES — brief review, image log, components, flow test
========================================================= */

.dochead {
  background: var(--stage);
  color: var(--stage-text);
  position: relative;
  overflow: hidden;
}
.dochead::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 120% at 90% 0%, rgba(200, 87, 200, 0.22), transparent 60%);
  pointer-events: none;
}
.dochead__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-block: 1.6rem 2rem;
}
.dochead__text {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 50rem;
}
.dochead__title {
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
}
.dochead__lead {
  color: var(--stage-muted);
  font-size: 1.02rem;
}
.demobar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.demobar a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.95rem;
  border-radius: var(--pill);
  border: 1px solid var(--stage-line);
  font-size: 0.85rem;
  color: var(--stage-muted);
}
.demobar a:hover {
  color: #fff;
  border-color: var(--plum-bright);
}
.demobar a[aria-current='page'] {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}

.doc {
  background: var(--mist);
}
.doc-main {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding-block: 2rem 4rem;
}
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.6vw, 1.7rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.panel__head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.panel__head h2 {
  font-size: 1.3rem;
  font-weight: 700;
}
.panel__head .tail {
  margin-left: auto;
}
.panel__lead {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52rem;
}
.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 1.4rem;
  align-items: start;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.stat__value {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--muted);
}

.checklist {
  display: flex;
  flex-direction: column;
}
.check {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.2rem 0.85rem;
  align-items: start;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line-soft);
}
.check:first-child {
  border-top: 0;
}
.check__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-top: 1px;
}
.check__icon .icon {
  width: 16px;
  height: 16px;
}
.check__icon--ok {
  background: var(--ok-wash);
  color: var(--ok);
}
.check__icon--warn {
  background: var(--warn-wash);
  color: var(--warn);
}
.check__icon--err {
  background: var(--err-wash);
  color: var(--err);
}
.check__title {
  font-weight: 600;
}
.check__detail {
  grid-column: 2 / 3;
  font-size: 0.87rem;
  color: var(--muted);
}

.tablewrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
table.tbl {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.9rem;
}
.tbl th,
.tbl td {
  text-align: left;
  vertical-align: top;
  padding: 0.75rem 0.9rem;
}
.tbl thead th {
  background: var(--mist);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.tbl tbody tr + tr td {
  border-top: 1px solid var(--line-soft);
}
.tbl .nw {
  white-space: nowrap;
}
.tbl .mono {
  font-size: 0.8rem;
}

.kv {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  font-size: 0.93rem;
}
.kv + .kv {
  border-top: 1px solid var(--line-soft);
}
.kv dt {
  color: var(--muted);
}
.kv dd {
  margin: 0;
  text-align: right;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.devices {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.device {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.device__frame {
  border: 10px solid var(--stage);
  border-radius: 28px;
  overflow: hidden;
  background: var(--stage);
}
.device__frame iframe {
  display: block;
  border: 0;
  background: #fff;
}
.device__frame--desktop {
  border-width: 8px;
  border-radius: 14px;
  width: 640px;
  height: 400px;
}
.device__frame--desktop iframe {
  width: 1280px;
  height: 800px;
  transform: scale(0.5);
  transform-origin: 0 0;
}
.device__label {
  font-size: 0.82rem;
  color: var(--muted);
}

.swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.8rem;
}
.swatch {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.swatch__chip {
  height: 64px;
}
.swatch__text {
  padding: 0.6rem 0.75rem;
  font-size: 0.8rem;
}
.swatch__text b {
  display: block;
  font-size: 0.88rem;
}
.specimen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}
.stagebox {
  background: var(--stage);
  color: var(--stage-text);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.out {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.84rem;
  line-height: 1.75;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.out .pass {
  color: var(--ok);
}
.out .fail {
  color: var(--err);
  font-weight: 700;
}
.out .grp {
  color: var(--plum);
  font-weight: 700;
}

.muted {
  color: var(--muted);
}
.small {
  font-size: 0.87rem;
}

/* =========================================================
   FULL SITE — the pieces the inner pages add
========================================================= */

/* A grid or flex item defaults to min-width:auto and refuses to shrink below
   its content, so one carousel or one long word widened the whole page on a
   phone. Every two-column layout opts out. */
.solutions > *,
.legacy > *,
.reviews > *,
.talk > *,
.faq > *,
.longread > *,
.detail > *,
.enquire > *,
.rsvp > *,
.post > *,
.mv > *,
.community > *,
.cards4 > *,
.pagehero__inner > *,
.pagehero__copy > *,
.section__head > * {
  min-width: 0;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.nav__list a[aria-current='page'] {
  color: var(--plum);
  background: var(--plum-wash);
  font-weight: 600;
}
@media (max-width: 1023px) {
  .nav__list a[aria-current='page'] {
    background: none;
  }
}
@media (max-width: 1180px) and (min-width: 1024px) {
  .nav__list a {
    padding: 0 0.55rem;
    font-size: 0.88rem;
  }
}
@media (max-width: 640px) {
  .header__wa {
    display: none;
  }
}

/* ---------- inner-page hero ---------- */
.pagehero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--stage);
  color: var(--stage-text);
  padding-block: clamp(3.5rem, 9vw, 6.5rem) clamp(3rem, 7vw, 5rem);
}
.pagehero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 90% at 85% 0%, rgba(200, 87, 200, 0.28), transparent 60%),
    radial-gradient(40% 70% at 0% 100%, rgba(140, 52, 140, 0.25), transparent 60%);
}
.pagehero__inner {
  display: grid;
  gap: 1.1rem;
  max-width: 58rem;
}
.pagehero__title {
  font-weight: 800;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}
.pagehero__lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(244, 242, 244, 0.8);
  max-width: 44rem;
}
.pagehero--split .pagehero__inner {
  max-width: none;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.pagehero--split .pagehero__copy {
  display: grid;
  gap: 1.1rem;
}
@media (max-width: 900px) {
  .pagehero--split .pagehero__inner {
    grid-template-columns: 1fr;
  }
}
.crumb {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--plum-bright);
}
.crumb a:hover {
  color: #fff;
}

/* ---------- modals ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  place-items: center;
  padding: 1rem;
}
.modal:target {
  display: grid;
}
.modal__scrim {
  position: absolute;
  inset: 0;
  background: rgba(12, 8, 12, 0.72);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  width: min(520px, 100%);
  max-height: 92dvh;
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  animation: modal-in 0.28s var(--ease);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
}
.modal__panel .form {
  padding: 0;
  box-shadow: none;
}
.modal__head {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.3rem;
  padding-right: 2.5rem;
}
.modal__head h2 {
  font-size: 1.7rem;
  font-weight: 800;
}
.modal__head p {
  color: var(--muted);
}
.modal__head .logo__mark {
  width: 30px;
  height: 33px;
}
.modal__head .logo__top,
.modal__head .logo__bottom {
  font-size: 1rem;
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: var(--tap);
  height: var(--tap);
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
}
.modal__close:hover {
  color: var(--plum);
  border-color: var(--plum);
}
.form__done {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
  padding: 1rem 0 0;
}
.form__done > .icon {
  width: 3rem;
  height: 3rem;
  padding: 0.7rem;
  border-radius: 50%;
  background: var(--plum-wash);
  color: var(--plum);
}
.form__notice--ok {
  background: var(--ok-wash);
  color: var(--ok);
  border-color: rgba(31, 122, 74, 0.25);
}

/* ---------- floating chat (desktop) ---------- */
.chat {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 50;
  display: grid;
  gap: 0.6rem;
}
.chat__btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s var(--ease);
}
.chat__btn:hover {
  transform: translateY(-2px) scale(1.04);
}
.chat__btn .icon {
  width: 24px;
  height: 24px;
}
.chat__btn--wa {
  background: var(--whatsapp);
  color: #0b2a17;
}
.chat__btn--call {
  background: var(--call);
}
@media (max-width: 720px) {
  .chat {
    display: none;
  }
}

/* ---------- video and map facades ---------- */
.video,
.mapbox {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--stage-soft);
}
.video iframe,
.mapbox iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--stage);
}
.video__btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.25s, transform 0.5s var(--ease);
}
.video__btn:hover img {
  opacity: 1;
  transform: scale(1.02);
}
.video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: -38px 0 0 -38px;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  box-shadow: 0 0 0 10px rgba(140, 52, 140, 0.28);
}
.video__play .icon {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}
.mapbox {
  aspect-ratio: 16 / 7;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 38px),
    radial-gradient(40% 60% at 50% 50%, rgba(200, 87, 200, 0.25), transparent 70%), var(--stage);
}
.mapbox__btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  border: 0;
  background: none;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.mapbox__btn .icon {
  width: 28px;
  height: 28px;
  color: var(--plum-bright);
}
@media (max-width: 640px) {
  .mapbox {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- home: solutions, legacy, reviews, contact cards, article ---------- */
.solutions {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.solutions__list {
  display: grid;
  gap: 0.6rem;
  margin: 1.6rem 0 1.8rem;
}
.solutions__list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
}
.solutions__list .icon {
  width: 22px;
  height: 22px;
  color: var(--plum);
}
@media (max-width: 900px) {
  .solutions {
    grid-template-columns: 1fr;
  }
}

.legacy {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.legacy__title {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  color: #fff;
}
.legacy__title span {
  display: block;
  color: var(--plum-bright);
}
.legacy__sub {
  margin-top: 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--stage-muted);
}
.tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--stage-soft);
  border: 1px solid var(--stage-line);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}
.tile .icon {
  width: 26px;
  height: 26px;
  color: var(--plum-bright);
  flex: none;
}
@media (max-width: 900px) {
  .legacy {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .tiles {
    grid-template-columns: 1fr;
  }
}

.reviews {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: 1.2rem;
  align-items: stretch;
}
.reviews__score {
  display: grid;
  align-content: center;
  gap: 0.4rem;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--plum);
  color: #fff;
}
.reviews__score b {
  font-family: var(--body);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.reviews__score span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b301;
}
.stars .icon {
  width: 18px;
  height: 18px;
}
.reviews__score .stars {
  color: #ffd35c;
}
.reviews__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.4rem;
}
.review {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.review p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.review__who {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.review__av {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--plum-wash);
  color: var(--plum);
  font-weight: 700;
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .reviews {
    grid-template-columns: 1fr;
  }
}

.cards4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.infocard {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s;
}
.infocard:hover {
  transform: translateY(-3px);
  border-color: rgba(140, 52, 140, 0.35);
}
.infocard__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--plum-wash);
  color: var(--plum);
}
.infocard__icon .icon {
  width: 22px;
  height: 22px;
}
.infocard__icon--wa {
  background: rgba(37, 211, 102, 0.14);
  color: #139a47;
}
.infocard__icon--call {
  background: rgba(37, 150, 211, 0.14);
  color: var(--call);
}
.infocard h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
.infocard p {
  color: var(--muted);
  font-size: 0.92rem;
}
.infocard .link-arrow {
  margin-top: auto;
  overflow-wrap: anywhere;
}
@media (max-width: 960px) {
  .cards4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .cards4 {
    grid-template-columns: 1fr;
  }
}

.talk {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.talk__aside {
  display: grid;
  gap: 1.3rem;
}
.talk__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
@media (max-width: 900px) {
  .talk {
    grid-template-columns: 1fr;
  }
}

/* The long search copy at the foot of the page: an intro with a pull quote,
   service cards, a dark "why us" panel and two closing cards. */
.longread {
  display: grid;
  gap: clamp(3.5rem, 8vw, 6rem);
}
.longread__section {
  scroll-margin-top: calc(var(--header) + 1.5rem);
}
.longread__title {
  margin-top: 0.9rem;
  max-width: 54rem;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
}
.longread__h {
  font-weight: 800;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.12;
}
.longread__intro {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(1.6rem, 3.5vw, 2.4rem);
}
.longread__copy {
  display: grid;
  align-content: start;
  gap: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}
.longread__lead {
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}
.longread__head {
  display: grid;
  gap: 0.9rem;
  max-width: 46rem;
  margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem);
}
.longread__head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.quotecard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 60px -38px rgba(92, 26, 90, 0.7);
}
.quotecard::after {
  content: '';
  position: absolute;
  right: -20%;
  top: -30%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  pointer-events: none;
}
.quotecard .icon {
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.75);
}
.quotecard p {
  position: relative;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.18;
}

.featgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.featcard {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.featcard:hover {
  border-color: rgba(140, 52, 140, 0.35);
  box-shadow: 0 22px 44px -32px rgba(92, 26, 90, 0.45);
}
.featcard__icon,
.duocard__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  background: var(--plum-wash);
  color: var(--plum);
}
.featcard__icon .icon,
.duocard__icon .icon {
  width: 24px;
  height: 24px;
}
.featcard h4 {
  margin-top: 0.3rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}
.featcard p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.whypanel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.8rem, 4.5vw, 3.5rem);
  padding: clamp(1.6rem, 4.5vw, 3.5rem);
  border-radius: calc(var(--radius-lg) + 6px);
  background: var(--stage);
  color: var(--stage-text);
  overflow: hidden;
  isolation: isolate;
}
.whypanel::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: -15%;
  top: -35%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, var(--plum-glow), transparent 68%);
}
.whypanel__intro {
  display: grid;
  align-content: start;
  gap: 1rem;
}
.whypanel .longread__h {
  color: #fff;
}
.whypanel__intro p {
  color: var(--stage-muted);
  line-height: 1.7;
}
.whylist {
  display: grid;
  gap: 0.7rem;
}
.whylist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  background: var(--stage-soft);
  border: 1px solid var(--stage-line);
  font-size: 0.98rem;
  line-height: 1.5;
}
.whylist__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200, 87, 200, 0.14);
  color: var(--plum-bright);
}
.whylist__icon .icon {
  width: 22px;
  height: 22px;
}
.whylist--light li {
  background: var(--paper);
  border-color: var(--line);
}
.whylist--light .whylist__icon {
  background: var(--plum-wash);
  color: var(--plum);
}

.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.duocard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: var(--mist);
  color: var(--ink-soft);
  line-height: 1.7;
}
.duocard--plum {
  background: linear-gradient(150deg, var(--plum) 0%, var(--plum-deep) 100%);
  color: rgba(255, 255, 255, 0.88);
}
.duocard--plum .longread__h {
  color: #fff;
}
.duocard--plum .duocard__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.duocard__cta {
  margin-top: auto;
  padding-top: 0.5rem;
}

@media (max-width: 1060px) {
  .featgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .longread__intro,
  .whypanel,
  .duo {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .featgrid {
    grid-template-columns: 1fr;
  }
}

/* ---------- prose — articles and long copy ---------- */
.prose {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.75;
  max-width: 46rem;
}
.prose > * + * {
  margin-top: 1.05em;
}
.prose h2,
.prose h3 {
  color: var(--ink);
  font-weight: 700;
  margin-top: 2em;
  line-height: 1.2;
}
.prose h2 {
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
}
.prose h3 {
  font-size: 1.3rem;
}
.prose ul,
.prose ol {
  padding-left: 1.3rem;
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose li + li {
  margin-top: 0.45em;
}
.prose li::marker {
  color: var(--plum);
}
.prose strong {
  color: var(--ink);
  font-weight: 650;
}
.prose a {
  color: var(--plum);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  display: block;
  overflow-x: auto;
}
.prose td,
.prose th {
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.prose tr:first-child td {
  background: var(--mist);
  font-weight: 600;
}
.prose td p {
  margin: 0;
}
/* ---------- about ---------- */
.mv {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.mv__card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.mv__card h2 {
  font-size: 1.6rem;
  font-weight: 800;
}
.mv__card p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .mv {
    grid-template-columns: 1fr;
  }
}
.counters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.counter {
  display: grid;
  gap: 0.3rem;
  padding: 1.4rem 0 0;
  border-top: 2px solid var(--plum-bright);
}
.counter__value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.counter__label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--stage-muted);
}
@media (max-width: 760px) {
  .counters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 2rem;
  }
}
.community {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.community__item {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}
.community__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
}
@media (max-width: 860px) {
  .community {
    grid-template-columns: 1fr;
  }
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: clamp(1.8rem, 5vw, 3rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(60% 120% at 100% 0%, rgba(200, 87, 200, 0.35), transparent 60%), var(--stage);
  color: #fff;
}
.cta-band h2 {
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  max-width: 34rem;
}
.cta-band p {
  color: var(--stage-muted);
  max-width: 34rem;
  margin-top: 0.6rem;
}

/* ---------- service page ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.feature__no {
  flex: none;
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--plum-wash);
  color: var(--plum);
  font-family: var(--display);
  font-weight: 800;
}
.feature h3 {
  font-size: 1.12rem;
  font-weight: 700;
}
@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }
}
.detail {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.highlights {
  display: grid;
  gap: 0.7rem;
}
.highlights li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--stage-soft);
  border: 1px solid var(--stage-line);
  color: var(--stage-text);
}
.highlights .icon {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: var(--plum-bright);
}
@media (max-width: 900px) {
  .detail {
    grid-template-columns: 1fr;
  }
}
.othersvc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.othersvc a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: 0 1rem;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 500;
}
.othersvc a:hover {
  border-color: var(--plum);
  color: var(--plum);
}

/* ---------- team ---------- */
.teamgroup + .teamgroup {
  margin-top: clamp(2.8rem, 6vw, 4rem);
}
.teamgroup__head {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-bottom: 1rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.teamgroup__head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}
.teamgroup__head span {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--plum);
}
.people {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  gap: 0.9rem;
}
.person {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.person__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(80% 70% at 30% 10%, rgba(200, 87, 200, 0.45), transparent 60%),
    linear-gradient(160deg, #2b0f2b, #141014);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: 0.02em;
}
.person__photo small {
  position: absolute;
  left: 0.6rem;
  bottom: 0.6rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}
.person h3 {
  font-size: 1.08rem;
  font-weight: 700;
}
.person p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.people--lead .person__photo {
  aspect-ratio: 1 / 1;
}

/* ---------- news ---------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: var(--tap);
  padding: 0 1.05rem;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.chip span {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
}
.chip:hover {
  border-color: var(--plum);
  color: var(--plum);
}
.chip[aria-current='true'] {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}
.chip[aria-current='true'] span {
  color: rgba(255, 255, 255, 0.75);
}
.postcards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.2rem;
}
.postcard {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  height: 100%;
  padding: 0.8rem 0.8rem 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.postcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -30px rgba(92, 26, 90, 0.45);
}
.postcard .photo {
  border-radius: calc(var(--radius-lg) - 6px);
}
.postcard__body {
  display: grid;
  gap: 0.6rem;
  padding: 0 0.4rem;
}
.postcard__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.postcard h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}
.postcard .link-arrow {
  margin-top: auto;
  padding: 0 0.4rem;
  font-size: 0.9rem;
}
.postcard--lead {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
}
.postcard--lead h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
@media (max-width: 800px) {
  .postcard--lead {
    grid-template-columns: 1fr;
  }
}
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 2.4rem;
}
.pager a,
.pager span {
  display: grid;
  place-items: center;
  min-width: var(--tap);
  height: var(--tap);
  padding: 0 0.8rem;
  border-radius: var(--pill);
  border: 1px solid var(--line);
  font-weight: 600;
}
.pager [aria-current='page'] {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
}
.pager a:hover {
  border-color: var(--plum);
  color: var(--plum);
}

/* ---------- article ---------- */
.post {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.post__main {
  display: grid;
  gap: 2rem;
  min-width: 0;
}
.post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  align-items: center;
  color: var(--stage-muted);
  font-size: 0.92rem;
}
.post__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.post__meta .icon {
  color: var(--plum-bright);
}
.author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--mist);
}
.author__av {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: none;
  border-radius: 50%;
  background: var(--plum);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
}
.author b {
  display: block;
  font-size: 1.05rem;
}
.author span {
  font-size: 0.85rem;
  color: var(--muted);
}
.sidebar {
  position: sticky;
  top: calc(var(--header) + 1.5rem);
  display: grid;
  gap: 1.2rem;
}
.sidecard {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid var(--line);
}
.sidecard h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.sidecard--plum {
  background: var(--stage);
  border-color: var(--stage);
  color: var(--stage-text);
}
.sidecard--plum h3 {
  color: #fff;
}
.sidecard--plum p {
  color: var(--stage-muted);
  font-size: 0.92rem;
}
.sidecard--plum .form {
  padding: 0;
  box-shadow: none;
  background: none;
}
.sidecard--plum .field label {
  color: var(--stage-muted);
}
.latest {
  display: grid;
  gap: 0.9rem;
}
.latest a {
  display: grid;
  gap: 0.2rem;
}
.latest b {
  font-weight: 600;
  font-size: 0.93rem;
  line-height: 1.35;
}
.latest a:hover b {
  color: var(--plum);
}
.latest span {
  font-size: 0.78rem;
  color: var(--muted);
}
.comments {
  display: grid;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.comments h2 {
  font-size: 1.6rem;
  font-weight: 800;
}
.comments .form {
  padding: 0;
  box-shadow: none;
}
.consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.consent input {
  margin-top: 0.3rem;
  accent-color: var(--plum);
}
.post__cta {
  margin-top: 1rem;
}
@media (max-width: 960px) {
  .post {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
}

/* ---------- BNI registration ---------- */
.rsvp {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.ticks {
  display: grid;
  gap: 0.6rem;
}
.ticks li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: rgba(244, 242, 244, 0.86);
}
.ticks .icon {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--plum-bright);
}
.section:not(.section--stage) .ticks li {
  color: var(--ink-soft);
}
.section:not(.section--stage) .ticks .icon {
  color: var(--plum);
}
.speaker {
  display: grid;
  gap: 0.2rem;
  padding: 1.2rem 1.3rem;
  border-left: 3px solid var(--plum);
  background: var(--plum-wash);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.speaker b {
  font-family: var(--display);
  font-size: 1.2rem;
}
.note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: var(--warn-wash);
  color: var(--warn);
  font-size: 0.9rem;
}
.note .icon {
  flex: none;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .rsvp {
    grid-template-columns: 1fr;
  }
}

/* ---------- content check ---------- */
.paritypage {
  display: grid;
  gap: 0.8rem;
}
.paritypage > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.paritypage > summary::-webkit-details-marker {
  display: none;
}
.paritypage__name {
  font-weight: 700;
  font-size: 1.05rem;
}
.paritypage__count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted);
}
.blocks {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.block {
  display: grid;
  grid-template-columns: 1.6rem 5.5rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.55rem 0.8rem;
  font-size: 0.88rem;
}
.block + .block {
  border-top: 1px solid var(--line-soft);
}
.block .icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.block--ok .icon {
  color: var(--ok);
}
.block--missing {
  background: var(--err-wash);
}
.block--missing .icon {
  color: var(--err);
}
.block__kind {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  padding-top: 2px;
}
.block__text {
  overflow-wrap: anywhere;
  white-space: pre-line;
}
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 54px;
  padding: 0 0.6rem;
  font-weight: 600;
  color: #fff;
}
.hero__link:hover {
  color: var(--plum-bright);
}
.svc--compact {
  min-height: 9.5rem;
  justify-content: space-between;
}
.svc--compact .svc__go {
  margin-top: 0;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.review {
  margin: 0;
}
.form__title + .form__notice,
.form__title {
  margin-bottom: 1rem;
}
.form .consent {
  margin-bottom: 0.2rem;
}
.sidecard--plum .form__notice--ok {
  background: rgba(37, 211, 102, 0.12);
  color: #7fe0a6;
}
.block__fix {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--warn);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    gap: 0.6rem 2rem;
  }
  /* Still, the names are a plain list: no fade at the edges, and no second
     copy — that only exists to make the loop seamless. */
  .marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .marquee__copy {
    display: none;
  }
}
