:root {
  --charcoal: #4C4C4C;
  --midgray: #727272;
  --gold: #C5A96B;
  --gold2: #A98B63;
  --bronze: #8F6E4B;
  --bg: #ffffff;
  --text: #2a2a2a;
  --muted: #5f6b78;
  --border: #e4e5e8;
  --soft: #f7f8fa;
  --soft2: #eef0f3;
  --primary: var(--charcoal);
  --accent: var(--gold);
  --accent-glow: rgba(197,169,107,.12);
  --accent-border: rgba(197,169,107,.38);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,.07);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.10);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── NAV ─── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease;
}
.site-nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.nav-brand {
  display: flex; flex-direction: column; gap: 1px;
  text-decoration: none;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  color: var(--primary); letter-spacing: -.01em;
}
.nav-brand-tag {
  font-size: .72rem; font-weight: 600;
  color: var(--midgray); letter-spacing: .03em;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; font-weight: 600; font-size: .9rem;
  color: var(--primary); padding: 8px 12px; border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--soft); }
.nav-ctas { display: flex; gap: 8px; align-items: center; }

@media (max-width: 1024px) {
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .nav-brand-tag { display: none; }
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; font-family: var(--font-body);
  font-weight: 700; font-size: .92rem;
  padding: 12px 22px; border-radius: 12px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .1s, box-shadow .25s, background .25s, opacity .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(76,76,76,.25);
}
.btn-primary:hover { box-shadow: 0 6px 20px rgba(76,76,76,.32); }
.btn-secondary {
  background: #fff; color: var(--primary);
  border-color: var(--border);
}
.btn-secondary:hover { background: var(--soft); }
.btn-ghost {
  background: transparent; color: var(--primary);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--soft); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; border: none;
  box-shadow: 0 4px 14px rgba(197,169,107,.35);
}
.btn-gold:hover { box-shadow: 0 6px 20px rgba(197,169,107,.45); }
.btn-sm { padding: 9px 16px; font-size: .85rem; border-radius: 10px; }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── PILLS ─── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: .8rem;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  padding: 5px 12px; border-radius: 999px;
  color: var(--bronze);
  letter-spacing: .02em;
}
.pill-dark {
  background: var(--primary); color: #fff;
  border-color: var(--primary);
}

/* ─── KICKER ─── */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bronze);
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  padding: 8px 16px; border-radius: 999px;
  margin-bottom: 16px;
}

/* ─── SECTION ─── */
.section { padding: 88px 0; }
.section-border { border-top: 1px solid var(--soft2); }
.section-soft { background: var(--soft); }
.section-dark {
  background: linear-gradient(175deg, #3a3a3a 0%, #2a2a2a 100%);
  color: #fff;
}
.section-dark .muted { color: rgba(255,255,255,.7); }
.section-dark h2 { color: #fff; }

/* ─── TYPOGRAPHY ─── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--primary);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--primary);
  margin-bottom: 12px;
}
h3 {
  font-family: var(--font-body);
  font-size: 1.12rem; font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.muted { color: var(--muted); }
.lead { font-size: 1.1rem; color: var(--muted); line-height: 1.65; }
.micro { font-size: .88rem; color: var(--midgray); margin-top: 14px; }
.micro strong { color: var(--primary); }
.gold-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 99px; margin: 18px 0;
}

/* ─── CARDS ─── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-soft {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.card-gold-top {
  border-top: 3px solid var(--gold);
}
.card-accent {
  border: 1.5px solid var(--accent-border);
  background: linear-gradient(180deg, var(--accent-glow), #fff 60%);
}

/* ─── LISTS ─── */
.check-list { list-style: none; padding: 0; margin: 12px 0 0; }
.check-list li {
  position: relative; padding-left: 24px;
  margin-bottom: 8px; color: var(--muted);
  font-size: .95rem;
}
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 800;
}

/* ─── GRIDS ─── */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-2-wide { grid-template-columns: 1.2fr .8fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-2-wide, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ─── HERO ─── */
.hero {
  padding: 60px 0 40px;
  background:
    radial-gradient(ellipse 900px 400px at 15% 0%, rgba(197,169,107,.14), transparent),
    radial-gradient(ellipse 800px 350px at 85% 20%, rgba(76,76,76,.06), transparent),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 30px; }
}
.hero-content { max-width: 620px; }
.hero-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.hero-image-wrap {
  position: relative;
  background: linear-gradient(145deg, rgba(197,169,107,.15), rgba(76,76,76,.06));
  border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--accent-border);
}
.hero-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ─── STEPS ─── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 32px;
}
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { position: relative; }
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(197,169,107,.3);
}

/* ─── PROCESS ROWS ─── */
.process-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  transition: box-shadow .3s;
}
.process-row:hover { box-shadow: var(--shadow-sm); }
.process-dot {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: var(--bronze);
  flex: 0 0 auto; font-size: 1rem;
}
.process-dot.check {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; border: none;
  box-shadow: 0 3px 10px rgba(197,169,107,.25);
}

/* ─── TESTIMONIAL ─── */
.testimonial-card {
  background: linear-gradient(160deg, var(--accent-glow), #fff 50%);
  border: 1.5px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  font-style: italic; color: var(--primary);
  line-height: 1.5; margin-bottom: 16px;
}
.testimonial-attr {
  font-size: .88rem; font-weight: 700;
  color: var(--midgray);
}

/* ─── PRICING CARDS ─── */
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  transition: box-shadow .3s, transform .3s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-card.recommended {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 4px var(--accent-glow), var(--shadow-md);
}
.pricing-badge {
  position: absolute; top: -12px; left: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #fff; font-weight: 800; font-size: .75rem;
  padding: 4px 14px; border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase;
}

/* ─── FAQ ─── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item + .faq-item { margin-top: 10px; }
.faq-summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-weight: 700; font-size: .98rem;
  color: var(--primary); list-style: none;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+'; font-size: 1.3rem; font-weight: 300;
  color: var(--gold); transition: transform .3s;
}
details[open] .faq-summary::after { content: '−'; }
.faq-answer {
  padding: 0 22px 18px;
  color: var(--muted); font-size: .95rem;
  line-height: 1.6;
}

/* ─── FORM ─── */
.form-wrap {
  background: var(--soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.form-wrap label {
  display: block; font-weight: 700; font-size: .88rem;
  color: var(--primary); margin-bottom: 6px; margin-top: 16px;
}
.form-wrap label:first-child { margin-top: 0; }
.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .92rem; color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-wrap textarea { resize: vertical; min-height: 90px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }
.form-note {
  font-size: .82rem; color: var(--midgray);
  margin-top: 8px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #2a2a2a; color: rgba(255,255,255,.7);
  padding: 56px 0 32px;
}
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  color: #fff; margin-bottom: 8px;
}
.footer-col-title {
  font-weight: 800; font-size: .82rem;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 14px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 8px; font-size: .9rem; }
.footer-bottom {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem;
}
.footer-powered {
  font-size: .8rem; color: rgba(255,255,255,.45);
  margin-top: 12px; line-height: 1.5;
}

/* ─── ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── MISC ─── */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-700 { max-width: 700px; }
.max-w-900 { max-width: 900px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.gap-32 { gap: 32px; }
