@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Source+Sans+3:wght@300;400;600&display=swap');

:root {
  --primary: #2F4F4F;
  --teal: #48D1CC;
  --gold: #DAA520;
  --plum: #663366;
  --off-white: #F5F3EE;
  --light-gray: #E8E4DC;
  --mid-gray: #9A9590;
  --dark-text: #1C1C1A;
  --body-text: #3D3D3A;
  --white: #FFFFFF;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-xxl: 120px;
  --max-width: 1440px;
  --content-width: 1200px;
  --radius: 2px;
  --transition: 250ms ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--body-text);
  background-color: var(--off-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  line-height: 1.15;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
}

p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--body-text);
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--wide {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-xxl) 0;
}

.section--tinted {
  background-color: var(--light-gray);
}

.section--dark {
  background-color: var(--primary);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.80);
}

.section--teal {
  background-color: #1a3a3a;
  color: var(--white);
}

.section--teal h2,
.section--teal h3,
.section--teal h4 {
  color: var(--white);
}

.section--teal p {
  color: rgba(255,255,255,0.80);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}

.section-label--gold {
  color: var(--gold);
}

.section-label--plum {
  color: var(--plum);
}

.divider {
  width: 48px;
  height: 2px;
  background-color: var(--teal);
  margin: var(--space-md) 0;
}

.divider--gold {
  background-color: var(--gold);
}

.divider--center {
  margin: var(--space-md) auto;
}

.divider--white {
  background-color: rgba(255,255,255,0.35);
}

.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }
.text-plum { color: var(--plum); }
.text-white { color: var(--white); }
.text-mid { color: var(--mid-gray); }

/* ===================== SITE HEADER ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(72,209,204,0.15);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo span {
  color: var(--teal);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-primary a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.nav-primary a:hover,
.nav-primary a.active {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.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: var(--white);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  background-color: #243d3d;
  border-top: 1px solid rgba(72,209,204,0.15);
}

.mobile-nav a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), background-color var(--transition);
}

.mobile-nav a:hover {
  color: var(--teal);
  background-color: rgba(72,209,204,0.06);
}

.mobile-nav.is-open {
  display: block;
}

/* ===================== SITE FOOTER ===================== */

.site-footer {
  background-color: #1a2e2e;
  border-top: 2px solid rgba(72,209,204,0.15);
  color: rgba(255,255,255,0.70);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-sm);
}

.footer-brand-name span {
  color: var(--teal);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.6;
  margin-bottom: var(--space-md);
  max-width: 280px;
}

.footer-edu-note {
  display: inline-block;
  background-color: rgba(72,209,204,0.10);
  border-left: 3px solid var(--teal);
  padding: var(--space-xs) var(--space-sm);
  font-size: 0.78rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-xs);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: var(--space-xs);
  line-height: 1.5;
}

.footer-contact-item strong {
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.footer-hours {
  margin-top: var(--space-sm);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-policies {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-policies a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  transition: color var(--transition);
}

.footer-policies a:hover {
  color: var(--teal);
}

/* ===================== HERO ===================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--primary);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,25,0.92) 0%, rgba(15,25,25,0.30) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-xxl);
  width: 100%;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--white);
  max-width: 820px;
  margin-bottom: var(--space-md);
  font-weight: 300;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.hero-edu-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background-color: rgba(72,209,204,0.12);
  border: 1px solid rgba(72,209,204,0.30);
  padding: 10px var(--space-sm);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal);
}

.hero-edu-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--teal);
  flex-shrink: 0;
}

/* ===================== BUTTONS ===================== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  border-radius: var(--radius);
}

.btn-primary {
  background-color: var(--teal);
  color: var(--primary);
}

.btn-primary:hover {
  background-color: #3ab5b0;
  box-shadow: 0 4px 16px rgba(72,209,204,0.30);
  color: var(--primary);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.40);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.08);
  border-color: var(--teal);
  color: var(--teal);
}

.btn-dark {
  background-color: var(--primary);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #223b3b;
  color: var(--teal);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.btn-ghost {
  background-color: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-ghost:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-teal-outline {
  background-color: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.btn-teal-outline:hover {
  background-color: rgba(72,209,204,0.12);
  color: var(--teal);
}

/* ===================== TWO-COLUMN LAYOUT ===================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xxl);
  align-items: center;
}

.two-col--60-40 {
  grid-template-columns: 3fr 2fr;
}

.two-col--40-60 {
  grid-template-columns: 2fr 3fr;
}

.two-col-image {
  position: relative;
  overflow: hidden;
}

.two-col-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.two-col-image:hover img {
  transform: scale(1.02);
}

.two-col-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

/* ===================== THREE CARDS ===================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  background-color: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  padding: var(--space-lg);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: var(--space-md);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  position: relative;
}

.card-icon-bg {
  width: 48px;
  height: 48px;
  background-color: rgba(72,209,204,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card-icon-bg--gold {
  background-color: rgba(218,165,32,0.12);
}

.card-icon-bg--plum {
  background-color: rgba(102,51,102,0.12);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--space-xs);
}

.card h4 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.card p {
  font-size: 0.92rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ===================== STAT STRIP ===================== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--primary);
  border-top: 3px solid rgba(72,209,204,0.25);
}

.stat-item {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ===================== WIDE IMAGE SECTION ===================== */

.wide-image-section {
  position: relative;
  overflow: hidden;
}

.wide-image-section img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: brightness(0.72);
}

.wide-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(to top, rgba(15,25,25,0.90) 0%, transparent 100%);
}

