:root {
  --bg: #030507;
  --bg-deep: #010203;
  --bg-soft: #0a0d12;
  --panel: rgba(11, 14, 19, .82);
  --ink: #f2f1ee;
  --ink-soft: #d5d4d0;
  --muted: #9a9da3;
  --muted-dark: #73777e;
  --gold: #b8843b;
  --gold-bright: #e0b66b;
  --gold-soft: #c99a50;
  --line: rgba(202, 154, 80, .25);
  --line-soft: rgba(255, 255, 255, .08);
  --header-h: 88px;
  --content: 1180px;
  --reading: 840px;
  --radius: 24px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% -14%, rgba(66, 70, 80, .26), transparent 43%),
    linear-gradient(145deg, #020304 0%, #070a0f 53%, #020304 100%);
  font-family: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255, 255, 255, .018) 8.05%, transparent 8.1% 91.9%, rgba(255, 255, 255, .018) 91.95%, transparent 92%),
    radial-gradient(ellipse at center, transparent 22%, rgba(0, 0, 0, .66) 100%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

img {
  max-width: 100%;
}

::selection {
  color: #090a0c;
  background: var(--gold-bright);
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 11px 15px;
  color: #07090c;
  background: var(--gold-bright);
  border-radius: 8px;
  font-size: .86rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-atmosphere,
.site-atmosphere__grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-atmosphere {
  z-index: -3;
  overflow: hidden;
}

.site-atmosphere__grain {
  z-index: 2;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-atmosphere__glow {
  position: absolute;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .085;
}

.site-atmosphere__glow--one {
  top: 4%;
  left: -20rem;
  background: #bc8438;
  animation: glow-one 16s var(--ease) infinite alternate;
}

.site-atmosphere__glow--two {
  right: -20rem;
  bottom: -10rem;
  background: #54708e;
  animation: glow-two 19s var(--ease) infinite alternate;
}

@keyframes glow-one {
  to { transform: translate3d(6rem, 3rem, 0) scale(1.08); }
}

@keyframes glow-two {
  to { transform: translate3d(-7rem, -3rem, 0) scale(.92); }
}

.signal {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  opacity: .07;
  transform: rotate(-4deg);
}

.signal i {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 20px rgba(210, 161, 80, .28);
}

.signal i:nth-child(1) { width: 96px; }
.signal i:nth-child(2) { width: 142px; }
.signal i:nth-child(3) { width: 72px; }

.signal--one {
  top: 24%;
  left: -14px;
}

.signal--two {
  right: -18px;
  bottom: 20%;
  transform: rotate(176deg);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 13px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid rgba(189, 139, 61, .16);
  background: linear-gradient(to bottom, rgba(2, 3, 5, .91), rgba(2, 3, 5, .58));
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
}

.header-brand {
  display: block;
  width: clamp(158px, 17vw, 228px);
  min-width: 0;
  line-height: 0;
  text-decoration: none;
}

.header-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a,
.site-nav button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 0;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 450;
  letter-spacing: .09em;
  text-decoration: none;
  transition: color .25s ease;
}

.site-nav a::after,
.site-nav button::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  transform: scaleX(0);
  transition: transform .28s var(--ease);
}

.site-nav a:hover,
.site-nav button:hover {
  color: var(--gold-bright);
}

.site-nav a:hover::after,
.site-nav button:hover::after {
  transform: scaleX(1);
}

.site-nav button span {
  color: var(--gold-soft);
  font-size: 1rem;
  transition: transform .25s var(--ease);
}

.site-nav button:hover span {
  transform: translate(2px, -2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: calc(var(--header-h) + 70px) clamp(18px, 4vw, 64px) 96px;
  place-items: center;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: var(--header-h);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(226, 181, 104, .18), transparent);
}

.hero::after {
  bottom: 0;
  height: 28%;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .86), transparent),
    radial-gradient(ellipse at 50% 100%, rgba(179, 125, 47, .08), transparent 65%);
}

.hero__aura {
  position: absolute;
  top: 19%;
  left: 50%;
  z-index: -1;
  width: min(1020px, 94vw);
  height: min(570px, 62vh);
  background:
    radial-gradient(ellipse at center, rgba(69, 76, 89, .21), rgba(17, 21, 28, .07) 43%, transparent 72%);
  transform: translateX(-50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(var(--content), 100%);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 clamp(22px, 3vh, 34px);
  color: var(--gold-bright);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .4em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft));
}

