/* =============================================================
   Mode Exhibits - dark theme
   Black base, grey body text, orange accent.
   One type scale, one spacing scale. No framework.
   ============================================================= */

/* ---------- 1. Tokens ---------------------------------------- */
:root {
  color-scheme: dark;

  /* Accent. --accent and --accent-alt are injected from admin settings. */
  --accent:        #ff6a1a;
  --accent-alt:    #ffa23c;
  --accent-ink:    #140b04;   /* text on an orange fill - dark reads sharper */
  --accent-soft:   rgba(255, 106, 26, .13);

  /* Surfaces, darkest to lightest. Nothing on this site is white. */
  --base:          #08090b;   /* page background */
  --surface:       #0f1114;   /* alternating section */
  --raised:        #15181d;   /* cards, inputs, dropdowns */
  --raised-2:      #1c2026;   /* hover / nested surface */
  --line:          #262b33;   /* borders */
  --line-soft:     #1b1f26;

  /* Text */
  --text:          #b9c0c9;   /* body grey */
  --text-strong:   #f0f2f5;   /* headings */
  --text-soft:     #848c96;   /* captions, meta */
  --text-faint:    #5f6771;

  /* Type */
  --font-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;

  --fs-h1:   clamp(2.25rem, 1.30rem + 3.20vw, 3.75rem);
  --fs-h2:   clamp(1.75rem, 1.20rem + 1.85vw, 2.75rem);
  --fs-h3:   clamp(1.25rem, 1.05rem + 0.70vw, 1.625rem);
  --fs-h4:   clamp(1.09rem, 1.00rem + 0.35vw, 1.25rem);
  --fs-body: 1rem;
  --fs-sm:   0.9375rem;
  --fs-xs:   0.8125rem;

  --lh-tight: 1.12;
  --lh-head:  1.22;
  --lh-body:  1.68;

  /* Spacing. Every section uses --section-y, so vertical rhythm
     is identical everywhere. This is the symmetry fix. */
  --section-y: clamp(3.5rem, 2.2rem + 4.2vw, 6.5rem);
  --gap:       clamp(1.25rem, 0.9rem + 1.2vw, 2rem);
  --shell:     1240px;
  --pad-x:     clamp(1.125rem, 0.6rem + 2vw, 2.5rem);

  --radius:    10px;
  --radius-sm: 6px;
  --shadow:    0 10px 30px rgba(0, 0, 0, .55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .7);

  --speed: 220ms;
  --ease:  cubic-bezier(.2, .7, .3, 1);
}

/* ---------- 2. Reset ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--base);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text);
  background: var(--base);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, picture, video, iframe { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

/* Headings share one family, one line-height ladder and one margin
   rule. Nothing sets its own ad-hoc size. */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: var(--lh-head);
  letter-spacing: -0.015em;
  color: var(--text-strong);
  margin: 0 0 0.6em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-body); }

p { margin: 0 0 1.1em; max-width: 72ch; }
p:last-child, h1:last-child, h2:last-child, h3:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }

hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--accent); color: var(--accent-ink);
  padding: .7rem 1.1rem; border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top var(--speed) var(--ease);
}
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- 3. Layout ---------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--section-y); background: var(--base); }
.section--tight { padding-block: calc(var(--section-y) * .62); }
.section--muted { background: var(--surface); }
.section--deep  { background: #050608; }

/* Section heading block, used identically everywhere so the spacing
   between kicker, title and lede never drifts. */
.sec-head { margin-bottom: clamp(2rem, 1.4rem + 2vw, 3.25rem); max-width: 62ch; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head__kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--accent);
  margin-bottom: .55rem;
}
.sec-head h2 { margin-bottom: .5rem; }
.sec-head p { color: var(--text-soft); margin-bottom: 0; }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- 4. Buttons --------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--speed) var(--ease),
              color var(--speed) var(--ease),
              border-color var(--speed) var(--ease);
  min-height: 48px;
}
.btn--primary { background: var(--accent); color: var(--accent-ink); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--accent-alt); color: var(--accent-ink); }

.btn--ghost { border-color: var(--line); color: var(--text-strong); }
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--accent); color: var(--accent); }

/* On an orange band, the secondary button is dark rather than white. */
.btn--light { background: var(--base); color: var(--text-strong); border-color: var(--base); }
.btn--light:hover { background: var(--raised); border-color: var(--raised); }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