.wide-image-caption-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ===================== BLOCKQUOTE / PULL QUOTE ===================== */

.pull-quote {
  border-left: 4px solid var(--gold);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  background-color: rgba(218,165,32,0.05);
}

.pull-quote p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.5;
  font-weight: 300;
}

/* ===================== CATALOG CARDS ===================== */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.catalog-card {
  background-color: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  transition: box-shadow 300ms ease, transform 300ms ease;
}

.catalog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.catalog-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.catalog-card-body {
  padding: var(--space-lg);
}

.catalog-card-category {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-xs);
}

.catalog-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
}

.catalog-card-body p {
  font-size: 0.90rem;
  line-height: 1.65;
  color: var(--mid-gray);
  margin-bottom: var(--space-md);
}

.role-list {
  list-style: none;
  margin-bottom: var(--space-md);
  border-top: 1px solid var(--light-gray);
  padding-top: var(--space-sm);
}

.role-list li {
  font-size: 0.84rem;
  color: var(--body-text);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.role-list li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background-color: var(--teal);
  border-radius: 50%;
  margin-top: 5px;
}

/* ===================== FAQ ===================== */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.10);
  padding: var(--space-lg) 0;
}

.faq-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.10);
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: var(--space-sm);
}

.faq-answer {
  font-size: 0.98rem;
  color: var(--body-text);
  line-height: 1.75;
}

/* ===================== METHODOLOGY LISTS ===================== */

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.method-block h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--light-gray);
}

.method-list {
  list-style: none;
  margin-top: var(--space-sm);
}

.method-list li {
  padding: var(--space-xs) 0;
  font-size: 0.95rem;
  color: var(--body-text);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  gap: var(--space-sm);
  line-height: 1.55;
}

.method-list li::before {
  content: counter(item);
  counter-increment: item;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  min-width: 28px;
  flex-shrink: 0;
}

.method-list {
  counter-reset: item;
}

/* ===================== TIMELINE ===================== */

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: rgba(72,209,204,0.30);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--teal);
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--teal);
}

.timeline-era {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.90rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ===================== LEGAL PAGES ===================== */

.legal-page {
  padding: var(--space-xxl) 0;
}

.legal-toc {
  background-color: var(--light-gray);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  border-left: 4px solid var(--teal);
}

.legal-toc h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--dark-text);
}

.legal-toc ol {
  list-style: decimal;
  padding-left: var(--space-md);
}

.legal-toc ol li {
  margin-bottom: 6px;
}

.legal-toc ol li a {
  font-size: 0.90rem;
  color: var(--primary);
  transition: color var(--transition);
}

.legal-toc ol li a:hover {
  color: var(--teal);
}

.legal-section {
  margin-bottom: var(--space-xl);
  scroll-margin-top: 90px;
}

.legal-section h2 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--light-gray);
  color: var(--primary);
}

.legal-section h3 {
  font-size: 1.15rem;
  margin: var(--space-md) 0 var(--space-xs);
  color: var(--dark-text);
}

.legal-section p {
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
}

.legal-section ul,
.legal-section ol {
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
}

.legal-section ul li,
.legal-section ol li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.65;
  list-style: disc;
}

.legal-section ol li {
  list-style: decimal;
}

/* ===================== OBLIGATION MATRIX ===================== */

.obligation-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-lg) 0;
  font-size: 0.90rem;
}

.obligation-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 14px var(--space-sm);
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.obligation-table td {
  padding: 14px var(--space-sm);
  border-bottom: 1px solid var(--light-gray);
  color: var(--body-text);
  line-height: 1.55;
  vertical-align: top;
}

.obligation-table tr:last-child td {
  border-bottom: none;
}