.eyebrow span:last-child {
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.hero__logo {
  display: block;
  width: min(1050px, 92vw);
  height: auto;
  margin: 0;
  animation: logo-in 1s var(--ease) both;
}

@keyframes logo-in {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero__slogan {
  max-width: 840px;
  margin: clamp(22px, 4vh, 38px) 0 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.hero__intro {
  max-width: 720px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: clamp(.98rem, 1.35vw, 1.12rem);
  font-weight: 350;
  line-height: 1.75;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 11px 14px 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 520;
  letter-spacing: .065em;
  text-decoration: none;
  transition: transform .25s var(--ease), border-color .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #11100d;
  background: linear-gradient(135deg, #efcd8c 0%, #c28b3e 56%, #a86f2c 100%);
  border: 1px solid rgba(245, 211, 151, .72);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .27), inset 0 1px 0 rgba(255, 255, 255, .28);
}

.button--primary:hover {
  box-shadow: 0 18px 48px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .32);
}

.button--secondary {
  color: var(--ink);
  background: rgba(8, 10, 14, .52);
  border: 1px solid rgba(207, 158, 82, .54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02), 0 14px 36px rgba(0, 0, 0, .19);
}

.button--secondary:hover {
  color: var(--gold-bright);
  background: rgba(200, 149, 70, .09);
  border-color: rgba(234, 193, 120, .84);
}

.button__icon {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  place-items: center;
  font-size: 1rem;
  transition: transform .25s var(--ease);
}

.button--primary .button__icon {
  color: #e7c57f;
  background: rgba(8, 8, 8, .78);
}

.button--secondary .button__icon {
  color: #11100d;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.button:hover .button__icon {
  transform: translateX(2px);
}

.hero__footer-note {
  position: absolute;
  right: clamp(20px, 4vw, 68px);
  bottom: 52px;
  left: clamp(20px, 4vw, 68px);
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  align-items: center;
  gap: 22px;
  color: rgba(207, 194, 171, .48);
  font-size: .62rem;
  letter-spacing: .22em;
  text-align: center;
  text-transform: uppercase;
}

.hero__footer-note p {
  margin: 0;
}

.hero__footer-note span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 154, 76, .34));
}

.hero__footer-note span:last-child {
  background: linear-gradient(90deg, rgba(205, 154, 76, .34), transparent);
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 18px;
  color: rgba(197, 198, 200, .45);
  background: linear-gradient(to top, rgba(0, 0, 0, .62), transparent);
  font-size: .63rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer a,
.site-footer button {
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  text-transform: inherit;
  transition: color .2s ease;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--gold-bright);
}

.site-footer__dot {
  width: 3px;
  height: 3px;
  background: var(--gold-soft);
  border-radius: 50%;
}

/* Story page */

.page--story {
  background:
    radial-gradient(circle at 18% 16%, rgba(115, 80, 35, .09), transparent 28%),
    radial-gradient(circle at 82% 40%, rgba(74, 86, 103, .09), transparent 34%),
    linear-gradient(145deg, #020304 0%, #080b10 55%, #020304 100%);
}

.story {
  position: relative;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 96px) 0 90px;
}

.story::before {
  position: absolute;
  top: calc(var(--header-h) + 45px);
  left: 50%;
  z-index: -1;
  width: min(950px, 92vw);
  height: 520px;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(66, 72, 84, .17), transparent 68%);
  transform: translateX(-50%);
}

.story__header {
  max-width: 990px;
  margin: 0 auto;
  text-align: center;
}

.story__header .eyebrow {
  justify-content: center;
}

.story h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8vw, 7rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.story__lead {
  max-width: 950px;
  margin: clamp(30px, 5vw, 54px) auto 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -.018em;
  text-wrap: balance;
}

.story__lead strong {
  font-weight: 400;
}

.story__rule {
  display: grid;
  width: min(820px, 92%);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: clamp(50px, 7vw, 78px) auto;
}

.story__rule span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(208, 158, 80, .45));
}

.story__rule span:last-child {
  background: linear-gradient(90deg, rgba(208, 158, 80, .45), transparent);
}

.story__rule i {
  display: grid;
  width: 28px;
  height: 22px;
  gap: 4px;
}

.story__rule i::before,
.story__rule i::after {
  display: block;
  width: 28px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #8e6128, #e2b96e, #8e6128);
  border-radius: 999px;
}

.story__body {
  width: min(1030px, 100%);
  margin: 0 auto;
}

.story-block p,
.founders-card p {
  margin: 0;
}

.story-block--wide {
  width: min(var(--reading), 100%);
  margin: 0 auto;
}

.story-block--wide p {
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.52rem);
  line-height: 1.85;
  letter-spacing: -.01em;
}

.story-block--wide p::first-letter {
  float: left;
  margin: .06em .13em 0 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.35em;
  line-height: .76;
}