/* ---------- 5. Header ---------------------------------------- */
.topbar {
  background: #050608;
  color: var(--text-soft);
  font-size: var(--fs-xs);
  border-bottom: 1px solid var(--line-soft);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 42px; flex-wrap: wrap;
}
.topbar a:hover { color: var(--accent); }
.topbar__contact { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar__social { display: flex; gap: .85rem; }
.topbar__social svg { width: 16px; height: 16px; fill: currentColor; }

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(10, 11, 14, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--speed) var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(0, 0, 0, .6); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 78px;
}
.brand img { max-height: 52px; width: auto; }

.nav__list { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; position: relative; }

.nav__link {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--font-head);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
  padding: .75rem .9rem;
  border-radius: var(--radius-sm);
  transition: color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--accent); }
.nav__link[aria-current="page"] { color: var(--accent); }

.nav__caret { width: 10px; height: 10px; fill: currentColor; flex: none; transition: transform var(--speed) var(--ease); }

.nav__sub {
  position: absolute; top: 100%; left: 0; z-index: 210;
  min-width: 246px;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .4rem;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity var(--speed) var(--ease), transform var(--speed) var(--ease), visibility var(--speed);
}
.nav__sub .nav__sub { top: -.4rem; left: 100%; }
.nav__item:hover > .nav__sub,
.nav__item:focus-within > .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub .nav__link { padding: .6rem .8rem; font-weight: 500; justify-content: space-between; }
.nav__sub .nav__link:hover { background: var(--raised-2); }
.nav__sub .nav__caret { transform: rotate(-90deg); }

.header__cta { display: flex; align-items: center; gap: .75rem; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block;
  width: 20px; height: 2px; background: var(--text-strong);
  transition: transform var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-1px); }

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .header__cta .btn { display: none; }

  .nav {
    position: fixed; inset: 78px 0 0 auto;
    width: min(380px, 88vw);
    background: var(--surface);
    border-left: 1px solid var(--line);
    padding: 1rem var(--pad-x) 3rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--speed) var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { transform: translateX(0); }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { padding: .95rem .25rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }

  .nav__sub {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; background: transparent;
    padding: 0 0 0 1rem; display: none;
  }
  .nav__item.is-open > .nav__sub { display: block; }
  .nav__item.is-open > .nav__link .nav__caret { transform: rotate(180deg); }
  .nav__sub .nav__caret { transform: rotate(0); }
  .nav__sub .nav__link { font-size: var(--fs-sm); }
}

/* ---------- 6. Hero slider ----------------------------------- */
.hero { position: relative; background: var(--base); overflow: hidden; }

.hero__slide {
  position: relative;
  align-items: center;
  min-height: clamp(440px, 62vh, 660px);
  display: none;
}
.hero__slide.is-active { display: grid; }

.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,9,11,.96) 0%, rgba(8,9,11,.82) 45%, rgba(8,9,11,.45) 100%);
}

.hero__body { position: relative; z-index: 2; max-width: 42rem; padding-block: 3rem; }
.hero__sub {
  font-family: var(--font-head);
  font-size: var(--fs-sm); font-weight: 600;
  color: var(--accent);
  margin-bottom: .7rem;
}
.hero__title { font-size: var(--fs-h1); line-height: var(--lh-tight); color: var(--text-strong); margin-bottom: .9rem; }
.hero__body p { color: var(--text); }

.hero__dots {
  position: absolute; left: 50%; bottom: 1.75rem; transform: translateX(-50%);
  z-index: 3; display: flex; gap: .5rem;
}
.hero__dots button {
  width: 32px; height: 4px; border-radius: 2px;
  background: rgba(255, 255, 255, .26);
  transition: background var(--speed) var(--ease);
}
.hero__dots button[aria-selected="true"] { background: var(--accent); }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line);
  color: var(--text-strong);
  transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.hero__arrow--prev { left: max(1rem, calc((100vw - var(--shell)) / 2 - 60px)); }
.hero__arrow--next { right: max(1rem, calc((100vw - var(--shell)) / 2 - 60px)); }
.hero__arrow svg { width: 16px; height: 16px; fill: currentColor; }

@media (max-width: 760px) {
  .hero__arrow { display: none; }
  .hero__media::after { background: linear-gradient(180deg, rgba(8,9,11,.78), rgba(8,9,11,.95)); }
}

/* ---------- 7. Page banner ----------------------------------- */
.banner {
  position: relative;
  background: #050608;
  padding-block: clamp(3rem, 2rem + 4vw, 5.5rem);
  border-bottom: 1px solid var(--line-soft);
}
.banner__media { position: absolute; inset: 0; opacity: .22; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,.5), rgba(5,6,8,.9));
}
.banner .shell { position: relative; z-index: 2; }
.banner p { color: var(--text-soft); margin: 0; }

