/* Chaldean 101 — 2.0
 *
 * Same content as 1.0, rebuilt as a modern scrolling site on a Mesopotamian
 * palette: Ishtar-Gate lapis, gold leaf and alabaster, with ziggurat step
 * dividers and cuneiform accents. No frameworks and no external requests —
 * every effect is CSS or a few lines of vanilla JS, so it loads as fast as a
 * static page should and has nothing to license.
 */

/* fonts carried over from the original design */
@font-face { font-family: Cinzel;          src: url(assets/fonts/cinzel-regular.woff) format('woff');        font-weight: 400; font-display: swap; }
@font-face { font-family: Cinzel;          src: url(assets/fonts/cinzel-bold.woff) format('woff');           font-weight: 700; font-display: swap; }
@font-face { font-family: Antonio;         src: url(assets/fonts/antonio-regular.woff) format('woff');       font-weight: 400; font-display: swap; }
@font-face { font-family: Inter;           src: url(assets/fonts/inter-regular.woff) format('woff');         font-weight: 400; font-display: swap; }
@font-face { font-family: Inter;           src: url(assets/fonts/inter-bold.woff) format('woff');            font-weight: 700; font-display: swap; }
@font-face { font-family: 'EB Garamond';   src: url(assets/fonts/eb-garamond-regular.woff) format('woff');   font-weight: 400; font-display: swap; }

:root {
  --lapis-900: #070f1e;
  --lapis-800: #0b1526;
  --lapis-700: #101f3a;
  --lapis-600: #16294b;
  --gold: #d8b45a;
  --gold-deep: #a9812c;
  --gold-pale: #f0dca6;
  --alabaster: #f4efe4;
  --clay: #b4552d;
  --ink: #16223c;
  --muted: #8fa0bd;

  --measure: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* the sticky bar must not cover the heading you jumped to */
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--lapis-800);
  color: var(--alabaster);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: var(--ink); padding: 12px 18px; font-weight: 700;
}
.skip:focus { left: 12px; top: 12px; }

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

/* ---------------- chrome ---------------- */

.progress {
  position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 120;
  background: rgba(255, 255, 255, .06);
}
.progress i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-pale), var(--gold));
  box-shadow: 0 0 14px rgba(216, 180, 90, .7);
}

/* A soft light that trails the pointer. Pure decoration, so it is hidden from
   touch devices, where there is no pointer to trail. */
.cursor {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px; z-index: 130;
  border: 1px solid rgba(216, 180, 90, .6); border-radius: 50%;
  translate: -50% -50%;
  pointer-events: none;
  transition: width .2s var(--ease), height .2s var(--ease), background .2s var(--ease);
  mix-blend-mode: screen;
}
.cursor.is-hot { width: 54px; height: 54px; background: rgba(216, 180, 90, .16); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

.nav {
  position: fixed; inset: 3px 0 auto 0; z-index: 110;
  display: flex; align-items: center; gap: 22px;
  padding: 14px clamp(16px, 4vw, 40px);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease),
              box-shadow .35s var(--ease), transform .35s var(--ease);
  transform: translateY(-100%);
}
.nav.is-visible { transform: translateY(0); }
.nav.is-stuck {
  background: rgba(11, 21, 38, .82);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 rgba(216, 180, 90, .22), 0 14px 40px rgba(0, 0, 0, .4);
}

.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: Cinzel, serif; font-weight: 700; letter-spacing: .08em;
  text-decoration: none; font-size: 15px;
}
.nav-brand img { border-radius: 50%; }

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  position: relative; text-decoration: none; font-size: 14px;
  letter-spacing: .09em; text-transform: uppercase; color: #cdd8ea;
  padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-pale); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 20px; border-radius: 999px; text-decoration: none;
  font-size: 14px; font-weight: 700; letter-spacing: .05em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-pale));
  box-shadow: 0 6px 18px rgba(216, 180, 90, .28);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(216, 180, 90, .42); }

@media (max-width: 820px) { .nav-links { display: none; } .nav-cta { margin-left: auto; } }

