@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #2C3E50;
  --gold: #D4AF37;
  --teal: #607D8B;
  --silver: #BDC3C7;
  --bg-light: #F5F5F0;
  --bg-card: #EEEDE8;
  --text-main: #2C3E50;
  --text-muted: #607D8B;
  --white: #FFFFFF;
  --border: #D4D0C8;
  --section-spacing: 96px;
  --inner-spacing: 48px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-main);
  background-color: var(--bg-light);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 600; }

p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 1.25rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

li {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-spacing {
  padding: var(--section-spacing) 0;
}

.section-inner {
  padding: var(--inner-spacing) 0;
}

.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--gold);
  margin: 1rem 0 1.5rem 0;
}

.gold-line-center {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--gold);
  margin: 1rem auto 1.5rem auto;
}

/* ===========================
   NAVIGATION / HEADER
=========================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--primary);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 70px;
  max-width: 1320px;
  margin: 0 auto;
}

.site-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.site-logo span {
  color: var(--gold);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-list li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--gold);
  border-bottom-color: var(--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: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav {
  display: none;
  background-color: var(--primary);
  border-top: 1px solid rgba(212,175,55,0.2);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 1rem 2rem;
}

.mobile-nav ul li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin: 0;
}

.mobile-nav ul li a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  padding: 0.9rem 0;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav ul li a:hover {
  color: var(--gold);
}

.page-body {
  padding-top: 70px;
}

/* ===========================
   FOOTER
=========================== */
#site-footer {
  background-color: var(--primary);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}

.footer-disclaimer-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 0.5rem 0.9rem;
  display: inline-block;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.65rem;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.footer-links li a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links li a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
}

.footer-contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.15rem;
}

.footer-contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

.footer-contact-value a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact-value a:hover {
  color: var(--gold);
}

.footer-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.35rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

.footer-policy-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-policy-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-policy-links a:hover {
  color: var(--gold);
}

/* ===========================
   HERO
=========================== */
.hero-section {
  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;
  opacity: 0.48;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,62,80,0.95) 0%, rgba(44,62,80,0.5) 55%, rgba(44,62,80,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem 6rem;
  width: 100%;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-content h1 {
  color: var(--white);
  max-width: 720px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

.hero-content p {
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-edu-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  border-top: 1px solid rgba(212,175,55,0.5);
  padding-top: 0.75rem;
  margin-top: 1rem;
}

/* ===========================
   SECTION LABEL
=========================== */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

/* ===========================
   CARDS
=========================== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2.25rem 2rem;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 8px 32px rgba(44,62,80,0.1);
  transform: translateY(-2px);
}

.info-card-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  position: relative;
}

.icon-line {
  position: absolute;
  background-color: var(--gold);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.info-card p {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.7;
}

/* ===========================
   TWO COLUMN IMAGE + TEXT
=========================== */
.two-col-section {
  background-color: var(--white);
}

.two-col-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col-inner.reverse {
  direction: rtl;
}

.two-col-inner.reverse > * {
  direction: ltr;
}

.col-image {
  position: relative;
}

.col-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.col-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  z-index: -1;
  opacity: 0.4;
}

.col-text h2 {
  margin-bottom: 0.5rem;
}

.col-text ul {
  list-style: none;
  padding: 0;
}

.col-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  line-height: 1.65;
}

.col-text ul li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--gold);
  margin-top: 0.65rem;
}

/* ===========================
   TEAL BACKGROUND SECTION
=========================== */
.teal-bg-section {
  background-color: #F0F4F6;
  border-left: 4px solid var(--teal);
  position: relative;
}

.teal-bg-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, var(--teal), transparent);
}

.text-content-wide {
  max-width: 900px;
  margin: 0 auto;
}

.activity-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.activity-block {
  background-color: var(--white);
  border-bottom: 3px solid var(--teal);
  padding: 2rem 1.75rem;
}

.activity-block h3 {
  font-size: 1rem;
  color: var(--teal);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.activity-block p {
  font-size: 0.98rem;
  margin: 0;
  color: #4a5568;
}

/* ===========================
   TRIPLE IMAGE GRID
=========================== */
.triple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.triple-item {
  display: flex;
  flex-direction: column;
}

.triple-item-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: filter 0.35s ease;
}

