/* Forge Academic v2 — Warm editorial theme */
/* Cormorant Garamond + DM Sans */

:root {
  --cream:    #F9F5EE;
  --warm:     #F0EAE0;
  --white:    #FFFFFF;
  --ink:      #1C1917;
  --ink-mid:  #44403C;
  --muted:    #78716C;
  --gold:     #B5892A;
  --gold-lt:  #D4A843;
  --border:   rgba(28,25,23,.12);
  --shadow-sm:0 2px 8px rgba(28,25,23,.08);
  --shadow-md:0 8px 32px rgba(28,25,23,.12);
  --shadow-lg:0 24px 64px rgba(28,25,23,.15);
  --radius:   14px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  background: var(--cream);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
a:hover { opacity: .8; }
img { display: block; max-width: 100%; height: auto; }

/* ── SKIP LINK ── */
.skip {
  position: absolute; left: -9999px; top: 16px; padding: .5rem 1rem;
  background: var(--ink); color: var(--cream);
  border-radius: 8px; font-weight: 600; z-index: 9999;
}
.skip:focus { left: 16px; }

/* ── CONTAINER ── */
.container { width: min(1120px, 92vw); margin: 0 auto; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.6rem, 5vw, 4rem); color: var(--ink); }
h1 em { font-style: italic; color: var(--gold); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h2 em { font-style: italic; color: var(--gold); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--ink-mid); border-color: var(--ink-mid); opacity: 1; }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); opacity: 1; }
.btn--soft {
  background: var(--warm);
  color: var(--ink);
  border-color: var(--border);
}
.btn--soft:hover { background: #e8e0d4; opacity: 1; }
.btn--full { width: 100%; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(249,245,238,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
}
.brand em { font-style: italic; color: var(--gold); }
.brand__mark { width: 30px; height: 30px; }

.nav { display: flex; align-items: center; gap: 1.4rem; }
.nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color .15s;
}
.nav a:hover { color: var(--ink); opacity: 1; }

/* burger */
.burger {
  display: none;
  background: none; border: 1px solid var(--border);
  border-radius: 10px; padding: .5rem .6rem;
  cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px;
  margin: 4px 0;
  transition: all .2s;
}

.mobile-menu { border-top: 1px solid var(--border); background: rgba(249,245,238,.98); }
.mobile-menu__inner {
  display: grid; gap: .75rem; padding: 1.2rem 0;
}
.mobile-menu__inner a { font-weight: 600; color: var(--ink-mid); }

/* ── HERO ── */
.hero { padding: 5rem 0 4rem; margin-top: 72px; }
.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: start;
}
.hero__text { padding-top: 1rem; }
h1 { margin: .75rem 0 1.25rem; }
.hero__lead {
  font-size: 1.1rem;
  color: var(--ink-mid);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.trust-signals {
  list-style: none;
  display: grid; gap: .5rem;
  color: var(--ink-mid);
  font-size: .9rem;
}
.trust-signals li {
  display: flex; align-items: center; gap: .5rem;
}
.trust-signals svg { color: var(--gold); flex-shrink: 0; }

.hero__estimator { position: sticky; top: 90px; }
.estimator-card .card__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .25rem;
}
.estimator-card .card__title {
  font-size: 1.6rem;
  margin-bottom: .3rem;
}
.estimator-card .card__sub {
  font-size: .875rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* ── FORM ── */
.form { display: grid; gap: .9rem; }
.field { display: grid; gap: .4rem; }
.field span { font-size: .85rem; font-weight: 600; color: var(--ink-mid); }
input, select, textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  transition: border-color .15s;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
}
textarea { resize: vertical; }
.estimate-result {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  min-height: 1.8rem;
}
.form-note { font-size: .8rem; color: var(--muted); }

