/* ==========================================================================
   CCBG INGERSOLL — styles.css
   A monochrome, editorial design system: the interface is black and white,
   and the food photographs supply the only colour.
   --------------------------------------------------------------------------
   01  Tokens
   02  Reset & base
   03  Utilities
   04  Bands (black / white theming)
   05  Typography
   06  Buttons
   07  Announcement bar
   08  Header & navigation
   09  Hero
   10  Section building blocks
   11  Homepage components
   12  Form primitives & secondary pages
   13  Footer
   14  Application form (apply.html)
   15  Available positions (positions.html)
   16  Photography
   17  Motion & reveal
   ========================================================================== */


/* ==========================================================================
   01  TOKENS
   ========================================================================== */

:root {
  /* Brand — the entire palette. */
  --black: #000000;
  --white: #ffffff;

  /* Type */
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", monospace;

  /* Layout */
  --wrap-max: 84rem;
  --gutter: clamp(1.25rem, 4.5vw, 4rem);
  --band-y: clamp(4.25rem, 9vw, 8.5rem);
  --header-h: 4.5rem;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur: 0.4s;
  --dur-slow: 0.7s;

  /* Default theme (dark) so unthemed chrome still renders correctly. */
  --bg: var(--black);
  --fg: var(--white);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.55);
  --rule-c: rgba(255, 255, 255, 0.18);
  --rule-strong: rgba(255, 255, 255, 0.36);
  --tint: rgba(255, 255, 255, 0.05);
}


/* ==========================================================================
   02  RESET & BASE
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body.is-nav-open { overflow: hidden; }

h1, h2, h3, h4, p, figure, dl, dd, fieldset { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
fieldset { border: 0; padding: 0; min-inline-size: 0; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

hr { border: 0; margin: 0; }

:focus-visible {
  outline: 2px solid var(--fg, currentColor);
  outline-offset: 3px;
}


/* ==========================================================================
   03  UTILITIES
   ========================================================================== */

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
  transform: translateY(-110%);
  background: var(--white);
  color: var(--black);
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.4rem;
}

.skip-link:focus-visible {
  transform: none;
  outline-color: var(--black);
}

.rule {
  height: 1px;
  background: var(--rule-c);
  margin-block: clamp(1.5rem, 3.5vw, 2.75rem);
}

/* Small status dot — a shape, never the only indicator: it always sits
   beside the literal status text. */
.dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}


/* ==========================================================================
   04  BANDS — alternating black and white sections
   ========================================================================== */

.band {
  background: var(--bg);
  color: var(--fg);
}

.band--dark {
  --bg: var(--black);
  --fg: var(--white);
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.55);
  --rule-c: rgba(255, 255, 255, 0.18);
  --rule-strong: rgba(255, 255, 255, 0.36);
  --tint: rgba(255, 255, 255, 0.05);
}

.band--light {
  --bg: var(--white);
  --fg: var(--black);
  --muted: rgba(0, 0, 0, 0.72);
  --faint: rgba(0, 0, 0, 0.58);
  --rule-c: rgba(0, 0, 0, 0.16);
  --rule-strong: rgba(0, 0, 0, 0.34);
  --tint: rgba(0, 0, 0, 0.04);
}

.section { padding-block: var(--band-y); }


/* ==========================================================================
   05  TYPOGRAPHY
   ========================================================================== */

.display {
  font-weight: 800;
  letter-spacing: -0.032em;
  line-height: 0.99;
  text-wrap: balance;
  overflow-wrap: break-word;
  font-size: clamp(2rem, 4.6vw, 3.9rem);
}