/* ---------------- hero ---------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px clamp(18px, 5vw, 48px) 90px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--lapis-600) 0%, var(--lapis-800) 55%, var(--lapis-900) 100%);
  isolation: isolate;
}

.hero-dust { position: absolute; inset: 0; z-index: 0; opacity: .55; }

/* The engraved cityscape from the original flyer, reused as a horizon. */
.hero-city {
  position: absolute; left: 50%; bottom: -4%; z-index: 0;
  width: min(1900px, 160vw); aspect-ratio: 1188 / 350;
  translate: -50% 0;
  background: url(assets/img/horizon.jpg) center bottom/cover no-repeat;
  /* the plate is warm parchment; this sinks it into the lapis */
  filter: sepia(.5) saturate(.6) brightness(.42) contrast(1.15);
  mix-blend-mode: luminosity;
  opacity: .38;
  mask-image: linear-gradient(transparent 4%, #000 58%, #000 100%);
}

.hero-glow {
  position: absolute; left: 50%; top: 8%; z-index: 0;
  width: min(1100px, 120vw); aspect-ratio: 1;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(216, 180, 90, .20), transparent 62%);
  filter: blur(12px);
}

.hero-scrim {
  position: absolute; inset: auto 0 0 0; height: 34%; z-index: 0;
  background: linear-gradient(transparent, var(--lapis-800));
}

.hero-inner { position: relative; z-index: 2; text-align: center; max-width: 1080px; }

.seal-wrap {
  position: relative; width: 240px; height: 240px; margin: 0 auto 34px;
  display: grid; place-items: center;
}
.seal {
  width: 190px; height: 190px; border-radius: 50%;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(216, 180, 90, .5);
}
.seal-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(216, 180, 90, .38);
  animation: spin 34s linear infinite;
}
.seal-ring::before {
  content: ''; position: absolute; top: -4px; left: 50%; width: 7px; height: 7px;
  translate: -50% 0; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}
.seal-ring-2 {
  inset: 16px;
  border-style: dashed;
  border-color: rgba(216, 180, 90, .22);
  animation-duration: 52s;
  animation-direction: reverse;
}
@keyframes spin { to { rotate: 360deg; } }

.eyebrow {
  margin: 0 0 14px;
  font-family: Cinzel, serif; font-size: clamp(12px, 1.5vw, 15px);
  letter-spacing: .34em; text-transform: uppercase; color: var(--gold);
}
.eyebrow i { opacity: .5; font-style: normal; margin: 0 4px; }

.title {
  margin: 0;
  font-family: Cinzel, serif; font-weight: 700;
  font-size: clamp(42px, 8.6vw, 118px);
  line-height: .94; letter-spacing: .01em;
  filter: drop-shadow(0 12px 40px rgba(216, 180, 90, .22));
}

/* The gradient is repeated on the letters, not just the block. Each split span
   is composited on its own, and a composited child does not paint the parent's
   background-clip:text fill — so without this the whole title renders
   transparent and simply vanishes. */
.title,
.title span {
  background-image: linear-gradient(180deg, #fff 6%, var(--gold-pale) 42%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.title span {
  display: inline-block;
  will-change: transform, opacity;
  /* The gradient fill is clipped to each span's own box. Cinzel's glyphs
     overhang theirs — the C lost its left curve — and line-height below 1
     crops them vertically too, so the box is padded out and the padding taken
     back off in margin, leaving spacing unchanged. */
  padding: 0.14em 0.09em;
  margin: -0.14em -0.09em;
}

.subtitle {
  margin: 20px 0 0;
  display: flex; justify-content: center; align-items: center; gap: clamp(10px, 2vw, 22px);
  flex-wrap: wrap;
  font-family: Cinzel, serif; font-size: clamp(13px, 2.1vw, 24px);
  letter-spacing: .26em; color: var(--gold-pale);
}
.subtitle b { color: var(--gold); font-size: .6em; }

.lede {
  margin: 26px auto 0; max-width: 34ch;
  font-family: 'EB Garamond', Georgia, serif; font-style: italic;
  font-size: clamp(18px, 2.4vw, 30px); line-height: 1.5; color: #dfe6f2;
}

.hero-cta {
  margin-top: 38px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: clamp(14px, 1.6vw, 17px); letter-spacing: .04em;
  overflow: hidden; isolation: isolate;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn span { position: relative; z-index: 2; }
/* a sheen that crosses the button on hover */
.btn::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .5) 50%, transparent 70%);
  translate: -120% 0;
  transition: translate .6s var(--ease);
}
.btn:hover::after { translate: 120% 0; }