.story-block--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 88px);
  margin-top: clamp(55px, 8vw, 94px);
  padding-top: clamp(38px, 5vw, 58px);
  border-top: 1px solid var(--line);
}

.story-block--split p {
  position: relative;
  color: #c2c3c5;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.85;
}

.story-block--split p:first-child::before,
.story-block--split p:last-child::before {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 22px;
  content: "";
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  border-radius: 999px;
}

.founders-card {
  position: relative;
  margin-top: clamp(56px, 9vw, 105px);
  padding: clamp(36px, 6vw, 64px);
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(200, 151, 75, .12), transparent 40%),
    linear-gradient(145deg, rgba(17, 20, 26, .88), rgba(7, 9, 13, .95));
  border: 1px solid rgba(209, 161, 85, .28);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255, 255, 255, .025);
}

.founders-card::after {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 86px;
  height: 58px;
  content: "";
  opacity: .16;
  background:
    linear-gradient(var(--gold-bright), var(--gold-bright)) 0 0 / 86px 4px no-repeat,
    linear-gradient(var(--gold-bright), var(--gold-bright)) 0 22px / 58px 4px no-repeat,
    linear-gradient(var(--gold-bright), var(--gold-bright)) 0 44px / 72px 4px no-repeat;
}

.founders-card__label {
  margin-bottom: 22px !important;
  color: var(--gold-bright);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .42em;
}

.founders-card p:last-child {
  max-width: 880px;
  color: var(--ink-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.14rem, 2vw, 1.52rem);
  line-height: 1.72;
}

.founders-card strong {
  color: var(--ink);
  font-weight: 600;
}

.story-closing {
  margin-top: clamp(58px, 9vw, 102px);
  text-align: center;
}

.story-closing p {
  max-width: 920px;
  margin: 0 auto;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1.15;
  letter-spacing: -.04em;
  text-wrap: balance;
}

.story-closing strong {
  font-weight: 400;
}