.display--xl { font-size: clamp(2.5rem, 7.8vw, 6.25rem); line-height: 0.94; }
.display--lg { font-size: clamp(2.25rem, 6.4vw, 5rem); line-height: 0.96; }
.display--sm { font-size: clamp(1.7rem, 3.4vw, 2.75rem); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.eyebrow--status { color: var(--fg); }

/* On a phone the opening-soon status is the one piece of hero metadata that
   should still read at a glance, so it gets a step up from the other
   eyebrows. Tracking tightens a little to keep the line from wrapping early. */
@media (max-width: 47.99em) {
  .eyebrow--status {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.16em;
  }

  .eyebrow--status .dot {
    width: 0.5rem;
    height: 0.5rem;
  }
}

/* Boxed section number — a quiet scoreboard reference. */
.idx {
  display: inline-block;
  padding: 0.25em 0.5em 0.2em;
  border: 1px solid var(--rule-strong);
  color: var(--fg);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.lede {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 42ch;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--rule-strong);
  padding: 0.5rem 0.85rem;
  color: var(--fg);
}


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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 3rem;
  padding: 0.9rem 1.6rem;
  border: 1px solid transparent;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  background: none;
  transition:
    background-color var(--dur) var(--ease),
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.btn--solid {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.btn--outline {
  color: var(--fg);
  border-color: var(--rule-strong);
}

.btn--sm { min-height: 2.75rem; padding: 0.65rem 1.1rem; font-size: 0.6875rem; }
.btn--lg { min-height: 3.5rem; padding: 1.1rem 2rem; }

.btn__arrow {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  transition: transform var(--dur) var(--ease);
}

@media (hover: hover) {
  .btn--solid:hover { background: transparent; color: var(--fg); }
  .btn--outline:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
  .btn:hover .btn__arrow { transform: translateX(0.3rem); }
}

.btn[disabled],
.btn[aria-busy="true"] {
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.btn-row--center { justify-content: center; }


/* ==========================================================================
   07  ANNOUNCEMENT BAR
   ========================================================================== */

.announce {
  --fg: var(--black);
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.announce__text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.7rem;
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding: 0.7rem var(--gutter);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
  text-align: center;
}

.announce__dot { opacity: 0.45; }


/* ==========================================================================
   08  HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  --fg: var(--white);
  --rule-c: rgba(255, 255, 255, 0.18);
  --rule-strong: rgba(255, 255, 255, 0.36);
  --muted: rgba(255, 255, 255, 0.72);
  --bg: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}

.site-header.is-stuck { border-bottom-color: var(--rule-c); }

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --- Brand ------------------------------------------------------------- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-right: auto;
  padding-block: 0.5rem;
  text-decoration: none;
}

.brand__logo {
  height: clamp(1rem, 2.4vw, 1.35rem);
  width: auto;
}

.brand__status {
  display: none;
  padding: 0.3rem 0.55rem 0.25rem;
  border: 1px solid var(--rule-strong);
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

@media (min-width: 30em) { .brand__status { display: inline-block; } }

/* --- Nav links --------------------------------------------------------- */

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav__link {
  position: relative;
  display: inline-block;
  padding-block: 0.5rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

@media (hover: hover) {
  .nav__link:hover { color: var(--fg); }
  .nav__link:hover::after { transform: scaleX(1); }
}

.nav__link[aria-current="page"],
.nav__link[data-active="true"] { color: var(--fg); }

.nav__link[aria-current="page"]::after,
.nav__link[data-active="true"]::after { transform: scaleX(1); }

/* While a homepage section is in view it, not "Home", carries the marker.
   The aria-current attribute stays put — this is presentation only. */
.nav[data-section-active] .nav__link[aria-current="page"] { color: var(--muted); }
.nav[data-section-active] .nav__link[aria-current="page"]::after { transform: scaleX(0); }

/* --- Header quick actions --------------------------------------------- */

.nav__actions { display: flex; gap: 0.6rem; }

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--rule-strong);
  color: var(--fg);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.header-call svg { width: 1.05rem; height: 1.05rem; }

@media (hover: hover) {
  .header-call:hover { background: var(--fg); color: var(--bg); }
}

/* --- Menu toggle ------------------------------------------------------- */

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--rule-strong);
  background: none;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle__bars {
  position: relative;
  display: block;
  width: 1rem;
  height: 0.6rem;
}

.menu-toggle__bars i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.menu-toggle__bars i:first-child { top: 0; }
.menu-toggle__bars i:last-child { bottom: 0; }

.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:first-child {
  transform: translateY(0.295rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bars i:last-child {
  transform: translateY(-0.295rem) rotate(-45deg);
}

/* --- Desktop / mobile switch ------------------------------------------ */

@media (min-width: 62em) {
  .menu-toggle,
  .header-call { display: none; }

  .nav {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }
}

@media (max-width: 61.99em) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    padding: 1.5rem var(--gutter) 2.5rem;
    background: var(--black);
    border-top: 1px solid var(--rule-c);
    border-bottom: 1px solid var(--rule-c);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition:
      opacity var(--dur) var(--ease),
      transform var(--dur) var(--ease),
      visibility 0s linear var(--dur);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition-delay: 0s;
  }

  /* Without JavaScript the panel is never toggled, so keep it inline. */
  html:not(.js) .nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: none;
    padding-inline: 0;
    border: 0;
  }

  html:not(.js) .menu-toggle { display: none; }

  .nav__list {
    display: block;
    border-top: 1px solid var(--rule-c);
  }

  .nav__list li { border-bottom: 1px solid var(--rule-c); }

  .nav__link {
    display: block;
    padding: 1.05rem 0;
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
  }

  .nav__link::after { display: none; }

  .nav[data-section-active] .nav__link[aria-current="page"]::before { display: none; }

  .nav__link[aria-current="page"]::before,
  .nav__link[data-active="true"]::before {
    content: "";
    display: inline-block;
    width: 1.25rem;
    height: 1px;
    margin-right: 0.75rem;
    vertical-align: middle;
    background: currentColor;
  }

  .nav__actions {
    margin-top: 1.5rem;
    flex-direction: column;
  }

  .nav__actions .btn { width: 100%; }
}


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

.hero { padding-block: clamp(2rem, 4.5vw, 3.25rem) clamp(3rem, 7vw, 5.5rem); }

.hero__meta,
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

/* The wordmark is the masthead. It is sized generously but capped so the
   headline stays in view; proportions are never altered. */
.hero__mark { margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem); }