.crumbs { display: flex; flex-wrap: wrap; gap: .4rem; font-size: var(--fs-xs); color: var(--text-faint); margin-top: .9rem; }
.crumbs a:hover { color: var(--accent); }
.crumbs span[aria-current] { color: var(--accent); }

/* ---------- 8. Cards ----------------------------------------- */
.card {
  display: flex; flex-direction: column;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: border-color var(--speed) var(--ease), background var(--speed) var(--ease);
}
.card:hover { border-color: var(--accent); background: var(--raised-2); }

.card__media { position: relative; aspect-ratio: 4 / 3; background: var(--surface); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }

.card__tag {
  position: absolute; left: .85rem; top: .85rem;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-head); font-size: var(--fs-xs); font-weight: 700;
  padding: .3rem .6rem; border-radius: 3px;
}

.card__body { padding: 1.35rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: var(--fs-h4); margin-bottom: .4rem; }
.card__body p { color: var(--text-soft); font-size: var(--fs-sm); margin-bottom: 1rem; }

.card__list { list-style: none; padding: 0; margin: 0 0 1.1rem; font-size: var(--fs-sm); color: var(--text-soft); }
.card__list li { position: relative; padding-left: 1.2rem; margin-bottom: .3rem; }
.card__list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.card__link {
  margin-top: auto;
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm);
  color: var(--accent);
  align-self: flex-start;
  border-bottom: 2px solid transparent;
  transition: border-color var(--speed) var(--ease);
}
.card__link:hover { border-color: var(--accent); }

.feature {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  height: 100%;
}
.feature__icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 1rem;
}
.feature__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.feature h3 { font-size: var(--fs-h4); margin-bottom: .35rem; }
.feature p { font-size: var(--fs-sm); color: var(--text-soft); margin: 0; }

.booth-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.booth-card:hover { border-color: var(--accent); }
.booth-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 400ms var(--ease); }
.booth-card:hover img { transform: scale(1.04); }
.booth-card__body {
  position: absolute; inset: auto 0 0 0;
  padding: 1.5rem 1.25rem 1.15rem;
  background: linear-gradient(to top, rgba(5,6,8,.96), transparent);
}
.booth-card__body h3 { font-size: var(--fs-h4); margin: 0 0 .15rem; }
.booth-card__body span { font-size: var(--fs-xs); color: var(--accent); }

/* ---------- 9. Gallery --------------------------------------- */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-bottom: 2.25rem;
}
.gallery-filters button {
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm);
  color: var(--text-soft);
  background: var(--raised);
  padding: .6rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: all var(--speed) var(--ease);
}
.gallery-filters button:hover { color: var(--text-strong); border-color: var(--text-faint); }
.gallery-filters button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem; }
@media (max-width: 1080px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px)  { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative; display: block;
  border-radius: var(--radius-sm); overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  aspect-ratio: 1 / 1;
}
.gallery-item:hover { border-color: var(--accent); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 2rem .95rem .9rem;
  background: linear-gradient(to top, rgba(5,6,8,.96), transparent);
  opacity: 0; transition: opacity var(--speed) var(--ease);
}
.gallery-item:hover .gallery-item__cap,
.gallery-item:focus-visible .gallery-item__cap { opacity: 1; }
.gallery-item__cap strong { display: block; font-family: var(--font-head); font-size: var(--fs-sm); color: var(--text-strong); }
.gallery-item__cap span { font-size: var(--fs-xs); color: var(--text-soft); }

.gallery-item__play {
  position: absolute; inset: 0; margin: auto;
  width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: var(--accent-ink);
}
.gallery-item__play svg { width: 18px; height: 18px; fill: currentColor; margin-left: 3px; }

.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(3, 4, 5, .97);
  display: none; place-items: center;
  padding: var(--pad-x);
}
.lightbox.is-open { display: grid; }
.lightbox__inner { width: min(1000px, 100%); }
.lightbox img, .lightbox iframe { width: 100%; border-radius: var(--radius); }
.lightbox iframe { aspect-ratio: 16 / 9; border: 0; }
.lightbox__close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--raised); color: var(--text-strong);
  border: 1px solid var(--line);
  font-size: 1.4rem; line-height: 1;
}
.lightbox__close:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

