@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;700&display=swap');

/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --primary: #2C3E50;
  --secondary: #ECF0F1;
  --accent-orange: #E67E22;
  --accent-green: #27AE60;
  --text-body: #2C3E50;
  --text-muted: #7f8c8d;
  --bg-white: #ffffff;
  --bg-light: #F8F9FA;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', Helvetica, Arial, sans-serif;
  --max-width: 1200px;
  --section-gap: 120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-white);
  font-weight: 300;
}

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

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
}

h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

p {
  max-width: 68ch;
  margin-bottom: 1.2rem;
  font-weight: 300;
  color: #3d4f5c;
}

/* =============================================
   CONTAINER & GRID
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid-4-8 {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 60px;
  align-items: start;
}

.grid-8-4 {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 60px;
  align-items: start;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(44,62,80,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(44,62,80,0.08);
}

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

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent-orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: var(--section-gap) 0;
}

.section--light {
  background-color: var(--secondary);
}

.section--white {
  background-color: var(--bg-white);
}

.section--primary {
  background-color: var(--primary);
  color: var(--secondary);
}

.section--primary h1,
.section--primary h2,
.section--primary h3 {
  color: var(--secondary);
}

.section--primary p {
  color: rgba(236,240,241,0.85);
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1rem;
  display: block;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: calc(90px + var(--section-gap));
  padding-bottom: var(--section-gap);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}

.hero-meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.08;
  margin-bottom: 2rem;
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a5f70;
  max-width: 52ch;
  margin-bottom: 2.5rem;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-stat-bar {
  display: flex;
  gap: 40px;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44,62,80,0.12);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--primary);
  padding: 30px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--secondary);
}

.trust-bar-item strong {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent-orange);
}

.trust-bar-item span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236,240,241,0.75);
}

/* =============================================
   TESTIMONIALS (index.php)
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 36px;
  border-top: 2px solid var(--accent-orange);
  transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(44,62,80,0.1);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.testimonial-stars {
  color: var(--accent-orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: #4a5f70;
  font-style: italic;
  margin-bottom: 1.2rem;
  max-width: none;
}

.testimonial-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =============================================
   STATS STRIP
   ============================================= */
