
:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --text: #f4efe4;
  --muted: #d6cdbf;
  --line: rgba(211, 170, 71, 0.42);
  --gold: #d3aa47;
  --gold-soft: #b88d2d;
  --red: #d40f0f;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(37, 50, 29, 0.25), transparent 30%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  line-height: 1.7;
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(211, 170, 71, 0.2);
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(5, 5, 5, 0.82);
  z-index: 10;
}

.brand,
.site-header nav a {
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(212,15,15,0.2));
}

.brand-text { color: var(--text); }

.site-header nav {
  display: flex;
  gap: 1rem;
}

.site-header nav a { color: var(--muted); }
.site-header nav a[aria-current="page"] { color: var(--text); }

main { padding: 3rem 0 4rem; }

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  min-height: 72vh;
}

.hero-copy h1,
.about-intro h1,
.panel h2,
.form-placeholder h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 0.95;
  margin: 0;
}

.hero-copy h1,
.about-intro h1 {
  font-size: clamp(3.5rem, 8vw, 6rem);
  letter-spacing: 0.03em;
}

.eyebrow,
.section-label {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 0.78rem;
}

.tagline {
  font-size: 1.28rem;
  color: var(--muted);
  max-width: 32rem;
}

.hook,
.lead {
  font-size: 1.15rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary {
  background: linear-gradient(180deg, #d3aa47 0%, #b88d2d 100%);
  color: #1c1405;
  font-weight: 600;
}
.button.ghost { background: transparent; }

.hero-art {
  position: relative;
  justify-self: center;
  max-width: 420px;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 36px;
  background: radial-gradient(circle, rgba(212, 15, 15, 0.12), transparent 58%);
  z-index: -1;
}

.hero-art img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(211, 170, 71, 0.18);
}

.panel {
  background: linear-gradient(180deg, var(--panel) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(211, 170, 71, 0.18);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.panel + .panel,
.about-grid,
.note-panel { margin-top: 2rem; }

.story-columns,
.detail-grid,
.about-grid {
  display: grid;
  gap: 1.25rem;
}

.story-columns { grid-template-columns: repeat(3, 1fr); }
.detail-grid,
.about-grid { grid-template-columns: repeat(2, 1fr); }

.detail-grid article,
.about-grid .panel {
  background: var(--panel-strong);
  border-radius: 22px;
  padding: 1.25rem;
  border: 1px solid rgba(211, 170, 71, 0.14);
}

.details-panel h2,
.story-panel h2,
.note-panel h2,
.about-grid h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.arc-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.arc-form-shell {
  background: rgba(0,0,0,0.3);
  border: 1px dashed rgba(211, 170, 71, 0.45);
  border-radius: 24px;
  padding: 1rem;
}

.form-placeholder {
  border-radius: 20px;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
}

.form-placeholder h3 { font-size: 2rem; margin-bottom: 0.5rem; }
.small-note { color: #bfb4a1; font-size: 0.94rem; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li + li { margin-top: 0.7rem; }

.footer-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.site-footer {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(211, 170, 71, 0.2);
  color: #cfc4b2;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero,
  .arc-panel,
  .story-columns,
  .detail-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .hero-art { order: -1; }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  .footer-branding {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-text { font-size: 0.72rem; }
  main { padding-top: 2rem; }
}


.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-kicker span {
  display: inline-block;
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, rgba(211,170,71,0.8), rgba(211,170,71,0.1));
}

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-brand {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 1rem;
}

.contact-logo {
  width: 112px;
  max-width: 32%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(212,15,15,0.2));
}

.clean-list {
  margin: 0;
  padding-left: 1.15rem;
}

.clean-list li + li {
  margin-top: 0.55rem;
}

.arc-page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  margin: 0;
  line-height: 1;
}

.arc-signup-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.compact-actions {
  margin-top: 1.5rem;
}

.teaser-shell {
  border-style: solid;
}

.teaser-card p {
  margin-top: 0.8rem;
}

@media (max-width: 900px) {
  .arc-signup-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-kicker {
    gap: 0.65rem;
  }

  .hero-kicker span {
    width: 52px;
  }

  .contact-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-logo {
    width: 132px;
    max-width: 100%;
  }
}


/* ARC page conversion improvements */
.panel-heading.arc-hero-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.arc-hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.arc-hero-points div {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(211, 170, 71, 0.14);
  border-radius: 18px;
  padding: 0.95rem 1rem;
}

.arc-hero-points strong,
.arc-hero-points span {
  display: block;
}

.arc-hero-points strong {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.arc-hero-points span {
  color: var(--text);
  font-size: 0.98rem;
}

.arc-signup-panel {
  align-items: center;
}

.arc-signup-panel > div:first-child {
  min-width: 0;
}

.benefit-list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.benefit-list li + li {
  margin-top: 0.55rem;
}

.expectation-box {
  margin-top: 1.25rem;
  border: 1px solid rgba(211, 170, 71, 0.18);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.expectation-box p {
  margin: 0;
}

.expectation-box p + p {
  margin-top: 0.7rem;
}

.live-form-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid rgba(211, 170, 71, 0.22);
  padding: 1.4rem;
}

.arc-form-inner {
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
}

.form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.02;
  margin-bottom: 0.45rem;
}

.form-subtitle {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.form-note {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: #bfb4a1;
}

/* MailerLite embedded form overrides */
.ml-embedded {
  margin-top: 1rem;
}

.ml-form-embedContainer,
.ml-form-embedWrapper,
.ml-form-embedBody,
.ml-form-embedContent,
.ml-form-formContent,
.ml-form-successBody {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.ml-form-embedBody,
.ml-form-successBody {
  padding: 0 !important;
}

.ml-form-embedSubmit,
.ml-form-successContent {
  margin-top: 0.9rem !important;
}

.ml-form-formContent h4,
.ml-form-successBody h4,
.ml-form-successHeadline {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  color: var(--text) !important;
  font-size: 2rem !important;
  line-height: 1.02 !important;
  margin: 0 0 0.5rem !important;
}

.ml-form-formContent p,
.ml-form-successBody p,
.ml-form-successContent p {
  color: var(--muted) !important;
  font-size: 0.98rem !important;
}

.ml-form-fieldRow input,
.ml-form-fieldRow textarea,
.ml-form-fieldRow select {
  width: 100% !important;
  background: #0b0b0b !important;
  color: var(--text) !important;
  border: 1px solid rgba(211, 170, 71, 0.35) !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  font-size: 1rem !important;
}

.ml-form-fieldRow input::placeholder,
.ml-form-fieldRow textarea::placeholder {
  color: rgba(244,239,228,0.55) !important;
}

.ml-form-fieldRow input:focus,
.ml-form-fieldRow textarea:focus,
.ml-form-fieldRow select:focus {
  outline: none !important;
  border-color: rgba(211, 170, 71, 0.85) !important;
  box-shadow: 0 0 0 3px rgba(211,170,71,0.12) !important;
}

.ml-form-embedSubmit button,
.ml-form-embedSubmit .primary {
  width: 100% !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #d3aa47 0%, #b88d2d 100%) !important;
  color: #1c1405 !important;
  font-weight: 700 !important;
  padding: 0.95rem 1.2rem !important;
  font-size: 1rem !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 10px 24px rgba(184, 141, 45, 0.22) !important;
}

.ml-form-embedSubmit button:hover,
.ml-form-embedSubmit .primary:hover {
  transform: translateY(-1px) !important;
}

.ml-form-checkboxRow label,
.ml-form-consent,
.ml-form-recaptcha {
  color: var(--muted) !important;
}

.ml-form-embedWrapper.embedForm,
.ml-form-embedWrapper.embedSuccess {
  max-width: 100% !important;
}

.equal-panel {
  min-height: 100%;
}

.lower-info-grid .equal-panel,
.arc-info-grid .equal-panel {
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .panel-heading.arc-hero-heading,
  .arc-hero-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .live-form-shell {
    padding: 1rem;
  }

  .form-title,
  .ml-form-formContent h4,
  .ml-form-successBody h4,
  .ml-form-successHeadline {
    font-size: 1.7rem !important;
  }
}
