:root {
  --gold: #C9A227;
  --gold-light: #E8C468;
  --sun: #B8860B;
  --sun-deep: #8B6914;
  --cream: #F5EAD0;
  --cream-deep: #EBDCB4;
  --ink: #0D0B05;
  --ink-soft: #1C1509;
  --text-body: #3A2E14;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Jost', sans-serif;
  color: var(--text-body);
  background: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
h1 {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  margin: 0 0 20px;
  line-height: 1.15;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 600;
}
p { margin: 0 0 16px; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.header-wrap { padding: 28px 32px; }
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--gold-light);
}
.brand-mark { color: var(--gold); font-size: 1.4rem; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-plain { background: var(--ink); padding: 120px 0 80px; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.hero-photo-col { order: 2; position: relative; }
.hero-content-col { order: 1; }

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
  .hero-photo-col { order: 1; }
  .hero-content-col { order: 2; }
}

.hero-photo-glow {
  position: absolute;
  inset: -14px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(201,162,39,0.35), rgba(184,134,11,0.2), transparent 70%);
  filter: blur(26px);
  z-index: 0;
}
.hero-photo-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid rgba(232, 196, 104, 0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.photo-caption {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  text-align: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  line-height: 1.5;
}
.photo-caption strong {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--cream);
}

.tm { color: var(--gold-light); font-size: 0.6em; vertical-align: super; }

.hero-content-col h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 18px;
}
.kicker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 14px;
}
.subhead {
  font-family: 'Fraunces', serif;
  color: var(--cream);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 14px;
}

.eyebrow {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.tagline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.method-line {
  color: var(--cream-deep);
  font-size: 1.05rem;
  opacity: 0.9;
}

.gold-rule {
  height: 1px;
  width: 84px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  margin: 28px 0 32px;
}

.hero-form-card {
  background: rgba(28, 21, 9, 0.6);
  border: 1px solid rgba(232, 196, 104, 0.35);
  border-radius: 20px;
  padding: 32px;
}
.form-lead {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 24px;
}
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.field input {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(232, 196, 104, 0.4);
  border-radius: 6px;
  padding: 15px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder { color: rgba(58, 46, 20, 0.5); }
.field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.25); }

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.btn-primary {
  background: var(--sun);
  color: var(--cream);
  box-shadow: 0 8px 24px rgba(184, 134, 11, 0.4);
}
.btn-primary:hover { background: var(--gold-light); color: var(--ink); transform: translateY(-2px); }
.btn-full { width: 100%; text-align: center; margin-top: 4px; }

.site-footer {
  background: var(--ink-soft);
  padding: 32px 0 20px;
  color: var(--cream-deep);
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; color: var(--gold-light); font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.1rem; }
.footer-email { font-size: 0.95rem; opacity: 0.85; }
.footer-email:hover { color: var(--gold-light); }
.footer-copy { text-align: center; font-size: 0.8rem; opacity: 0.55; margin: 20px 0 0; }

@media (max-width: 900px) {
  .hero-plain { padding: 100px 0 60px; }
  .hero-photo-img { aspect-ratio: 4/5; }
  .hero-form-card { padding: 28px; }
}
