:root {
  --magenta: #a60052;
  --pink: #ec1684;
  --green: #049a45;
  --deep: #063b25;
  --cream: #fff4e8;
  --soft: #f8efe7;
  --ink: #241f22;
  --muted: #665f63;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(36, 31, 34, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, 92vw); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--deep); color: var(--white); padding: 10px 14px; z-index: 99; }
.skip-link:focus { left: 8px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px min(5vw, 54px);
  background: rgba(255, 244, 232, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(166, 0, 82, 0.08);
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 900; color: var(--magenta); }
.brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; background: var(--white); }
.nav { display: flex; align-items: center; gap: 22px; font-size: 0.92rem; font-weight: 800; }
.nav a { text-decoration: none; position: relative; }
.nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--green); transition: width .25s ease; }
.nav a:hover::after { width: 100%; }
.nav-cta { background: var(--magenta); color: var(--white); padding: 10px 16px; border-radius: 999px; transition: transform .25s ease, box-shadow .25s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(166,0,82,.22); }

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,244,232,.96), rgba(255,244,232,.78), rgba(255,244,232,.24)), url("../images/eab-counselor-v1.jpg") center right / cover no-repeat;
  padding: 140px 0 80px;
}
.hero-overlay::before, .hero-overlay::after { content: ""; position: absolute; border-radius: 999px; pointer-events: none; }
.hero-overlay::before { width: 420px; height: 420px; background: rgba(236,22,132,.13); top: -130px; left: -110px; }
.hero-overlay::after { width: 520px; height: 520px; border: 28px solid rgba(4,154,69,.15); right: -190px; bottom: -210px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 690px) 1fr; align-items: end; gap: 28px; position: relative; z-index: 2; }
.eyebrow { margin: 0 0 14px; color: var(--magenta); font-weight: 900; text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; margin: 0; letter-spacing: -.045em; color: var(--magenta); }
h1 { font-size: clamp(3.55rem, 8vw, 7.4rem); line-height: .9; }
h1 span, h2 span { display: block; color: var(--green); font-style: italic; }
.lead { font-size: clamp(1.12rem, 2vw, 1.36rem); line-height: 1.7; max-width: 650px; margin: 26px 0 34px; color: #342d31; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 25px; border-radius: 999px; text-decoration: none; font-weight: 900; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(166,0,82,.18); }
.btn-primary { background: var(--magenta); color: var(--white); }
.btn-primary:hover { background: #870043; }
.btn-secondary { background: var(--white); color: var(--magenta); border: 2px solid rgba(166,0,82,.13); }
.btn-light { background: var(--white); color: var(--magenta); }
.hero-card { align-self: end; justify-self: end; max-width: 320px; border-radius: 30px; background: rgba(255,255,255,.9); padding: 26px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.58); }
.hero-card p { margin: 0 0 8px; color: var(--green); font-weight: 900; }
.hero-card strong { line-height: 1.5; }
.floating-card { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.trust-strip { background: var(--magenta); color: var(--white); padding: 18px 0; font-weight: 900; }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; text-align: center; }
.section { padding: 88px 0; }
.section-head { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-head h2, .feature h2, .about h2, .help h2, .final-cta h2 { font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: .98; margin-bottom: 18px; }
.section-head p, .feature p, .about p, .help p, .final-cta p { color: var(--muted); font-size: 1.05rem; line-height: 1.78; }
.services { background: var(--white); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card { position: relative; overflow: hidden; min-height: 312px; background: var(--soft); border: 1px solid rgba(166,0,82,.08); border-radius: 30px; padding: 30px; box-shadow: 0 18px 42px rgba(36,31,34,.06); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px rgba(36,31,34,.12); }
.service-card::after { content:""; position:absolute; width: 150px; height: 150px; border-radius: 999px; background: rgba(236,22,132,.1); right: -56px; bottom: -56px; transition: transform .25s ease; }
.service-card:nth-child(even)::after { background: rgba(4,154,69,.13); }
.service-card:hover::after { transform: scale(1.2); }
.icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--white); color: var(--magenta); font-size: 1.55rem; margin-bottom: 22px; box-shadow: 0 12px 24px rgba(36,31,34,.08); }
.service-card h3 { color: var(--deep); margin: 0 0 14px; font-size: 1.3rem; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); line-height: 1.7; }

.feature { background: radial-gradient(circle at 10% 20%, rgba(236,22,132,.13), transparent 28%), radial-gradient(circle at 90% 80%, rgba(4,154,69,.16), transparent 30%), var(--cream); }
.feature-grid, .about-grid, .help-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 58px; align-items: center; }
.image-panel { position: relative; }
.image-panel img, .portrait-card img { border-radius: 36px; box-shadow: var(--shadow); width: 100%; }
.image-badge { position: absolute; right: -22px; bottom: 28px; max-width: 280px; background: var(--magenta); color: var(--white); border-radius: 26px; padding: 22px; font-weight: 900; line-height: 1.25; box-shadow: 0 18px 40px rgba(166,0,82,.24); }
.pill-grid, .help-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.pill-grid span, .help-list span { background: var(--white); color: var(--deep); border-radius: 999px; padding: 16px 18px; font-weight: 900; box-shadow: 0 10px 24px rgba(36,31,34,.06); transition: transform .25s ease; }
.pill-grid span:hover, .help-list span:hover { transform: translateY(-4px); }
.about { background: var(--white); }
.credentials { margin: 24px 0; padding: 20px 22px; border-left: 6px solid var(--green); border-radius: 18px; background: var(--soft); color: var(--deep); font-weight: 900; line-height: 1.55; }
.help { background: var(--soft); }
.help-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
.final-cta { text-align: center; padding: 92px 0; color: var(--white); background: linear-gradient(120deg, rgba(166,0,82,.94), rgba(4,154,69,.86)), url("../images/eab-counselor-v1.jpg") center / cover no-repeat; }
.final-cta h2, .final-cta p { color: var(--white); }
.final-cta p { max-width: 680px; margin: 0 auto 24px; }
.site-footer { background: var(--deep); color: var(--white); padding: 28px 0; font-weight: 800; }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { min-height: auto; background: linear-gradient(180deg, rgba(255,244,232,.96), rgba(255,244,232,.82)), url("../images/eab-counselor-v1.jpg") center / cover no-repeat; }
  .hero-grid, .feature-grid, .about-grid, .help-grid { grid-template-columns: 1fr; }
  .hero-card { justify-self: start; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .brand span { font-size: .92rem; }
  .hero { padding: 110px 0 62px; }
  .button-row, .trust-grid { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .service-grid, .pill-grid, .help-list { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .image-badge { position: static; margin-top: 16px; max-width: none; }
  .section { padding: 68px 0; }
}
