/* ============================================================
   TUSKER SKO 2027 — Design system cloned from tuskerco.com
   Tokens sourced from the live Webflow build + Brand Guidelines v1.2
   ============================================================ */

/* ---------- Fonts (self-hosted, same files as tuskerco.com) ---------- */
@font-face { font-family: 'Canela Text'; src: url('../assets/fonts/CanelaText-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Canela Text'; src: url('../assets/fonts/CanelaText-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Canela Text'; src: url('../assets/fonts/CanelaText-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Canela Text'; src: url('../assets/fonts/CanelaText-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Canela Text'; src: url('../assets/fonts/CanelaText-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Canela Text'; src: url('../assets/fonts/CanelaText-BoldItalic.woff2') format('woff2'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'Sohne Breit'; src: url('../assets/fonts/SohneBreit-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sohne Breit'; src: url('../assets/fonts/SohneBreit-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Sohne Breit'; src: url('../assets/fonts/SohneBreit-MediumItalic.woff2') format('woff2'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'Sohne Breit'; src: url('../assets/fonts/SohneBreit-SemiBoldItalic.woff2') format('woff2'); font-weight: 600; font-style: italic; font-display: swap; }

/* ---------- Tokens (exact swatch values from tuskerco.com CSS) ---------- */
:root {
  --black: #212121;
  --white: #ffffff;
  --cream: #f7f2db;
  --bone: #eeeae4;
  --bone-2: #e3dbd1;
  --grey: #616161;
  --green-dark: #4d6e59;
  --green-light: #7b9283;
  --red-dark: #6b1c38;
  --red-light: #8c556a;
  --yellow-dark: #f2c966;
  --yellow-light: #f6dfa7;
  --dark-o10: color-mix(in srgb, var(--black) 20%, transparent);
  --dark-o50: color-mix(in srgb, var(--black) 50%, transparent);
  --light-o10: color-mix(in srgb, var(--white) 10%, transparent);
  --light-o50: color-mix(in srgb, var(--white) 50%, transparent);

  --font-serif: 'Canela Text', Georgia, serif;
  --font-sans: 'Sohne Breit', Arial, sans-serif;

  --size-display: clamp(3.25rem, 6.5vw, 5.25rem);
  --size-h1: clamp(2.75rem, 5.5vw, 4.5rem);
  --size-h2: clamp(2.375rem, 4.6vw, 4rem);
  --size-h3: clamp(1.875rem, 3.6vw, 3.375rem);
  --size-h4: clamp(1.5rem, 2.4vw, 2.25rem);
  --size-h5: 1.5rem;
  --size-large: 1.25rem;
  --size-main: 1rem;
  --size-small: .875rem;
  --size-tiny: .75rem;

  --radius-tiny: .5rem;
  --radius-small: 1.5rem;
  --radius-medium: 3rem;
  --radius-xlarge: 7.5rem;
  --radius-huge: 11.25rem;
  --radius-round: 100vw;

  --site-width: 90rem;
  --site-margin: clamp(1.25rem, 3.5vw, 3rem);
  --section-space: clamp(4.5rem, 9vw, 7.5rem);
  --section-space-small: clamp(3rem, 6vw, 5rem);
  --pill-clearance: 4.2rem; /* floating nav pill + its top padding; heroes tuck under it */

  --ease-site: cubic-bezier(.32, .72, 0, 1);

  --theme-bg: var(--white);
  --theme-text: var(--black);
}

::selection { background: var(--red-dark); color: var(--white); }

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  font-size: var(--size-main);
  line-height: 1.5;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

body > svg[aria-hidden="true"] { position: absolute; } /* clip-path defs; kill the inline line box */

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-wrap: balance;
}

h1 { font-size: var(--size-h1); }
h2 { font-size: var(--size-h2); }
h3 { font-size: var(--size-h3); }
h4 { font-size: var(--size-h4); }
h5 { font-family: var(--font-sans); font-weight: 400; font-size: var(--size-h5); line-height: 1.2; }

p { max-width: 65ch; }

a { color: inherit; }

.u-container {
  max-width: var(--site-width);
  margin-inline: auto;
  padding-inline: var(--site-margin);
}

.u-theme-dark {
  --theme-bg: var(--black);
  --theme-text: var(--white);
  background: var(--black);
  color: var(--white);
}

.u-theme-cream { background: var(--cream); }
.u-theme-bone { background: var(--bone); }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  font-size: var(--size-small);
  letter-spacing: .02em;
  color: var(--red-dark);
}

.u-theme-dark .eyebrow { color: var(--yellow-dark); }

.lead-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.4;
}

.text-large { font-size: var(--size-large); }
.text-small { font-size: var(--size-small); }
.text-grey { color: var(--grey); }
.u-theme-dark .text-grey { color: color-mix(in srgb, var(--white) 62%, transparent); }

.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

/* ---------- Buttons (cloned from .btn_main_wrap) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border: 1px solid var(--red-dark);
  border-radius: var(--radius-round);
  background: var(--red-dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--size-main);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background .5s var(--ease-site), border-color .5s var(--ease-site), transform .5s var(--ease-site);
}

.btn:hover { background: linear-gradient(135deg, var(--red-light), var(--red-dark)); transform: translateY(-1px); }
.btn:active { transform: scale(.98); }
.btn:focus-visible { outline: 2px solid var(--red-dark); outline-offset: 3px; }

.btn--light { background: var(--white); border-color: var(--white); color: var(--black); }
.btn--light:hover { background: linear-gradient(135deg, var(--bone), var(--white)); }
.btn--light:focus-visible { outline-color: var(--white); }

.btn--outline { background: transparent; border-color: currentColor; color: inherit; }
.btn--outline:hover { background: var(--light-o10); }

.btn-text {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  font-family: var(--font-sans);
  font-size: var(--size-main);
  color: inherit;
  text-decoration: underline;
  text-underline-offset: .35em;
  text-decoration-thickness: 1px;
  transition: text-decoration-color .4s var(--ease-site), opacity .4s var(--ease-site);
}

.btn-text:hover { text-decoration-color: transparent; opacity: .75; }

.btn-text .arrow { font-family: var(--font-serif); }

/* ---------- Announcement banner (serif, like tuskerco.com) ---------- */
.banner {
  background: var(--red-dark);
  color: var(--white);
  text-align: center;
  padding: .6rem var(--site-margin);
  font-family: var(--font-serif);
  font-size: .9375rem;
}

.banner em { font-style: italic; font-weight: 500; }

/* ---------- Sticky top: fixed banner + floating pill nav ---------- */
.site-top {
  position: sticky;
  top: 0;
  z-index: 40;
  pointer-events: none; /* only the banner and the pill catch clicks */
}

.site-top .banner { pointer-events: auto; }

.site-header { padding-top: .75rem; color: var(--white); }

.site-header__inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  background: var(--black);
  border-radius: var(--radius-round);
  padding: .55rem .6rem .55rem 1.6rem;
}

.site-header__brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.site-header__brand img { height: 1.15rem; width: auto; }
.site-header__brand .brand-suffix {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .04em;
  color: var(--yellow-dark);
  border-left: 1px solid var(--light-o10);
  padding-left: .8rem;
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 1.6rem; }

.site-nav a:not(.btn) {
  font-family: var(--font-sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .88;
  transition: opacity .4s var(--ease-site);
  white-space: nowrap;
}

.site-nav a:not(.btn):hover, .site-nav a[aria-current="page"] { opacity: 1; }

.site-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: .55em;
  text-decoration-color: var(--yellow-dark);
}

.site-nav .btn { padding: .6rem 1.45rem; font-size: var(--size-small); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: var(--size-small);
  cursor: pointer;
  align-items: center;
  gap: .6rem;
}

.nav-toggle .bars { display: inline-flex; flex-direction: column; gap: 5px; width: 22px; }
.nav-toggle .bars span { height: 1.5px; background: currentColor; transition: transform .45s var(--ease-site), opacity .3s; }
.nav-toggle[aria-expanded="true"] .bars span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

@media (max-width: 64em) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1; /* paints below the header bar so the Menu toggle stays clickable */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-h, 4rem) + 2rem) var(--site-margin) 3rem;
    background: var(--black);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s var(--ease-site), transform .45s var(--ease-site), visibility 0s .45s;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; transition-delay: 0s; }
  .site-nav a:not(.btn) {
    font-size: var(--size-h4);
    font-family: var(--font-sans);
    padding-block: .85rem;
    width: 100%;
    border-bottom: 1px solid var(--light-o10);
    opacity: 0;
    transform: translateY(14px);
  }
  .site-nav.is-open a:not(.btn) {
    opacity: .9;
    transform: translateY(0);
    transition: opacity .5s var(--ease-site), transform .5s var(--ease-site);
    transition-delay: calc(var(--i, 0) * 55ms + 80ms);
  }
  .site-nav .btn { margin-top: 2rem; padding: .85rem 2rem; font-size: var(--size-main); opacity: 0; }
  .site-nav.is-open .btn { opacity: 1; transition: opacity .5s var(--ease-site) .5s; }
  body.nav-locked { overflow: hidden; }
}

/* ---------- Hero (cloned: dark full-height wrap, huge bottom-left radius, tusk lens) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-bottom-left-radius: clamp(3.5rem, 10vw, var(--radius-huge));
  /* bottom-right stays pointed — matches the live site's hero */
  margin-top: calc(var(--pill-clearance) * -1); /* extend up behind the floating pill */
  display: flex;
  flex-direction: column;
  min-height: min(calc(100svh - 2.7rem), 56rem);
}

