/* EverythingForAuthors.com — Global Stylesheet */
html, body { overflow-x: hidden; }

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --navy:    #1E1610;
  --gold:    #C96A38;
  --gold-lt: #D97A48;
  --cream:   #F2EDE6;
  --warm:    #E8E0D5;
  --text:    #3A2E22;
  --muted:   #8B7060;
  --border:  #D0C4B4;
  --white:   #FFFFFF;
  --green:   #2D7A4F;
  --ink-soft:#5A4A38;
  --radius:  10px;
  --shadow:  0 2px 16px rgba(30,22,16,.10);
  --shadow-hover: 0 8px 32px rgba(30,22,16,.18);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max: 1140px;
  --gap: 2rem;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1.0625rem; }
.lead { font-size: 1.2rem; color: var(--muted); line-height: 1.7; }
.section-label { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }

/* ── Layout ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--warm { background: var(--warm); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy p { color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
.text-center { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .875rem 2rem; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline--white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline--white:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .9rem; }

/* ── Announcement bar ────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; }
.announcement-bar {
  display: block; width: 100%; background: #FF6B1A; color: #fff;
  text-align: center; font-size: .85rem; font-weight: 600;
  padding: .55rem 1rem; text-decoration: none; line-height: 1.4;
  font-family: var(--font-body);
}
.announcement-bar:hover { background: #e55e10; color: #fff; }

/* ── Site announce (index hero) ──────────────────────────── */
.site-announce {
  display: flex; width: 100%; height: 34px; padding: 0 1.5rem;
  background: var(--navy); align-items: center; justify-content: center;
  text-decoration: none; gap: 6px;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 400;
  letter-spacing: 0.04em; color: rgba(255,255,255,.78);
  transition: background .2s;
}
.site-announce:hover { background: var(--text); }
.site-announce em { color: var(--gold); font-style: normal; font-weight: 600; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: .75rem 0;
}
.nav .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.nav__brand-row { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo { display: flex; align-items: center; gap: .65rem; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.nav__logo svg { flex-shrink: 0; }
.nav__logo span { display: block; font-size: .65rem; font-weight: 400; font-family: var(--font-body); letter-spacing: .08em; color: var(--muted); text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 2rem; flex-wrap: nowrap; }
.nav__links a:not(.btn) { font-size: .9375rem; font-weight: 500; color: var(--text); transition: color .15s; }
.nav__links a:not(.btn):hover { color: var(--gold); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .25rem; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }

/* ── Site nav (index) ────────────────────────────────────── */
.site-nav {
  width: 100%; height: 60px; background: var(--cream);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em; text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--font-body); font-size: 13px; color: var(--muted);
  text-decoration: none; letter-spacing: 0.02em; transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; color: var(--gold); text-decoration: none;
  border-bottom: 1px solid var(--gold); padding-bottom: 1px; transition: opacity .2s;
}
.nav-cta:hover { opacity: 0.7; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 94px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 40px 0; position: relative; overflow: hidden;
  text-align: center; background: var(--cream);
}
.hero-bg-letter {
  position: absolute; font-family: 'Playfair Display', serif;
  font-size: clamp(340px, 42vw, 560px); font-weight: 700; font-style: italic;
  color: var(--navy); opacity: 0.055; line-height: 1;
  right: -60px; top: 50%; transform: translateY(-54%);
  pointer-events: none; user-select: none; letter-spacing: -0.05em;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 700px;
  display: flex; flex-direction: column; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 28px; font-weight: 400;
  animation: fadeUp .6s ease both;
}
.eyebrow-pip {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); display: inline-block; flex-shrink: 0;
}
.headline {
  font-family: 'Playfair Display', serif; font-size: clamp(44px, 6.5vw, 82px);
  font-weight: 400; color: var(--navy); line-height: 1.08;
  letter-spacing: -0.025em; margin-bottom: 10px;
  animation: fadeUp .6s .1s ease both;
}
.headline-italic { font-style: italic; color: var(--gold); display: block; }
.hero-rule {
  display: flex; align-items: center; gap: 14px;
  margin: 26px 0 28px; width: 100%; justify-content: center;
  animation: fadeUp .6s .2s ease both;
}
.hero-rule-line { flex: 1; max-width: 80px; height: 1px; background: var(--border); }
.hero-rule-mark {
  font-family: 'Playfair Display', serif; font-size: 14px;
  color: var(--gold); opacity: 0.7; font-style: italic;
}
.subhead {
  font-family: 'Lora', serif; font-size: 18px; color: var(--muted);
  line-height: 1.8; margin-bottom: 36px; max-width: 520px; font-weight: 400;
  animation: fadeUp .6s .28s ease both;
}
.tagline-list {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 40px;
  animation: fadeUp .6s .36s ease both;
}
.tagline-item { font-family: var(--font-body); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.tagline-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.5; display: inline-block; flex-shrink: 0; }
.cta-group {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: fadeUp .6s .44s ease both;
}
.hero-btn-primary {
  background: var(--navy); color: var(--cream);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 20px 52px;
  border: 2px solid var(--navy); cursor: pointer; text-decoration: none; display: inline-block;
  border-radius: 60px; transition: background .22s, color .22s, border-color .22s, transform .15s;
}
.hero-btn-primary:hover {
  background: var(--gold); border-color: var(--gold); color: #fff;
  transform: translateY(-2px);
}
.hero-btn-secondary {
  font-family: var(--font-body); font-size: 12px; color: var(--muted);
  text-decoration: none; letter-spacing: 0.06em;
  display: flex; align-items: center; gap: 6px;
  background: none; cursor: pointer; transition: color .2s;
}
.hero-btn-secondary:hover { color: var(--navy); }
.hero-btn-secondary .arr { transition: transform .2s; display: inline-block; }
.hero-btn-secondary:hover .arr { transform: translateX(4px); }
.trust-bar {
  position: relative; z-index: 2; width: 100%; margin-top: 80px;
  border-top: 1px solid var(--border); background: var(--cream);
  display: flex; align-items: stretch; justify-content: center;
  animation: fadeUp .5s .55s ease both;
}
.trust-item {
  flex: 1; max-width: 220px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px 20px; gap: 4px; border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-number {
  font-family: 'Playfair Display', serif; font-size: 30px;
  font-weight: 400; color: var(--navy); line-height: 1; font-style: italic;
}
.trust-number em { font-size: 20px; color: var(--gold); font-style: normal; }
.trust-label {
  font-family: var(--font-body); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); text-align: center;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }
@media (max-width: 640px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 40px 24px 0; }
  .trust-item { padding: 20px 12px; }
  .trust-number { font-size: 24px; }
  .tagline-list { gap: 8px; }
  .hero-btn-primary { padding: 17px 36px; font-size: 13px; }
}

/* ── Trust bar ───────────────────────────────────────────── */
.trustbar { background: var(--navy); padding: 1.5rem 0; }
.trustbar__inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trustbar__item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; }
.trustbar__item svg { color: var(--gold); flex-shrink: 0; }

/* ── Services ────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border); padding: 1.75rem;
  transition: all .2s ease; display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.service-card__icon { width: 44px; height: 44px; background: var(--warm); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.service-card__name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.service-card__desc { font-size: .9375rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; flex: 1; }
.service-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.service-card__price { font-size: 1.75rem; font-weight: 700; color: var(--navy); }
.service-card__price sup { font-size: 1rem; vertical-align: super; }
.service-card__details { text-align: right; }
.service-card__time { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); }
.service-card__revision { display: block; font-size: .8rem; color: var(--green); font-weight: 500; }
.service-card .btn { width: 100%; text-align: center; }

/* ── Section headers ─────────────────────────────────────── */
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { color: var(--muted); max-width: 55ch; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── How It Works ────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.steps::before { content: ''; position: absolute; top: 2rem; left: calc(33% - 1rem); right: calc(33% - 1rem); height: 2px; background: linear-gradient(to right, var(--gold), var(--gold)); opacity: .25; }
.step { text-align: center; }
.step__num { width: 60px; height: 60px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; margin: 0 auto 1.25rem; position: relative; z-index: 1; }
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .9375rem; max-width: 28ch; margin: 0 auto; }