.hero__mark img {
  width: min(100%, 50rem);
  height: auto;
}

.hero .rule { margin-block: clamp(1.25rem, 2.5vw, 2rem); }

.hero__body {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 60em) {
  .hero__body {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    align-items: end;
    gap: clamp(2rem, 5vw, 4.5rem);
  }
}

.hero__aside .lede { max-width: 40ch; }

/* Scoreboard-style summary strip. */
.ticker {
  display: grid;
  gap: 1px;
  background: var(--rule-c);
  border-block: 1px solid var(--rule-c);
}

.ticker li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  background: var(--bg);
  padding: 0.85rem 0;
}

.ticker__key {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

.ticker__val {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
}

.ticker__val a {
  display: inline-block;
  padding-block: 0.35rem;
  text-decoration: none;
}
.ticker__val a:hover { text-decoration: underline; text-underline-offset: 0.25em; }

@media (min-width: 48em) {
  .ticker {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ticker li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.25rem clamp(1rem, 2vw, 1.75rem);
  }

  .ticker li:first-child { padding-left: 0; }
  .ticker li:last-child { padding-right: 0; }
}


/* ==========================================================================
   10  SECTION BUILDING BLOCKS
   ========================================================================== */

.split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 60em) {
  .split {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(2.5rem, 6vw, 6rem);
  }

  .split__head {
    position: sticky;
    top: calc(var(--header-h) + 2.5rem);
    align-self: start;
  }
}

.split__head .display { margin-top: clamp(1rem, 2vw, 1.5rem); }

.split__intro {
  margin-top: 1.25rem;
  color: var(--muted);
  max-width: 38ch;
}

.split__body > p {
  color: var(--muted);
  max-width: 62ch;
}

.split__body > p + p { margin-top: 1.15rem; }

.split--head-only { align-items: start; }
.split--head-only .split__head { position: static; }

/* Inline links inside running copy. Padding also lifts them to the 24px
   minimum target size without disturbing how the sentence wraps. */