/* ---------- 10. Testimonials --------------------------------- */
.quote-track { display: grid; gap: var(--gap); grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px) { .quote-track { grid-template-columns: 1fr; } }

.quote {
  background: var(--raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1.1rem;
}
.quote__stars { display: flex; gap: .15rem; color: var(--accent-alt); }
.quote__stars svg { width: 15px; height: 15px; fill: currentColor; }
.quote blockquote { margin: 0; font-size: var(--fs-sm); color: var(--text); line-height: 1.75; }
.quote__who { display: flex; align-items: center; gap: .85rem; margin-top: auto; }
.quote__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote__who strong { display: block; font-family: var(--font-head); color: var(--text-strong); font-size: var(--fs-sm); }
.quote__who span { font-size: var(--fs-xs); color: var(--text-soft); }

/* ---------- 11. Split block ---------------------------------- */
.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem); align-items: center; grid-template-columns: 1fr 1fr; }
.split--media-right > .split__media { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--media-right > .split__media { order: 0; }
}
.split__media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line); }

.tick-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .7rem; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 620px) { .tick-list { grid-template-columns: 1fr; } }
.tick-list li { position: relative; padding-left: 1.8rem; margin: 0; font-size: var(--fs-sm); color: var(--text-soft); }
.tick-list li::before {
  content: ''; position: absolute; left: 0; top: .34em;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
}
.tick-list li::after {
  content: ''; position: absolute; left: 4px; top: .62em;
  width: 8px; height: 4px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.tick-list strong { display: block; font-family: var(--font-head); color: var(--text-strong); }

/* ---------- 12. CTA band and logo strip ---------------------- */
.cta-band { background: var(--accent); text-align: center; }
.cta-band h2 { color: var(--accent-ink); }
.cta-band p { color: rgba(20, 11, 4, .82); margin-inline: auto; }

.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); }
.logo-strip img {
  max-height: 46px; width: auto;
  filter: grayscale(1) brightness(1.7); opacity: .5;
  transition: filter var(--speed) var(--ease), opacity var(--speed) var(--ease);
}
.logo-strip a:hover img, .logo-strip img:hover { filter: none; opacity: 1; }

/* ---------- 13. Forms ---------------------------------------- */
.form-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.form-grid .field--full { grid-column: 1 / -1; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm);
  color: var(--text-strong);
  margin-bottom: .35rem;
}
.field .req { color: var(--accent); }

.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem .95rem;
  background: var(--raised);
  color: var(--text-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.field__hint { font-size: var(--fs-xs); color: var(--text-soft); margin-top: .3rem; }
.field__error { font-size: var(--fs-xs); color: #ff8a7a; margin-top: .3rem; }
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: #d8503f; }

.alert {
  padding: .9rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid;
  margin-bottom: 1.25rem;
  font-size: var(--fs-sm);
}
.alert--success { background: rgba(38, 160, 100, .12); border-color: rgba(38, 160, 100, .45); color: #6fd6a2; }
.alert--error   { background: rgba(216, 80, 63, .12);  border-color: rgba(216, 80, 63, .45);  color: #ff8a7a; }

.info-tile {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--raised);
  height: 100%;
}
.info-tile__icon {
  flex: none; width: 42px; height: 42px; border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
}
.info-tile__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; }
.info-tile h3 { font-size: var(--fs-body); margin-bottom: .2rem; }
.info-tile p, .info-tile a { font-size: var(--fs-sm); color: var(--text-soft); margin: 0; }
.info-tile a:hover { color: var(--accent); }

.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 400px; border: 0; display: block; filter: invert(.92) hue-rotate(180deg); }

/* ---------- 14. Rich text ------------------------------------ */
.prose { max-width: 72ch; color: var(--text); }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose img { border-radius: var(--radius); margin-block: 1.5rem; border: 1px solid var(--line); }
.prose ul li::marker { color: var(--accent); }
.prose blockquote {
  margin: 1.75rem 0; padding: .35rem 0 .35rem 1.4rem;
  border-left: 3px solid var(--accent);
  color: var(--text-soft); font-style: italic;
}
.prose table { width: 100%; border-collapse: collapse; margin-block: 1.5rem; font-size: var(--fs-sm); }
.prose th, .prose td { border: 1px solid var(--line); padding: .7rem .85rem; text-align: left; }
.prose th { background: var(--raised); font-family: var(--font-head); color: var(--text-strong); }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.layout-sidebar { display: grid; gap: clamp(2rem, 1rem + 3vw, 3.5rem); grid-template-columns: minmax(0, 1fr) 320px; align-items: start; }
@media (max-width: 940px) { .layout-sidebar { grid-template-columns: 1fr; } }

.side-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; background: var(--raised); margin-bottom: 1.25rem; }
.side-box h3 { font-size: var(--fs-h4); margin-bottom: .9rem; }
.side-nav { list-style: none; padding: 0; margin: 0; }
.side-nav li { margin: 0; border-bottom: 1px solid var(--line-soft); }
.side-nav li:last-child { border-bottom: 0; }
.side-nav a { display: block; padding: .7rem 0; font-size: var(--fs-sm); color: var(--text-soft); transition: color var(--speed) var(--ease); }
.side-nav a:hover, .side-nav a[aria-current="page"] { color: var(--accent); }

