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

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

:root {
  --navy: #0A1128;
  --light-gray: #E0E0E0;
  --terracotta: #CD6133;
  --sage: #8D9B91;
  --white: #FFFFFF;
  --off-white: #F5F5F3;
  --mid-gray: #B0B0B0;
  --dark-gray: #444444;
  --section-pad: 80px 0;
  --container-max: 1280px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background-color: var(--off-white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

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

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

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

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

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

.container-narrow {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }

.section--dark {
  background-color: var(--navy);
  color: var(--light-gray);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--dark p,
.section--dark li {
  color: var(--light-gray);
}

.section--cream { background-color: var(--off-white); }
.section--white { background-color: var(--white); }
.section--gray { background-color: #EBEBEB; }

.section--sage-bg {
  background-color: #E8EDEA;
}

hr.section-rule {
  border: none;
  border-top: 1px solid var(--light-gray);
  margin: 0;
}

.text-terracotta { color: var(--terracotta); }
.text-sage { color: var(--sage); }
.text-navy { color: var(--navy); }
.text-light { color: var(--light-gray); }

.label-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #B5512A;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(205, 97, 51, 0.3);
}

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

.btn-outline:hover {
  background-color: var(--navy);
  color: var(--white);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: var(--white);
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 17, 40, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s ease;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
}

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

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--light-gray);
  padding: 8px 14px;
  border-radius: 2px;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background-color: rgba(255,255,255,0.08);
}

.nav-contact-btn {
  background-color: var(--terracotta);
  color: var(--white) !important;
  padding: 8px 18px !important;
  border-radius: 2px;
}

.nav-contact-btn:hover {
  background-color: #B5512A !important;
}

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

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

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 16px 24px;
  gap: 4px;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light-gray);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav a:last-child { border-bottom: none; }

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

/* PAGE OFFSET FOR FIXED HEADER */
.page-content { padding-top: 72px; }

/* HERO */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,17,40,0.92) 0%, rgba(10,17,40,0.4) 60%, rgba(10,17,40,0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 80px;
}

.hero-content .container { max-width: 880px; padding-left: 24px; }

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content h2 {
  color: var(--light-gray);
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-tagline-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 40px;
}

.hero-tagline-bar span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
}

/* EDITORIAL INTRO */
.editorial-intro .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.editorial-intro .text-col h2 { margin-bottom: 16px; }
.editorial-intro .text-col .label-tag { margin-bottom: 10px; }

.editorial-intro .text-col blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--terracotta);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.5;
}

.icon-trio {
  display: flex;
  gap: 24px;
  margin-top: 28px;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--dark-gray);
}

.icon-item svg {
  flex-shrink: 0;
  color: var(--terracotta);
}

.editorial-intro .img-col {
  position: relative;
}

.editorial-intro .img-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

/* TOPIC CARDS GRID */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.topic-card {
  background-color: var(--white);
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.topic-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.topic-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.topic-card-body {
  padding: 24px;
}

.topic-card-body h3 {
  margin-bottom: 10px;
  color: var(--navy);
}

.topic-card-body p {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p {
  font-size: 1rem;
  color: var(--dark-gray);
  max-width: 580px;
}

/* MYTHS / ACCORDION */
.myths-section .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.myths-section .img-col img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
  position: sticky;
  top: 96px;
}

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

.accordion-item {
  border-bottom: 1px solid var(--light-gray);
}

.accordion-item:first-child {
  border-top: 1px solid var(--light-gray);
}

.accordion-btn {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s ease;
}

.accordion-btn:hover { color: var(--terracotta); }

.accordion-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 1px;
}

.accordion-arrow {
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--sage);
}

.accordion-btn.active .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding: 0 0 20px 38px;
  font-size: 0.92rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

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

/* TIMELINE */
.timeline-intro {
  max-width: 640px;
  margin-bottom: 56px;
}

.timeline-intro h2 { margin-bottom: 14px; }

.timeline-wrap {
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--light-gray);
}

.timeline-items { list-style: none; padding-left: 60px; position: relative; }

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -48px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--terracotta);
  border: 3px solid var(--off-white);
}

.timeline-year {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--sage);
  text-transform: uppercase;
  min-width: 90px;
  padding-top: 4px;
}

.timeline-content h3 { margin-bottom: 8px; font-size: 1.05rem; }
.timeline-content p { font-size: 0.9rem; color: var(--dark-gray); margin-bottom: 0; }

.timeline-img {
  margin-top: 14px;
  border-radius: 2px;
  overflow: hidden;
}

.timeline-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* FAQ */
.faq-preview { }
.faq-section-header { text-align: center; margin-bottom: 48px; }
.faq-section-header h2 { margin-bottom: 10px; }

.faq-list { max-width: 720px; margin: 0 auto; list-style: none; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.1); }

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.2s ease;
}