.split__body > p a,
.split__intro a,
.panel__copy a,
.faq__a a,
.form-doc__preamble p a,
.field__hint a,
.roles-foot__copy a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-block: 0.3rem;
  transition: border-color var(--dur) var(--ease);
}

@media (hover: hover) {
  .split__body > p a:hover,
  .split__intro a:hover,
  .panel__copy a:hover,
  .faq__a a:hover,
  .form-doc__preamble p a:hover,
  .field__hint a:hover,
  .roles-foot__copy a:hover { border-bottom-color: var(--fg); }
}

/* --- Three-column editorial panels ------------------------------------- */

.panels {
  display: grid;
  border-block: 1px solid var(--rule-c);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.panel {
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  transition: background-color var(--dur) var(--ease);
}

.panel + .panel { border-top: 1px solid var(--rule-c); }

.panel__idx {
  display: block;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--faint);
  margin-bottom: clamp(1.25rem, 3vw, 2.25rem);
}

.panel__label {
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 0.9rem;
}

.panel__label--sm { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

.panel__primary {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.panel__primary a {
  display: inline-block;
  padding-block: 0.2rem;
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 0.1em;
  transition: border-color var(--dur) var(--ease);
}

.panel__primary a:hover { border-bottom-color: var(--fg); }

.panel__copy {
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 40ch;
}

@media (min-width: 56em) {
  .panels { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .panel {
    padding: clamp(2rem, 3.5vw, 3.25rem) clamp(1.25rem, 2.5vw, 2.25rem);
  }

  .panel + .panel {
    border-top: 0;
    border-left: 1px solid var(--rule-c);
  }

  .panel:first-child { padding-left: 0; }
  .panel:last-child { padding-right: 0; }
}

@media (hover: hover) {
  .panel:hover { background: var(--tint); }
}

/* --- Status board ------------------------------------------------------ */

.board {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--rule-c);
  max-width: 34rem;
}

.board__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--rule-c);
}

.board dt {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}

.board dd {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg);
  text-align: right;
}

/* --- Open roles -------------------------------------------------------- */

.roles {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--rule-c);
  max-width: 34rem;
}

.role {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule-c);
}

.role__idx {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--faint);
}

.role__name {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* When a role links through to the positions page. */
a.role__name {
  display: inline-block;
  padding-block: 0.25rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease);
}

@media (hover: hover) {
  a.role__name:hover { border-bottom-color: currentColor; }
}

/* --- Address ----------------------------------------------------------- */

.address { font-style: normal; }

.address__link {
  display: block;
  text-decoration: none;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.address__line { display: block; }

@media (hover: hover) {
  .address__link:hover { text-decoration: underline; text-underline-offset: 0.14em; }
}

.address__phone {
  display: inline-block;
  margin-top: 1.25rem;
  padding-block: 0.3rem;
  font-family: var(--mono);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 0.15em;
  transition: border-color var(--dur) var(--ease);
}

.address__phone:hover { border-bottom-color: var(--fg); }

.split__body > .tag { margin-block: 1.75rem 1.25rem; }


/* ==========================================================================
   11  HOMEPAGE — FINAL CALL TO ACTION
   ========================================================================== */

.cta { padding-block: clamp(5rem, 11vw, 10rem); }

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta__mark {
  width: clamp(2.75rem, 5vw, 3.75rem);
  height: auto;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.cta .lede {
  margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 46ch;
}


/* ==========================================================================
   12  FORM PRIMITIVES & SECONDARY PAGES
   Field, label, error, notice and FAQ styles. The form primitives are
   shared — apply.html is the only page with a form.
   ========================================================================== */

.page-hero { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(3.5rem, 8vw, 6.5rem); }

.page-hero__body { display: grid; gap: clamp(1.5rem, 3vw, 2.5rem); }

@media (min-width: 60em) {
  .page-hero__body {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: end;
    gap: clamp(2rem, 5vw, 4.5rem);
  }
}

/* --- Notices ----------------------------------------------------------- */

.notice {
  border: 1px solid var(--rule-strong);
  border-left-width: 3px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.75rem;
  color: var(--muted);
  font-size: 0.9375rem;
}

.notice a { color: var(--fg); }

/* --- Form -------------------------------------------------------------- */

.form { max-width: 44rem; }

.form__legend {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--rule-c);
}

.field { margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem); }