/* center the headline group between the nav and the facts strip */
.hero > .u-container:not(.hero__foot):not(.arcade-corridor) {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--pill-clearance);
}

.hero--short { min-height: 58svh; }

.hero__lens {
  position: absolute;
  top: 50%;
  right: max(-4rem, -3vw);
  transform: translateY(-50%);
  width: clamp(20rem, 46vw, 49rem);
  aspect-ratio: 903 / 994;
  clip-path: url(#tusk-mask);
  pointer-events: none;
}

.hero--short .hero__lens { width: clamp(15rem, 30vw, 30rem); }

/* inside the hero's flex column, auto margins would shrink-wrap and center
   the container — force full width so content hugs the left margin */
.hero .u-container { width: 100%; }

.hero__lens img { width: 100%; height: 100%; object-fit: cover; }

.hero__lens::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, color-mix(in srgb, var(--red-dark) 42%, transparent), transparent 55%);
  mix-blend-mode: multiply;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  max-width: 64rem;
}

/* headline fills the left side, like the live site's hero */
.hero h1 {
  font-size: clamp(3rem, 5.3vw, 5.25rem);
  line-height: 1.03;
  letter-spacing: -.015em;
  max-width: 12ch;
}

.hero--short h1 { font-size: clamp(2.625rem, 4.8vw, 4.25rem); }