.obligation-table tr:nth-child(even) td {
  background-color: rgba(0,0,0,0.02);
}

/* ===================== COOKIE GLOSSARY ===================== */

.cookie-glossary {
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.cookie-glossary-header {
  background-color: var(--primary);
  padding: var(--space-sm) var(--space-md);
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: var(--space-sm);
}

.cookie-glossary-header span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.cookie-glossary-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--light-gray);
}

.cookie-glossary-row:last-child {
  border-bottom: none;
}

.cookie-glossary-row:nth-child(even) {
  background-color: rgba(0,0,0,0.02);
}

.cookie-glossary-row span {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.55;
}

.cookie-glossary-row .cookie-name {
  font-weight: 600;
  color: var(--primary);
}

/* ===================== HEALTH DISCLAIMER PAGE ===================== */

.disclaimer-panel {
  background-color: var(--off-white);
  border: 2px solid var(--primary);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
  position: relative;
}

.disclaimer-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background-color: var(--primary);
}

.disclaimer-panel-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}

.disclaimer-panel p {
  padding-left: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.98rem;
}

.disclaimer-panel strong {
  color: var(--primary);
}

/* ===================== CONTACT PAGE ===================== */

.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-xxl);
  align-items: start;
}

.contact-info-block {
  padding: var(--space-lg);
  background-color: var(--primary);
  color: var(--white);
}

.contact-info-block h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: var(--space-md);
}

.contact-detail {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.contact-detail-value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.inquiry-panel {
  background-color: rgba(72,209,204,0.08);
  border-left: 3px solid var(--teal);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-lg);
  font-size: 0.80rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.6;
}

.contact-form-wrap {
  background-color: var(--white);
  padding: var(--space-xl);
  border: 1px solid rgba(0,0,0,0.07);
}

.contact-form-wrap h3 {
  font-size: 1.8rem;
  margin-bottom: var(--space-md);
  color: var(--dark-text);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px var(--space-sm);
  border: 1.5px solid rgba(0,0,0,0.12);
  background-color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-text);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background-color: var(--white);
}

.form-group textarea {
  min-height: 140px;
}

.form-disclaimer {
  background-color: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: var(--space-sm) var(--space-md);
  font-size: 0.80rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

/* ===================== ABOUT PAGE ===================== */

.about-hero {
  background-color: var(--primary);
  padding: var(--space-xxl) 0;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(72,209,204,0.06);
}

.mission-vignette {
  background-color: rgba(72,209,204,0.08);
  border: 1px solid rgba(72,209,204,0.20);
  padding: var(--space-xl);
  position: relative;
}

.mission-vignette::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(72,209,204,0.12);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

.mission-vignette p {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.55;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ===================== THANK YOU PAGE ===================== */

.thankyou-wrap {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-box {
  text-align: center;
  max-width: 600px;
  padding: var(--space-xxl);
  background-color: var(--white);
  border-top: 4px solid var(--teal);
  box-shadow: 0 8px 48px rgba(0,0,0,0.08);
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(72,209,204,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.thankyou-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thankyou-box h1 {
  font-size: 2.8rem;
  margin-bottom: var(--space-sm);
  color: var(--dark-text);
}

.thankyou-box p {
  color: var(--mid-gray);
  margin-bottom: var(--space-lg);
}

.thankyou-note {
  background-color: var(--off-white);
  padding: var(--space-md);
  font-size: 0.82rem;
  color: var(--mid-gray);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
  border-left: 3px solid var(--gold);
}

/* ===================== INFORMATION NOTICE ===================== */

.info-notice {
  background-color: rgba(47,79,79,0.05);
  border: 1px solid rgba(47,79,79,0.15);
  border-left: 4px solid var(--primary);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-xl) 0;
}

.info-notice-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-notice p {
  font-size: 0.88rem;
  color: var(--body-text);
  line-height: 1.65;
}

/* ===================== PAGE HEADER BAND ===================== */

.page-header {
  background-color: var(--primary);
  padding: var(--space-xl) 0 var(--space-lg);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent 60%);
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
}

.page-header .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: var(--space-sm);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
}

.page-header .breadcrumb a {
  color: rgba(255,255,255,0.50);
  transition: color var(--transition);
}

.page-header .breadcrumb a:hover {
  color: var(--teal);
}

.page-header .breadcrumb span {
  color: rgba(255,255,255,0.25);
}

/* ===================== SECTION INTRO ===================== */

.section-intro {
  max-width: 680px;
  margin-bottom: var(--space-xl);
}

.section-intro h2 {
  margin-bottom: var(--space-md);
}

.section-intro p {
  font-size: 1.05rem;
  color: var(--mid-gray);
  line-height: 1.75;
}

.section-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ===================== FEATURE LIST ===================== */

.feature-list {
  list-style: none;
  margin-top: var(--space-md);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.55;
}

.feature-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-color: rgba(72,209,204,0.15);
  border-radius: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 10l3 3 7-7' stroke='%2348D1CC' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===================== SOFT CTA SECTION ===================== */

.cta-section {
  text-align: center;
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.cta-section h2 {
  margin-bottom: var(--space-md);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  max-width: 540px;
  margin: 0 auto var(--space-lg);
  color: var(--mid-gray);
}

.cta-btn-group {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================== SCROLL REVEAL ===================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== COOKIE BANNER ===================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #1a2e2e;
  border-top: 2px solid rgba(72,209,204,0.25);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.30);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.55;
}

.cookie-banner-text strong {
  color: var(--white);
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  text-decoration: none;
  display: inline-block;
}

.cookie-btn-accept {
  background-color: var(--teal);
  color: var(--primary);
}

.cookie-btn-accept:hover {
  background-color: #3ab5b0;
}

.cookie-btn-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.20);
}