.btn-gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-pale) 55%, var(--gold));
  box-shadow: 0 10px 34px rgba(216, 180, 90, .34);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(216, 180, 90, .5); }

.btn-ghost { color: var(--alabaster); border: 1px solid rgba(216, 180, 90, .5); }
.btn-ghost:hover { transform: translateY(-3px); background: rgba(216, 180, 90, .1); }

.btn-navy { color: var(--alabaster); background: var(--lapis-700); box-shadow: 0 10px 30px rgba(7, 15, 30, .4); }
.btn-navy:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(7, 15, 30, .55); }

.btn-outline-dark { color: var(--ink); border: 1px solid rgba(22, 34, 60, .45); }
.btn-outline-dark:hover { transform: translateY(-3px); background: rgba(22, 34, 60, .08); }

.hero-stats {
  margin: 54px auto 0; padding: 0; max-width: 640px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.hero-stats div {
  padding: 16px 8px;
  border-left: 1px solid rgba(216, 180, 90, .22);
}
.hero-stats div:first-child { border-left: 0; }
.hero-stats dt {
  font-family: Antonio, sans-serif; font-size: clamp(30px, 5vw, 52px);
  color: var(--gold-pale); line-height: 1;
}
.hero-stats dd {
  margin: 6px 0 0; font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; z-index: 2;
  translate: -50% 0;
  width: 24px; height: 40px; border: 1px solid rgba(216, 180, 90, .5); border-radius: 14px;
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px; width: 3px; height: 8px;
  translate: -50% 0; border-radius: 2px; background: var(--gold);
  animation: drop 1.8s var(--ease) infinite;
}
@keyframes drop { 0% { top: 8px; opacity: 0; } 40% { opacity: 1; } 100% { top: 24px; opacity: 0; } }

/* ---------------- marquee ---------------- */

.marquee {
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 40%, var(--gold-pale) 60%, var(--gold-deep));
  color: var(--ink);
  padding: 12px 0;
  overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, .18);
}
.marquee-track { display: flex; width: max-content; animation: slide 34s linear infinite; }
.marquee span {
  padding: 0 28px;
  font-family: Cinzel, serif; font-weight: 700;
  font-size: clamp(13px, 1.6vw, 17px); letter-spacing: .3em; white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------------- sections ---------------- */

.sec { position: relative; padding: clamp(72px, 10vw, 148px) clamp(18px, 5vw, 48px); }
.sec-light { background: var(--alabaster); color: var(--ink); }
.sec-dark  { background: var(--lapis-700); }
.sec-deep  { background: var(--lapis-900); }
.sec-gold  {
  color: var(--ink);
  background: linear-gradient(160deg, var(--gold-pale), var(--gold) 55%, var(--gold-deep));
}

/* Stepped edges, the profile of a ziggurat. */
.ziggurat { clip-path: polygon(0 3.2%, 25% 3.2%, 25% 0, 75% 0, 75% 3.2%, 100% 3.2%, 100% 100%, 0 100%); }
.ziggurat-up { clip-path: polygon(0 0, 100% 0, 100% 96.8%, 75% 96.8%, 75% 100%, 25% 100%, 25% 96.8%, 0 96.8%); }

.wrap { max-width: var(--measure); margin: 0 auto; }
.wrap-narrow { max-width: 860px; }
.center { text-align: center; }
.center .body, .center .h2, .center .kicker { margin-inline: auto; }

.wrap-split {
  display: grid; gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 760px) { .wrap-split { grid-template-columns: 1fr; text-align: center; } }

.kicker {
  margin: 0 0 12px;
  font-size: clamp(11px, 1.4vw, 13px); letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
}
.kicker.dark { color: rgba(22, 34, 60, .66); }

.h2 {
  margin: 0 0 22px;
  font-family: Antonio, sans-serif; font-weight: 400;
  font-size: clamp(34px, 6.4vw, 82px); line-height: 1.02; letter-spacing: .005em;
}
.sec-light .h2, .h2.dark { color: var(--ink); }
.sec-dark .h2, .sec-deep .h2 { color: var(--gold-pale); }

/* Gold leaf catching the light, swept slowly across the heading. */
[data-shimmer] {
  background: linear-gradient(100deg,
      currentColor 0%, currentColor 38%,
      var(--gold-pale) 48%, #fff 52%, var(--gold-pale) 56%,
      currentColor 66%, currentColor 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: sheen 7s var(--ease) infinite;
}
.sec-light [data-shimmer], .h2.dark[data-shimmer] { color: var(--ink); }
@keyframes sheen { 0%, 62% { background-position: 130% 0; } 100% { background-position: -30% 0; } }

.body {
  margin: 0 0 34px; max-width: 62ch;
  font-size: clamp(16px, 1.75vw, 20px); line-height: 1.68; color: #4a5568;
}
.sec-dark .body, .sec-deep .body { color: #c3cfe2; }
.body.dark { color: rgba(22, 34, 60, .8); }

/* ---------------- cards ---------------- */

.grid-3 {
  display: grid; gap: clamp(14px, 2vw, 24px);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  position: relative; overflow: hidden;
  padding: clamp(26px, 3vw, 40px) clamp(20px, 2.4vw, 30px);
  border-radius: 18px;
  background: linear-gradient(165deg, var(--lapis-600), var(--lapis-800));
  border: 1px solid rgba(216, 180, 90, .28);
  color: var(--alabaster);
  box-shadow: 0 18px 44px rgba(7, 15, 30, .22);
  transform-style: preserve-3d;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { border-color: rgba(216, 180, 90, .6); box-shadow: 0 28px 66px rgba(7, 15, 30, .34); }
.card-glyph {
  position: absolute; right: -14px; top: -14px;
  width: 116px; height: 116px;
  color: rgba(216, 180, 90, .13);
  pointer-events: none;
  transition: transform .6s var(--ease), color .3s var(--ease);
}
.card:hover .card-glyph { transform: rotate(45deg); color: rgba(216, 180, 90, .22); }
.card h3 {
  margin: 0 0 10px;
  font-family: Cinzel, serif; font-weight: 700;
  font-size: clamp(19px, 2.1vw, 25px); color: var(--gold);
  letter-spacing: .04em;
}
.card p {
  margin: 0;
  font-family: 'EB Garamond', Georgia, serif;
  font-size: clamp(16px, 1.8vw, 21px); line-height: 1.45;
}
.card .price { font-size: clamp(32px, 4vw, 50px); line-height: 1.1; color: #fff; }
.card .fine { font-size: clamp(13px, 1.4vw, 16px); color: var(--muted); margin-top: 4px; }

/* ---------------- instructor ---------------- */

.portrait-wrap { position: relative; display: grid; place-items: center; }
.portrait {
  width: min(320px, 74vw); height: min(320px, 74vw);
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(216, 180, 90, .55);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .5);
  transition: transform .5s var(--ease);
}
.portrait-wrap:hover .portrait { transform: scale(1.03); }
.portrait-halo {
  position: absolute; width: min(400px, 90vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 180, 90, .26), transparent 66%);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.09); opacity: .72; } }

.role {
  margin: 0 0 18px;
  font-family: Cinzel, serif; font-size: clamp(14px, 1.7vw, 19px);
  letter-spacing: .12em; color: var(--gold);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: .04em; color: var(--gold-pale);
  text-decoration: none; border-bottom: 1px solid rgba(216, 180, 90, .45);
  padding-bottom: 3px;
}
.link-arrow span { transition: translate .25s var(--ease); }
.link-arrow:hover span { translate: 6px 0; }

/* ---------------- curriculum ---------------- */

.learn-list {
  list-style: none; margin: 0 0 clamp(34px, 5vw, 60px); padding: 0;
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.learn-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px; border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(22, 34, 60, .08);
  box-shadow: 0 6px 20px rgba(22, 34, 60, .06);
  font-size: clamp(15px, 1.7vw, 19px);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.learn-list li:hover {
  transform: translateX(6px);
  border-color: rgba(216, 180, 90, .6);
  box-shadow: 0 14px 34px rgba(22, 34, 60, .12);
}
.learn-list i {
  flex: none; display: grid; place-items: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-pale));
  color: var(--ink); font-style: normal; font-size: 15px; font-weight: 700;
}