/* ── About ───────────────────────────────────────────────── */
.about__inner { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: center; }
.about__photo { position: relative; }
.about__photo-frame { background: var(--warm); border-radius: 16px; aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.about__photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-badge { position: absolute; bottom: -1rem; right: -1rem; background: var(--gold); color: var(--white); padding: 1rem 1.25rem; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.about__photo-badge strong { display: block; font-size: 1.4rem; font-family: var(--font-head); }
.about__photo-badge span { font-size: .78rem; }
.about__content h2 { margin-bottom: 1rem; }
.about__content p { color: var(--muted); margin-bottom: 1rem; }
.about__content p:last-of-type { margin-bottom: 1.75rem; }
.about__promise { background: var(--warm); border-left: 4px solid var(--gold); padding: 1rem 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 1.75rem; font-style: italic; color: var(--navy); }

/* ── WriteReady promo ────────────────────────────────────── */
.writeready { background: var(--navy); padding: 5rem 0; }
.writeready__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: center; }
.writeready h2 { color: var(--white); margin-bottom: .75rem; }
.writeready h2 em { color: var(--gold); font-style: normal; }
.writeready .lead { color: rgba(255,255,255,.75); margin-bottom: 2rem; }
.writeready__tiers { display: flex; flex-direction: column; gap: 1rem; }
.writeready__tier { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; transition: .2s; }
.writeready__tier:hover { background: rgba(255,255,255,.12); border-color: var(--gold); }
.writeready__tier-name { font-weight: 700; color: var(--white); font-size: 1rem; }
.writeready__tier-desc { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: .15rem; }
.writeready__tier-price { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--gold); white-space: nowrap; }
.writeready__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ── Free Guide ──────────────────────────────────────────── */
.freeguide { background: var(--gold); padding: 4rem 0; }
.freeguide__inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; align-items: center; }
.freeguide h2, .freeguide p { color: var(--white); }
.freeguide h2 { margin-bottom: .75rem; }
.freeguide .lead { opacity: .9; margin-bottom: 1.5rem; }
.freeguide__includes { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.freeguide__includes li { color: var(--white); font-size: .9375rem; display: flex; gap: .5rem; align-items: flex-start; }
.freeguide__includes li::before { content: '→'; font-weight: 700; flex-shrink: 0; margin-top: .05em; }
.freeguide__visual { background: var(--white); border-radius: 16px; padding: 2.5rem; box-shadow: 0 20px 60px rgba(0,0,0,.25); text-align: center; }
.freeguide__visual h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1.4rem; }
.freeguide__visual p { color: var(--muted); font-size: .9rem; margin-bottom: 1.5rem; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq__item:last-child { border-bottom: none; }
.faq__q { font-weight: 700; color: var(--navy); font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; gap: 1rem; }
.faq__q::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--gold); flex-shrink: 0; }
.faq__a { color: var(--muted); margin-top: .75rem; font-size: .9375rem; line-height: 1.7; display: none; }
.faq__item.open .faq__a { display: block; }
.faq__item.open .faq__q::after { content: '–'; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: #12100D; color: rgba(255,255,255,.7); padding: 3rem 0 1.5rem; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: .75rem; }
.footer__tagline { font-size: .9rem; line-height: 1.6; }
.footer h4 { color: var(--white); font-family: var(--font-body); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: .5rem; }
.footer__links a { font-size: .9rem; transition: color .15s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--gold); }