.cookie-btn-decline:hover {
  background-color: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.80);
}

.cookie-btn-learn {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
  font-family: var(--font-body);
  font-weight: 400;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.cookie-btn-learn:hover {
  color: var(--teal);
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .two-col,
  .two-col--60-40,
  .two-col--40-60 {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .two-col-image img {
    height: 380px;
  }

  .cards-grid,
  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .method-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xxl: 72px;
    --space-xl: 56px;
    --space-lg: 32px;
  }

  .nav-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 85vh;
  }

  .cards-grid,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-policies {
    gap: var(--space-sm);
  }

  .stat-strip {
    grid-template-columns: 1fr 1fr;
  }

  .wide-image-section img {
    height: 320px;
  }

  .container,
  .container--wide {
    padding: 0 var(--space-sm);
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .obligation-table {
    font-size: 0.80rem;
  }

  .cookie-glossary-header,
  .cookie-glossary-row {
    grid-template-columns: 1fr;
  }

  .cookie-glossary-header span:not(:first-child),
  .cookie-glossary-row span:not(:first-child) {
    display: none;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: var(--space-md);
  }
}

/* ===================== HORIZONTAL RULE ===================== */

.hr-section {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 0;
}

/* ===================== GRAPHIC DECORATORS ===================== */

.deco-line-h {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72,209,204,0.30), transparent);
  margin: var(--space-xl) 0;
}

.deco-corner {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  width: 60px;
  height: 60px;
  border-top: 2px solid rgba(72,209,204,0.25);
  border-right: 2px solid rgba(72,209,204,0.25);
}

.deco-corner--bottom-left {
  top: auto;
  right: auto;
  bottom: var(--space-lg);
  left: var(--space-lg);
  border-top: none;
  border-right: none;
  border-bottom: 2px solid rgba(218,165,32,0.30);
  border-left: 2px solid rgba(218,165,32,0.30);
}

.bg-pattern {
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.015) 20px,
    rgba(0,0,0,0.015) 21px
  );
}

/* ===================== NUMBER BADGE ===================== */

.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ===================== EXHIBIT LABEL (Glossary Rail) ===================== */

.glossary-rail {
  border-left: 4px solid var(--plum);
  padding: 0 var(--space-lg);
}

.glossary-term {
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.glossary-term:last-child {
  border-bottom: none;
}

.glossary-term-word {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.glossary-term-def {
  font-size: 0.90rem;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ===================== HEALTH DISCLAIMER — CORE PRINCIPLE PANEL ===================== */

.hd-core-panel {
  background-color: var(--primary);
  border-left: 5px solid var(--teal);
  padding: 48px 52px;
  margin-bottom: 56px;
  position: relative;
}

.hd-core-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
}

.hd-core-panel__label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hd-core-panel__statement {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

.hd-core-panel__statement strong {
  color: var(--white);
  font-weight: 600;
}

/* ===================== HEALTH DISCLAIMER — CALLOUT BOX ===================== */

.hd-callout-box {
  background-color: var(--light-gray);
  border-top: 3px solid var(--gold);
  padding: 32px 40px;
  margin-top: 32px;
}

.hd-callout-box__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.hd-callout-box p {
  font-size: 0.95rem;
  color: var(--body-text);
  line-height: 1.75;
}

@media (max-width: 640px) {
  .hd-core-panel {
    padding: 32px 24px;
  }
  .hd-callout-box {
    padding: 24px 20px;
  }
}
