/*
Theme Name: Northstar IT & Cyber Advisory
Theme URI: https://northstaritadvisory.com
Author: Northstar IT & Cyber Advisory Limited
Description: Custom theme for Northstar IT & Cyber Advisory Limited
Version: 1.0.0
License: Proprietary
Tags: business, professional, cybersecurity
*/

/* =====================================================
   RESET & ROOT VARIABLES
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a3a6b;
  --navy-deep: #0f2347;
  --navy-mid: #1e4080;
  --gold: #4a9edd;
  --gold-light: #93c5ef;
  --gold-pale: #deeef9;
  --cream: #f4f8fd;
  --white: #ffffff;
  --text-body: #1e2d40;
  --text-muted: #4a6080;
  --border: rgba(74,158,221,0.25);
  --border-light: rgba(26,58,107,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
}

/* =====================================================
   NAV
   ===================================================== */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,15,26,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74,158,221,0.15);
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-star { width: 48px; height: 56px; flex-shrink: 0; }

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  display: block;
}

nav.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav.site-nav ul a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  transition: color 0.2s;
}

nav.site-nav ul a:hover,
nav.site-nav ul a.current-menu-item > a,
nav.site-nav ul li.current-menu-item > a { color: var(--gold); }

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 20px !important;
  border-radius: 2px !important;
  font-size: 12px !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
}

/* WordPress menu wrapper */
.main-navigation { display: flex; align-items: center; }
.main-navigation .menu { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.main-navigation .menu a {
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  transition: color 0.2s;
}
.main-navigation .menu a:hover { color: var(--gold); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2.5rem 6rem;
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.6s ease both;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  animation: fadeUp 0.7s 0.1s ease both;
}

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

.hero-lead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 300;
}

/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
section {
  padding: 7rem 2.5rem;
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.section-title em { color: var(--gold); font-style: italic; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  color: var(--navy-deep);
  text-decoration: none;
}

.btn-secondary {
  text-decoration: none;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  border-radius: 2px;
  display: inline-block;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* =====================================================
   POSITIONING SECTION
   ===================================================== */
.positioning { background: var(--white); }

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}

@media (max-width: 768px) {
  .positioning-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.positioning-body { font-size: 1.05rem; color: var(--text-body); line-height: 1.85; }
.positioning-body p { margin-bottom: 1.2rem; }
.positioning-body strong { color: var(--navy); font-weight: 500; }

.not-list { list-style: none; margin-top: 2rem; }
.not-list li {
  font-size: 1rem;
  color: var(--text-muted);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.not-list li::before {
  content: '×';
  font-size: 1.1rem;
  color: #c0392b;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 1;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services { background: var(--cream); }

.services-intro {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.2s;
  position: relative;
}

.service-card:last-child { border-right: none; }
.service-card:hover { background: #fafaf8; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

.service-tags { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 6px; }

.service-tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold-pale);
  border-radius: 2px;
  padding: 3px 8px;
  font-weight: 400;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about { background: var(--navy); color: var(--white); }
.about .section-title { color: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3.5rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.about-sidebar { position: sticky; top: 5rem; }

.about-founder-badge {
  border: 1px solid rgba(74,158,221,0.3);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.about-founder-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.about-founder-title {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.about-credentials {
  list-style: none;
  border-top: 1px solid rgba(74,158,221,0.15);
  padding-top: 1.2rem;
}

.about-credentials li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.about-credentials li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.about-body { font-size: 1.05rem; line-height: 1.9; color: rgba(255,255,255,0.7); }
.about-body p { margin-bottom: 1.5rem; }
.about-body strong { color: var(--white); font-weight: 500; }

.about-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.5;
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

/* =====================================================
   WHO IS THIS FOR
   ===================================================== */
.who { background: var(--white); }

.who-intro {
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}

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

.who-card {
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--cream);
}

.who-card-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border-radius: 50%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.who-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact { background: var(--navy-deep); color: var(--white); text-align: center; }
.contact .section-eyebrow { justify-content: center; }
.contact .section-eyebrow::before { display: none; }
.contact .section-title { color: var(--white); }

.contact-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.contact-method {
  border: 1px solid rgba(74,158,221,0.2);
  border-radius: 4px;
  padding: 1.8rem 2.5rem;
  min-width: 220px;
  text-align: left;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, background 0.2s;
  background: rgba(255,255,255,0.02);
}

.contact-method:hover {
  border-color: var(--gold);
  background: rgba(74,158,221,0.04);
}

.contact-method-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin-bottom: 0.4rem;
}

.contact-method-value { font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 400; }

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
  text-align: left;
}

/* =====================================================
   CONTACT FORM
   ===================================================== */
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(74,158,221,0.2);
  border-radius: 6px;
  padding: 2.5rem;
}

.wpcf7-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(74,158,221,0.2);
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 0.95rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: rgba(74,158,221,0.6);
}

.wpcf7-form textarea { resize: vertical; line-height: 1.7; }

.wpcf7-submit,
.form-submit-btn {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 3px;
  padding: 14px 32px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.wpcf7-submit:hover,
.form-submit-btn:hover {
  background: var(--gold-light);
}

/* =====================================================
   FOOTER
   ===================================================== */
footer.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-right { font-size: 13px; color: rgba(255,255,255,0.3); text-align: right; }

.footer-links { display: block; margin-top: 6px; font-size: 12px; }
.footer-links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  margin-right: 1.2rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.65); }

/* =====================================================
   PAGE HEADER (inner pages)
   ===================================================== */
.page-header {
  background: var(--navy-deep);
  padding: 9rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-header-inner { max-width: 1040px; margin: 0 auto; position: relative; z-index: 2; }

.page-header-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-header-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.page-header h1 em { color: var(--gold); font-style: italic; }

.page-header-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.8;
}

/* =====================================================
   BLOG / INSIGHTS
   ===================================================== */
.blog-layout {
  max-width: 1040px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 860px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }
}

