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

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

:root {
  --color-teal: #1a5f6e;
  --color-teal-dark: #124a57;
  --color-teal-light: #2a7a8c;
  --color-navy: #2c3e50;
  --color-gold: #c9a84c;
  --color-gold-hover: #b8952f;
  --color-warm-grey: #8e8a84;
  --color-warm-grey-light: #f5f2ee;
  --color-off-white: #faf8f5;
  --color-text: #2a2a2a;
  --color-text-light: #5a5a5a;
  --color-border: #ddd8d0;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1280px;
  --section-py: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-off-white);
}

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

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

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

ul, ol {
  padding-left: 1.5rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

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

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

p:last-child {
  margin-bottom: 0;
}

.text-teal { color: var(--color-teal); }
.text-gold { color: var(--color-gold); }
.text-navy { color: var(--color-navy); }

.bg-teal { background-color: var(--color-teal); }
.bg-navy { background-color: var(--color-navy); }
.bg-warm-grey-light { background-color: var(--color-warm-grey-light); }
.bg-off-white { background-color: var(--color-off-white); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.btn-gold {
  background-color: var(--color-gold);
  color: #fff;
}

.btn-gold:hover {
  background-color: var(--color-gold-hover);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

.btn-outline-teal {
  background-color: transparent;
  color: var(--color-teal);
  border: 2px solid var(--color-teal);
}

.btn-outline-teal:hover {
  background-color: var(--color-teal);
  color: #fff;
}

.btn-outline-light {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.15);
  color: #fff;
}

/* =====================
   HEADER / NAVIGATION
   ===================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(26, 95, 110, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.site-logo span {
  color: var(--color-gold);
}

.site-logo:hover {
  color: #fff;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  border-bottom-color: var(--color-gold);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================
   HERO SECTION
   ===================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-teal-dark);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18, 74, 87, 0.55) 0%, rgba(18, 74, 87, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px;
  max-width: 860px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content .hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  line-height: 1.7;
}

/* =====================
   EDITORIAL INTRO
   ===================== */

.editorial-intro {
  background-color: var(--color-warm-grey-light);
}

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

.drop-cap p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--color-teal);
  float: left;
  line-height: 0.8;
  margin-right: 12px;
  margin-top: 8px;
}

.editorial-img-wrap {
  position: relative;
}

.editorial-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  box-shadow: 8px 8px 32px rgba(0,0,0,0.18);
}

/* =====================
   FEATURE CARDS
   ===================== */

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

.cards-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.feature-card .card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--color-teal);
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--color-navy);
}

.feature-card .card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 20px;
}

/* =====================
   MISCONCEPTIONS
   ===================== */

.misconceptions {
  background-color: var(--color-warm-grey-light);
}

.misconception-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.misconception-block:last-child {
  border-bottom: none;
}

.misconception-block.reverse {
  direction: rtl;
}

.misconception-block.reverse > * {
  direction: ltr;
}

.misconception-block img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  box-shadow: 4px 4px 24px rgba(0,0,0,0.12);
}

.misconception-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  display: block;
}

.misconception-text strong {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-navy);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

/* =====================
   TIMELINE
   ===================== */

.timeline-section {
  background-color: var(--color-navy);
  color: #fff;
}

.timeline-section h2 {
  color: #fff;
}

.timeline-section > .container > p {
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin-bottom: 56px;
}

.timeline {
  position: relative;
  padding-top: 16px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: rgba(255,255,255,0.15);
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0 24px;
  align-items: start;
  margin-bottom: 40px;
}

.timeline-item:nth-child(odd) .timeline-content {
  grid-column: 1;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-spacer {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-content {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-empty {
  grid-column: 1;
}

.timeline-dot {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
}

.timeline-dot-inner {
  width: 16px;
  height: 16px;
  background-color: var(--color-gold);
  border-radius: 50%;
  border: 3px solid var(--color-navy);
  box-shadow: 0 0 0 2px var(--color-gold);
  flex-shrink: 0;
}

.timeline-content {
  padding-bottom: 20px;
}

.timeline-year {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.timeline-content h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-content p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

.timeline-img-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.timeline-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  opacity: 0.75;
}

/* =====================
   GLOSSARY PREVIEW
   ===================== */

.glossary-preview {
  background-color: #fff;
}

.glossary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.glossary-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 6px 6px 28px rgba(0,0,0,0.14);
}

.glossary-terms {
  padding-top: 8px;
}

.glossary-terms h2 {
  margin-bottom: 8px;
}

.glossary-terms .section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.glossary-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  border-top: 1px solid var(--color-border);
}

.glossary-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.glossary-term {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-navy);
  display: block;
  margin-bottom: 4px;
}

.glossary-def {
  font-size: 0.9rem;
  color: var(--color-warm-grey);
  line-height: 1.55;
  margin: 0;
}

/* =====================
   FAQ ACCORDION
   ===================== */

.faq-preview {
  background-color: var(--color-warm-grey-light);
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--color-border);
  margin-bottom: 8px;
  background-color: #fff;
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: background-color 0.2s;
}

.accordion-trigger:hover {
  background-color: var(--color-warm-grey-light);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-teal);
  transition: transform 0.3s ease;
}

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

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

.accordion-body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

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

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* =====================
   CONTACT PREVIEW / CTA
   ===================== */

.contact-preview {
  background-color: var(--color-teal-dark);
  color: #fff;
  text-align: center;
}

.contact-preview h2 {
  color: #fff;
  margin-bottom: 16px;
}

.contact-preview p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 36px;
}

/* =====================
   EXPLORE MORE (FULL WIDTH BG)
   ===================== */