.triple-item:hover .triple-item-image {
  filter: brightness(1);
}

.triple-caption {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  padding: 1.5rem;
  flex: 1;
}

.triple-caption h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.triple-caption p {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0;
}

/* ===========================
   TABLE SECTION
=========================== */
.sleep-table-section {
  background-color: var(--primary);
  color: var(--white);
}

.sleep-table-section h2 {
  color: var(--white);
  text-align: center;
}

.sleep-table-section .gold-line-center {
  margin: 0.75rem auto 2.5rem;
}

.sleep-table-section p {
  color: rgba(255,255,255,0.75);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background-color: rgba(255,255,255,0.04);
}

.data-table thead tr {
  border-bottom: 2px solid var(--gold);
}

.data-table thead th {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding: 1rem 1.25rem;
  text-align: left;
}

.data-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background-color 0.2s;
}

.data-table tbody tr:hover {
  background-color: rgba(255,255,255,0.06);
}

.data-table tbody td {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  padding: 1rem 1.25rem;
  vertical-align: top;
}

.data-table tbody td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--silver);
  width: 28%;
}

/* ===========================
   QUOTE / FULL-WIDTH IMAGE SECTION
=========================== */
.quote-image-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.quote-bg-image {
  position: absolute;
  inset: 0;
}

.quote-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,62,80,0.78);
}

.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 4rem 2rem;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.6;
  display: block;
  margin-bottom: 1rem;
}

.quote-content h2 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
}

.quote-attr {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  display: block;
}

/* ===========================
   FAQ
=========================== */
.faq-section {
  background-color: var(--bg-light);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  padding: 1.5rem 0;
  cursor: default;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question .faq-indicator {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-indicator::before {
  content: '';
  width: 10px;
  height: 1px;
  background-color: var(--gold);
}

.faq-indicator::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: var(--gold);
  transition: opacity 0.3s;
}

.faq-item.open .faq-indicator::after {
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 0 1.5rem;
}

.faq-answer p {
  font-size: 1rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question {
  color: var(--teal);
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background-color: var(--primary);
  text-align: center;
  padding: var(--section-spacing) 2rem;
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  background-color: var(--gold);
  padding: 0.9rem 2.5rem;
  border: 2px solid var(--gold);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
}

.btn-outline {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--primary);
  background-color: transparent;
  padding: 0.9rem 2.5rem;
  border: 2px solid var(--primary);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-white-outline {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white);
  background-color: transparent;
  padding: 0.9rem 2.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.btn-white-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===========================
   PAGE HERO (sub-pages)
=========================== */
.page-hero {
  background-color: var(--primary);
  padding: 72px 2rem 56px;
  border-bottom: 3px solid var(--gold);
}

.page-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  font-size: 1.1rem;
  margin: 0;
}

.page-hero-simple {
  background-color: var(--primary);
  padding: 56px 2rem 40px;
}

.page-hero-simple h1 {
  color: var(--white);
}

/* ===========================
   ABOUT PAGE
=========================== */
.mission-box {
  background-color: var(--teal);
  padding: 2.5rem 2.5rem;
  border-left: 4px solid var(--gold);
  margin: 2.5rem 0;
}

.mission-box p {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-item {
  border-top: 2px solid var(--gold);
  padding: 1.75rem 0;
}

.value-item h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.98rem;
  margin: 0;
  color: #4a5568;
}

/* ===========================
   ABOUT IMAGE
=========================== */
.about-col-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-section {
  background-color: var(--bg-light);
  padding: var(--section-spacing) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap {
  background-color: var(--white);
  padding: 3rem;
  border-top: 3px solid var(--gold);
}

.form-disclaimer {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--teal);
  border: 1px solid var(--teal);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  background-color: rgba(96,125,139,0.06);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--primary);
  background-color: var(--bg-light);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--teal);
  background-color: var(--white);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.contact-info-wrap h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--primary);
  line-height: 1.6;
}

