:root {
  --accent: #C9A227;
  --accent-hover: #E0BE4A;
  --cream: #FAF5EF;
  --ink: #0D0D0D;
  --maroon: #5C1A1B;
  --green: #1E3229;
  --error: #A33A26;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
}

h1, h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; margin: 0; }

p { margin: 0; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

input, select, button, textarea { font-family: inherit; }

::placeholder { color: #B9AFA4; }

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

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.2,.6,.2,1), transform .9s cubic-bezier(.2,.6,.2,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 24px 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, #17110f 0 14px, #120d0c 14px 28px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,.55) 0%, rgba(92,26,27,.55) 55%, rgba(13,13,13,.92) 100%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.eyebrow {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(34px, 8.5vw, 62px);
  line-height: 1.12;
  color: var(--cream);
  margin: 0 0 24px;
  text-wrap: pretty;
}

.hero-sub {
  font-size: clamp(16px, 4.2vw, 19px);
  line-height: 1.7;
  font-weight: 300;
  color: rgba(250,245,239,.78);
  margin: 0 0 40px;
  max-width: 30em;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--ink);
  padding: 20px 34px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.btn-gold:hover { background: var(--accent-hover); color: var(--ink); }

/* ---------- Mission ---------- */
.mission {
  background: var(--cream);
  padding: clamp(72px, 16vw, 128px) 24px;
}

.mission-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 36px;
}

.mission-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(21px, 5.4vw, 30px);
  line-height: 1.5;
  color: var(--maroon);
  margin: 0 0 24px;
  text-wrap: pretty;
}

.mission-sub {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(13,13,13,.68);
}

/* ---------- Method sections ---------- */
.method {
  padding: clamp(72px, 16vw, 120px) 24px;
}

.method-inner {
  max-width: 640px;
  margin: 0 auto;
}

.method--maroon { background: var(--maroon); }
.method--green { background: var(--green); }
.method--black { background: var(--ink); }
.method--cream { background: var(--cream); }

.method-icon {
  width: 124px;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}
.method-icon img { width: 100%; height: 100%; object-fit: contain; }

.method-icon--circle {
  border-radius: 50%;
  padding: 24px;
}
.method-icon--green { background: var(--green); }
.method-icon--maroon { background: var(--maroon); }

.method-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: .3em;
  color: rgba(250,245,239,.42);
  margin-bottom: 14px;
}
.method-number--dark { color: rgba(13,13,13,.35); }

.method h2 {
  font-size: clamp(28px, 8vw, 54px);
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 28px;
}
.method-title--maroon { color: var(--maroon) !important; }

.method-desc {
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
  color: rgba(250,245,239,.8);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.method-desc--dark { color: rgba(13,13,13,.72); }

.method-result {
  border-top: 1px solid rgba(201,162,39,.35);
  padding-top: 24px;
  margin: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(17px, 4.4vw, 21px);
  line-height: 1.6;
}
.method-result--gold { color: var(--accent); }
.method-result--maroon {
  color: var(--maroon);
  border-top-color: rgba(92,26,27,.2);
}

/* ---------- CTA 2 ---------- */
.cta2 {
  background: var(--maroon);
  padding: clamp(80px, 18vw, 132px) 24px;
  text-align: center;
}

.cta2-inner { max-width: 560px; margin: 0 auto; }

.cta2 h2 {
  font-size: clamp(32px, 9vw, 52px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 22px;
}

.cta2 p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(250,245,239,.75);
}

/* ---------- Form ---------- */
.form-section {
  background: var(--cream);
  padding: clamp(64px, 14vw, 120px) 20px clamp(80px, 18vw, 140px);
}

.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 24px 60px -28px rgba(92,26,27,.28), 0 2px 8px rgba(13,13,13,.05);
  padding: clamp(28px, 7vw, 52px);
}

.form-success { text-align: center; padding: 24px 0; }

.success-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  margin: 0 auto 28px;
}

.form-success h2 {
  font-size: clamp(26px, 6.5vw, 34px);
  line-height: 1.25;
  color: var(--maroon);
  margin: 0 0 18px;
}

.form-success p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(13,13,13,.7);
}

#waitlist-form h2 {
  font-size: clamp(28px, 7vw, 38px);
  line-height: 1.2;
  color: var(--maroon);
  margin: 0 0 10px;
}

.form-note {
  font-size: 14.5px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(13,13,13,.6);
  margin: 0 0 34px;
}

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.field-row .field { margin-bottom: 0; }

label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--maroon);
}

input[type="text"], input[type="email"], input[type="tel"], input[type="number"], select {
  width: 100%;
  padding: 15px 16px;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(13,13,13,.18);
  border-radius: 5px;
  outline: none;
  appearance: none;
}
input:focus, select:focus { border-color: var(--accent); }

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] { -moz-appearance: textfield; }

.instagram-wrap {
  display: flex;
  align-items: center;
  border: 1px solid rgba(13,13,13,.18);
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
.instagram-wrap:focus-within { border-color: var(--accent); }
.instagram-at {
  padding: 15px 4px 15px 16px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(13,13,13,.45);
}
.instagram-wrap input {
  flex: 1;
  min-width: 0;
  padding: 15px 16px 15px 2px;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.6;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 300;
  color: rgba(13,13,13,.68);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.field-error {
  font-size: 12.5px;
  color: var(--error);
  display: none;
}
.field-error:not(:empty) { display: block; }

.field.has-error input,
.field.has-error select,
.field.has-error .instagram-wrap {
  border-color: var(--error);
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
  padding: 20px 24px;
  background: var(--green);
  color: var(--cream);
  border: none;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}
.btn-submit:hover { background: var(--ink); }
.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  background: var(--green);
}

.submit-error {
  margin: 16px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--error);
  text-align: center;
}
.submit-error:empty { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  padding: 44px 24px;
  text-align: center;
}

.footer-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  letter-spacing: .1em;
  color: rgba(250,245,239,.85);
}

.footer-tag {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(250,245,239,.4);
}