.hero .lead-italic {
  font-size: clamp(1.25rem, 1.75vw, 1.5rem);
  max-width: 38ch;
}

.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: .75rem; }

/* fact strip pinned to the hero's bottom edge — fills the tall hero with key details */
.hero__foot {
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 2; /* reads above the giant dotted brandmark */
  /* soft scrim so the game-board dots fade behind the text */
  background: linear-gradient(180deg, transparent 0, color-mix(in srgb, var(--black) 92%, transparent) 2.25rem, color-mix(in srgb, var(--black) 92%, transparent) 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--light-o10);
  padding-top: 1.75rem;
  padding-bottom: 2.25rem;
}

.hero-fact__label {
  font-family: var(--font-sans);
  font-size: var(--size-tiny);
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .55;
  margin-bottom: .5rem;
}

.hero-fact__value {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.35;
}

@media (max-width: 48em) {
  .hero__foot { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 48em) {
  .hero { min-height: 88svh; }
  .hero__lens { opacity: .3; width: 19rem; right: -7rem; top: auto; bottom: -4rem; transform: none; }
}

/* ---------- Level Up arcade hero ---------- */

/* the tusk brandmark drawn as a pac-dot outline, with pac-man running it */
/* standalone dotted brandmark: mobile fallback only — on desktop the
   patrol route draws the mark as part of the border */
.tusk-arcade {
  display: none;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  aspect-ratio: 903 / 1044;
}

.tusk-arcade svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* pac-man's patrol route around the hero's own outline */
.hero-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.dot-field circle {
  fill: var(--cream);
  fill-opacity: .85;
  transition: opacity .18s ease;
}

.hero-frame svg { width: 100%; height: 100%; display: block; overflow: visible; }

.tusk-pop {
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: .04em;
}

@media (max-width: 70em) {
  .tusk-arcade {
    display: block;
    opacity: .55;
    width: 19rem;
    right: -4rem;
    top: auto;
    bottom: -1rem;
    transform: none;
  }
  .hero-frame { display: none; } /* the patrol route needs room; smaller screens keep the static mark */
}

@media (prefers-reduced-motion: reduce) {
  .hero-frame .tusk-pac, .hero-frame .tusk-ghost, .hero-frame .frame-pellet, .hero-frame text { display: none; }
}
.hero__arcade-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.hero__arcade-bg span {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--cream) 8%, transparent);
}

.hero__arcade-bg span:nth-child(2) { margin-left: -8vw; }
.hero__arcade-bg span:nth-child(3) { margin-left: 5vw; }
.hero__arcade-bg span:nth-child(4) { margin-left: -14vw; }

/* retro gold headline with a maroon rim and hard offset shadow, like the save-the-date art */
.hero h1.levelup {
  font-size: clamp(3.25rem, 6.2vw, 6.5rem);
  color: var(--yellow-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--red-light) 65%, transparent);
  text-shadow: .05em .055em 0 rgba(0, 0, 0, .55);
}

/* the up-arrow glyph from the poster lockup */
.lvl-arrow {
  display: inline-block;
  width: .58em;
  height: .74em;
  margin-right: .16em;
  transform: translateY(.04em);
  background: var(--yellow-dark);
  clip-path: polygon(50% 0, 100% 42%, 71% 42%, 71% 100%, 29% 100%, 29% 42%, 0 42%);
  filter: drop-shadow(.05em .055em 0 rgba(0, 0, 0, .55));
}

