:root {
  --black: #050505;
  --black-soft: #0b0a09;
  --ivory: #f5f1e8;
  --gold: #c79a4b;
  --bronze: #8b5a2b;
  --red: #a80b24;
  --grey: #a39c91;
  --grey-dark: #6a655e;
  --line: rgba(199, 154, 75, 0.32);
  --serif: "Bodoni Moda", "Times New Roman", serif;
  --sans: "Inter", Arial, sans-serif;
  --page-x: clamp(1.25rem, 4vw, 5rem);
  --page-y: clamp(1.25rem, 3vw, 2.25rem);
  --ease: cubic-bezier(.2,.75,.25,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 75% 35%, rgba(139, 90, 43, 0.12), transparent 30rem),
    var(--black);
  color: var(--ivory);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--ivory);
  color: var(--black);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.site-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border: 1px solid rgba(199, 154, 75, 0.18);
}

.site-header,
.site-footer {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: var(--page-y) var(--page-x);
}

.site-header {
  min-height: 6.75rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5,5,5,.94), rgba(5,5,5,.74));
  backdrop-filter: blur(14px);
}

.wordmark {
  display: inline-grid;
  gap: .12rem;
  color: inherit;
  text-decoration: none;
}
.wordmark__name {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.wordmark__descriptor {
  color: var(--gold);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.header-status {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--grey);
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.status-dot {
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 .25rem rgba(168, 11, 36, .14);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, .98fr);
  align-items: center;
  min-height: calc(100svh - 6.75rem);
  padding: clamp(4rem, 8vw, 8rem) var(--page-x);
  isolation: isolate;
}

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

.hero__graphic { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.arc {
  position: absolute;
  border: 1px solid rgba(199, 154, 75, .52);
  border-radius: 50%;
}
.arc--one {
  width: min(62vw, 62rem);
  aspect-ratio: 1;
  left: -28vw;
  top: -3rem;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(18deg);
}
.arc--two {
  width: min(34vw, 32rem);
  aspect-ratio: 1;
  right: 9vw;
  bottom: -12rem;
  border-left-color: transparent;
  border-top-color: transparent;
  opacity: .55;
}
.red-edge {
  position: absolute;
  top: 12%;
  left: 0;
  width: 2px;
  height: 28%;
  background: linear-gradient(transparent, var(--red), transparent);
  box-shadow: 0 0 30px rgba(168, 11, 36, .45);
}

.hero__content { position: relative; z-index: 2; max-width: 51rem; }
.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--gold);
  font-size: clamp(.65rem, 1vw, .76rem);
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.eyebrow span { color: var(--red); margin: 0 .55em; }

h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; }
h1 {
  max-width: 11ch;
  font-size: clamp(3.35rem, 7.9vw, 8.25rem);
  line-height: .91;
  letter-spacing: -.065em;
}
h1 em { color: var(--ivory); font-weight: 300; }
h1 em::after {
  content: "";
  display: inline-block;
  width: .38em;
  height: .055em;
  margin-left: .12em;
  background: var(--red);
  vertical-align: .22em;
}

