:root {
  --ink: #1b1418;
  --wine: #542236;
  --wine-dark: #28131d;
  --night: #140e12;
  --gold: #c8a96a;
  --gold-light: #e5d1a5;
  --paper: #f4efe6;
  --paper-deep: #e7dece;
  --muted: #6d6267;
  --error: #9c2f3d;
  --shadow: 0 28px 70px rgba(20, 11, 16, 0.25);
  --serif-display: "Cinzel", Georgia, serif;
  --serif-body: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--night);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(200, 169, 106, 0.11), transparent 27rem),
    linear-gradient(135deg, #170f14, #24141c 52%, #110c10);
  font-family: var(--serif-body);
  font-size: 1.18rem;
  line-height: 1.55;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--wine);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.55rem 0.8rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-180%);
}

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

.site-header {
  display: flex;
  justify-content: center;
  padding: 2rem 1.5rem 1.2rem;
  color: var(--paper);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  text-decoration: none;
}

.wordmark:hover {
  color: var(--paper);
}

.wordmark-main {
  font-family: var(--serif-display);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.2em;
}

.wordmark-sub {
  color: var(--gold-light);
  font-family: var(--serif-display);
  font-size: 0.63rem;
  letter-spacing: 0.55em;
  transform: translateX(0.27em);
}

.release-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(23rem, 0.95fr);
  width: min(1180px, calc(100% - 2rem));
  min-height: 680px;
  margin: 0 auto 3rem;
  overflow: hidden;
  border: 1px solid rgba(229, 209, 165, 0.3);
  box-shadow: var(--shadow);
}

.story-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7.5rem);
  color: var(--paper);
  background:
    linear-gradient(rgba(37, 14, 25, 0.82), rgba(22, 12, 17, 0.94)),
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 34px,
      rgba(200, 169, 106, 0.07) 35px,
      rgba(200, 169, 106, 0.07) 36px
    );
}

.story-panel::before,
.story-panel::after {
  content: "";
  position: absolute;
  width: 8rem;
  height: 8rem;
  border-color: rgba(200, 169, 106, 0.34);
  pointer-events: none;
}

.story-panel::before {
  top: 1.5rem;
  left: 1.5rem;
  border-top: 1px solid;
  border-left: 1px solid;
}

.story-panel::after {
  right: 1.5rem;
  bottom: 1.5rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.eyebrow,
.form-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-panel h1,
.form-card h2,
.message-card h1,
.legal-shell h1,
.legal-shell h2 {
  font-family: var(--serif-display);
  font-weight: 600;
  line-height: 1.12;
}

.story-panel h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.8rem, 6.4vw, 5.7rem);
  letter-spacing: -0.035em;
}

.hero-tagline {
  margin: 1.1rem 0 0;
  color: var(--gold-light);
  font-size: clamp(1.28rem, 2.4vw, 1.75rem);
  font-style: italic;
}

.rule {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: min(17rem, 85%);
  margin: 2.2rem 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.rule::before,
.rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(200, 169, 106, 0.55);
}