/* ---------- Pac-Man corridor: chomp across the hero, hit the pellet, level up ---------- */
.arcade-corridor {
  position: relative;
  z-index: 1;
  height: 3.25rem;
  margin-bottom: .5rem;
}

.corridor-track {
  position: absolute;
  inset: 0 var(--site-margin);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 4.5rem; /* room for the pellet + pop */
}

.corridor-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--cream);
  opacity: .85;
  transition: opacity .25s var(--ease-site), transform .25s var(--ease-site);
}

.corridor-dot.eaten { opacity: 0; transform: scale(.2); }

.power-pellet {
  position: absolute;
  right: calc(var(--site-margin) + .75rem);
  top: 50%;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: -.575rem;
  border-radius: 50%;
  background: var(--yellow-dark);
  animation: pellet-pulse 1s ease-in-out infinite alternate;
  transition: opacity .3s var(--ease-site), transform .3s var(--ease-site);
}

.power-pellet.eaten { opacity: 0; transform: scale(2.2); animation: none; }

@keyframes pellet-pulse { from { transform: scale(.82); } to { transform: scale(1.12); } }

.levelup-pop {
  position: absolute;
  right: var(--site-margin);
  top: -1.4rem;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: .8125rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, .5);
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
}

.levelup-pop.show { animation: pop-up .9s var(--ease-site); }

@keyframes pop-up {
  0% { opacity: 0; transform: translateY(.75rem) scale(.6); }
  25% { opacity: 1; transform: translateY(0) scale(1.1); }
  70% { opacity: 1; transform: translateY(-.25rem) scale(1); }
  100% { opacity: 0; transform: translateY(-1rem) scale(1); }
}

.pac {
  position: absolute;
  left: var(--site-margin);
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -1.25rem;
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, .4));
  will-change: transform;
}

.pac i {
  position: absolute;
  inset: 0;
  background: var(--yellow-dark);
  border-radius: 50%;
}

.pac i:first-child { clip-path: inset(0 0 50% 0); animation: chomp-top .3s ease-in-out infinite alternate; }
.pac i:last-child { clip-path: inset(50% 0 0 0); animation: chomp-bottom .3s ease-in-out infinite alternate; }

@keyframes chomp-top { to { transform: rotate(-30deg); } }
@keyframes chomp-bottom { to { transform: rotate(30deg); } }

/* the tusks light up when the pellet lands */
.hero__lens img { transition: filter .35s var(--ease-site); }
.hero__lens.flash img { filter: brightness(1.7) saturate(1.2); }

@media (max-width: 48em) {
  .corridor-track { padding-right: 3.5rem; }
  .corridor-dot:nth-child(2n) { display: none; } /* fewer dots on small screens */
}

@media (prefers-reduced-motion: reduce) {
  .pac i, .power-pellet { animation: none; }
}

/* ---------- Hero variant: light + centered + tusk watermark (about-page style) ---------- */
.hero-light {
  position: relative;
  overflow: hidden;
  background: var(--white);
  text-align: center;
  margin-top: calc(var(--pill-clearance) * -1);
  padding-top: calc(var(--pill-clearance) + clamp(3.5rem, 8vh, 6rem));
  padding-bottom: clamp(3.5rem, 8vh, 6rem);
}

.hero-light__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(22rem, 44vw, 42rem);
  opacity: .05;
  pointer-events: none;
}

.hero-light__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  max-width: 54rem;
  margin-inline: auto;
}

.hero-light h1 { font-size: clamp(2.75rem, 5vw, 4.5rem); letter-spacing: -.015em; }
.hero-light .lead-italic { color: var(--grey); max-width: 46ch; }

/* ---------- Hero variant: full-bleed photo + card (service-page style) ---------- */
.hero-photo {
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--pill-clearance) * -1);
  min-height: clamp(32rem, 88svh, 50rem);
  display: flex;
  align-items: center;
}

.hero-photo__bg { position: absolute; inset: 0; }
.hero-photo__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo__bg::after { content: ""; position: absolute; inset: 0; background: color-mix(in srgb, var(--black) 18%, transparent); }

.hero-photo .u-container { width: 100%; position: relative; z-index: 1; }