.pillars {
  display: grid; gap: 1px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: rgba(22, 34, 60, .12);
  border: 1px solid rgba(22, 34, 60, .12);
  border-radius: 14px; overflow: hidden;
}
.pillar { background: var(--alabaster); padding: 26px 18px; text-align: center; }
.pillar b {
  display: block;
  font-family: Cinzel, serif; font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: .1em; color: var(--gold-deep); margin-bottom: 6px;
}
.pillar span { font-size: clamp(13px, 1.4vw, 15px); color: #64748b; }

/* ---------------- faq ---------------- */

.faq details {
  border-bottom: 1px solid rgba(216, 180, 90, .2);
}
.faq summary {
  cursor: pointer; list-style: none;
  padding: 24px 44px 24px 0; position: relative;
  font-size: clamp(16px, 1.9vw, 22px); font-weight: 700; color: var(--alabaster);
  transition: color .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold-pale); }
.faq summary::after {
  content: '+'; position: absolute; right: 6px; top: 50%; translate: 0 -50%;
  font-size: 28px; line-height: 1; color: var(--gold);
  transition: rotate .3s var(--ease);
}
.faq details[open] summary::after { rotate: 45deg; }
.faq p {
  margin: 0; padding: 0 44px 26px 0;
  color: #b9c6da; font-size: clamp(15px, 1.7vw, 18px); line-height: 1.65;
  animation: unfold .35s var(--ease);
}
@keyframes unfold { from { opacity: 0; translate: 0 -6px; } }

