@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;1,400;1,500;1,600&display=swap');

* {
    margin: 0;
    padding: 0;
}

:root {
    --ink: #020108;
    --ink-mid: #06041c;
    --indigo: #0f082e;
    --violet: #1c0c48;
    --blue-deep: #0a1840;
    --plum: #5a28a0;
    --azure: #1e50b4;

    --gold: #e0b25f;
    --gold-hot: #ffcf7a;
    --gold-white: #fff4d4;
    --gold-glow: rgba(255, 220, 150, 0.55);

    --text: #eceaf6;
    --text-dim: rgba(236, 234, 246, 0.75);
    --text-faint: rgba(236, 234, 246, 0.45);

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.13);
    --glass-blur: 12px;

    --primary: var(--gold);
    --primary-light: var(--gold-hot);
    --secondary: var(--plum);
    --accent: var(--violet);
    --black: var(--ink);
    --charcoal: var(--ink-mid);
    --grey: var(--text-dim);
    --light-grey: var(--text-faint);
    --white: var(--text);

    --font-family: "Outfit", system-ui, -apple-system, sans-serif;
    --font-family-heading: "Outfit", system-ui, -apple-system, sans-serif;
    --font-family-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    --font-awesome: 'Font Awesome 6 Pro', sans-serif;
    --font-awesome-brands: 'Font Awesome 6 Brands', sans-serif;

    --logo-width: 100px;
    --max-width: 1440px;
    --header-height: 80px;

    --transition-duration: 200ms;
    --drop-shadow-filter: drop-shadow(0 10px 20px #00000066);
    --drop-shadow-filter-alt: drop-shadow(0 8px 8px #00000066);
}

body.page-template {
    * {
        box-sizing: border-box;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --glass-blur: 6px;
        --drop-shadow-filter: drop-shadow(0 5px 10px #00000066);
        --drop-shadow-filter-alt: drop-shadow(0 4px 4px #00000066);
    }
}

#is-mobile {
  display: none;
}
html {
  scrollbar-width: thin;
  scrollbar-color: var(--plum) transparent;
}
::-webkit-scrollbar {
  height: 2px;
  width: 2px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--plum);
  border-radius: 2px;
  transition: background var(--transition-duration) ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--violet);
}
body {
  background-color: var(--ink);
  color: var(--text);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .gap-5 {
  height: 5px;
  width: 100%;
}
body .spacer-5 {
  display: inline-block;
  height: 1px;
  width: 5px;
}
body .gap-10 {
  height: 10px;
  width: 100%;
}
body .spacer-10 {
  display: inline-block;
  height: 1px;
  width: 10px;
}
body .gap-15 {
  height: 15px;
  width: 100%;
}
body .spacer-15 {
  display: inline-block;
  height: 1px;
  width: 15px;
}
body .gap-20 {
  height: 20px;
  width: 100%;
}
body .spacer-20 {
  display: inline-block;
  height: 1px;
  width: 20px;
}
body .gap-25 {
  height: 25px;
  width: 100%;
}
body .spacer-25 {
  display: inline-block;
  height: 1px;
  width: 25px;
}
body .gap-30 {
  height: 30px;
  width: 100%;
}
body .spacer-30 {
  display: inline-block;
  height: 1px;
  width: 30px;
}
body .gap-35 {
  height: 35px;
  width: 100%;
}
body .spacer-35 {
  display: inline-block;
  height: 1px;
  width: 35px;
}
body .gap-40 {
  height: 40px;
  width: 100%;
}
body .spacer-40 {
  display: inline-block;
  height: 1px;
  width: 40px;
}
body .gap-45 {
  height: 45px;
  width: 100%;
}
body .spacer-45 {
  display: inline-block;
  height: 1px;
  width: 45px;
}
body .gap-50 {
  height: 50px;
  width: 100%;
}
body .spacer-50 {
  display: inline-block;
  height: 1px;
  width: 50px;
}
body .gap-55 {
  height: 55px;
  width: 100%;
}
body .spacer-55 {
  display: inline-block;
  height: 1px;
  width: 55px;
}
body .gap-60 {
  height: 60px;
  width: 100%;
}
body .spacer-60 {
  display: inline-block;
  height: 1px;
  width: 60px;
}
body .gap-65 {
  height: 65px;
  width: 100%;
}
body .spacer-65 {
  display: inline-block;
  height: 1px;
  width: 65px;
}
body .gap-70 {
  height: 70px;
  width: 100%;
}
body .spacer-70 {
  display: inline-block;
  height: 1px;
  width: 70px;
}
body .gap-75 {
  height: 75px;
  width: 100%;
}
body .spacer-75 {
  display: inline-block;
  height: 1px;
  width: 75px;
}
body .gap-80 {
  height: 80px;
  width: 100%;
}
body .spacer-80 {
  display: inline-block;
  height: 1px;
  width: 80px;
}
body .gap-85 {
  height: 85px;
  width: 100%;
}
body .spacer-85 {
  display: inline-block;
  height: 1px;
  width: 85px;
}
body .gap-90 {
  height: 90px;
  width: 100%;
}
body .spacer-90 {
  display: inline-block;
  height: 1px;
  width: 90px;
}
body .gap-95 {
  height: 95px;
  width: 100%;
}
body .spacer-95 {
  display: inline-block;
  height: 1px;
  width: 95px;
}
.mobile-only {
  display: none;
}
.not-mobile {
  display: block;
}
h1,
h2,
h3,
h4 {
  color: var(--text);
  font-family: var(--font-family-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 0.3em;
  text-wrap: balance;
}
h1 {
  font-size: 4em;
}
h2 {
  font-size: 3em;
}
h3 {
  font-size: 2em;
}
h4 {
  font-size: 1.5em;
}
* + h2,
* + h3,
* + h4 {
  margin-top: 40px;
}
p,
ul,
ol {
  font-weight: 400;
  line-height: 1.5;
}
p a,
ul a,
ol a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(224, 178, 95, 0.4);
  text-underline-offset: 3px;
  transition: color var(--transition-duration) ease-in-out;
}
p a:hover,
ul a:hover,
ol a:hover {
  color: var(--gold-hot);
}
p + p,
ul + p,
ol + p,
p + ul,
p + ol {
  margin-top: 0.125em;
}
ul,
ol {
  padding-left: 20px;
}
li {
  padding: 5px 0;
}
.theme-button {
  background-color: var(--secondary);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1.125em;
  font-weight: 600;
  line-height: 1.1;
  padding: 16px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--transition-duration) ease-in-out;
}
.theme-button:hover {
  background-color: var(--charcoal);
}
.theme-button--white {
  background-color: var(--white);
  color: var(--charcoal);
}
.theme-button--white:hover {
  background-color: var(--light-grey);
}
.more-button {
  align-items: center;
  color: var(--primary);
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 1.125em;
  font-weight: 600;
  gap: 10px;
  text-decoration: none;
  transition: color var(--transition-duration) ease-in-out;
}
.more-button:after {
  content: '\2192';
  font-size: 1.2em;
}
.more-button:hover {
  color: var(--charcoal);
}
.grey-bkgd {
  --bg-color: var(--light-grey);
}
.primary-bkgd {
  --bg-color: var(--primary);
  --text-color: var(--white);
}
.secondary-bkgd {
  --bg-color: var(--secondary);
  --text-color: var(--white);
}
.charcoal-bkgd {
  --bg-color: var(--charcoal);
  --text-color: var(--white);
}
.overlay--light-text {
  --text-color: var(--white);
}
.overlay--dark-text {
  --text-color: var(--black);
}
.message {
  background-color: var(--light-grey);
  border-left: 5px solid var(--grey);
  border-radius: 8px;
  padding: 20px;
}
.message--error {
  background-color: #fce4e4;
  border-left-color: var(--secondary);
}
.message--notice {
  color: var(--black);
}
.message--success {
  background-color: #e8f5e9;
  border-left-color: var(--primary);
}
.inset {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 20px;
  position: relative;
  width: 100%;
}
.banner-heading {
  font-size: clamp(3em, 11cqi, 20em);
  font-weight: 500;
  line-height: 1;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: -20px;
  overflow: hidden;
  padding: 20px 20px 0;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
  z-index: 1;
}
.banner-heading span {
  color: var(--white);
  display: inline-block;
  transform: translateY(0.15em);
}
#container {
  position: relative;
  z-index: 100;
}
section {
  --bg-color: transparent;
  --text-color: var(--black);
  background-color: var(--bg-color);
  position: relative;
}
section .inset {
  padding: 60px 20px;
  position: relative;
  z-index: 3;
}
section .inset h1,
section .inset h2,
section .inset h3 {
  color: var(--text-color);
}
section .inset p,
section .inset ul,
section .inset ol {
  color: var(--text-color);
}
section .inset p.subheading {
  font-size: 1.25em;
  margin-bottom: 20px;
  text-wrap: balance;
}
section.grey-bkgd {
  background-color: var(--light-grey);
}
section.charcoal-bkgd {
  background-color: var(--charcoal);
}
section.primary-bkgd {
  background-color: var(--primary);
}
section.secondary-bkgd {
  background-color: var(--secondary);
}
.columns {
  display: flex;
  gap: 40px;
  width: 100%;
}
.columns__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
header#header {
  background-color: transparent;
  color: var(--text);
  height: var(--header-height);
  left: 0;
  position: fixed;
  top: 0;
  transition: all 0.2s ease-in-out;
  width: 100%;
  z-index: 1000;
}
header#header:before {
  background: linear-gradient(180deg, rgba(2, 1, 8, 0.85) 0%, rgba(2, 1, 8, 0.6) 50%, rgba(2, 1, 8, 0) 100%);
  content: '';
  height: var(--header-height);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