/* ── SECTION ── */
.section { padding: 5rem 0; }
.section--warm { background: var(--warm); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head h2 { margin-bottom: .6rem; }
.section-sub { color: var(--muted); max-width: 56ch; margin: 0 auto; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card--featured {
  grid-column: span 2;
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.service-card--featured .service-card__icon { color: var(--gold-lt); }
.service-card--featured p { color: rgba(249,245,238,.8); }
.service-card--featured ul { color: rgba(249,245,238,.7); }
.service-card__icon {
  font-size: 1.8rem;
  margin-bottom: .75rem;
  line-height: 1;
}
.service-card h3 { margin-bottom: .5rem; font-size: 1.2rem; }
.service-card p { font-size: .9rem; color: var(--ink-mid); margin-bottom: .75rem; }
.service-card ul { list-style: none; display: grid; gap: .3rem; }
.service-card ul li {
  font-size: .85rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
}
.service-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.service-card--featured ul li { color: rgba(249,245,238,.6); }
.service-card--featured ul li::before { color: var(--gold-lt); }
.service-card--featured p { color: rgba(249,245,238,.75); }

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.why-text p {
  color: var(--ink-mid);
  margin-top: 1rem;
  max-width: 46ch;
}
.why-pillars { display: grid; gap: 1.5rem; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
}
.pillar h4 { margin-bottom: .25rem; }
.pillar p { font-size: .9rem; color: var(--muted); }

/* ── PROCESS ── */
.process-list { list-style: none; display: grid; gap: 1rem; counter-reset: none; }
.process-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.process-item__num {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 10px;
  background: var(--warm);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.process-item__body h3 { margin-bottom: .3rem; font-size: 1.15rem; }
.process-item__body p { font-size: .9rem; color: var(--muted); }

/* ── PRICING LAYOUT ── */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.rate-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}
.rate-box h4 {
  font-size: 1rem;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}
.rate-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .4rem 0;
  font-size: .875rem;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
}
.rate-row:last-of-type { border-bottom: none; }
.rate-row strong { color: var(--ink); }
.rate-note { font-size: .8rem; color: var(--muted); margin-top: .75rem; line-height: 1.5; }
.rate-meta { font-size: .8rem; color: var(--muted); }

/* ── WORKSPACE BANNER ── */
.workspace-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
}
.workspace-banner__img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
  min-height: 320px;
  object-fit: cover;
}
/* Left text overlay */
.workspace-banner__overlay {
  position: absolute;
  inset: 0;
  bottom: 72px; /* leave room for strip */
  background: linear-gradient(
    105deg,
    rgba(20, 17, 15, 0.80) 0%,
    rgba(20, 17, 15, 0.50) 45%,
    rgba(20, 17, 15, 0.0) 75%
  );
  display: flex;
  align-items: center;
  padding: 3rem 5%;
}
.workspace-banner__content {
  max-width: 500px;
}
.workspace-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: .85rem;
}
.workspace-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.workspace-heading em { font-style: italic; color: var(--gold-lt); }
.workspace-sub {
  font-size: .98rem;
  color: rgba(255,255,255,.80);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
  max-width: 44ch;
}
.workspace-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn--light {
  background: rgba(255,255,255,.14);
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(8px);
}
.btn--light:hover { background: rgba(255,255,255,.26); border-color: #FFFFFF; opacity: 1; }
.btn--light-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 2px solid rgba(255,255,255,.3);
}
.btn--light-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); opacity: 1; }

/* Bottom transparent stats strip */
.workspace-banner__strip {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 72px;
  background: rgba(15, 12, 10, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0 5%;
}
.workspace-banner__strip .wstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  gap: .15rem;
  flex: 1;
}
.wstrip-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.wstat__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.wstat__label {
  font-size: .7rem;
  color: rgba(255,255,255,.55);
  line-height: 1.3;
  font-weight: 500;
}
.wstat__ref {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  text-align: center;
  letter-spacing: .02em;
}

@media (max-width: 800px) {
  .workspace-banner__overlay { bottom: 56px; }
  .workspace-banner__strip { height: 56px; padding: 0 4%; }
  .workspace-banner__strip .wstat { padding: 0 .85rem; }
  .wstat__num { font-size: 1.1rem; }
  .wstat__label { font-size: .62rem; }
  .wstat__ref { font-size: .68rem; }
}
@media (max-width: 540px) {
  .workspace-banner__overlay { padding: 2rem 5%; bottom: 56px; }
  .workspace-cta { flex-direction: column; }
  .workspace-cta .btn { width: 100%; }
  /* Hide dividers on very small screens */
  .wstrip-divider { display: none; }
  .workspace-banner__strip { gap: .5rem; flex-wrap: wrap; height: auto; padding: .6rem 4%; }
  .workspace-banner__strip .wstat { flex: none; }
}

