/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:     #4A6741;
  --brand-dk:  #36502F;
  --gold:      #C4A882;
  --dark:      #1C1C1A;
  --mid:       #5A5A54;
  --light:     #9A9A92;
  --bg:        #FDFCF8;
  --white:     #FFFFFF;
  --cream:     #F7F4EE;
  --border:    #E8E4DC;
  --radius:    4px;
  --radius-lg: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ── Eyebrow ── */
.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── Hero ── */
.hero {
  background: var(--dark);
  color: var(--white);
  padding: 120px 32px 112px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 560px;
}

.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to right, transparent 0%, black 25%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%);
  opacity: 0.75;
  filter: brightness(0.7) contrast(1.1);
}

.hero--resources {
  background: #1E211C;
}

.hero-inner {
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.58);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.8;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.45);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.btn-primary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}

.btn-full {
  width: 100%;
  text-align: center;
  background: var(--brand);
  border: 1px solid var(--brand);
  color: var(--white);
  padding: 16px;
  font-size: 0.75rem;
}

.btn-full:hover {
  background: var(--brand-dk);
  border-color: var(--brand-dk);
}

/* ── What You Get ── */
.what-you-get {
  padding: 104px 32px;
  text-align: center;
  background: var(--bg);
}

.what-you-get h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.15;
}

.what-you-get > .container > p {
  color: var(--light);
  font-size: 0.9375rem;
  margin-bottom: 64px;
  letter-spacing: 0.02em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  text-align: left;
}

.card {
  background: var(--bg);
  padding: 44px 36px;
  transition: background 0.2s;
}

.card:hover { background: var(--cream); }

.card-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0.8;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── About ── */
.about {
  background: var(--cream);
  padding: 104px 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

.about-photo {
  flex-shrink: 0;
  width: 280px;
}

.about-photo img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
  filter: grayscale(15%);
}

.about h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about p {
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}

/* ── Inline link ── */
.inline-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s, border-color 0.2s;
}
.inline-link:hover {
  color: var(--brand-dk);
  border-color: var(--brand);
}

/* ── Registration Form ── */
.register {
  padding: 104px 32px;
  background: var(--bg);
}

.form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 56px 52px;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.form-wrapper h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 10px;
  line-height: 1.2;
}

.form-sub {
  font-size: 0.9rem;
  color: var(--light);
  margin-bottom: 40px;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.01em;
}

form { text-align: left; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  color: var(--mid);
}

.req { color: var(--gold); }
.opt { font-weight: 300; color: var(--light); font-size: 0.8rem; text-transform: none; letter-spacing: 0; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 0;
  font-size: 0.9375rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder { color: #ccc; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239A9A92' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-fine {
  text-align: center;
  font-size: 0.8rem;
  color: var(--light);
  margin-top: 16px;
  letter-spacing: 0.02em;
  font-weight: 300;
}

/* ── Downloads (resources page) ── */
.downloads {
  padding: 104px 32px;
  background: var(--bg);
}

.downloads h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.15;
}

.section-sub {
  text-align: center;
  color: var(--light);
  margin-bottom: 56px;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.03em;
}

.download-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  max-width: 700px;
  margin: 0 auto;
}

.download-card {
  background: var(--bg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  transition: background 0.2s;
}

.download-card:hover { background: var(--cream); }

.download-icon { font-size: 1.75rem; flex-shrink: 0; opacity: 0.8; }

.download-info { flex: 1; }

.download-info h3 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.download-info p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 4px;
  font-weight: 300;
}

.file-meta {
  font-size: 0.75rem;
  color: var(--light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-download {
  display: inline-block;
  background: transparent;
  color: var(--brand);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.btn-download:hover {
  background: var(--brand);
  color: var(--white);
}

/* ── Next Steps ── */
.next-steps {
  background: var(--cream);
  padding: 104px 32px;
  border-top: 1px solid var(--border);
}

.next-steps h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 300;
  margin-bottom: 56px;
  text-align: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--border);
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  width: 28px;
  line-height: 1.4;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.step p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.35);
  padding: 48px 32px;
  text-align: center;
}

.footer .logo {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
}

.footer p {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 300;
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .form-wrapper { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .download-card { flex-wrap: wrap; }
  .btn-download { width: 100%; text-align: center; }
  .nav { padding: 18px 24px; }
  .hero { text-align: center; padding: 80px 24px; min-height: auto; }
  .hero-photo { width: 100%; opacity: 0.2; }
  .hero-inner { max-width: 100%; }
  .about-inner { flex-direction: column; gap: 32px; }
  .about-photo { width: 200px; margin: 0 auto; }
}