header#header .inset {
  align-items: center;
  display: flex;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
  padding: 0 20px;
}
header#header .branding {
  display: flex;
  align-items: center;
  z-index: 20;
}
header#header .branding a {
  display: block;
  text-decoration: none;
}
header#header .branding a img {
  display: block;
  height: auto;
  width: var(--logo-width);
}
header#header nav {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  z-index: 10;
}
header#header nav ul {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header#header nav ul li {
  padding: 0;
}
header#header nav ul li a {
  color: var(--text-dim);
  font-size: 0.95em;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition-duration) ease, text-shadow var(--transition-duration) ease;
  text-shadow: 0 0 0 rgba(90, 40, 160, 0);
}
header#header nav ul li a:hover,
header#header nav ul li a.is-active {
  color: var(--gold-hot);
  text-shadow: 0 0 3px rgba(90, 40, 160, 0.75), 0 0 7px rgba(90, 40, 160, 0.4);
}
@keyframes nav-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
header#header .mobile-menu-button {
  display: none;
}
body.scrolling header#header {
  --header-height: 60px;
}
body.admin-bar {
  --admin-bar-height: 32px;
}
body.admin-bar header#header {
  top: var(--admin-bar-height);
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    --admin-bar-height: 46px;
  }
}
.page-header {
  background-color: var(--charcoal);
  background-image: var(--bg-image-url);
  background-position: var(--bg-position-x) var(--bg-position-y);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.page-header .inset {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 0 20px 30px;
  z-index: 10;
}
.page-header .inset .copy {
  background-color: rgba(0, 0, 0, 0.75);
  color: var(--white);
  padding: 20px 30px;
}
.page-header .inset .copy h1 {
  color: var(--white);
  font-size: 3em;
  line-height: 1.2;
  margin-bottom: 0;
  text-wrap: balance;
}
.page-header--overlay:before {
  content: '';
  background-color: var(--bg-overlay-color);
  display: block;
  height: 100%;
  left: 0;
  opacity: var(--bg-overlay-opacity);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
section.page .inset {
  padding: 60px 20px;
}
.entry-card {
  background: var(--white);
  filter: var(--drop-shadow-filter);
  overflow: hidden;
  transition: transform var(--transition-duration) ease-in-out;
}
.entry-card:hover {
  transform: translateY(-4px);
}
.entry-card__image {
  display: block;
  overflow: hidden;
}
.entry-card__image img {
  aspect-ratio: 4 / 2;
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.entry-card__date {
  background-color: var(--primary);
  color: var(--white);
  display: block;
  padding: 5px 20px;
}
.entry-card__text {
  padding: 20px 25px 25px;
}
.entry-card__text h3 {
  font-size: 1.5em;
  margin-bottom: 0.4em;
  margin-top: 0;
}
.entry-card__text h3 a {
  color: var(--primary);
  text-decoration: none;
}
.entry-card__text h3 a:hover {
  color: var(--charcoal);
}
.entry-card__text p {
  color: var(--charcoal);
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 15px;
}
.blog-content .inset {
  display: flex;
  gap: 40px;
}
.blog-content__posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  flex: 1;
}
.blog-content__sidebar {
  width: 300px;
  flex-shrink: 0;
}
.blog-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 40px 0;
}
.blog-pagination a,
.blog-pagination span {
  border: 1px solid var(--grey);
  color: var(--charcoal);
  display: inline-block;
  min-width: 40px;
  padding: 8px 14px;
  text-align: center;
  text-decoration: none;
}
.blog-pagination .current {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
footer#footer {
  background-color: transparent;
  color: var(--text);
  position: relative;
  z-index: 10;
}
footer#footer .inset {
  align-items: center;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
}
footer#footer .footer__wordmark {
  align-items: baseline;
  color: var(--text);
  display: inline-flex;
  gap: 10px;
  text-decoration: none;
}
footer#footer .footer__name {
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: 0.02em;
}
footer#footer .footer__tag {
  font-size: 0.95em;
}
footer#footer .footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .footer__nav ul li a {
  color: var(--text-dim);
  font-size: 0.95em;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--transition-duration) ease, text-shadow var(--transition-duration) ease;
  text-shadow: 0 0 0 rgba(90, 40, 160, 0);
}
footer#footer .footer__nav ul li a:hover,
footer#footer .footer__nav ul li a.is-active {
  color: var(--gold-hot);
  text-shadow: 0 0 3px rgba(90, 40, 160, 0.75), 0 0 7px rgba(90, 40, 160, 0.4);
}
footer#footer .copyright {
  color: var(--text-faint);
  font-size: 0.8em;
  letter-spacing: 0.05em;
  padding: 18px 20px 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mobile-only {
    display: block;
  }
  .not-mobile {
    display: none;
  }
  #is-mobile {
    display: block;
  }
  body h1 {
    font-size: 2.5em;
  }
  body h2 {
    font-size: 2em;
  }
  body h3 {
    font-size: 1.5em;
  }
  header#header {
    --header-height: 60px;
  }
  header#header .inset {
    justify-content: center;
  }
  header#header .branding {
    flex: 1;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  header#header .branding a {
    display: block;
    width: 100%;
  }
  header#header .branding a img {
    margin: 0 auto;
    width: 100px;
  }
  header#header .branding .wordmark {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  header#header nav {
    align-items: center;
    background-color: rgba(2, 1, 8, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 0.25s ease;
    z-index: 900;
  }
  header#header nav ul {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
  }
  header#header nav ul li a {
    color: var(--text);
    font-size: 1.4em;
    letter-spacing: 0.08em;
  }
  header#header nav ul li a:hover {
    color: var(--gold-hot);
  }
  header#header .mobile-menu-button {
    --bar-color: var(--text);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 24px;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 18px;
    width: 28px;
    z-index: 1001;
  }
  header#header .mobile-menu-button__line {
    background-color: var(--bar-color);
    border-radius: 2px;
    height: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    width: 100%;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open header#header nav {
    opacity: 1;
    pointer-events: all;
  }
  body.menu-open header#header .mobile-menu-button__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.menu-open header#header .mobile-menu-button__line:nth-child(2) {
    opacity: 0;
  }
  body.menu-open header#header .mobile-menu-button__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  section .inset {
    padding: 40px 20px;
  }
  .page-header .inset .copy {
    min-width: calc(100% - 20px);
  }
  .page-header .inset .copy h1 {
    font-size: 2.5em;
  }
  .columns {
    flex-direction: column;
    gap: 30px;
  }
  .columns__column {
    width: 100%;
  }
  .blog-content .inset {
    flex-direction: column;
  }
  .blog-content__posts {
    grid-template-columns: 1fr;
  }
  .blog-content__sidebar {
    width: 100%;
  }
  footer#footer .inset {
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    text-align: center;
  }
  footer#footer .footer__nav ul {
    justify-content: center;
  }
}
.wordmark {
  align-items: baseline;
  color: var(--text);
  display: inline-flex;
  font-family: var(--font-family);
  gap: 10px;
  text-decoration: none;
}
.wordmark__name {
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.wordmark__tag {
  font-size: 0.95em;
}
.wordmark .home-logo {
  display: block;
  height: auto;
  max-width: var(--logo-width);
}
body.page-template-homepage-template {
  background-color: var(--ink);
  background-image: linear-gradient(180deg, var(--ink) 0%, var(--ink-mid) 18%, var(--indigo) 35%, var(--violet) 50%, var(--blue-deep) 65%, var(--ink-mid) 82%, var(--ink) 100%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
body.page-template-homepage-template section {
  --text-color: var(--text);
}
body.page-template-homepage-template header#header {
  background-color: transparent;
}
.cosmic-bg__nebula {
  background-image: radial-gradient(ellipse 60vw 45vh at 25% 40%, var(--plum) 0%, transparent 55%), radial-gradient(ellipse 55vw 40vh at 78% 65%, var(--azure) 0%, transparent 55%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: blur(40px);
  height: 100vh;
  left: 0;
  opacity: 0.55;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1;
}
.cosmic-bg__sparkle {
  height: 200vh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: -50vh;
  width: 100vw;
  z-index: 2;
}
.cosmic-bg__sparkle__star {
  border-radius: 50%;
  position: absolute;
  will-change: opacity;
  animation-name: cosmic-twinkle;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
@keyframes cosmic-twinkle {
  0% {
    opacity: 0.15;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
}
@media screen and (max-width: 768px) {
  .cosmic-bg__sparkle {
    background-size: 800px 800px;
  }
  .cosmic-bg__nebula {
    filter: blur(30px);
    opacity: 0.45;
  }
}
em.serif {
  background: linear-gradient(180deg, #ffffff 0%, var(--gold-white) 35%, var(--gold-hot) 70%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(255, 220, 150, 0.35)) drop-shadow(0 2px 1px rgba(255, 255, 255, 0.08));
  font-family: var(--font-family-serif);
  font-size: 1.02em;
  font-style: italic;
  font-weight: 500;
  line-height: inherit;
  padding: 0 0.04em;
}
em.serif--big {
  filter: drop-shadow(0 0 18px rgba(255, 220, 150, 0.55)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.25)) drop-shadow(0 3px 2px rgba(0, 0, 0, 0.4));
  font-weight: 600;
}
.glass {
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  background-color: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}
.glass--hoverable {
  transition: border-color var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}
.glass--hoverable:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.25), 0 0 24px rgba(224, 178, 95, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.skeu {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%), rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--font-family);
  font-size: 0.95em;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color var(--transition-duration) ease, border-color var(--transition-duration) ease, transform var(--transition-duration) ease, box-shadow var(--transition-duration) ease;
}
.skeu:hover {
  border-color: var(--gold);
  color: var(--gold-hot);
  transform: translateY(-1px);
}
.skeu--primary {
  background: linear-gradient(180deg, var(--gold-hot) 0%, var(--gold) 100%);
  border-color: var(--gold-hot);
  box-shadow: 0 4px 14px rgba(224, 178, 95, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.55), inset 0 -2px 0 rgba(120, 80, 20, 0.35);
  color: var(--ink);
}
.skeu--primary:hover {
  box-shadow: 0 6px 22px rgba(224, 178, 95, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.7), inset 0 -2px 0 rgba(120, 80, 20, 0.35);
  color: var(--ink);
  transform: translateY(-2px);
}
.skeu--icon {
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.95em;
  height: 30px;
  padding: 0;
  width: 30px;
}
.cosmic-hero {
  position: relative;
  z-index: 10;
}
.cosmic-hero .inset {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1.3fr;
  min-height: calc(100vh - var(--header-height));
  padding: calc(var(--header-height) + 40px) 20px 80px;
}
.cosmic-hero__silhouette {
  align-items: center;
  aspect-ratio: 3 / 4;
  display: flex;
  justify-content: center;
  overflow: hidden;
  width: 100%;
}
.cosmic-hero__portrait {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.cosmic-hero__placeholder {
  align-items: center;
  color: rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
  padding: 40px;
  width: 100%;
}
.cosmic-hero__silhouette-svg {
  display: block;
  height: auto;
  max-width: 180px;
  width: 60%;
}
.cosmic-hero__placeholder-caption {
  color: var(--text-faint);
  font-family: var(--font-family);
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.cosmic-hero__copy {
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cosmic-hero__headline {
  color: var(--text);
  font-size: clamp(2.25em, 5vw, 3.6em);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.cosmic-hero__subcopy {
  color: var(--text-dim);
  font-size: 1.15em;
  line-height: 1.6;
  max-width: 56ch;
}
.cosmic-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .cosmic-hero .inset {
    gap: 36px;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 20px 60px;
  }
  .cosmic-hero__silhouette {
    margin: 0 auto;
    max-width: 260px;
  }
  .cosmic-hero__headline {
    font-size: 2.25em;
  }
}
.about {
  position: relative;
  z-index: 10;
}
.about .inset {
  padding: 100px 20px;
}
.about__copy {
  margin: 0 auto;
  max-width: 62ch;
  text-align: center;
}
.about__eyebrow {
  color: var(--gold);
  font-family: var(--font-family);
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.about__eyebrow span {
  color: var(--gold-hot);
  margin-right: 4px;
}
.about__headline {
  color: var(--text);
  font-size: clamp(1.8em, 3vw, 2.5em);
  margin-bottom: 24px;
}
.about__body {
  color: var(--text-dim);
  font-size: 1.12em;
  line-height: 1.7;
}
.about__body p {
  margin-bottom: 0.8em;
}
.about__body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .about .inset {
    padding: 70px 20px;
  }
  .about__body {
    font-size: 1em;
  }
}
.audience-types {
  position: relative;
  z-index: 10;
}
.audience-types .inset {
  padding: 80px 20px;
}
.audience-types__intro {
  margin-bottom: 40px;
  text-align: center;
}
.audience-types__eyebrow {
  color: var(--gold);
  font-family: var(--font-family);
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.audience-types__eyebrow span {
  color: var(--gold-hot);
  margin-right: 4px;
}
.audience-types__headline {
  color: var(--text);
  font-size: clamp(1.8em, 3vw, 2.5em);
  margin-bottom: 0;
}
.audience-types__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.audience-types__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px;
}
.audience-types__icon {
  background: linear-gradient(180deg, var(--gold-hot) 0%, var(--gold) 100%);
  color: var(--ink);
  font-size: 1.1em;
}
.audience-types__heading {
  color: var(--text);
  font-size: 1.35em;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 0;
}
.audience-types__items {
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
}
.audience-types__items li {
  padding-left: 22px;
  position: relative;
}
.audience-types__items li::before {
  color: var(--gold);
  content: '◇';
  font-size: 0.9em;
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .audience-types__grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .audience-types .inset {
    padding: 60px 20px;
  }
}
.gallery {
  position: relative;
  z-index: 10;
}
.gallery .inset {
  padding: 80px 20px;
}
.gallery__intro {
  margin-bottom: 32px;
  text-align: center;
}
.gallery__eyebrow {
  color: var(--gold);
  font-family: var(--font-family);
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.gallery__eyebrow span {
  color: var(--gold-hot);
  margin-right: 4px;
}
.gallery__eyebrow em.serif {
  letter-spacing: normal;
  text-transform: none;
}
.gallery__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.gallery__tile {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.gallery__tile img,
.gallery__tile iframe {
  border: 0;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.gallery__tile--placeholder {
  align-items: center;
  background: repeating-linear-gradient(45deg, rgba(224, 178, 95, 0.06) 0, rgba(224, 178, 95, 0.06) 8px, rgba(224, 178, 95, 0.02) 8px, rgba(224, 178, 95, 0.02) 16px);
  border: 1.5px dashed rgba(224, 178, 95, 0.45);
  display: flex;
  justify-content: center;
}
.gallery__placeholder-label {
  color: var(--gold);
  font-family: var(--font-family);
  font-size: 0.85em;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.gallery__caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  bottom: 0;
  color: var(--text);
  display: block;
  font-size: 0.9em;
  left: 0;
  padding: 24px 14px 10px;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .gallery .inset {
    padding: 60px 20px;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}
.contact {
  position: relative;
  z-index: 10;
}
.contact .inset {
  padding: 80px 20px 120px;
}
.contact__intro {
  margin-bottom: 40px;
  text-align: center;
}
.contact__eyebrow {
  color: var(--gold);
  font-family: var(--font-family);
  font-size: 0.8em;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.contact__eyebrow span {
  color: var(--gold-hot);
  margin-right: 4px;
}
.contact__headline {
  color: var(--text);
  font-size: clamp(1.8em, 3vw, 2.5em);
  margin-bottom: 16px;
}
.contact__intro-body {
  color: var(--text-dim);
  font-size: 1.05em;
  margin: 0 auto;
  max-width: 56ch;
}
.contact__grid {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1.3fr;
}
.contact__socials-intro {
  color: var(--text-dim);
  font-size: 1em;
  line-height: 1.6;
  margin-top: 8px;
}
.contact__socials-intro p {
  margin-bottom: 0.6em;
}
.contact__socials-intro p:last-child {
  margin-bottom: 0;
}
.contact__socials-intro em {
  color: var(--gold-hot);
  font-style: italic;
}
.contact__socials-intro a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(224, 178, 95, 0.4);
}
.contact__socials-intro a:hover {
  color: var(--gold-hot);
}
.contact__form-wrap {
  padding: 32px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-family);
  font-size: 1em;
  padding: 12px 14px;
  transition: border-color var(--transition-duration) ease;
}
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.contact__field textarea {
  resize: vertical;
}
.contact__field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 34px;
}
.contact__field-label {
  color: var(--text-dim);
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact__field-error {
  color: #ff9a9a;
  font-size: 0.88em;
}
.contact__field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.contact__honeypot {
  height: 0;
  left: -9999px;
  opacity: 0;
  position: absolute;
  width: 0;
}
.contact__submit {
  align-self: flex-start;
  margin-top: 8px;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__info-link {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-size: 1.05em;
  gap: 14px;
  text-decoration: none;
  transition: color var(--transition-duration) ease;
}
.contact__info-link:hover {
  color: var(--gold-hot);
}
.contact__info-link .skeu--icon {
  background: linear-gradient(180deg, var(--gold-hot) 0%, var(--gold) 100%);
  color: var(--ink);
  font-size: 0.95em;
}
.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact__social {
  align-items: center;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}
.contact__social--ghost {
  color: var(--text-faint);
  opacity: 0.5;
}
.contact__social i {
  font-size: 1.05em;
}
.contact__result {
  padding: 32px;
  text-align: center;
}
.contact__result--fail {
  border: 1px solid rgba(255, 154, 154, 0.6);
  color: #ffd4d4;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.contact__result-headline {
  color: var(--text);
  font-size: 2em;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .contact .inset {
    padding: 60px 20px 80px;
  }
  .contact__grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }
  .contact__field-row {
    grid-template-columns: 1fr;
  }
}