.field__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.55rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
}

.req {
  padding: 0.15em 0.45em;
  border: 1px solid var(--rule-strong);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.field__input {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--rule-strong);
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.45;
  transition: border-color var(--dur) var(--ease);
}

.field__input:hover { border-color: var(--fg); }

.field__input:focus-visible {
  border-color: var(--fg);
  outline: 2px solid var(--fg);
  outline-offset: 2px;
}

.field__input--area {
  min-height: 9rem;
  resize: vertical;
}

/* Invalid state is signalled by a thick bar plus a written message —
   never by colour alone. */
.field__input[aria-invalid="true"] {
  border-color: var(--fg);
  border-left-width: 4px;
}

.field__hint {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--faint);
}

.field__error {
  margin-top: 0.6rem;
  padding-left: 0.7rem;
  border-left: 3px solid var(--fg);
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--fg);
}

.field__error[hidden] { display: none; }

/* Native select needs its own arrow once appearance is reset. */
.field__select { position: relative; }

.field__select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.75rem;
  cursor: pointer;
}

.field__chevron {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid var(--rule-c);
}

.form__privacy {
  font-size: 0.8125rem;
  color: var(--faint);
  max-width: 34ch;
}

.form__status {
  margin-top: 1.75rem;
  padding: 1.1rem 1.35rem;
  border: 1px solid var(--rule-strong);
  border-left-width: 4px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fg);
}

.form__status:empty { display: none; }

.form__status a { color: var(--fg); }

.form__status[data-state="success"] { border-left-width: 6px; }

/* --- FAQ --------------------------------------------------------------- */

.faq { border-bottom: 1px solid var(--rule-c); }

.faq__item { border-top: 1px solid var(--rule-c); }

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q:focus-visible { outline-offset: -2px; }

.faq__icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  color: var(--muted);
  transition: transform var(--dur) var(--ease);
}

.faq__item[open] .faq__icon { transform: rotate(45deg); }

.faq__a {
  padding-bottom: 1.5rem;
  color: var(--muted);
  max-width: 62ch;
}


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

.site-footer {
  border-top: 1px solid var(--rule-c);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2rem, 4vw, 3rem);
}

.footer__top {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3rem);
}

@media (min-width: 48em) {
  .footer__top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (min-width: 68em) {
  .footer__top {
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 4vw, 3.5rem);
  }

  .footer__brand { grid-column: auto; }
}

.footer__logo {
  width: clamp(9rem, 16vw, 12rem);
  height: auto;
}

.footer__tagline {
  margin-top: 1.25rem;
  max-width: 26ch;
  font-size: 0.9375rem;
  color: var(--muted);
}

.footer__title {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.1rem;
}

.footer__address,
.footer__links {
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer__address a,
.footer__links a {
  color: var(--muted);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.footer__address a:hover,
.footer__links a:hover {
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer__links a {
  display: inline-block;
  padding-block: 0.35rem;
}

.footer__phone {
  display: inline-block;
  margin-top: 0.85rem;
  padding-block: 0.3rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}

.social {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

/* 44 x 44 minimum tap target. */
.social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--rule-strong);
  color: var(--muted);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

@media (hover: hover) {
  .social__link:hover {
    background: var(--fg);
    border-color: var(--fg);
    color: var(--bg);
  }
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule-c);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}


/* ==========================================================================
   14  APPLICATION FORM (apply.html)
   A long paper-form recreation, kept legible with clear section rules,
   generous grouping, and the same monochrome controls as the rest of
   the site.
   ========================================================================== */

.page-hero__note {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  color: var(--faint);
  max-width: 44ch;
}

.page-hero__note a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  /* Padding lifts the tap target to the 24px minimum without inline-block,
     so the link still sits naturally inside the sentence. */
  padding-block: 0.3rem;
  white-space: nowrap;
}

.page-hero__note a:hover { border-bottom-color: var(--fg); }

.split__intro--wide { max-width: 62ch; }

/* --- Document shell ----------------------------------------------------- */

.form-doc { margin-top: clamp(2.5rem, 5vw, 4rem); }

@media (min-width: 40em) {
  .form-doc {
    border: 1px solid var(--rule-c);
    padding: clamp(2rem, 4vw, 3.5rem);
  }
}

.form-doc__preamble {
  padding-bottom: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--rule-c);
}

