/* ========================================
   Employment Law Simplified — Core Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #1B2B4B;
  --navy-light: #2A3F6B;
  --teal: #2B7A78;
  --teal-light: #3AAFA9;
  --gold: #D4A853;
  --warm-bg: #FAFAF7;
  --warm-card: #F5F3EF;
  --text-primary: #1A1A1A;
  --text-secondary: #4A5568;
  --text-light: #718096;
  --white: #FFFFFF;
  --border: #E2DFD8;
  --shadow: 0 2px 8px rgba(27,43,75,0.08);
  --shadow-lg: 0 8px 24px rgba(27,43,75,0.12);
  --radius: 8px;
  --max-width: 1100px;
  --content-width: 740px;
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--warm-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.3;
  color: var(--navy);
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--teal-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- NAV ---- */

.site-nav {
  background: var(--navy);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Lora', Georgia, serif;
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.3s;
}

/* ---- HERO ---- */

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(212,168,83,0.3);
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: var(--teal-light);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---- TRUST BAR ---- */

.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-icon {
  width: 20px;
  height: 20px;
  fill: var(--teal);
  flex-shrink: 0;
}

/* ---- SECTIONS ---- */

.section {
  padding: 4.5rem 2rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

/* ---- CARDS GRID ---- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--warm-card);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--teal);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
}

.card-link::after {
  content: ' \2192';
}

/* ---- ARTICLE CARDS ---- */

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.article-card-body {
  padding: 1.8rem;
}

.article-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(43,122,120,0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.8rem;
}

.article-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.article-card h3 a {
  color: var(--navy);
}

.article-card h3 a:hover {
  color: var(--teal);
}

.article-card p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---- PULL QUOTE / CALLOUT ---- */

.callout {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 2.5rem 3rem;
  margin: 3rem auto;
  max-width: var(--content-width);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.callout p {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
}

.callout cite {
  display: block;
  margin-top: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-light);
}

/* ---- ARTICLE / PROSE ---- */

.prose {
  max-width: var(--content-width);
  margin: 0 auto;
}

.prose h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.prose h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
}

.prose h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.8rem;
}

.prose p {
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.prose ul, .prose ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.prose blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--warm-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.prose blockquote p {
  font-family: 'Lora', Georgia, serif;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0;
}

.article-meta {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* ---- TIP BOX ---- */

.tip-box {
  background: rgba(43,122,120,0.06);
  border: 1px solid rgba(43,122,120,0.15);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
}

.tip-box-title {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.tip-box p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---- WARNING BOX ---- */

.warning-box {
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  margin: 1.5rem 0;
}

.warning-box-title {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

/* ---- FOOTER ---- */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-brand span {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  margin-left: 1.5rem;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  html { font-size: 16px; }

  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 2rem 1.5rem;
    gap: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .hero { padding: 3.5rem 1.5rem 3rem; }
  .hero h1 { font-size: 2rem; }

  .trust-inner { gap: 1.5rem; }

  .section { padding: 3rem 1.5rem; }

  .cards-grid { grid-template-columns: 1fr; }

  .callout { padding: 1.5rem; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal a { margin-left: 0; margin-right: 1.5rem; }
}