.explore-more {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.explore-more .section-bg {
  position: absolute;
  inset: 0;
  background-color: var(--color-teal-dark);
}

.explore-more .section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.explore-more .section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(18,74,87,0.6), rgba(18,74,87,0.8));
}

.explore-more .explore-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 64px 24px;
  max-width: 640px;
}

.explore-more h2 {
  color: #fff;
  margin-bottom: 16px;
}

.explore-more p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* =====================
   FOOTER
   ===================== */

.site-footer {
  background-color: var(--color-navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

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

.footer-brand .site-logo {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 1.4rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

.footer-notice {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

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

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.62);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--color-gold);
}

.footer-contact p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  margin-bottom: 8px;
}

.footer-contact strong {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-hours {
  margin-top: 16px;
}

.footer-hours dt {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.footer-hours dd {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-left: 0;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.42);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* =====================
   PAGE HERO (INNER)
   ===================== */

.page-hero {
  background-color: var(--color-teal);
  padding: 80px 0 64px;
  margin-top: 72px;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}

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

.breadcrumb span.sep {
  color: rgba(255,255,255,0.3);
}

/* =====================
   ABOUT PAGE
   ===================== */

.about-intro {
  background-color: var(--color-off-white);
}

.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 8px 8px 40px rgba(0,0,0,0.18);
}

.editorial-approach {
  background-color: var(--color-warm-grey-light);
}

.approach-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.approach-item {
  padding: 28px;
  background-color: #fff;
  border-left: 3px solid var(--color-gold);
}

.approach-item h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-navy);
}

.approach-item p {
  font-size: 0.875rem;
  color: var(--color-warm-grey);
  margin: 0;
}

.scope-section {
  background-color: #fff;
}

.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.scope-list {
  list-style: none;
  padding: 0;
}

.scope-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text-light);
  padding-left: 20px;
  position: relative;
}

.scope-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 2px;
  background-color: var(--color-gold);
}

/* =====================
   FAQ PAGE
   ===================== */

.faq-full {
  background-color: var(--color-off-white);
}

.faq-full .accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-full .accordion-item {
  margin-bottom: 12px;
  border: 1px solid var(--color-border);
}

.faq-section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: 8px;
}

/* =====================
   CONTACT PAGE
   ===================== */

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.55;
}

.contact-hours {
  background-color: var(--color-warm-grey-light);
  padding: 24px;
  margin-top: 32px;
}

.contact-hours h3 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--color-navy);
}

.contact-hours p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin: 0;
}

.contact-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-top: 32px;
}

.contact-form-wrap {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.contact-form-wrap h2 {
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  font-size: 0.9rem;
  color: var(--color-warm-grey);
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background-color: var(--color-off-white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(26, 95, 110, 0.1);
}

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

/* =====================
   THANK-YOU PAGE
   ===================== */

.thankyou-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-off-white);
  margin-top: 72px;
}

.thankyou-box {
  text-align: center;
  max-width: 540px;
  padding: 64px 40px;
  background-color: #fff;
  box-shadow: 0 6px 32px rgba(0,0,0,0.09);
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.thankyou-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.thankyou-box h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.thankyou-box p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.thankyou-box .btn {
  margin-top: 24px;
}

/* =====================
   LEGAL PAGES
   ===================== */

.legal-page {
  background-color: var(--color-off-white);
  margin-top: 72px;
}

.legal-hero {
  background-color: var(--color-teal);
  padding: 72px 0 56px;
}

.legal-hero h1 {
  color: #fff;
}

.legal-hero p {
  color: rgba(255,255,255,0.72);
  margin-top: 10px;
  font-size: 0.95rem;
}

.legal-content {
  padding: 72px 0 96px;
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--color-navy);
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

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

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 8px;
}

/* =====================
   404 PAGE
   ===================== */

.notfound-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-off-white);
}

.notfound-inner {
  text-align: center;
  padding: 64px 24px;
}

.notfound-code {
  font-family: var(--font-serif);
  font-size: 7rem;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1;
  margin-bottom: 16px;
}

/* =====================
   COOKIE BANNER
   ===================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--color-navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  flex: 1;
}

.cookie-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  padding: 10px 24px;
  background-color: var(--color-gold);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
}

.btn-cookie-accept:hover {
  background-color: var(--color-gold-hover);
}

.btn-cookie-decline {
  padding: 10px 20px;
  background-color: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.btn-cookie-decline:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}

/* =====================
   FADE-IN ANIMATION
   ===================== */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   UTILITY
   ===================== */

.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* =====================
   RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .editorial-grid {
    gap: 40px;
  }
  .glossary-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 56px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--color-teal-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 0;
  }

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

  .main-nav a {
    padding: 14px 24px;
    border-bottom: none;
    border-left: 3px solid transparent;
  }

  .main-nav a:hover,
  .main-nav a.active {
    border-left-color: var(--color-gold);
    border-bottom-color: transparent;
    background-color: rgba(255,255,255,0.05);
  }

  .editorial-grid,
  .misconception-block,
  .about-two-col,
  .glossary-grid,
  .scope-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .misconception-block.reverse {
    direction: ltr;
  }

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

  .approach-items {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    grid-column: 2;
    text-align: left;
  }

  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot {
    grid-column: 1;
    justify-content: center;
  }

  .timeline-item .timeline-spacer,
  .timeline-item .timeline-empty {
    display: none;
  }

  .timeline-img-wrap {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
  }

  .hero {
    min-height: 70vh;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .editorial-img-wrap img {
    height: 280px;
  }

  .about-img {
    height: 300px;
  }

  .contact-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .notfound-code {
    font-size: 5rem;
  }
}