/* ── Service page hero ───────────────────────────────────── */
.service-hero { background: linear-gradient(135deg, var(--navy) 0%, #4a1800 100%); padding: 4rem 0; color: var(--white); }
.service-hero h1 { color: var(--white); margin-bottom: .75rem; }
.service-hero .lead { color: rgba(255,255,255,.8); margin-bottom: 2rem; max-width: 55ch; }
.service-hero__meta { display: flex; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.service-hero__badge { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: .6rem 1.1rem; border-radius: 30px; font-size: .9rem; font-weight: 600; color: var(--white); }
.service-hero__badge em { color: var(--gold); font-style: normal; }
.service-hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── What you get ────────────────────────────────────────── */
.deliverables { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.25rem; }
.deliverable { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.deliverable__icon { font-size: 1.5rem; margin-bottom: .75rem; }
.deliverable h4 { color: var(--navy); margin-bottom: .4rem; }
.deliverable p { color: var(--muted); font-size: .9rem; }

/* ── Guarantee bar ───────────────────────────────────────── */
.guarantee { background: var(--warm); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
.guarantee__icon { font-size: 2.5rem; flex-shrink: 0; }
.guarantee h3 { color: var(--navy); margin-bottom: .25rem; }
.guarantee p { color: var(--muted); font-size: .9375rem; }

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .about__photo { max-width: 300px; margin: 0 auto; }
  .writeready__inner { grid-template-columns: 1fr; }
  .freeguide__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .trustbar__inner { gap: 1.5rem; }
  .nav .container { flex-wrap: wrap; gap: 0; }
  .nav__brand-row { width: 100%; justify-content: space-between; padding: .1rem 0; }
  .nav__hamburger { display: flex; }
  .nav__links { display: none; width: 100%; }
  .nav__links.open { display: flex; flex-direction: column; align-items: flex-start; background: var(--white); border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; gap: 1.25rem; z-index: 50; }
  .nav { position: relative; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trustbar__inner { flex-direction: column; align-items: flex-start; gap: .85rem; }
}

/* ── Reviews ─────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 1.75rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 1rem; transition: box-shadow .2s, transform .2s; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--gold); }
.review-stars { color: #F59E0B; font-size: 1.05rem; letter-spacing: .08em; }
.review-text { color: var(--muted); font-size: .9375rem; line-height: 1.7; flex: 1; }
.review-author { border-top: 1px solid var(--border); padding-top: .75rem; }
.review-author strong { display: block; color: var(--navy); font-weight: 600; font-size: .9rem; }
.review-author span { font-size: .8rem; color: var(--muted); }

/* ── Scroll reveal ────────────────────────────────────────── */
body.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
body.js [data-reveal].in-view { opacity: 1; transform: translateY(0); }
body.js [data-reveal-d="1"] { transition-delay: .1s; }
body.js [data-reveal-d="2"] { transition-delay: .2s; }
body.js [data-reveal-d="3"] { transition-delay: .3s; }
body.js [data-reveal-d="4"] { transition-delay: .4s; }
body.js [data-reveal-d="5"] { transition-delay: .5s; }
body.js [data-reveal-d="6"] { transition-delay: .6s; }
@media (prefers-reduced-motion: reduce) { body.js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; } }


/* ── Footer EFA Assistant link ───────────────────────────── */
.footer__efa { text-align: center; padding-top: 1rem; margin-top: .75rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer__efa a { font-family: var(--font-body); font-size: 11px; color: #FF8C42; opacity: .6; text-decoration: none; }
.footer__efa a:hover { opacity: 1; }

/* ── Parallax ─────────────────────────────────────────────── */

/* About photo parallax */
.about__photo-frame img, .about__photo-frame > div { transform: translateY(var(--about-parallax, 0)); transition: transform .05s linear; will-change: transform; }

/* WriteReady section depth decoration */
.writeready { position: relative; overflow: hidden; }
.writeready__deco {
  position: absolute;
  right: -12%;
  top: -25%;
  width: 46%;
  aspect-ratio: 1;
  background: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='200' cy='200' r='178' stroke='rgba(255%2C255%2C255%2C0.07)' stroke-width='52'/%3E%3Ccircle cx='200' cy='200' r='112' stroke='rgba(200%2C85%2C24%2C0.18)' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
  will-change: transform;
}

@media (max-width: 900px) {
  .writeready__deco { display: none; }
}