/* ---------------- register ---------------- */

.qr-card {
  display: inline-block; margin: 8px auto 34px;
  padding: 22px 22px 16px; border-radius: 20px;
  background: #fff;
  box-shadow: 0 26px 60px rgba(22, 34, 60, .3);
  transform-style: preserve-3d;
}
.qr-card img { width: clamp(180px, 26vw, 250px); height: auto; }
.qr-card p {
  margin: 14px 0 0;
  font-family: Cinzel, serif; font-weight: 700;
  font-size: 14px; letter-spacing: .1em; color: var(--ink);
}

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

.foot-seal { width: 86px; height: 86px; border-radius: 50%; margin: 0 auto 22px; opacity: .95; }
.foot-mail { margin: 0 0 14px; font-size: clamp(19px, 2.6vw, 30px); }
.foot-mail a { text-decoration: none; border-bottom: 1px solid rgba(216, 180, 90, .5); }
.foot-mail a:hover { color: var(--gold-pale); }
.foot-alt { margin: 0 0 44px; color: var(--muted); font-size: clamp(13px, 1.5vw, 16px); }
.foot-alt a { color: var(--muted); border-bottom: 1px solid rgba(143, 160, 189, .4); text-decoration: none; }
.foot-alt a:hover { color: var(--gold-pale); border-bottom-color: var(--gold); }

/* Social row: a labelled icon each, so it still reads without the glyphs. */
.socials {
  list-style: none; margin: 26px 0 22px; padding: 0;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 14px;
}
.socials a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(216, 180, 90, .34);
  background: rgba(216, 180, 90, .05);
  color: var(--gold-pale);
  text-decoration: none;
  font-size: 15px; font-weight: 700; letter-spacing: .04em;
  transition: transform .25s var(--ease), background .25s var(--ease),
              border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.socials svg { width: 22px; height: 22px; flex: none; }
.socials a:hover {
  transform: translateY(-3px);
  background: rgba(216, 180, 90, .14);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .38);
}

@media (max-width: 420px) {
  .socials a { padding: 11px 18px 11px 14px; font-size: 14px; }
}

.motto {
  margin: 0 0 30px;
  font-family: Antonio, sans-serif; font-size: clamp(26px, 5.4vw, 66px);
  letter-spacing: .04em; color: var(--gold);
}
.colophon { margin: 0; font-size: 13px; line-height: 1.8; color: #5f708c; }
.colophon a { color: var(--gold); }

/* ---------------- reveal ---------------- */

/* Only hidden when the script is there to reveal it again. Without this the
   page is blank to anyone with JavaScript off or a script that failed. */
.js .reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .7s var(--ease), translate .7s var(--ease);
}
.js .reveal.is-in { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: none; transition: none; }
  .marquee-track, .seal-ring, .portrait-halo, .scroll-hint span, [data-shimmer] { animation: none; }
  [data-shimmer] { color: inherit; background: none; -webkit-background-clip: border-box; background-clip: border-box; }
  .hero-dust { display: none; }
  * { transition-duration: .01ms !important; }
}
