/* ========================================================
   GRD Pro Talent Acquisition — styles.css
   Palette & typography aligned with grd-pro.de
   ======================================================== */

:root {
  /* Colors */
  --bg: #F7F6F1;
  --bg-warm: #F1EFE8;
  --card-bg: #FFFFFF;
  --card-border: #DCD7C9;
  --ink: #0A1633;
  --ink-deep: #050D2A;
  --action: #0A2472;
  --muted: #4A5573;
  --gold: #B08537;
  --gold-light: #D8B86A;
  --gold-dot: #C9A14D;

  /* Type */
  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --text-hero: clamp(2.6rem, 1.2rem + 5.2vw, 6rem);
  --text-h2: clamp(2rem, 1rem + 3.4vw, 3.6rem);
  --text-h3: clamp(1.25rem, 1rem + 0.7vw, 1.6rem);
  --text-body: 1.0625rem;
  --text-lede: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  --text-small: 0.875rem;
  --text-eyebrow: 0.75rem;

  /* Spacing */
  --container: 1080px;
  --space-section: clamp(4rem, 3rem + 4vw, 7rem);
  --radius: 12px;
  --radius-pill: 9999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------- CONTAINER ------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ------- TYPOGRAPHY ------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.05;
}
h1 { font-size: var(--text-hero); letter-spacing: -0.025em; }
h2 { font-size: var(--text-h2); letter-spacing: -0.02em; }
h3 { font-size: var(--text-h3); letter-spacing: -0.01em; line-height: 1.2; }
em, i { font-family: var(--serif); font-style: italic; color: var(--gold); font-weight: 500; }
strong { font-weight: 600; color: var(--ink); }
p { color: var(--ink); }
a { color: inherit; text-decoration: none; }