.side-cta { background: var(--surface); border-color: var(--accent); text-align: center; }
.side-cta p { color: var(--text-soft); font-size: var(--fs-sm); }

/* ---------- 15. Footer --------------------------------------- */
.site-footer { background: #050608; color: var(--text-soft); border-top: 1px solid var(--line); }

.footer-strip { border-bottom: 1px solid var(--line); padding-block: clamp(1.75rem, 1.2rem + 2vw, 2.5rem); }
.footer-strip__grid { display: grid; gap: var(--gap); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .footer-strip__grid { grid-template-columns: 1fr; } }
.footer-strip .info-tile { background: transparent; }

.footer-main { padding-block: var(--section-y); }
.footer-grid { display: grid; gap: var(--gap); grid-template-columns: 1.5fr 1fr 1fr 1.2fr; }
@media (max-width: 1000px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-col h3 {
  font-size: var(--fs-h4);
  margin-bottom: 1.1rem; padding-bottom: .6rem;
  border-bottom: 1px solid var(--line);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { font-size: var(--fs-sm); color: var(--text-soft); transition: color var(--speed) var(--ease), padding-left var(--speed) var(--ease); }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-col p { font-size: var(--fs-sm); }

.footer-brand img { max-height: 54px; margin-bottom: 1.1rem; }

.social-row { display: flex; gap: .55rem; margin-top: 1.2rem; }
.social-row a {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  color: var(--text-soft);
  transition: background var(--speed) var(--ease), border-color var(--speed) var(--ease), color var(--speed) var(--ease);
}
.social-row a:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.social-row svg { width: 16px; height: 16px; fill: currentColor; }

.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .4rem; }
.insta-grid img { aspect-ratio: 1; object-fit: cover; border-radius: 4px; border: 1px solid var(--line-soft); }

.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.25rem; font-size: var(--fs-xs); }
.footer-bottom__inner { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between; }
.footer-bottom ul { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- 16. Floating actions ----------------------------- */
.to-top {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 300;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--speed) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 16px; height: 16px; fill: currentColor; }

.wa-float {
  position: fixed; right: 1.1rem; bottom: 4.4rem; z-index: 300;
  width: 46px; height: 46px; border-radius: 50%;
  background: #25d366; color: #062d16;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.wa-float svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- 17. Empty state ---------------------------------- */
.empty {
  text-align: center;
  padding: clamp(2.5rem, 2rem + 3vw, 4.5rem) 1rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-soft);
}

/* ---------- 18. Print ---------------------------------------- */
@media print {
  .site-header, .site-footer, .to-top, .wa-float, .hero__arrow, .hero__dots { display: none !important; }
  body { background: #fff; color: #000; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .8em; }
}

/* ---------- 19. Per-category enquiry (v1.1) ------------------ */
.sec-head--split {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; max-width: none;
}
.sec-head--split > div { max-width: 62ch; }
.sec-head--split h2 { margin-bottom: 0; }

.card__actions {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem;
}
.card__actions .card__link { margin-top: 0; }
.card__enquire {
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-xs);
  color: var(--text-soft);
  padding: .4rem .8rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: all var(--speed) var(--ease);
}
.card__enquire:hover, .card__enquire:focus-visible {
  background: var(--accent); border-color: var(--accent); color: var(--accent-ink);
}

.inline-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding: 1.6rem;
  background: var(--raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.inline-cta h3 { font-size: var(--fs-h4); margin-bottom: .25rem; }
.inline-cta p { font-size: var(--fs-sm); color: var(--text-soft); margin: 0; }

.ctx-flag {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  padding: .85rem 1.1rem; margin-bottom: 1.25rem;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--text);
}
.ctx-flag strong { color: var(--text-strong); }
.ctx-flag a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; margin-left: auto; }