.hero-photo__card {
  background: var(--white);
  border-radius: 0 clamp(2.5rem, 5vw, 4rem); /* pointed + curved */
  padding: clamp(2.25rem, 4.5vw, 3.75rem);
  max-width: 36rem;
  margin-top: var(--pill-clearance);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero-photo__card h1 { font-size: clamp(2.375rem, 4vw, 3.5rem); letter-spacing: -.015em; }
.hero-photo__card .lead-italic { color: var(--grey); font-size: 1.1875rem; }

.hero-photo--center { justify-content: center; }
.hero-photo--center .u-container { display: flex; justify-content: center; }
.hero-photo--center .hero-photo__card {
  background: color-mix(in srgb, var(--white) 78%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  text-align: center;
  max-width: 40rem;
}

@media (max-width: 48em) {
  .hero-photo { min-height: 70svh; }
}

/* ---------- Plain page head (contact-page style, no hero) ---------- */
.page-head { padding-top: clamp(3.5rem, 8vh, 6rem); padding-bottom: clamp(2.5rem, 5vh, 4rem); }
.page-head h1 { font-size: var(--size-h2); letter-spacing: -.015em; max-width: 18ch; }
.page-head .lead-italic { color: var(--grey); margin-top: 1.5rem; max-width: 46ch; }

/* ---------- Sections ---------- */
.section { padding-block: var(--section-space); }
.section--small { padding-block: var(--section-space-small); }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--split {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ---------- Cutout photo shapes (tusker corner language) ---------- */
.photo-cut {
  position: relative;
  overflow: hidden;
  background: var(--bone-2);
  --cut-soft: clamp(4.5rem, 11vw, 10rem); /* curved diagonal pair */
}

.photo-cut img { width: 100%; height: 100%; object-fit: cover; }

/* tuskerco shape rule: one curved diagonal pair, one pointed diagonal pair */
.photo-cut--bl { border-radius: 0 var(--cut-soft); } /* TR + BL curved, TL + BR pointed */
.photo-cut--tr { border-radius: var(--cut-soft) 0; } /* TL + BR curved, TR + BL pointed */

.media-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.media-split .photo-cut { aspect-ratio: 10 / 9; }

@media (max-width: 48em) {
  .media-split { grid-template-columns: 1fr; }
  .media-split .photo-cut { aspect-ratio: 4 / 3; }
}

/* ---------- Split layout (overview) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

@media (max-width: 48em) { .split { grid-template-columns: 1fr; } }

/* ---------- Detail list (key details) ---------- */
.detail-list { border-top: 1px solid var(--dark-o10); }
.u-theme-dark .detail-list { border-color: var(--light-o10); }

.detail-list__row {
  display: grid;
  grid-template-columns: minmax(9rem, 16rem) 1fr;
  gap: 1rem 2.5rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid var(--dark-o10);
}

.u-theme-dark .detail-list__row { border-color: var(--light-o10); }

.detail-list__label { font-family: var(--font-sans); font-size: var(--size-small); }
.detail-list__value { font-size: var(--size-large); line-height: 1.45; }
.detail-list__value small { display: block; font-size: var(--size-small); color: var(--grey); margin-top: .3rem; }

@media (max-width: 40em) { .detail-list__row { grid-template-columns: 1fr; gap: .35rem; } }

/* ---------- Stats strip (cloned from home stats) ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
}

.stat__number {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  line-height: 1;
}

.stat__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: var(--size-h5);
  margin: .85rem 0 .5rem;
}

@media (max-width: 48em) { .stats { grid-template-columns: 1fr; } }

/* ---------- Quick links ---------- */
.quicklinks { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }

.quicklink {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.5rem;
  padding: 2rem;
  background: var(--bone);
  border-radius: 0 clamp(2.5rem, 5vw, 4rem);
  text-decoration: none;
  transition: transform .6s var(--ease-site), box-shadow .6s var(--ease-site), background .6s var(--ease-site);
}

.quicklink:nth-child(1), .quicklink:nth-child(2) { grid-column: span 6; }

.quicklink:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -28px color-mix(in srgb, var(--black) 28%, transparent); background: var(--bone-2); }
.quicklink:active { transform: translateY(-2px) scale(.995); }

.quicklink h3 { font-size: var(--size-h4); }
.quicklink p { font-size: var(--size-main); color: var(--grey); margin-top: .6rem; }

.quicklink__cta { font-family: var(--font-sans); font-size: var(--size-small); display: inline-flex; gap: .5rem; align-items: baseline; }

@media (max-width: 64em) { .quicklink, .quicklink:nth-child(-n+2) { grid-column: span 6; } }
@media (max-width: 40em) { .quicklink, .quicklink:nth-child(-n+2) { grid-column: span 12; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  border-radius: 0 clamp(3.5rem, 8vw, 6.5rem);
  padding: clamp(3rem, 7vw, 6rem);
}

.cta-band__mark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(14rem, 30vw, 26rem);
  opacity: .14;
  pointer-events: none;
}

.cta-band__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; max-width: 42rem; }

.cta-band .eyebrow { color: var(--yellow-dark); }
.cta-band .text-grey { color: color-mix(in srgb, var(--white) 62%, transparent); }

/* ---------- Agenda ---------- */
.day-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem; }

.day-tab {
  padding: .6rem 1.4rem;
  border: 1px solid var(--dark-o10);
  border-radius: var(--radius-round);
  background: transparent;
  font-family: var(--font-sans);
  font-size: var(--size-small);
  color: var(--black);
  cursor: pointer;
  transition: background .45s var(--ease-site), border-color .45s var(--ease-site), color .45s var(--ease-site);
}