/* ── SUBMIT ── */
.submit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}
.submit-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.submit-card__icon--alt { color: var(--ink-mid); }
.submit-card h3 { margin-bottom: .5rem; }
.submit-card p { font-size: .9rem; color: var(--muted); margin-bottom: 1.2rem; }
.contact-detail { font-size: .8rem; color: var(--muted); margin-top: .75rem; }
.contact-detail a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* ── FAQ ── */
.faq-list { display: grid; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
}
.faq-item:hover { box-shadow: var(--shadow-md); border-color: rgba(181,137,42,.3); }
.faq-item[open] { border-color: rgba(181,137,42,.35); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: .75rem; font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-info h3 { margin-bottom: 1.25rem; }
.contact-item { margin-bottom: 1rem; font-size: .9rem; color: var(--muted); }
.contact-item strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: .15rem; }
.contact-item a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.contact-info .btn { margin-top: 1rem; }

/* ── FOOTER ── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.footer__brand .brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.footer__brand .brand__name em { font-style: italic; color: var(--gold-lt); }
.footer__brand p { font-size: .85rem; color: rgba(249,245,238,.5); margin-top: .3rem; }
.footer__nav {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .85rem;
}
.footer__nav a { color: rgba(249,245,238,.6); }
.footer__nav a:hover { color: var(--cream); opacity: 1; }
.footer__copy {
  grid-column: 1 / -1;
  font-size: .8rem;
  color: rgba(249,245,238,.35);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: block; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero__layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero__estimator { position: relative; top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pricing-layout { grid-template-columns: 1fr; }
  .submit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .process-item { flex-direction: column; gap: .75rem; }
}

/* ── LEVELS STRIP ─────────────────────────────────────── */
.levels-strip{padding:52px 0;border-top:1px solid rgba(0,0,0,.08);border-bottom:1px solid rgba(0,0,0,.08);background:rgba(201,168,76,.06)}
.levels-strip h2{font-family:'Cormorant Garamond',Georgia,serif;font-size:1.9rem;font-weight:700;color:#1A1612;margin:0 0 8px}
.levels-sub{color:#6B6560;margin:0 0 28px;font-size:.97rem;max-width:68ch}
.levels-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-bottom:28px}
.level-card{background:#fff;border:1px solid rgba(201,168,76,.3);border-radius:10px;padding:20px 22px;box-shadow:0 4px 18px rgba(0,0,0,.06)}
.level-card h3{margin:0 0 8px;font-family:'Cormorant Garamond',Georgia,serif;font-size:1.1rem;font-weight:700;color:#1A1612}
.level-card p{margin:0;color:#6B6560;font-size:.9rem;line-height:1.55}
.types-row{display:flex;flex-wrap:wrap;gap:8px}
.type-chip{background:#F9F5EE;border:1px solid rgba(201,168,76,.4);border-radius:999px;padding:.28rem .85rem;font-size:.85rem;font-weight:600;color:#5C4A1E}

/* ── TESTIMONIALS TICKER ──────────────────────────────── */
.testimonials-section{padding:60px 0;background:#F9F5EE;border-top:1px solid rgba(0,0,0,.08);border-bottom:1px solid rgba(0,0,0,.08)}
.testimonials-section .section-head{margin-bottom:36px}
.ticker-wrap{overflow:hidden;width:100%;position:relative}
.ticker-wrap::before,.ticker-wrap::after{content:'';position:absolute;top:0;bottom:0;width:120px;z-index:2;pointer-events:none}
.ticker-wrap::before{left:0;background:linear-gradient(to right,#F9F5EE,transparent)}
.ticker-wrap::after{right:0;background:linear-gradient(to left,#F9F5EE,transparent)}
.ticker{display:flex;gap:20px;width:max-content;animation:scroll-left 80s linear infinite}
.ticker:hover{animation-play-state:paused}
@keyframes scroll-left{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.review-card{background:#fff;border:1px solid rgba(201,168,76,.3);border-radius:12px;padding:22px 24px;width:300px;flex-shrink:0;box-shadow:0 6px 24px rgba(0,0,0,.07)}
.review-card .stars{color:#C9A84C;font-size:.95rem;margin-bottom:10px;letter-spacing:3px}
.review-card .quote{color:#1A1612;font-size:.88rem;line-height:1.6;margin:0 0 14px;font-style:italic;font-family:'Cormorant Garamond',Georgia,serif;font-size:1rem}
.review-card .author{color:#1A1612;font-size:.82rem;font-weight:700;font-family:'DM Sans',sans-serif}
.review-card .subject{color:#C9A84C;font-size:.78rem;margin-top:3px;font-weight:600;font-family:'DM Sans',sans-serif}

@media(max-width:900px){
  .levels-grid{grid-template-columns:1fr}
}

/* ── TESTIMONIALS CONTRAST FIX ────────────────────────── */
.testimonials-section{background:#1A1612}
.testimonials-section .section-head{padding:0 0 4px}
.testimonials-section .eyebrow{color:#C9A84C}
.testimonials-section h2{color:#F5F0E8}
.testimonials-section .section-sub{color:rgba(245,240,232,.7)}
.ticker-wrap::before{background:linear-gradient(to right,#1A1612,transparent)}
.ticker-wrap::after{background:linear-gradient(to left,#1A1612,transparent)}
.review-card{background:#2A211C;border-color:rgba(201,168,76,.25)}
.review-card .quote{color:#F5F0E8}
.review-card .author{color:#F5F0E8}

/* ── BIGGER LEVEL CARDS ───────────────────────────────── */
.level-card{padding:28px 26px}
.level-card h3{font-size:1.15rem;margin-bottom:10px}
.level-card p{font-size:.95rem;line-height:1.6}

/* ── RATE US BUTTON ───────────────────────────────────── */
.rate-us-btn{margin-top:20px;background:#C9A84C;border-color:#C9A84C;color:#1A1612;font-weight:700}
.rate-us-btn:hover{opacity:.88}

/* ── RATE US MODAL ────────────────────────────────────── */
.rate-modal{position:fixed;inset:0;background:rgba(0,0,0,.65);z-index:999;display:flex;align-items:center;justify-content:center;padding:1rem}
.rate-modal[hidden]{display:none}
.rate-modal__box{background:#FBF8F3;border-radius:16px;padding:36px 32px;max-width:520px;width:100%;position:relative;box-shadow:0 24px 64px rgba(0,0,0,.35)}
.rate-modal__close{position:absolute;top:14px;right:18px;background:none;border:none;font-size:1.6rem;cursor:pointer;color:#6B6560;line-height:1}
.rate-modal__close:hover{color:#1A1612}
.rate-modal h3{margin:0 0 6px;font-family:'Cormorant Garamond',Georgia,serif;font-size:1.6rem;color:#1A1612}
.rate-modal__sub{color:#6B6560;margin:0 0 20px;font-size:.9rem}
.star-picker{display:flex;gap:8px;margin:4px 0 2px}
.star-btn{background:none;border:none;font-size:1.8rem;cursor:pointer;color:#D4C5A0;line-height:1;padding:0;transition:color .15s}
.star-btn.active,.star-btn:hover,.star-btn.hover{color:#C9A84C}
.rate-success{color:#2A7A2A;font-weight:700;text-align:center;margin-top:10px}

/* ── ORDER TYPE TOGGLE ────────────────────────────────── */
.toggle-group{display:flex;border:1.5px solid #C9A84C;border-radius:8px;overflow:hidden;margin-top:6px}
.toggle-btn{flex:1;padding:.55rem 1rem;background:#fff;border:none;font-family:'DM Sans',sans-serif;font-size:.9rem;font-weight:500;color:#5C4A1E;cursor:pointer;transition:background .15s,color .15s;outline:none}
.toggle-btn:first-child{border-right:1.5px solid #C9A84C}
.toggle-btn--active{background:#1A1612;color:#F5F0E8;font-weight:600}
.toggle-btn:hover:not(.toggle-btn--active){background:#F9F5EE}

/* ── PRICING SOLO LAYOUT ──────────────────────────────── */
.pricing-layout--solo{display:block}
.estimator-card--wide{max-width:100%;margin:0}

/* ── SEND SPLIT BUTTON + DROPDOWN ─────────────────────── */
.send-split{display:flex;width:100%;border-radius:8px;overflow:hidden;border:1.5px solid #C9A84C;margin-top:4px}
.btn--send-main{flex:1;border-radius:0;border:none;background:#1A1612;color:#F5F0E8;font-weight:600;text-align:center;padding:.7rem 1rem;font-family:'DM Sans',sans-serif;font-size:.9rem;transition:background .15s}
.btn--send-main:hover{background:#2D2520;color:#F5F0E8}
.btn--send-toggle{width:44px;flex-shrink:0;border-radius:0;border:none;border-left:1.5px solid rgba(201,168,76,.4);background:#1A1612;color:#C9A84C;font-size:.75rem;cursor:pointer;transition:background .15s;padding:0}
.btn--send-toggle:hover{background:#2D2520}
.send-dropdown{border:1.5px solid #C9A84C;border-top:none;border-radius:0 0 8px 8px;background:#fff;overflow:hidden;margin-top:-2px}
.send-dropdown__item{display:block;padding:.75rem 1rem;font-family:'DM Sans',sans-serif;font-size:.88rem;font-weight:500;color:#1A1612;text-decoration:none;transition:background .12s}
.send-dropdown__item:hover{background:#F9F5EE;color:#5C4A1E}
.send-dropdown__item+.send-dropdown__item{border-top:1px solid rgba(201,168,76,.2)}

/* ── HERO SUBMIT SPLIT BUTTON ─────────────────────────── */
.hero-submit-split{position:relative;display:inline-flex;border-radius:999px;overflow:visible}
.btn--hero-submit-main{border-radius:999px 0 0 999px;border-right:1px solid rgba(0,0,0,.15);padding-right:.9rem;white-space:nowrap}
.btn--hero-submit-toggle{border-radius:0 999px 999px 0;padding:0 .9rem;font-size:.7rem;border:none;cursor:pointer}
.hero-submit-dropdown{position:absolute;top:calc(100% + 8px);left:0;min-width:180px;background:#fff;border:1.5px solid rgba(201,168,76,.4);border-radius:10px;box-shadow:0 8px 28px rgba(0,0,0,.13);z-index:50;overflow:hidden}
.hero-submit-dropdown__item{display:block;padding:.7rem 1rem;font-family:'DM Sans',sans-serif;font-size:.88rem;font-weight:500;color:#1A1612;text-decoration:none;transition:background .12s}
.hero-submit-dropdown__item:hover{background:#F9F5EE;color:#5C4A1E}
.hero-submit-dropdown__item+.hero-submit-dropdown__item{border-top:1px solid rgba(201,168,76,.2)}

/* ── Upload card inside pricing-layout (full width) ── */
.upload-card { background: #fff; }
.upload-card .drop-zone {
  border: 2px dashed rgba(201,168,76,.5);
  border-radius: 10px;
  background: #FDFAF4;
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  margin-bottom: 28px;
  position: relative;
}
.upload-card .drop-zone:hover, .upload-card .drop-zone.dragover {
  border-color: #C9A84C;
  background: #F5F0E8;
}
.upload-card .drop-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.upload-card .drop-zone__icon { font-size: 2rem; display: block; margin-bottom: 8px; }
.upload-card .drop-zone__title { font-weight: 600; color: #1A1612; margin: 0 0 4px; font-size: .95rem; }
.upload-card .drop-zone__sub { color: #9A8F85; font-size: .8rem; margin: 0; }
.upload-card .drop-zone__chosen { color: #C9A84C; font-size: .85rem; margin: 8px 0 0; font-weight: 500; min-height: 1.2em; }
.upload-card .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .upload-card .field-row { grid-template-columns: 1fr; } }
.upload-card .btn--submit {
  width: 100%; padding: 1rem; background: #1A1612; color: #F5F0E8;
  border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer; margin-top: 8px;
  transition: background .2s;
}
.upload-card .btn--submit:hover { background: #2D2520; }
.upload-card .btn--submit:disabled { opacity: .6; cursor: not-allowed; }
.upload-card .privacy-note { font-size: .8rem; color: #9A8F85; text-align: center; margin-top: 14px; line-height: 1.5; }
.upload-card .privacy-note a { color: #C9A84C; }
.upload-card .success-panel { display: none; flex-direction: column; align-items: center; text-align: center; padding: 2.5rem 1rem; }
.upload-card .success-panel.visible { display: flex; }
.upload-card .success-panel__icon { font-size: 3rem; margin-bottom: 16px; }
.upload-card .btn--back {
  display: inline-block; margin-top: 20px; padding: .7rem 1.8rem;
  background: #1A1612; color: #F5F0E8; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; text-decoration: none;
}