.stats-strip {
  padding: 80px 0;
  background: var(--secondary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item span {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-item .stat-pct {
  color: var(--accent-orange);
}

/* =============================================
   EDITORIAL SPLIT SECTIONS
   ============================================= */
.editorial-section {
  padding: var(--section-gap) 0;
}

.editorial-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.editorial-image--wide {
  aspect-ratio: 16/9;
}

.editorial-content {
  padding: 40px 0;
}

.editorial-content .eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

/* =============================================
   VIDEO BLOCKS (INDEX)
   ============================================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-block {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--primary);
}

.video-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.video-block-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.video-play-btn {
  width: 56px;
  height: 56px;
  border: 2px solid var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn svg {
  fill: var(--bg-white);
  width: 20px;
  height: 20px;
  margin-left: 4px;
}

.video-block-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-white);
}

/* =============================================
   BENEFITS CARDS
   ============================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.benefit-card {
  padding: 36px 28px;
  background: var(--bg-white);
  border-left: 3px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  border-left-color: var(--accent-green);
  box-shadow: 0 4px 24px rgba(44,62,80,0.07);
}

.benefit-card h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #5a6f7c;
  max-width: none;
}

.benefit-card .card-quote {
  display: block;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--secondary);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   FAQ (faq.php)
   ============================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.glossary-rail {
  position: sticky;
  top: 110px;
}

.glossary-rail h3 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--secondary);
}

.glossary-list {
  list-style: none;
}

.glossary-list li {
  margin-bottom: 0.5rem;
}

.glossary-list a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: all 0.2s ease;
}

.glossary-list a:hover {
  color: var(--primary);
  border-left-color: var(--accent-orange);
}

.accordion-item {
  border-bottom: 1px solid rgba(44,62,80,0.1);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.accordion-trigger:hover {
  color: var(--accent-orange);
}

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.accordion-icon svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.accordion-item.open .accordion-icon {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

.accordion-item.open .accordion-icon svg {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 0 28px 0;
}

.accordion-body p {
  font-size: 0.98rem;
  color: #4a5f70;
  line-height: 1.75;
  max-width: 72ch;
}

.accordion-item.open .accordion-body {
  display: block;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.drop-cap::first-letter {
  font-family: var(--font-serif);
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 0.8;
  float: left;
  margin-right: 12px;
  margin-top: 8px;
  color: var(--accent-orange);
}

.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(44,62,80,0.15);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-orange);
}

.timeline-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.4rem;
  display: block;
}

.timeline-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 52ch;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block {
  padding-top: 10px;
}

.contact-schedule-matrix {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(44,62,80,0.12);
  padding-top: 2rem;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(44,62,80,0.06);
  font-size: 0.9rem;
}

.schedule-row span:first-child {
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.schedule-row span:last-child {
  color: var(--text-muted);
}

.contact-form {
  background: var(--secondary);
  padding: 50px;
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-white);
  border: 1px solid rgba(44,62,80,0.15);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--primary);
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

/* =============================================
   BUTTONS / CTA
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn--ghost:hover {
  background: var(--primary);
  color: var(--bg-white);
}

.btn--ghost-white {
  background: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.btn--ghost-white:hover {
  background: var(--bg-white);
  color: var(--primary);
}

.btn--accent {
  background: transparent;
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
}

.btn--accent:hover {
  background: var(--accent-orange);
  color: var(--bg-white);
}

.btn--submit {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn--submit:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

/* =============================================
   FULL-WIDTH PHOTO DIVIDERS
   ============================================= */
.photo-divider {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-divider--half {
  height: 260px;
}

/* =============================================
   COMMUNITY BLOCK
   ============================================= */
.community-block {
  background: var(--primary);
  padding: 100px 0;
  text-align: center;
}

.community-block h2 {
  color: var(--secondary);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

.community-block p {
  color: rgba(236,240,241,0.8);
  max-width: 56ch;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding-top: calc(90px + 80px);
  padding-bottom: 80px;
  background: var(--secondary);
}

.page-hero--white {
  background: var(--bg-white);
  border-bottom: 1px solid rgba(44,62,80,0.08);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.breadcrumb a:hover {
  color: var(--accent-orange);
}

.breadcrumb span {
  color: rgba(44,62,80,0.3);
}

/* =============================================
   POLICY PAGES
   ============================================= */
.policy-content {
  padding: 80px 0;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(44,62,80,0.08);
}

.policy-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content p,
.policy-content li {
  font-size: 0.95rem;
  color: #4a5f70;
  line-height: 1.8;
  max-width: 72ch;
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

.policy-updated {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--primary);
  color: rgba(236,240,241,0.75);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo {
  color: var(--secondary);
  display: inline-block;
  margin-bottom: 1.2rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(236,240,241,0.65);
  max-width: 36ch;
  margin-bottom: 0;
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(236,240,241,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: var(--accent-orange);
}

.footer-contact-detail {
  font-size: 0.87rem;
  color: rgba(236,240,241,0.6);
  margin-bottom: 0.6rem;
  max-width: none;
}

.footer-hours {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: rgba(236,240,241,0.5);
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(236,240,241,0.45);
  line-height: 1.65;
  max-width: 74ch;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(236,240,241,0.4);
  white-space: nowrap;
  margin-top: 4px;
}

.footer-edu-note {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: 0.8rem;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary);
  border-top: 2px solid var(--accent-orange);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-text {
  font-size: 0.87rem;
  color: rgba(236,240,241,0.85);
  line-height: 1.6;
  max-width: none;
}

.cookie-banner-text a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.cookie-btn--accept {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--bg-white);
}

.cookie-btn--accept:hover {
  background: #d35400;
  border-color: #d35400;
}

.cookie-btn--decline {
  background: transparent;
  border-color: rgba(236,240,241,0.35);
  color: rgba(236,240,241,0.7);
}

.cookie-btn--decline:hover {
  border-color: rgba(236,240,241,0.7);
  color: var(--secondary);
}

/* =============================================
   THANK YOU PAGE
   ============================================= */
.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  padding-top: 90px;
}

.thankyou-inner {
  text-align: center;
  max-width: 560px;
}

.thankyou-inner h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thankyou-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 auto 2rem;
  max-width: 44ch;
}

/* =============================================
   404 PAGE
   ============================================= */
.error-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--secondary);
}

.error-inner {
  text-align: center;
  max-width: 520px;
}

.error-code {
  font-family: var(--font-serif);
  font-size: 9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  opacity: 0.1;
  display: block;
  margin-bottom: -1rem;
}

.error-inner h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* =============================================
   DIVIDER LINE
   ============================================= */
.divider {
  width: 60px;
  height: 2px;
  background: var(--accent-orange);
  margin: 2rem 0;
}

.divider--center {
  margin: 2rem auto;
}

/* =============================================
   MOBILE NAVIGATION
   ============================================= */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-white);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(44,62,80,0.08);
  transition: color 0.2s ease;
}

.mobile-nav a:hover {
  color: var(--accent-orange);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 30px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .faq-layout { grid-template-columns: 180px 1fr; gap: 50px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 70px; }
  .container { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { display: none; }
  .hero-stat-bar { flex-wrap: wrap; gap: 24px; }

  .grid-2,
  .grid-4-8,
  .grid-8-4 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 30px 24px; }

  .faq-layout { grid-template-columns: 1fr; }
  .glossary-rail { position: static; display: none; }

  .trust-bar-inner { justify-content: center; }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .nav-inner { padding: 18px 20px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stat-bar { flex-direction: column; gap: 16px; }
}