.form-doc__preamble p {
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 78ch;
}

.form-doc__preamble p + p { margin-top: 1rem; }

.form--application { max-width: none; }

/* Web3Forms honeypot — never shown, never announced, never focusable. */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Numbered form sections --------------------------------------------- */

.form-sec {
  padding-top: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--rule-c);
}

.form-sec:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.form-sec__title {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.form-sec__num {
  flex: 0 0 auto;
  padding: 0.25em 0.5em 0.2em;
  border: 1px solid var(--rule-strong);
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.form-sec__intro {
  margin: -0.5rem 0 clamp(1.5rem, 3vw, 2rem);
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 78ch;
}

/* --- Field grids -------------------------------------------------------- */

.grid {
  display: grid;
  gap: 0 clamp(1rem, 2vw, 1.5rem);
}

.grid--2 { grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); }

.field__input--sm { min-height: 5.5rem; }

/* Pre-filled, non-editable answers read as settled rather than empty. */
.field__input[readonly] {
  color: var(--muted);
  border-style: dashed;
  cursor: default;
}

.field__input[readonly]:hover { border-color: var(--rule-strong); }

/* --- Repeated blocks (jobs, references, schools) ------------------------- */

.block {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--rule-c);
}

.block__legend {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0 0.65rem;
  margin-left: -0.65rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
}

.block__tag {
  padding: 0.2em 0.5em;
  border: 1px solid var(--rule-strong);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.block .field:last-child,
.block .grid:last-child .field { margin-bottom: 0; }

.block .grid .field { margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem); }

/* --- Choice groups (radio / checkbox) ----------------------------------- */

.choice {
  padding: clamp(1.1rem, 2.2vw, 1.5rem);
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--rule-c);
}

.choice__legend {
  padding: 0 0.65rem;
  margin-left: -0.65rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg);
  max-width: 70ch;
}

.choice__legend .req { margin-left: 0.35rem; }

.choice__note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--faint);
  max-width: 60ch;
}

.choice__opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  margin-top: 0.9rem;
}

.choice__opts--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0.35rem 1rem;
}

.choice__opt {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.75rem;
  padding-right: 0.25rem;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.choice__opt--block {
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 70ch;
  padding-block: 0.5rem;
}

.choice__opt--block span { padding-top: 0.1rem; }

/* Monochrome controls: a ring that fills when selected. Shape distinguishes
   radio from checkbox; state is also exposed natively to assistive tech. */
.choice__opt input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
  border: 1px solid var(--rule-strong);
  background: transparent;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.choice__opt input[type="radio"] { border-radius: 50%; }

.choice__opt input:hover { border-color: var(--fg); }

.choice__opt input:checked {
  border-color: var(--fg);
  background: var(--fg);
  box-shadow: inset 0 0 0 4px var(--bg);
}

.choice__opt input:focus-visible {
  outline: 2px solid var(--fg);
  outline-offset: 3px;
}

.choice[aria-invalid="true"],
.choice.is-invalid { border-color: var(--fg); border-left-width: 4px; }

/* --- Conditional reveals ------------------------------------------------ */

.conditional[hidden] { display: none; }

/* --- Certification ------------------------------------------------------ */

.certify {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--rule-c);
  border-left-width: 3px;
}

.certify p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 78ch;
}

.certify p + p { margin-top: 1rem; }

.field--check { margin-bottom: clamp(1.5rem, 3vw, 2rem); }


/* ==========================================================================
   15  AVAILABLE POSITIONS (positions.html)
   Linked role cards and the three specification columns taken from the
   supplied hiring sheets.
   ========================================================================== */