.eyebrow, .section__num, .footer__label, .cta__meta-label {
  font-family: var(--sans);
  font-size: var(--text-eyebrow);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section__num {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
}
.card__label, .pricing__label {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--dark { color: var(--gold-light); margin-bottom: 1.5rem; display: inline-block; }

.lede {
  font-size: var(--text-lede);
  color: var(--ink);
  max-width: 62ch;
  margin-bottom: 3rem;
  line-height: 1.55;
}

/* ------- NAV ------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,246,241,0.86);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(10,22,51,0.06);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--ink); }
.logo__mark { color: var(--ink); }
.logo__word {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.logo__word em { color: var(--gold); font-weight: 500; margin-left: 0.15em; }
.logo__division {
  display: inline-block;
  margin-left: 0.6em;
  padding-left: 0.65em;
  border-left: 1px solid rgba(10,22,51,0.2);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  vertical-align: middle;
}
.logo--footer { color: var(--ink); }

.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a { font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.nav__links a:hover { color: var(--gold); }
.nav__links a.btn--primary { color: var(--bg); }
.nav__links a.btn--primary:hover { color: var(--bg); }

/* ------- BUTTONS ------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--small { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.btn--wide { width: 100%; justify-content: center; padding: 1.05rem 1.75rem; }
.btn--primary { background: var(--action); color: var(--bg); border-color: var(--action); }
.btn--primary:hover { background: #081b57; border-color: #081b57; }
.btn--ghost { color: var(--ink); border-color: rgba(10,22,51,0.18); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); }
.btn--gold { background: var(--gold); color: var(--ink-deep); border-color: var(--gold); }
.btn--gold:hover { background: #9c7530; border-color: #9c7530; color: var(--bg); }
.btn--outline { background: transparent; color: var(--bg); border-color: rgba(247,246,241,0.55); }
.btn--outline:hover { border-color: var(--bg); }

/* ------- HERO ------- */
.hero { padding: clamp(4.5rem, 4rem + 4vw, 8rem) 0 clamp(3.5rem, 3rem + 3vw, 6rem); }
.hero__title { margin: 1.25rem 0 1.75rem; }
.hero__lede { font-size: var(--text-lede); max-width: 60ch; color: var(--ink); line-height: 1.55; }
.hero__cta { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2.25rem; }

.hero__stats {
  margin-top: clamp(3rem, 3rem + 2vw, 5rem);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(10,22,51,0.1);
}
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.4rem + 1.8vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.stat__unit { color: var(--gold); font-style: italic; }
.stat__label { margin-top: 0.75rem; color: var(--muted); font-size: 0.9rem; letter-spacing: 0.02em; }

/* ------- SECTIONS ------- */
.section { padding: var(--space-section) 0; }
.section--warm { background: var(--bg-warm); }

.section--dark {
  background: var(--action);
  color: var(--bg);
}
.section--dark h2 { color: var(--bg); }
.section--dark h2 em { color: var(--gold-light); }
.section--dark .lede { color: rgba(247,246,241,0.88); }
.section--dark .section__num { color: var(--gold-light); }
.section--dark .divider hr { background: rgba(247,246,241,0.15); }

.section__head { margin-bottom: 2.5rem; }
.section__num { display: block; margin-bottom: 1rem; }
.section__body { }

/* ------- DIVIDER ------- */
.divider hr { border: none; height: 1px; background: rgba(10,22,51,0.1); }

/* ------- CARDS ------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 12px 40px -20px rgba(10,22,51,0.18); }
.card__label { display: block; margin-bottom: 1.25rem; }
.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--muted); line-height: 1.65; margin-bottom: 0.9rem; }
.card p:last-child { margin-bottom: 0; }

/* Dark card variant (on navy sections) */
.section--dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(216,184,106,0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section--dark .card:hover {
  transform: translateY(-2px);
  border-color: rgba(216,184,106,0.5);
  box-shadow: 0 20px 60px -30px rgba(0,0,0,0.5);
}
.section--dark .card__label {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.section--dark .card h3 { color: var(--bg); }
.section--dark .card p { color: rgba(247,246,241,0.78); }

/* ------- PROSE ------- */
.prose { max-width: 68ch; }
.prose p { color: var(--ink); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 1.4rem; }
.prose p.lede { color: var(--ink); font-size: var(--text-lede); line-height: 1.55; margin-bottom: 2rem; }
.prose p:last-child { margin-bottom: 0; }

/* Gold italic emphasis in body copy — larger, bolder, higher contrast */
.prose p em,
.two-col p em,
.lede em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-weight: 600;
  font-size: 1.18em;
  letter-spacing: 0.005em;
}
.section--dark .prose p em,
.section--dark .two-col p em,
.section--dark .lede em { color: var(--gold-light); }

/* ------- TWO-COL ------- */
.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.two-col p { color: var(--ink); line-height: 1.75; margin-bottom: 1.25rem; }
.two-col .lede { color: var(--ink); }
.list { list-style: none; border-top: 1px solid rgba(10,22,51,0.1); }
.list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(10,22,51,0.1);
  color: var(--ink);
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 1rem;
}
.list__dot { color: var(--gold); font-size: 0.7rem; }

/* ------- PILLARS ------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 3.25rem;
}
.pillar { }
.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.65rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.pillar h3 {
  margin-bottom: 1rem;
  font-family: var(--sans);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: none;
}
.pillar p { color: var(--muted); line-height: 1.7; font-size: 1rem; }

/* Pillars in dark section */
.section--dark .pillar h3 {
  color: var(--gold-light);
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.012em;
}
.section--dark .pillar__num {
  color: var(--gold-light);
  font-size: 1.85rem;
}
.section--dark .pillar p {
  color: rgba(247,246,241,0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}
.section--dark .pillars { gap: 3.5rem 3.25rem; }

/* ------- PRICING ------- */
.pricing {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.pricing__card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: clamp(2rem, 1.5rem + 1.5vw, 3rem);
}
.pricing__label { margin-bottom: 1.25rem; }
.pricing__price { display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 0.35rem; }
.pricing__amount {
  font-family: var(--serif);
  font-size: clamp(3rem, 2rem + 3vw, 4.5rem);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pricing__unit { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.4rem; }
.pricing__note { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

.pricing__list { list-style: none; margin-bottom: 2rem; }
.pricing__list li {
  display: flex; gap: 0.85rem; align-items: flex-start;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(10,22,51,0.08);
  color: var(--ink);
}
.pricing__list li:first-child { border-top: none; }
.check {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing__aside { padding-top: 1rem; }
.pricing__aside h3 { margin-bottom: 1.25rem; }
.pricing__aside p { color: var(--muted); margin-bottom: 1.15rem; line-height: 1.7; }
.aside__signoff {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold) !important;
  font-size: 1.15rem;
  margin-top: 1.5rem !important;
}

.pricing__foot {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.5);
  border-radius: 4px;
}
.pricing__foot p { color: var(--ink); font-size: 0.98rem; line-height: 1.65; }

/* ------- STEPS ------- */
.steps { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(10,22,51,0.1);
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid rgba(10,22,51,0.1); }
.step__num {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3.5rem);
  color: var(--gold);
  font-style: italic;
  line-height: 1;
}
.step__body h3 { margin-bottom: 0.6rem; }
.step__body p { color: var(--muted); max-width: 64ch; line-height: 1.65; }

/* ------- CTA BANNER ------- */
.cta {
  background: var(--action);
  color: var(--bg);
  padding: var(--space-section) 0;
  text-align: center;
}
.cta h2 { color: var(--bg); margin-bottom: 1.25rem; }
.cta h2 em { color: var(--gold-light); }
.cta p { color: rgba(247,246,241,0.82); max-width: 56ch; margin: 0 auto 2.25rem; font-size: var(--text-lede); }
.cta__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.cta__meta {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(247,246,241,0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  color: rgba(247,246,241,0.85);
  font-size: 0.95rem;
  line-height: 1.65;
}
.cta__meta-label { color: var(--gold-light); display: block; margin-bottom: 0.75rem; }

/* ------- FOOTER ------- */
.footer { background: var(--bg-warm); padding: 4.5rem 0 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(10,22,51,0.1);
}
.footer__brand .logo { margin-bottom: 1.25rem; }
.footer__desc { color: var(--muted); font-size: 0.95rem; line-height: 1.6; max-width: 38ch; }
.footer__label { display: block; margin-bottom: 1rem; }
.footer__col ul { list-style: none; }
.footer__col li { padding: 0.35rem 0; font-size: 0.95rem; color: var(--ink); }
.footer__col a:hover { color: var(--gold); }
.footer__legal {
  padding-top: 2rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ------- RESPONSIVE ------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; gap: 2rem; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .step { grid-template-columns: 1fr; gap: 0.75rem; }
  .step__num { font-size: 2rem; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .pillars { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .cta__meta { grid-template-columns: 1fr; gap: 1.5rem; }
  .logo__division { display: none; }
}
@media (max-width: 600px) {
  .nav__links { gap: 1rem; }
  .nav__links a:not(.btn) { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .footer__legal { flex-direction: column; gap: 0.35rem; }
  .pillars { grid-template-columns: 1fr; }
}

/* ------- LEGAL PAGES ------- */
.legal { padding: clamp(3rem, 3rem + 2vw, 5.5rem) 0 var(--space-section); }
.legal__head { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(10,22,51,0.1); }
.legal__head h1 { font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem); margin-bottom: 0.75rem; }
.legal__head .eyebrow { display: block; margin-bottom: 1rem; }
.legal__body { max-width: 72ch; }
.legal__body h2 {
  font-size: clamp(1.35rem, 1rem + 1vw, 1.75rem);
  margin: 2.75rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(10,22,51,0.08);
}
.legal__body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal__body h3 { font-size: 1.15rem; margin: 1.75rem 0 0.75rem; }
.legal__body p { color: var(--ink); line-height: 1.75; margin-bottom: 1.15rem; }
.legal__body ul, .legal__body ol { margin: 0 0 1.25rem 1.25rem; }
.legal__body li { line-height: 1.7; margin-bottom: 0.5rem; color: var(--ink); }
.legal__body a { color: var(--action); border-bottom: 1px solid rgba(10,36,114,0.3); }
.legal__body a:hover { border-bottom-color: var(--action); }
.legal__body strong { color: var(--ink); }
.legal__body .muted { color: var(--muted); font-size: 0.92rem; }