.day-tab:hover { border-color: var(--black); }
.day-tab[aria-selected="true"] { background: var(--black); border-color: var(--black); color: var(--white); }
.day-tab:focus-visible { outline: 2px solid var(--red-dark); outline-offset: 3px; }

.day-tab em { font-family: var(--font-serif); font-style: italic; }

.agenda-day[hidden] { display: none; }

.agenda-row {
  display: grid;
  grid-template-columns: minmax(7.5rem, 11rem) 1fr minmax(9rem, 14rem);
  gap: 1rem 2.5rem;
  padding-block: 1.4rem;
  border-bottom: 1px solid var(--dark-o10);
  align-items: baseline;
}

.agenda-row:first-child { border-top: 1px solid var(--dark-o10); }

.agenda-row__time { font-family: var(--font-sans); font-size: var(--size-small); }
.agenda-row__session { font-size: var(--size-large); }
.agenda-row__session small { display: block; font-size: var(--size-small); color: var(--grey); margin-top: .25rem; max-width: 52ch; }
.agenda-row__location { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--grey); }

@media (max-width: 48em) {
  .agenda-row { grid-template-columns: 1fr; gap: .3rem; }
  .agenda-row__location { font-size: var(--size-small); }
}

/* ---------- Breakout cards ---------- */
.breakouts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.breakout {
  background: var(--bone);
  /* big curved diagonal pair + fully pointed diagonal pair */
  border-radius: 0 clamp(2.5rem, 5vw, 4rem);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .6s var(--ease-site), box-shadow .6s var(--ease-site);
}

.breakout:hover { transform: translateY(-3px); box-shadow: 0 24px 44px -30px color-mix(in srgb, var(--black) 25%, transparent); }

.breakout__meta { display: flex; flex-wrap: wrap; gap: .4rem; }

.tag {
  font-family: var(--font-sans);
  font-size: var(--size-tiny);
  padding: .3rem .8rem;
  border-radius: var(--radius-round);
  background: var(--bone-2);
  color: var(--black);
}

.tag--accent { background: color-mix(in srgb, var(--green-dark) 14%, var(--bone)); color: var(--green-dark); }

.breakout h3 { font-size: var(--size-h5); line-height: 1.25; }
.breakout p { color: var(--grey); font-size: var(--size-main); }

.breakout__speaker { font-family: var(--font-serif); font-style: italic; font-weight: 500; margin-top: auto; }
.breakout__logistics { font-family: var(--font-sans); font-size: var(--size-tiny); color: var(--grey); letter-spacing: .01em; }

@media (max-width: 48em) { .breakouts { grid-template-columns: 1fr; } }

/* ---------- Sponsor packages ---------- */
.packages { border-top: 1px solid var(--dark-o10); }

.package {
  display: grid;
  grid-template-columns: minmax(11rem, 20rem) minmax(7rem, 11rem) 1fr;
  gap: 1rem 2.5rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--dark-o10);
  align-items: baseline;
}

.package__name { font-family: var(--font-sans); font-size: var(--size-h5); line-height: 1.2; }
.package__price { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--grey); }
.package__includes { color: var(--grey); font-size: var(--size-main); max-width: 58ch; }

@media (max-width: 48em) { .package { grid-template-columns: 1fr; gap: .4rem; } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 6vw, 6rem); }

.faq {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--dark-o10);
}

.faq__number { font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--red-dark); font-size: var(--size-large); }
.faq h3 { font-size: var(--size-h5); line-height: 1.25; margin-bottom: .75rem; }
.faq p { color: var(--grey); }
.faq a { color: var(--red-dark); text-underline-offset: .25em; }

@media (max-width: 48em) { .faq-list { grid-template-columns: 1fr; } }

/* ---------- Forms (cloned underline style from tuskerco footer) ---------- */
.form-panel { max-width: 52rem; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.25rem 2.5rem; }
.form-grid .field--full { grid-column: 1 / -1; }

@media (max-width: 40em) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: .5rem; }

.field label {
  font-family: var(--font-sans);
  font-size: var(--size-small);
}

.field .optional { color: var(--grey); font-family: var(--font-serif); font-style: italic; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="url"],
.field input[type="number"],
.field input[type="file"],
.field select,
.field textarea {
  font-family: var(--font-serif);
  font-size: var(--size-large);
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #8c8c8c;
  border-radius: 0;
  padding: .35rem 0 .55rem;
  outline: 0;
  transition: border-color .4s var(--ease-site);
  width: 100%;
}

.field textarea { border: 1px solid #8c8c8c; padding: .75rem; min-height: 6.5rem; resize: vertical; }

.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-color: var(--red-dark); }

