/* PROVOST — Shared brand stylesheet */

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

:root {
  --black:    #07070D;
  --deep:     #0E0E1A;
  --panel:    #141422;
  --border:   #1E1E30;
  --gold:     #C8A96E;
  --gold-dim: #8A7249;
  --gold-lt:  #E0C48A;
  --white:    #EDE9DF;
  --muted:    #7A7870;
  --line:     rgba(200,169,110,0.12);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  font-family: 'Cormorant Garamond', serif;
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

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

.container { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* === NAV === */
nav.site-nav {
  position: relative; z-index: 10;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(7,7,13,0.7);
  backdrop-filter: blur(12px);
}
nav.site-nav .inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.32em;
  font-size: 16px;
  text-decoration: none;
}
.nav-brand:hover { color: var(--white); }
.nav-links {
  display: flex; gap: 28px;
  list-style: none;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--gold-dim);
  transition: color 0.18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 18px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.18s;
}
.nav-cta:hover { background: var(--gold-lt); color: var(--black) !important; }

/* === PAGE LABELS === */
.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 1px; background: var(--gold-dim);
}

/* === HEADINGS === */
h1.page-h1 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(40px, 7vw, 88px);
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
h1.page-h1 .gold { color: var(--gold); }

h2.section-h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
h2.section-h2 .gold { color: var(--gold); }

h3.subhead {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* === RULES === */
.hero-rule { width: 80px; height: 1px; background: var(--gold-dim); margin: 32px auto; }

/* === PARAGRAPHS === */
.lede {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.55;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 720px;
}
.lede strong { color: var(--gold); font-weight: 600; }
p.body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 18px;
}
p.body strong { color: var(--gold); font-weight: 600; }
.muted { color: var(--muted); }

/* === SECTIONS === */
section.block { padding: 100px 0; border-top: 1px solid var(--border); }
section.hero { padding: 100px 0 80px; text-align: center; position: relative; }
section.tight { padding: 64px 0; }
@media (max-width: 720px) {
  section.block { padding: 64px 0; }
  section.hero { padding: 64px 0 48px; }
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  padding: 16px 36px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.18s, transform 0.18s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-lt); color: var(--black); }
.btn-primary:active { transform: translateY(1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 14px 32px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold-dim);
  transition: border-color 0.18s, color 0.18s;
}
.btn-secondary:hover { color: var(--gold-lt); border-color: var(--gold); }

/* === GRIDS === */
.three-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.cell {
  background: var(--panel);
  padding: 40px 32px;
  transition: background 0.18s;
}
.cell:hover { background: var(--deep); }
.cell-num {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cell-name {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.cell-rule { width: 32px; height: 1px; background: var(--gold-dim); margin-bottom: 20px; }
.cell-desc {
  font-size: 16px; line-height: 1.65;
  color: var(--white);
  font-weight: 400;
}

.two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 720px) {
  .two-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* === FOOTER === */
footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 64px;
  margin-top: 40px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--white);
  font-weight: 400;
}
.footer-col a { color: var(--white); }
.footer-col a:hover { color: var(--gold); }
.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  margin: 0 auto 24px;
  max-width: 240px;
}
.footer-text {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.footer-meta {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* === FORMS === */
.input-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.input-row input[type=email],
.input-row input[type=text],
.input-row textarea {
  flex: 1; min-width: 240px;
  background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  outline: none;
  transition: border 0.18s;
}
.input-row input:focus, .input-row textarea:focus { border-color: var(--gold); }

.form-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 40px;
  text-align: left;
  max-width: 540px;
  margin: 0 auto;
}
.form-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 18px;
}
.form-card p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 400;
}
.form-card-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.form-fineprint {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}
.form-message {
  margin-top: 16px;
  font-size: 15px;
  color: var(--gold);
  display: none;
}
.form-message.error { color: #d77; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.tier {
  background: var(--panel);
  padding: 48px 32px;
  display: flex; flex-direction: column;
}
.tier.featured {
  background: var(--deep);
  border-top: 2px solid var(--gold);
}
.tier-name {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tier-price {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}
.tier-price .per {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  font-weight: 400;
}
.tier-tagline {
  font-size: 16px;
  color: var(--gold-dim);
  font-style: italic;
  margin-bottom: 24px;
}
.tier-rule { width: 40px; height: 1px; background: var(--gold-dim); margin-bottom: 24px; }
.tier ul {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.tier li {
  padding: 8px 0;
  font-size: 16px;
  color: var(--white);
  border-bottom: 1px solid var(--border);
}
.tier li::before { content: "—"; color: var(--gold-dim); margin-right: 10px; }
.tier .btn-primary, .tier .btn-secondary { width: 100%; text-align: center; }

/* === LIST WITH MARKERS === */
.marker-list {
  list-style: none;
  margin-bottom: 32px;
}
.marker-list li {
  padding: 14px 0;
  font-size: 18px;
  color: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
}
.marker-list .num {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  flex-shrink: 0;
  width: 32px;
  margin-top: 4px;
}

/* === STEPS === */
.steps {
  margin: 48px 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.step h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 12px;
}
.step p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--white);
}

/* === BANNER === */
.cta-banner {
  background: var(--deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.cta-banner h2 .gold { color: var(--gold); }
.cta-banner p {
  font-size: 19px;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* === FAQ === */
.faq {
  margin: 32px 0;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq summary {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 22px;
}
.faq details[open] summary::after { content: "—"; }
.faq details p {
  margin-top: 12px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--white);
}

/* === SAMPLE SHOWCASE === */
.sample-frame {
  background: var(--panel);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 24px;
  margin: 40px 0;
}
.sample-frame img {
  width: 100%; display: block;
  border: 1px solid var(--border);
}

/* === MARK === */
.provost-mark { display: inline-block; vertical-align: middle; }