.post-list { display: flex; flex-direction: column; gap: 2rem; }

.post-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2.5rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.15s;
  position: relative;
}

.post-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  border-radius: 4px 4px 0 0;
}

.post-card:hover { border-color: rgba(74,158,221,0.3); transform: translateY(-2px); }
.post-card:hover::before { transform: scaleX(1); }

.post-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }

.post-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.post-date { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }

.post-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

.post-card .post-excerpt { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

.post-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.2rem;
  font-weight: 400;
}

/* Full post */
.post-full { margin-bottom: 3rem; }
.post-full-header { margin-bottom: 2.5rem; }
.post-full-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-top: 1rem;
}

.post-body { font-size: 1.05rem; color: var(--text-body); line-height: 1.9; }
.post-body p { margin-bottom: 1.4rem; }
.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-body ul { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.post-body ul li { margin-bottom: 0.5rem; color: var(--text-muted); }
.post-body strong { color: var(--navy); font-weight: 500; }

.post-divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 3rem 0;
}

/* Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 2rem;
}

.sidebar-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.sidebar-topics { list-style: none; }
.sidebar-topics li { border-bottom: 1px solid var(--border-light); }
.sidebar-topics li:last-child { border-bottom: none; }
.sidebar-topics a {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-topics a:hover { color: var(--gold); }

.sidebar-cta {
  background: var(--navy);
  border-radius: 4px;
  padding: 2rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  line-height: 1.75;
}

.sidebar-cta p { margin-bottom: 1rem; }
.sidebar-cta .btn-primary { display: block; text-align: center; margin-top: 1.5rem; }

/* =====================================================
   LEGAL PAGES (Privacy, Terms, Cookies, Accessibility)
   ===================================================== */
.legal-page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}

.legal-page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.legal-page-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.legal-page-content p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.legal-page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.legal-page-content ul li {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.legal-page-content a {
  color: var(--gold);
  text-decoration: underline;
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   MOBILE
   ===================================================== */
@media (max-width: 640px) {
  nav.site-nav ul { display: none; }
  section { padding: 5rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 5rem; }
  .hero-stats { gap: 2rem; }
  footer.site-footer { flex-direction: column; text-align: center; }
  .footer-right { text-align: center; }
  .contact-form-grid { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
  .form-row { grid-template-columns: 1fr; }
  .legal-page-content { padding: 3rem 1.25rem; }
  .blog-layout { padding: 3rem 1.25rem; }
  .page-header { padding: 8rem 1.25rem 4rem; }
}