.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--grey) 50%), linear-gradient(135deg, var(--grey) 50%, transparent 50%); background-position: calc(100% - 14px) 55%, calc(100% - 9px) 55%; background-size: 5px 5px; background-repeat: no-repeat; cursor: pointer; }

.field .error-msg { display: none; font-family: var(--font-sans); font-size: var(--size-tiny); color: var(--red-dark); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red-dark); }
.field.has-error .error-msg { display: block; }

.choice-row { display: flex; flex-wrap: wrap; gap: .5rem; }

.choice {
  position: relative;
  font-family: var(--font-sans);
  font-size: var(--size-small);
  cursor: pointer;
}

.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }

.choice span {
  display: inline-block;
  padding: .55rem 1.2rem;
  border: 1px solid var(--dark-o10);
  border-radius: var(--radius-round);
  transition: background .4s var(--ease-site), border-color .4s var(--ease-site), color .4s var(--ease-site);
}

.choice:hover span { border-color: var(--black); }
.choice input:checked + span { background: var(--black); border-color: var(--black); color: var(--white); }
.choice input:focus-visible + span { outline: 2px solid var(--red-dark); outline-offset: 2px; }

.form-actions { margin-top: 2.75rem; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.form-note { font-size: var(--size-small); color: var(--grey); font-style: italic; }

.form-success {
  display: none;
  background: var(--cream);
  border-left: 3px solid var(--green-dark);
  border-radius: 0 var(--radius-small); /* pointed + curved, like every other card */
  padding: 2rem 2.25rem;
}

.form-success h3 { font-size: var(--size-h5); margin-bottom: .6rem; }
.form-success p { color: var(--grey); }

form.is-submitted { display: none; }
form.is-submitted + .form-success { display: block; }

fieldset { border: 0; }
fieldset legend { font-family: var(--font-sans); font-size: var(--size-small); margin-bottom: .75rem; padding: 0; }

/* ---------- Venue info blocks ---------- */
.info-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.info-block { background: var(--bone); border-radius: 0 clamp(3rem, 6vw, 5rem); padding: 2.5rem 2.25rem 2.25rem; }
.info-block--dark { background: var(--black); color: var(--white); }
/* mirror the cut on the second card so the pair reads as a diagonal set */
.info-cols > .info-block:nth-child(2) { border-radius: clamp(3rem, 6vw, 5rem) 0; }
.info-block h3 { font-size: var(--size-h5); margin-bottom: 1.25rem; }

.info-block--dark .detail-list,
.info-block--dark .detail-list__row { border-color: var(--light-o10); }
.info-block--dark .detail-list__value small { color: color-mix(in srgb, var(--white) 62%, transparent); }
.info-block--dark a:not(.btn) { color: var(--yellow-light); }

.info-block .detail-list__row { grid-template-columns: minmax(7.5rem, 9.5rem) 1fr; }
.info-block .detail-list__value { font-size: var(--size-main); }

@media (max-width: 48em) { .info-cols { grid-template-columns: 1fr; } }

/* ---------- Footer (cloned dark footer) ---------- */
.site-footer { background: var(--black); color: var(--white); padding-block: var(--section-space) 2.5rem; }

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3rem;
  flex-wrap: wrap;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--light-o10);
}

.footer-top h2 { font-size: var(--size-h3); max-width: 22ch; }
.footer-top .serif-accent { color: var(--yellow-dark); }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.footer-col h3 {
  font-family: var(--font-sans);
  font-style: italic;
  font-weight: 600;
  font-size: var(--size-small);
  color: var(--yellow-dark);
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-family: var(--font-sans); font-size: var(--size-small); text-decoration: none; opacity: .75; transition: opacity .4s var(--ease-site); }
.footer-col a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--light-o10);
  font-family: var(--font-sans);
  font-size: var(--size-tiny);
  color: var(--light-o50);
}

.footer-bottom img { height: 1.1rem; width: auto; opacity: .9; }

@media (max-width: 48em) { .footer-cols { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
[data-anim] {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity .9s var(--ease-site), transform .9s var(--ease-site);
  transition-delay: calc(var(--i, 0) * 90ms);
}

[data-anim].is-inview { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-anim] { opacity: 1; transform: none; transition: none; }
  .site-nav, .site-nav a, .btn, .quicklink, .breakout { transition: none; }
}

/* ---- Apparel box button ---- */
.btn--box { display: inline-flex; align-items: center; gap: .6rem; }
.btn--box[aria-disabled="true"] { cursor: default; opacity: .85; }
.btn-tag {
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  background: var(--yellow-dark); color: var(--black);
  padding: .22rem .5rem; border-radius: 99px; white-space: nowrap;
}

/* ---- Venue photo gallery ---- */
.venue-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.venue-gallery .photo-cut { aspect-ratio: 4 / 3; margin: 0; }
.venue-gallery figcaption {
  margin-top: .9rem; font-size: var(--size-small); color: var(--grey);
  font-family: var(--font-serif); font-style: italic;
}
@media (max-width: 47.9em) { .venue-gallery { grid-template-columns: 1fr; } }

/* ---- Apparel box / sponsor CTA band ---- */
.box-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
  background: var(--white); border-radius: 1.25rem 0 1.25rem 0;
  padding: 2.75rem 3rem;
}
@media (max-width: 47.9em) { .box-cta { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; } }

