/* ===== V-CC Consults — replica styles ===== */
:root {
  --bg: #fbf8f3;
  --bg-alt: #f3ede2;
  --ink: #1f2937;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --accent: #b8843f;        /* warm gold/ochre */
  --accent-deep: #8c5e26;
  --teal: #0f4c4a;          /* deep green for CTA */
  --teal-deep: #0a3735;
  --card: #ffffff;
  --line: #e6ddcd;
  --radius: 18px;
  --shadow: 0 18px 48px -24px rgba(31, 41, 55, .35);
  --maxw: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, blockquote, cite {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
}

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 16px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 600; font-size: .98rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 12px 28px -12px rgba(15,76,74,.6); }
.btn-primary:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,248,243,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand-logo { height: 80px; width: auto; }
.brand-name { font-family: "Fraunces", serif; font-size: 1.15rem; }
.nav { display: flex; gap: 30px; margin-left: auto; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--ink-soft); position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--accent); transition: width .25s; }
.nav a:hover { color: var(--ink); }
.nav a:hover::after { width: 100%; }
.nav-cta { padding: 10px 20px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ===== Hero ===== */
.hero { padding: 72px 0 64px; background:
    radial-gradient(1200px 500px at 80% -10%, rgba(184,132,63,.14), transparent 60%),
    var(--bg); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent-deep); }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 36ch; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.stats { display: flex; gap: 40px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: "Fraunces", serif; font-size: 2rem; font-weight: 600; color: var(--accent-deep); }
.stat-label { font-size: .85rem; color: var(--muted); }
.hero-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 16px; }
.section-intro { color: var(--ink-soft); font-size: 1.05rem; }

/* ===== Exams grid ===== */
.exam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.exam-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .2s, box-shadow .25s, border-color .25s;
}
.exam-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--accent); }
.exam-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.exam-card p { color: var(--muted); margin-bottom: 22px; }
.link-cta { color: var(--accent-deep); font-weight: 600; font-size: .92rem; }

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.services-media { position: sticky; top: 96px; }
.services-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.curriculum-note { margin-top: 24px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.curriculum-note p { color: var(--ink-soft); }
.services-list { display: flex; flex-direction: column; gap: 14px; }
.service { display: flex; gap: 20px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 28px; transition: transform .2s, box-shadow .25s; }
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-num { font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--accent); font-weight: 600; }
.service h3 { font-size: 1.25rem; margin-bottom: 6px; }
.service p { color: var(--ink-soft); }

/* ===== How it works ===== */
.how-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 8px; }
.steps li { position: relative; padding: 26px 0 26px 0; border-bottom: 1px solid var(--line); }
.steps li:last-child { border-bottom: 0; }
.step-num { font-family: "Fraunces", serif; font-size: 1rem; color: var(--accent-deep); display: block; margin-bottom: 8px; letter-spacing: .1em; }
.steps h3 { font-size: 1.35rem; margin-bottom: 6px; }
.steps p { color: var(--ink-soft); }
.how-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* ===== Stories ===== */
.testimonial { font-family: "Fraunces", serif; font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 500; line-height: 1.35; color: var(--ink); max-width: 760px; }
.testimonial cite { display: block; margin-top: 22px; font-size: 1rem; font-style: normal; color: var(--muted); font-family: "Inter", sans-serif; font-weight: 500; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 10px; }
.feature p { color: var(--ink-soft); font-size: .96rem; }

/* ===== Enroll CTA ===== */
.enroll { background: linear-gradient(160deg, var(--teal), var(--teal-deep)); color: #fff; }
.enroll-inner { max-width: 760px; text-align: center; margin: 0 auto; }
.enroll .eyebrow { color: #e9c98c; }
.enroll h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin-bottom: 18px; }
.enroll .section-intro { color: rgba(255,255,255,.82); }
.enroll-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin: 32px 0 24px; }
.enroll .btn-primary { background: #e9c98c; color: var(--teal-deep); }
.enroll .btn-primary:hover { background: #f0d6a3; }
.enroll .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.enroll .btn-ghost:hover { border-color: #fff; color: #fff; }
.enroll-links { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; font-size: .95rem; }
.enroll-links a { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 3px; }
.enroll-links a:hover { color: #fff; }
.social-icon { width: clamp(16px, 1.4vw + 12px, 22px); height: clamp(16px, 1.4vw + 12px, 22px); aspect-ratio: 1 / 1; flex-shrink: 0; display: block; }

/* ===== Social ===== */
.social-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.social h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 26px; }
.social-links { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.social-links a { padding: 12px 24px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; color: var(--accent-deep); transition: .2s; }
.social-links a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===== Footer ===== */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 48px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-logo { height: 38px; }
.footer-brand p { color: var(--ink-soft); font-size: .95rem; }
.footer-contact { display: flex; gap: 24px; flex-wrap: wrap; font-size: .95rem; color: var(--ink-soft); }
.footer-contact a:hover { color: var(--accent-deep); }
.footer-bottom { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid, .services-grid, .how-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-media { position: static; }
  .how-media { order: -1; }
  .exam-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--bg); padding: 24px; border-bottom: 1px solid var(--line);
  }
  .site-header.open .nav-cta { display: inline-flex; position: absolute; }
}
@media (max-width: 560px) {
  .exam-grid, .features-grid { grid-template-columns: 1fr; }
  .stats { gap: 26px; }
  .hero { padding: 48px 0; }
  .section { padding: 64px 0; }
}