.story__signature {
  display: flex;
  width: min(920px, 100%);
  flex-direction: column;
  align-items: center;
  margin: clamp(80px, 12vw, 145px) auto 0;
  padding-top: clamp(56px, 7vw, 84px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.story__signature img {
  display: block;
  width: min(660px, 90vw);
  height: auto;
}

.story__signature p {
  margin: 28px 0 0;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
}

.story__signature .button {
  margin-top: 30px;
}

.site-footer--flow {
  position: relative;
  min-height: 58px;
  border-top: 1px solid rgba(196, 145, 70, .14);
  background: #020304;
}

/* Contact dialog */

.contact-dialog:not([open]) {
  display: none;
}

.contact-dialog {
  width: min(580px, calc(100vw - 30px));
  max-height: calc(100svh - 30px);
  margin: auto;
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border: 0;
}

.contact-dialog::backdrop {
  background: rgba(0, 2, 5, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: backdrop-in .25s ease both;
}

@keyframes backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contact-dialog[open] .contact-card {
  animation: dialog-in .38s var(--ease) both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(18px) scale(.975); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.contact-card {
  position: relative;
  padding: clamp(34px, 6vw, 54px);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(87, 93, 105, .21), transparent 43%),
    linear-gradient(145deg, rgba(13, 16, 22, .995), rgba(3, 5, 8, .995));
  border: 1px solid rgba(207, 158, 82, .34);
  border-radius: 24px;
  box-shadow: 0 38px 105px rgba(0, 0, 0, .62), inset 0 1px 0 rgba(255, 255, 255, .03);
}

.contact-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.contact-card__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  display: grid;
  width: 39px;
  height: 39px;
  padding: 0;
  color: var(--muted);
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
  font-size: 1.45rem;
  line-height: 1;
  transition: color .2s ease, border-color .2s ease, transform .2s var(--ease);
}

.contact-card__close:hover {
  color: var(--gold-bright);
  border-color: rgba(220, 172, 96, .42);
  transform: rotate(6deg);
}

.contact-card__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(350px, 82%);
  height: auto;
  margin: 0 auto;
}

.contact-card__kicker {
  position: relative;
  z-index: 1;
  margin: 19px 0 0;
  color: var(--gold-soft);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .44em;
}

.contact-card h2 {
  position: relative;
  z-index: 1;
  margin: 17px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 3.15rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.contact-card__copy {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 17px auto 0;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.68;
}

.email-reveal {
  position: relative;
  z-index: 1;
  margin-top: 26px;
}

.email-reveal__button,
.email-reveal__link {
  display: inline-flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 21px;
  color: var(--ink);
  background: rgba(205, 153, 73, .08);
  border: 1px solid rgba(224, 181, 109, .54);
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
  font-size: .9rem;
  letter-spacing: .03em;
  text-decoration: none;
  transition: transform .22s var(--ease), background .22s ease, border-color .22s ease;
}

.email-reveal__button:hover,
.email-reveal__link:hover {
  transform: translateY(-2px);
  background: rgba(205, 153, 73, .14);
  border-color: var(--gold-bright);
}

.email-reveal__icon {
  color: var(--gold-bright);
}

.email-reveal__link {
  color: var(--gold-bright);
  font-size: clamp(.88rem, 3.5vw, 1.03rem);
  letter-spacing: .055em;
}

.email-reveal__status {
  min-height: 1px;
  margin: 0;
}

.contact-card__note,
.noscript-message {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 18px auto 0;
  color: rgba(189, 192, 198, .5);
  font-size: .69rem;
  line-height: 1.55;
}

.noscript-message {
  color: var(--gold-bright);
}

@media (max-width: 820px) {
  :root {
    --header-h: 74px;
  }

  .site-header {
    gap: 18px;
    padding: 11px 18px;
  }

  .header-brand {
    width: clamp(132px, 36vw, 178px);
  }

  .site-nav {
    gap: 19px;
  }

  .site-nav a,
  .site-nav button {
    font-size: .78rem;
    letter-spacing: .055em;
  }

  .hero {
    padding: calc(var(--header-h) + 54px) 18px 104px;
  }

  .hero__logo {
    width: min(900px, 98vw);
  }

  .hero__intro {
    max-width: 580px;
  }

  .hero__footer-note {
    right: 20px;
    bottom: 48px;
    left: 20px;
    gap: 12px;
    font-size: .52rem;
    letter-spacing: .12em;
  }

  .story {
    width: min(100% - 34px, var(--content));
    padding-top: calc(var(--header-h) + 76px);
  }

  .story-block--split {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .header-brand {
    width: 136px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a,
  .site-nav button {
    font-size: .73rem;
    letter-spacing: .035em;
  }

  .site-nav button span {
    display: none;
  }

  .eyebrow {
    gap: 11px;
    font-size: .58rem;
    letter-spacing: .32em;
  }

  .eyebrow span {
    width: 24px;
  }

  .hero {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero__logo {
    width: 100%;
  }

  .hero__slogan {
    margin-top: 20px;
    font-size: clamp(1.45rem, 7.2vw, 1.85rem);
  }

  .hero__intro {
    font-size: .9rem;
    line-height: 1.65;
  }

  .hero__actions {
    width: 100%;
  }

  .button {
    min-height: 51px;
    font-size: .79rem;
  }

  .hero__footer-note {
    grid-template-columns: 1fr;
  }

  .hero__footer-note span {
    display: none;
  }

  .site-footer {
    font-size: .55rem;
    letter-spacing: .08em;
  }

  .story {
    width: min(100% - 28px, var(--content));
    padding-top: calc(var(--header-h) + 60px);
  }

  .story h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .story__lead {
    font-size: 1.36rem;
    line-height: 1.48;
  }

  .story__rule {
    margin: 44px auto;
  }

  .story-block--wide p {
    font-size: 1.07rem;
    line-height: 1.78;
  }

  .story-block--wide p::first-letter {
    font-size: 3.7em;
  }

  .story-block--split {
    margin-top: 50px;
    padding-top: 34px;
  }

  .founders-card {
    padding: 34px 24px;
    border-radius: 19px;
  }

  .founders-card::after {
    top: 20px;
    right: 17px;
    transform: scale(.72);
    transform-origin: top right;
  }

  .founders-card p:last-child {
    font-size: 1.08rem;
  }

  .story-closing p {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .story__signature img {
    width: 96%;
  }

  .contact-card {
    padding: 40px 22px 30px;
    border-radius: 20px;
  }

  .contact-card__logo {
    width: 86%;
  }
}

@media (max-width: 390px) {
  .header-brand {
    width: 122px;
  }

  .site-nav {
    gap: 11px;
  }

  .site-nav a,
  .site-nav button {
    font-size: .69rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .button {
    width: 100%;
  }
}

@media (max-height: 760px) and (min-width: 821px) {
  .hero {
    padding-top: calc(var(--header-h) + 44px);
    padding-bottom: 82px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero__logo {
    width: min(760px, 72vw);
  }

  .hero__slogan {
    margin-top: 18px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
  }

  .hero__intro {
    margin-top: 10px;
    line-height: 1.5;
  }

  .hero__actions {
    margin-top: 18px;
  }
}

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