.contact-info-value a {
  color: var(--primary);
  text-decoration: none;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.hours-table tr td {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--text-main);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.hours-table tr td:last-child {
  text-align: right;
  color: var(--teal);
  font-style: italic;
}

/* ===========================
   BLOG LIST PAGE
=========================== */
.blog-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--primary);
}

.blog-hero-image {
  position: absolute;
  inset: 0;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,62,80,0.96) 0%, rgba(44,62,80,0.4) 100%);
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  width: 100%;
}

.blog-hero-content h1 {
  color: var(--white);
}

.blog-hero-content p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  font-size: 1.1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 8px 36px rgba(44,62,80,0.12);
  transform: translateY(-3px);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter 0.35s;
}

.blog-card:hover .blog-card-image {
  filter: brightness(1);
}

.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--primary);
}

.blog-card-body p {
  font-size: 0.95rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.7;
}

.blog-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  text-decoration: none;
  transition: color 0.25s;
  align-self: flex-start;
}

.blog-card-link:hover {
  color: var(--gold);
}

/* ===========================
   BLOG ARTICLE PAGE
=========================== */
.article-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background-color: var(--primary);
}

.article-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,62,80,0.92) 0%, rgba(44,62,80,0.35) 100%);
}

.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.article-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.article-hero-content h1 {
  color: var(--white);
  max-width: 760px;
}

.article-body {
  background-color: var(--white);
  padding: var(--section-spacing) 0;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.article-content h3 {
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--teal);
}

.article-content p {
  font-size: 1.08rem;
  line-height: 1.85;
}

.myth-fact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.myth-box {
  background-color: #FDF0F0;
  border-left: 4px solid #C0392B;
  padding: 1.5rem;
}

.myth-box .box-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #C0392B;
  margin-bottom: 0.5rem;
  display: block;
}

.fact-box {
  background-color: #F0F7F4;
  border-left: 4px solid #27AE60;
  padding: 1.5rem;
}

.fact-box .box-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #27AE60;
  margin-bottom: 0.5rem;
  display: block;
}

.myth-box p, .fact-box p {
  font-size: 0.98rem;
  margin: 0;
  line-height: 1.7;
}

.article-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-box {
  background-color: var(--bg-light);
  border-top: 2px solid var(--gold);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.sidebar-box h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 1rem;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-box ul li {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
  color: #4a5568;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.sidebar-box ul li:last-child {
  border-bottom: none;
}

.sidebar-disclaimer {
  background-color: rgba(96,125,139,0.08);
  border: 1px solid var(--teal);
  padding: 1.25rem;
}

.sidebar-disclaimer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--teal);
  margin: 0;
}

/* ===========================
   TIMELINE (blog2)
=========================== */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin: 2.5rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
}

.timeline-step {
  position: relative;
  padding: 0 0 2rem 1.5rem;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 0.35rem;
  display: block;
}

.timeline-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.98rem;
  color: #4a5568;
  margin: 0;
}

/* ===========================
   GLOSSARY RAIL (blog3)
=========================== */
.glossary-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3.5rem;
  align-items: start;
}

.glossary-rail {
  position: sticky;
  top: 90px;
  background-color: var(--primary);
  padding: 2rem;
}

.glossary-rail-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  display: block;
}

.glossary-term {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.glossary-term:last-child {
  border-bottom: none;
}

.glossary-term dt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.glossary-term dd {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-left: 0;
}

/* ===========================
   LEGAL PAGES
=========================== */
.legal-section {
  background-color: var(--bg-light);
  padding: var(--section-spacing) 0;
}

.legal-toc {
  background-color: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.legal-toc h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 1rem;
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.5rem;
}

.legal-toc ol li {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.legal-toc ol li a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-toc ol li a:hover {
  color: var(--gold);
}

.legal-section-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.legal-section-block:last-child {
  border-bottom: none;
}

.legal-section-block h2 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.legal-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--teal);
  display: block;
  margin-bottom: 0.25rem;
}

.para-numbered {
  counter-increment: para-counter;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1.25rem;
}