/* ---- Checklist page ---- */
.check-progress { margin-top: 2rem; font-size: var(--size-h5); font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .04em; }
.check-progress strong { color: var(--yellow-dark); }
.check-list { display: grid; gap: 1.25rem; max-width: 56rem; }
.check-item {
  display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto;
  align-items: center; column-gap: 1.5rem; row-gap: .35rem;
  background: var(--white); border: 1px solid var(--bone-2);
  border-radius: 1rem 0 1rem 0; padding: 1.75rem 2rem;
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease-site), box-shadow .3s var(--ease-site);
}
.check-item:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(33, 33, 33, .09); }
.check-item > div { grid-row: 1 / span 2; }
.check-item h3 { font-size: var(--size-h5); }
.check-item p { color: var(--grey); font-size: var(--size-small); margin-top: .35rem; max-width: 34rem; }
.check-mark {
  grid-row: 1 / span 2;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  border: 2px solid var(--bone-2); position: relative; flex: none;
}
.check-item.is-done .check-mark { background: var(--green-dark); border-color: var(--green-dark); }
.check-item.is-done .check-mark::after {
  content: ""; position: absolute; left: .58rem; top: .32rem;
  width: .5rem; height: .85rem;
  border: solid var(--cream); border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.check-pill {
  justify-self: end;
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  font-family: var(--font-sans);
  background: var(--bone); color: var(--grey);
  padding: .3rem .7rem; border-radius: 99px;
}
.check-item.is-done .check-pill { background: var(--green-dark); color: var(--cream); }
.check-cta { justify-self: end; font-size: var(--size-small); }
@media (max-width: 47.9em) {
  .check-item { grid-template-columns: auto 1fr; padding: 1.4rem 1.25rem; }
  .check-pill, .check-cta { grid-column: 2; justify-self: start; }
}

/* ---- Level Up wordmark logo in the hero ---- */
.levelup--logo { font-size: 0; line-height: 0; width: min(48rem, 100%); max-width: none; }
.levelup--logo img { display: block; width: 100%; height: auto; }

/* ---- Sponsor package comparison table ---- */
.pkg-table-wrap { overflow-x: auto; margin-top: 3rem; background: var(--white); border-radius: 1rem 0 1rem 0; border: 1px solid var(--bone-2); }
.pkg-table { width: 100%; min-width: 54rem; border-collapse: collapse; font-size: var(--size-small); }
.pkg-table th, .pkg-table td { padding: .8rem .9rem; text-align: left; border-bottom: 1px solid var(--bone); }
.pkg-table thead th { background: var(--black); color: var(--cream); font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .05em; font-size: .72rem; }
.pkg-table thead th:first-child { border-radius: 1rem 0 0 0; }
.pkg-table tbody th { font-weight: 600; color: var(--grey); font-family: var(--font-serif); font-style: italic; white-space: nowrap; }
.pkg-table td { font-variant-numeric: tabular-nums; }
.pkg-table__price td { font-family: var(--font-sans); font-weight: 700; font-size: var(--size-main); color: var(--red-dark); }
.pkg-table tbody tr:last-child th, .pkg-table tbody tr:last-child td { border-bottom: none; }

/* ---- Breakout session strip ---- */
.session-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; margin: 2.5rem 0 3.5rem; }
.session-slot { background: var(--white); border: 1px solid var(--bone-2); border-radius: .75rem 0 .75rem 0; padding: 1rem 1.1rem; }
.session-slot__num { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; color: var(--red-dark); font-weight: 700; }
.session-slot__time { margin-top: .3rem; font-size: var(--size-small); font-variant-numeric: tabular-nums; }
@media (max-width: 61.9em) { .session-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 47.9em) { .session-strip { grid-template-columns: repeat(2, 1fr); } }
.breakout__formal { font-family: var(--font-serif); font-style: italic; color: var(--grey); font-size: var(--size-small); margin: .35rem 0 .6rem; }

/* anchor jumps land with the section header in view, clear of the sticky nav */
#experiences { scroll-margin-top: 6.5rem; }

/* ---- form submit errors ---- */
.form-error {
  background: color-mix(in srgb, var(--red-dark) 10%, var(--white));
  border-left: 3px solid var(--red-dark);
  color: var(--red-dark);
  padding: .8rem 1rem;
  border-radius: 0 .5rem .5rem 0;
  font-size: var(--size-small);
  margin-bottom: 1rem;
}
select option:disabled { color: #b3ab9e; }