.faq-btn:hover { color: var(--sage); }

.faq-btn svg {
  flex-shrink: 0;
  color: var(--sage);
  transition: transform 0.3s ease;
}

.faq-btn.active svg { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--light-gray);
  line-height: 1.7;
}

.faq-answer.open { display: block; }

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

/* CONTACT PREVIEW */
.contact-preview .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-preview .img-col img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 2px;
}

.contact-detail-list { list-style: none; margin-top: 24px; }
.contact-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
  color: var(--light-gray);
}

.contact-detail-list li:last-child { border-bottom: none; }

.contact-detail-list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--terracotta);
}

/* SOFT CTA */
.soft-cta {
  background: linear-gradient(135deg, #0D1830 0%, #0A1128 60%, #0F1D3A 100%);
  text-align: center;
}

.soft-cta h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.soft-cta p {
  color: var(--light-gray);
  max-width: 520px;
  margin: 0 auto 32px;
}

.soft-cta .btn-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.site-footer {
  background-color: #060D1E;
  color: var(--light-gray);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

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

.footer-brand p {
  font-size: 0.87rem;
  color: var(--mid-gray);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: var(--white); }

.footer-hours p {
  font-size: 0.87rem;
  color: var(--mid-gray);
  margin-bottom: 6px;
}

.footer-hours strong {
  color: var(--light-gray);
}

.footer-contact-info {
  font-size: 0.87rem;
  color: var(--mid-gray);
  line-height: 1.8;
}

.footer-contact-info a {
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact-info a:hover { color: var(--white); }

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

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin-bottom: 0;
}

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

.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* BREADCRUMB */
.breadcrumb-bar {
  background-color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--mid-gray);
}

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

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

.breadcrumb-list .sep { color: rgba(255,255,255,0.2); }

.breadcrumb-list .current { color: var(--mid-gray); }

/* PAGE HERO (inner pages) */
.page-hero {
  background-color: var(--navy);
  padding: 72px 0 56px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: var(--light-gray); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

/* ABOUT PAGE */
.about-mission {
  background-color: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px;
  padding: 40px;
  margin: 48px 0;
}

.about-mission h2 {
  margin-bottom: 16px;
  color: var(--navy);
}

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

.about-two-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* CONTACT PAGE */
.contact-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

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

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--terracotta);
}

.contact-info-item .info-text p {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 2px;
}

.contact-info-item .info-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
  margin-bottom: 4px;
}

.hours-block {
  background-color: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  padding: 24px;
  margin-top: 24px;
}

.hours-block h3 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark-gray);
}

.hours-row:last-child { border-bottom: none; }

.contact-form-block h2 { margin-bottom: 24px; }

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-control:focus { border-color: var(--sage); }

textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

/* LEGAL PAGES */
.legal-content {
  padding: 64px 0;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--navy);
}

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

.legal-content p, .legal-content li {
  font-size: 0.97rem;
  color: var(--dark-gray);
  line-height: 1.8;
}

.legal-content ul {
  margin: 12px 0 16px 20px;
}

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

.legal-meta {
  font-size: 0.82rem;
  color: var(--mid-gray);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light-gray);
}

/* THANK YOU */
.thankyou-wrap {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--off-white);
  padding: 48px 24px;
}

.thankyou-box {
  text-align: center;
  max-width: 500px;
}

.thankyou-box h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--navy);
}

.thankyou-box p {
  color: var(--dark-gray);
  margin-bottom: 32px;
}

/* 404 */
.notfound-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  padding: 48px 24px;
  text-align: center;
}

.notfound-box { max-width: 500px; }
.notfound-box h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 16px;
}

.notfound-box h2 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
}

.notfound-box p {
  color: var(--light-gray);
  margin-bottom: 32px;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: var(--navy);
  border-top: 2px solid var(--terracotta);
  padding: 20px 24px;
  display: none;
}

.cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--light-gray);
  flex: 1;
  min-width: 260px;
}

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

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

.cookie-accept {
  background-color: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: 2px;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-accept:hover { background-color: #B5512A; }

.cookie-decline {
  background-color: transparent;
  color: var(--mid-gray);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

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

/* FADE IN ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .editorial-intro .two-col,
  .myths-section .two-col,
  .contact-preview .two-col,
  .about-two-col,
  .contact-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .myths-section .img-col img { position: static; height: 340px; }

  .soft-cta .btn-row { flex-direction: column; align-items: center; }

  .editorial-intro .img-col img { height: 360px; }
}

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

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

  .hero-section { min-height: 75vh; }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links { justify-content: center; }

  .about-mission { padding: 24px; }

  .contact-two-col { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-content h1 { font-size: 1.9rem; }

  .about-mission { padding: 20px; }
}