.para-numbered::before {
  content: counter(para-counter);
  position: absolute;
  left: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--teal);
  top: 0.35rem;
}

.terms-body {
  counter-reset: para-counter;
}

/* ===========================
   HEALTH DISCLAIMER
=========================== */
.disclaimer-alert {
  background-color: #F0F5F7;
  border: 2px solid var(--teal);
  border-left: 6px solid var(--teal);
  padding: 2.5rem 3rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.disclaimer-alert-icon {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.disclaimer-alert-icon-box {
  width: 40px;
  height: 40px;
  background-color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.disclaimer-alert-icon-box svg {
  width: 20px;
  height: 20px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.disclaimer-alert-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
}

.disclaimer-alert h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.disclaimer-alert p {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.disclaimer-alert p:last-child {
  margin-bottom: 0;
}

/* ===========================
   COOKIE DIAGRAM (CSS)
=========================== */
.cookie-diagram {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.cookie-type-box {
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  padding: 1.5rem;
  background-color: var(--white);
}

.cookie-type-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.cookie-type-box p {
  font-size: 0.95rem;
  margin: 0;
  color: #4a5568;
  line-height: 1.7;
}

.cookie-type-box.active-type {
  border-top-color: var(--gold);
  background-color: #FAFAF5;
}

.cookie-type-box.active-type .cookie-type-label {
  color: var(--gold);
}

.info-callout {
  border: 1px solid var(--teal);
  border-left: 4px solid var(--teal);
  background-color: rgba(96,125,139,0.06);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.info-callout p {
  font-size: 1rem;
  color: var(--teal);
  margin: 0;
  line-height: 1.7;
}

/* ===========================
   THANK YOU PAGE
=========================== */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-light);
  padding: 4rem 2rem;
}

.thankyou-box {
  background-color: var(--white);
  border-top: 3px solid var(--gold);
  padding: 4rem;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.thankyou-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thankyou-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.thankyou-box h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.thankyou-box p {
  color: #4a5568;
  margin-bottom: 2rem;
}

/* ===========================
   CONTENT DISCLAIMER BLOCK
=========================== */
.content-disclaimer {
  background-color: #F5F7F5;
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  padding: 1.5rem 2rem;
  margin: 3rem 0;
}

.content-disclaimer-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
  margin-bottom: 0.5rem;
  display: block;
}

.content-disclaimer p {
  font-size: 0.95rem;
  color: #4a5568;
  margin: 0;
  line-height: 1.7;
}

/* ===========================
   COOKIE BANNER
=========================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--primary);
  border-top: 2px solid var(--gold);
  padding: 1.25rem 2rem;
  display: none;
}

.cookie-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  min-width: 260px;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}

.cookie-btn:hover {
  opacity: 0.85;
}

.cookie-btn-accept {
  background-color: var(--gold);
  color: var(--primary);
}

.cookie-btn-decline {
  background-color: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn-learn {
  background-color: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* ===========================
   UTILITY
=========================== */
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-primary { color: var(--primary); }
.bg-primary { background-color: var(--primary); }
.bg-light { background-color: var(--bg-light); }
.bg-white { background-color: var(--white); }
.bg-card { background-color: var(--bg-card); }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-section { padding-top: var(--section-spacing); padding-bottom: var(--section-spacing); }

.divider-gold {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 4rem 0;
  opacity: 0.5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .article-layout {
    grid-template-columns: 1fr 260px;
    gap: 2.5rem;
  }

  .glossary-layout {
    grid-template-columns: 1fr 240px;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  :root {
    --section-spacing: 64px;
    --inner-spacing: 32px;
  }

  .nav-list { display: none; }
  .nav-toggle { display: flex; }

  .card-grid,
  .activity-blocks,
  .triple-grid,
  .blog-grid,
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .two-col-inner {
    grid-template-columns: 1fr;
  }

  .two-col-inner.reverse {
    direction: ltr;
  }

  .col-image img {
    height: 320px;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .glossary-layout {
    grid-template-columns: 1fr;
  }

  .glossary-rail {
    position: static;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .myth-fact-block {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-diagram {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --section-spacing: 48px;
    --inner-spacing: 24px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .header-inner {
    padding: 0 1.25rem;
  }

  .container-wide {
    padding: 0 1.25rem;
  }

  .hero-content {
    padding: 0 1.25rem 4rem;
  }

  .card-grid,
  .activity-blocks,
  .triple-grid,
  .blog-grid,
  .values-grid,
  .cookie-diagram {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-policy-links {
    gap: 1rem;
  }

  .contact-form-wrap {
    padding: 2rem 1.5rem;
  }

  .thankyou-box {
    padding: 2.5rem 1.5rem;
  }

  .disclaimer-alert {
    padding: 1.75rem 1.5rem;
  }

  .hero-section {
    min-height: 75vh;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner-actions {
    width: 100%;
  }

  .data-table thead th,
  .data-table tbody td {
    padding: 0.75rem 0.75rem;
    font-size: 0.85rem;
  }

  .data-table tbody td:first-child {
    font-size: 0.75rem;
  }
}

.cookie-diagram {
  margin-top: 1.25rem;
}

.cookie-diagram-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cookie-type {
  flex: 1 1 200px;
  border: 1px solid #BDC3C7;
  padding: 1.25rem 1rem;
  position: relative;
}

.cookie-type-used {
  border-color: #607D8B;
  background: rgba(96, 125, 139, 0.06);
}

.cookie-type-unused {
  border-color: #BDC3C7;
  background: rgba(189, 195, 199, 0.06);
  opacity: 0.75;
}

.cookie-type-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.cookie-type-used .cookie-type-icon {
  background: #607D8B;
}

.cookie-type-unused .cookie-type-icon {
  background: #BDC3C7;
}

.cookie-type-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2C3E50;
  margin-bottom: 0.4rem;
}

.cookie-type-status {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.75rem;
}

.cookie-status-yes {
  background: rgba(96, 125, 139, 0.15);
  color: #607D8B;
  border: 1px solid #607D8B;
}

.cookie-status-no {
  background: rgba(189, 195, 199, 0.2);
  color: #8a9aa3;
  border: 1px solid #BDC3C7;
}

.cookie-type-desc {
  font-family: 'Lora', serif;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #4a5a6a;
  margin: 0;
}

.disclaimer-alert-frame {
  border: 2px solid #607D8B;
  padding: 0;
  margin-bottom: 3rem;
  position: relative;
}

.disclaimer-alert-inner {
  padding: 2.5rem 2rem 2rem;
  background: rgba(96, 125, 139, 0.05);
}

.disclaimer-alert-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #607D8B;
  border: 1px solid #607D8B;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1.25rem;
  background: #fff;
  position: absolute;
  top: -0.75rem;
  left: 2rem;
}

.disclaimer-alert-inner p {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2C3E50;
  margin: 0;
}

.thankyou-section {
  min-height: calc(100vh - 72px - 320px);
  display: flex;
  align-items: center;
  padding: 6rem 0;
  background: #F5F5F5;
}

.thankyou-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2.5rem;
  background: #fff;
  border-top: 3px solid #D4AF37;
}

.thankyou-marker {
  display: block;
  width: 40px;
  height: 2px;
  background: #D4AF37;
  margin: 0 auto 2rem;
}

.thankyou-block h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 0;
}

.thankyou-body {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #4a5a6a;
  margin: 1.5rem 0 1rem;
}

.thankyou-note {
  font-family: 'Lora', serif;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #607D8B;
  font-style: italic;
  margin-bottom: 2.5rem;
  padding: 1rem 1.5rem;
  border-left: 3px solid #BDC3C7;
  text-align: left;
}

@media (max-width: 768px) {
  .cookie-diagram-row {
    flex-direction: column;
  }

  .cookie-type {
    flex: 1 1 100%;
  }

  .disclaimer-alert-inner {
    padding: 2rem 1.25rem 1.5rem;
  }

  .thankyou-block {
    padding: 2.5rem 1.5rem;
  }

  .thankyou-block h1 {
    font-size: 1.5rem;
  }
}