.announce__link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  padding-block: 0.3rem;
  transition: border-color var(--dur) var(--ease);
}

.announce__link:hover { border-bottom-color: currentColor; }

/* --- Open role cards ---------------------------------------------------- */

.roles-block { margin-top: clamp(2.5rem, 5vw, 4rem); }

.roles-block__title {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.roles-grid {
  display: grid;
  border-top: 1px solid var(--rule-c);
}

.role-card {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
  padding: clamp(1.1rem, 2.2vw, 1.5rem) 0;
  border-bottom: 1px solid var(--rule-c);
  text-decoration: none;
  color: var(--fg);
  transition: background-color var(--dur) var(--ease), padding-inline var(--dur) var(--ease);
}

.role-card__idx {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: var(--faint);
  transition: color var(--dur) var(--ease);
}

.role-card__name {
  flex: 1 1 auto;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.role-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--dur) var(--ease);
}

.role-card__arrow {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform var(--dur) var(--ease);
}

@media (hover: hover) {
  .role-card:hover {
    background: var(--fg);
    color: var(--bg);
    padding-inline: clamp(0.75rem, 1.5vw, 1.25rem);
  }

  .role-card:hover .role-card__idx,
  .role-card:hover .role-card__cta { color: var(--bg); }

  .role-card:hover .role-card__arrow { transform: translateX(0.3rem); }
}

.role-card:focus-visible { outline-offset: -3px; }

/* --- Specification columns ---------------------------------------------- */

.spec-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

@media (min-width: 58em) {
  .spec-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.spec__title {
  padding-bottom: 0.9rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule-strong);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg);
}

.spec__list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* A hairline dash instead of a bullet glyph — quieter, and it lines up. */
.spec__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 0.7rem;
  height: 1px;
  background: var(--rule-strong);
}

.spec__list li:last-child { margin-bottom: 0; }

/* --- Section footer ------------------------------------------------------ */

.roles-foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
  border-top: 1px solid var(--rule-c);
}

.roles-foot__copy {
  color: var(--muted);
  max-width: 62ch;
}

.roles-foot .btn-row { margin-top: clamp(1.25rem, 2.5vw, 1.75rem); }

/* --- Board links (How to Apply) ------------------------------------------ */

.board dd a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid var(--rule-strong);
  padding-block: 0.3rem;
  transition: border-color var(--dur) var(--ease);
}

.board dd a:hover { border-bottom-color: var(--fg); }


/* ==========================================================================
   16  PHOTOGRAPHY
   The food photographs are the only colour on the site. Everything framing
   them — captions, rules, hover states — stays black and white, so the
   plates carry the colour and the interface stays quiet.
   --------------------------------------------------------------------------
   MONOCHROME TOGGLE — uncomment the rule below to render every photograph
   in black and white instead. Nothing else needs to change. See README §13.

   .dish__img { filter: grayscale(1); }
   ========================================================================== */

.dishes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 15rem), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

.dish__figure { margin: 0; }

.kitchen-shots { margin-top: clamp(2.5rem, 5vw, 4rem); }

.dishes--trio { margin-top: 1.25rem; }

/* The frame clips the hover zoom and carries the hairline. */
.dish__frame {
  overflow: hidden;
  border: 1px solid var(--rule-c);
  background: var(--tint);
}

.dish__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

@media (hover: hover) {
  .dish:hover .dish__img { transform: scale(1.04); }
}

.dish__caption {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 0.85rem;
}

.dish__idx {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--faint);
}

.dish__name {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1.4;
}

/* ==========================================================================
   17  MOTION & REVEAL
   ========================================================================== */

/* Content is only ever hidden when JavaScript is available to reveal it. */
.js .reveal {
  opacity: 0;
  transform: translateY(0.9rem);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================================
   PRINT
   ========================================================================== */

@media print {
  .site-header,
  .announce,
  .menu-toggle,
  .btn-row { display: none; }

  body { background: #fff; color: #000; }
  .band { background: #fff !important; color: #000 !important; }
}