.hero-copy {
  max-width: 31rem;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.hero-note {
  margin: 1.5rem 0 0;
  color: rgba(244, 239, 230, 0.7);
  font-style: italic;
}

.form-panel {
  display: flex;
  align-items: center;
  padding: clamp(1.3rem, 4vw, 4.5rem);
  background:
    linear-gradient(rgba(244, 239, 230, 0.96), rgba(239, 231, 217, 0.98)),
    repeating-linear-gradient(0deg, transparent 0, transparent 23px, rgba(84, 34, 54, 0.05) 24px);
}

.form-card {
  width: 100%;
  max-width: 33rem;
  margin: auto;
}

.form-card h2 {
  margin: 0;
  color: var(--wine-dark);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.form-intro {
  margin: 0.85rem 0 1.8rem;
  color: var(--muted);
}

.error-summary {
  margin: 0 0 1.3rem;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--error);
  color: #611b25;
  background: rgba(156, 47, 61, 0.08);
}

.error-summary p {
  margin: 0;
  font-weight: 600;
}

.field-group {
  margin-bottom: 1.15rem;
}

.field-group label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--wine-dark);
  font-family: var(--serif-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.68rem 0.85rem;
  border: 1px solid #b9aa9a;
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  font: 1.15rem/1.2 var(--serif-body);
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.field-group input:focus {
  outline: none;
  border-color: var(--wine);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(84, 34, 54, 0.13);
}

.has-error input[type="text"],
.has-error input[type="email"] {
  border-color: var(--error);
}

.field-error {
  margin: 0.35rem 0 0;
  color: var(--error);
  font-size: 0.95rem;
  font-weight: 600;
}

.check-group {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  column-gap: 0.65rem;
  align-items: start;
  margin: 1rem 0;
}

.check-group input {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.22rem 0 0;
  accent-color: var(--wine);
}

.check-group label {
  color: #4c4146;
  font-size: 1rem;
  line-height: 1.35;
}

.check-error {
  grid-column: 2;
}

.primary-button {
  width: 100%;
  min-height: 3.5rem;
  margin-top: 0.75rem;
  border: 1px solid var(--wine-dark);
  color: var(--paper);
  background: var(--wine-dark);
  font-family: var(--serif-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease;
}

.primary-button:hover {
  color: var(--wine-dark);
  background: transparent;
  transform: translateY(-1px);
}

.primary-button:focus-visible,
.text-link:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.form-fine-print {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
  text-align: center;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2.2rem;
  color: rgba(244, 239, 230, 0.62);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 1.2rem;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.responsibility {
  text-align: right;
}

.message-shell {
  display: grid;
  place-items: center;
  width: min(760px, calc(100% - 2rem));
  min-height: 610px;
  margin: 0 auto 3rem;
  padding: 2rem;
  border: 1px solid rgba(229, 209, 165, 0.3);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
}

.message-card {
  max-width: 34rem;
}

.message-symbol {
  margin: 0 0 1.2rem;
  color: var(--gold);
  font-family: var(--serif-display);
  font-size: 2rem;
}

.message-card h1 {
  margin: 0 0 1rem;
  color: var(--wine-dark);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.message-card p {
  font-size: 1.25rem;
}

.message-card .muted {
  color: var(--muted);
  font-size: 1rem;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--wine);
  font-family: var(--serif-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-shell {
  width: min(800px, calc(100% - 2rem));
  margin: 0 auto 3rem;
  padding: clamp(2rem, 6vw, 5rem);
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  margin: 0 0 0.5rem;
  color: var(--wine-dark);
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-shell h2 {
  margin: 2rem 0 0.4rem;
  color: var(--wine);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.legal-shell p {
  margin: 0.4rem 0;
}

.legal-updated,
.legal-note {
  color: var(--muted);
  font-size: 1rem;
}

.legal-note {
  margin-top: 2.5rem !important;
  padding-top: 1.2rem;
  border-top: 1px solid var(--paper-deep);
  font-style: italic;
}

.legal-shell address {
  font-style: normal;
}

@media (max-width: 850px) {
  .release-shell {
    grid-template-columns: 1fr;
  }

  .story-panel {
    min-height: 480px;
  }

  .story-panel h1 {
    max-width: 12ch;
  }

  .form-panel {
    padding-block: 3rem;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1.08rem;
  }

  .site-header {
    padding-top: 1.4rem;
  }

  .release-shell,
  .message-shell,
  .legal-shell,
  .site-footer {
    width: calc(100% - 1rem);
  }

  .story-panel {
    min-height: 440px;
    padding: 3.2rem 2rem;
  }

  .story-panel::before,
  .story-panel::after {
    width: 5rem;
    height: 5rem;
  }

  .form-panel {
    padding: 2.4rem 1.2rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .responsibility {
    text-align: center;
  }

  .message-shell {
    min-height: 520px;
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.already-notice {
  border: 1px solid rgba(223, 190, 123, 0.45);
  background: rgba(223, 190, 123, 0.12);
  border-radius: 18px;
  color: #f7ebd0;
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0 0 1.35rem;
  padding: 0.95rem 1rem;
}

.already-notice strong {
  display: block;
  color: #f7d992;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