.hero__intro {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: #c8c1b6;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2.15rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 3.5rem;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0;
  font: 600 .7rem/1 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 4px;
}
.button--primary { background: var(--red); color: var(--ivory); }
.button--primary:hover { background: #8d091e; }

.text-link {
  color: var(--ivory);
  font-size: .78rem;
  letter-spacing: .08em;
  text-underline-offset: .4rem;
  text-decoration-color: var(--gold);
}
.text-link:hover { color: var(--gold); }

.hero__services {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.hero__services span:not(:last-child)::after {
  content: "/";
  margin-left: 1.5rem;
  color: var(--bronze);
}

.hero__visual {
  position: relative;
  width: min(100%, 42rem);
  margin: 0 0 0 auto;
}
.image-frame {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.image-frame::before,
.image-frame::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.image-frame::before {
  inset: 3%;
  border: 1px solid rgba(199, 154, 75, .22);
  border-radius: 50%;
}
.image-frame::after {
  inset: auto 5% 6% auto;
  width: 22%;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 25px rgba(168, 11, 36, .55);
}
.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(.95);
}
.hero__visual figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: var(--grey-dark);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero__visual figcaption span:last-child { text-align: right; }

.access {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, .7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 9rem) var(--page-x);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(168, 11, 36, .07), transparent 34%),
    var(--black-soft);
}
.access::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--page-x);
  width: 7rem;
  height: 2px;
  background: var(--red);
}
.access__heading { display: grid; grid-template-columns: auto 1fr; gap: 1.4rem; align-content: start; }
.section-index { margin: .15rem 0 0; color: var(--red); font-size: .7rem; letter-spacing: .18em; }
.access h2 { font-size: clamp(3rem, 5vw, 5.8rem); line-height: .95; letter-spacing: -.05em; }
.access__body > p { max-width: 45rem; margin: 0 0 2.5rem; color: #c8c1b6; font-size: 1rem; line-height: 1.75; }

.access-form { max-width: 58rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.field { position: relative; }
.field label {
  display: block;
  margin-bottom: .65rem;
  color: var(--grey);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.field label span { color: var(--grey-dark); font-weight: 400; }
input, select {
  width: 100%;
  height: 3.4rem;
  border: 0;
  border-bottom: 1px solid rgba(199, 154, 75, .4);
  border-radius: 0;
  background: transparent;
  color: var(--ivory);
  font: 400 1rem var(--sans);
  transition: border-color .2s ease, background-color .2s ease;
}
select { color-scheme: dark; }
input:hover, select:hover, input:focus, select:focus { border-bottom-color: var(--gold); background: rgba(255,255,255,.015); }
input[aria-invalid="true"], select[aria-invalid="true"] { border-bottom-color: var(--red); }
.field-error { display: block; min-height: 1rem; margin-top: .4rem; color: #d36072; font-size: .72rem; }

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.7rem;
}
.privacy-note { max-width: 38rem; margin: 0; color: var(--grey-dark); font-size: .76rem; line-height: 1.55; }
.form-status { min-height: 1.4rem; margin: 1.2rem 0 0; color: var(--gold); font-size: .84rem; }

.site-footer {
  min-height: 5rem;
  border-top: 1px solid var(--line);
  color: var(--grey-dark);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.site-footer p { margin: 0; }

.noscript {
  position: fixed;
  z-index: 50;
  right: 1rem;
  bottom: 1rem;
  max-width: 28rem;
  padding: 1rem;
  background: var(--ivory);
  color: var(--black);
  font: .8rem/1.5 var(--sans);
}

.reveal { opacity: 0; transform: translateY(1.5rem); }
.is-ready .reveal { animation: reveal .9s var(--ease) forwards; }
.is-ready .reveal--delay { animation-delay: .16s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 4rem; min-height: auto; }
  .hero__content { max-width: 44rem; }
  .hero__visual { width: min(100%, 36rem); margin: 0 auto; }
  .access { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 680px) {
  .site-header { min-height: 5.75rem; }
  .header-status { font-size: .6rem; letter-spacing: .13em; }
  .wordmark__descriptor { font-size: .5rem; letter-spacing: .17em; }
  .hero { padding-top: 4rem; }
  h1 { font-size: clamp(3rem, 15vw, 5.2rem); }
  .hero__actions { align-items: stretch; }
  .hero__actions .button { width: 100%; }
  .text-link { text-align: center; }
  .hero__services { display: grid; grid-template-columns: 1fr 1fr; }
  .hero__services span::after { display: none; }
  .hero__visual figcaption { display: grid; }
  .hero__visual figcaption span:last-child { text-align: left; }
  .field-grid { grid-template-columns: 1fr; gap: 1rem; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .site-footer { display: grid; justify-content: start; gap: .75rem; }
}

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