/* ── Variables (inherited from theme.css) ── */
:root {
  --navy: #0F1B2D;
  --navy-light: #1A2D45;
  --cream: #F5F0E8;
  --cream-dark: #EDE6D6;
  --gold: #C8973A;
  --gold-light: #DDB55A;
  --text-dark: #0F1B2D;
  --text-mid: #4A5568;
  --text-light: #F5F0E8;
  --text-muted: #8A96A0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  background: rgba(245, 240, 232, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.18);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  position: relative;
}

.nav-link:hover { color: var(--text-dark); }

.nav-link--active {
  color: var(--text-dark);
  font-weight: 600;
}

.nav-link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--gold);
  border-radius: 1px;
}

/* ── Shared section styles ── */
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-eyebrow.light { color: var(--gold); opacity: 0.8; }

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy);
  line-height: 1.18;
}

.section-title.light { color: var(--text-light); }

/* ── Page header ── */
.page-header {
  padding: 140px 48px 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.97;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-header-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-header-headline {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.08;
}

.page-header-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 460px;
  margin-bottom: 40px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--text-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── Value grid ── */
.value-grid-section {
  background: var(--cream-dark);
  padding: 100px 48px;
}

.value-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.value-grid-header {
  margin-bottom: 64px;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.value-card {
  background: var(--cream);
  padding: 44px 40px;
  border: 1px solid rgba(15, 27, 45, 0.06);
  transition: border-color 0.2s;
}

.value-card:hover { border-color: var(--gold); }

.value-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(200, 151, 58, 0.08);
}

.value-card-title {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Deliverables ── */
.deliverables-section {
  background: var(--navy);
  padding: 100px 48px;
  color: var(--text-light);
}

.deliverables-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.deliverables-sub {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.65;
}

.deliverables-cta {
  margin-top: 40px;
}

.deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.deliverable-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.deliverable-item:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }

.deliverable-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.deliverable-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 8px;
}

.deliverable-body {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}

/* ── Social proof ── */
.proof-section {
  background: var(--cream);
  padding: 100px 48px;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.proof-quote {
  background: var(--cream-dark);
  padding: 48px;
  border-left: 3px solid var(--gold);
  position: relative;
}

.proof-quote--muted { background: #f0ebe1; }

.proof-mark {
  margin-bottom: 24px;
}

.proof-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.proof-attribution {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-style: normal;
}

.proof-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.proof-role {
  font-size: 13px;
  color: var(--text-muted);
}

.proof-note {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 24px;
  margin-bottom: 0;
  text-align: center;
}

.proof-note a {
  color: var(--gold);
  text-decoration: none;
}

.proof-note a:hover {
  text-decoration: underline;
}

/* ── Intake section ── */
.intake-section {
  background: var(--navy);
  padding: 100px 48px;
  color: var(--text-light);
}

.intake-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.intake-sub {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.65;
  max-width: 420px;
}

.intake-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
}

.intake-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.65);
}

.intake-or {
  margin-top: 32px;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
}

.intake-email {
  color: var(--gold);
  text-decoration: none;
}

.intake-email:hover { text-decoration: underline; }

/* ── Form panel ── */
.intake-form-panel {
  background: var(--cream-dark);
  padding: 48px;
  color: var(--text-dark);
}

.form-panel-header {
  margin-bottom: 36px;
}

.form-panel-header h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-panel-header p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

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

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid rgba(15, 27, 45, 0.12);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
}

.form-field textarea { resize: vertical; }

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%230F1B2D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

.form-footer {
  margin-top: 8px;
}

.form-error {
  font-size: 13px;
  color: #b91c1c;
  margin-bottom: 12px;
  min-height: 18px;
}

.form-privacy {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

.req { color: var(--gold); }

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

.success-icon { margin-bottom: 24px; }

.form-success h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 15px;
  color: var(--text-mid);
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  padding: 40px 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  display: block;
}

.footer-tagline {
  display: block;
  font-size: 12px;
  color: rgba(245,240,232,0.4);
  margin-top: 4px;
}

.footer-meta {
  font-size: 12px;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-link {
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: var(--text-light); }

.footer-sep { opacity: 0.4; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .page-header-inner { grid-template-columns: 1fr; gap: 48px; }
  .page-header::before { width: 35%; opacity: 0.6; }
  .page-header-headline { font-size: 44px; }
  .intake-inner { grid-template-columns: 1fr; gap: 60px; }
  .deliverables-inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { gap: 24px; }
  .nav-link { font-size: 12px; }
  .value-grid { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: 1fr; }
  .page-header { padding: 100px 24px 72px; }
  .value-grid-section { padding: 72px 24px; }
  .deliverables-section { padding: 72px 24px; }
  .proof-section { padding: 72px 24px; }
  .intake-section { padding: 72px 24px; }
  .intake-form-panel { padding: 36px; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .page-header-headline { font-size: 36px; }
  .page-header-sub { font-size: 15px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { justify-content: center; }
}