:root {
  --primary: #4C7438;
  --primary-light: #6B9A52;
  --primary-dark: #3A5A2B;
  --brass: #B8860B;
  --brass-light: #9A7209;
  --copper: #A0622A;
  --dark: #EDE8DF;
  --dark-mid: #FFFFFF;
  --dark-light: #FFFFFF;
  --cream: #1F1A14;
  --cream-dark: #4A4035;
  --text-light: #1F1A14;
  --text-dark: #1F1A14;
  --text-muted: #6B5E4E;
  --accent-contrast: #4C7438;
  --section-alt: #F0EBE3;
  --section-main: #FAF7F2;
  --border-brass: #C9A227;
  --shadow: rgba(44, 36, 22, 0.1);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Georgia, 'Times New Roman', serif;
  background-color: var(--section-main);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brass);
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Disclaimer */
.disclaimer-bar {
  background: #E8F0E4;
  color: var(--primary-dark);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid var(--brass);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
}

.disclaimer-links a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer-links a:hover {
  color: var(--primary);
}

/* Header */
.site-header {
  background: var(--dark-mid);
  border-bottom: 3px solid var(--brass);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-link img {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.5px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--brass);
  color: var(--primary-dark);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  line-height: 1;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--cream);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--brass);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(250, 247, 242, 0.75) 0%,
    rgba(76, 116, 56, 0.45) 50%,
    rgba(44, 36, 22, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #F5F0E8;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--brass);
  color: var(--primary-dark);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary-dark);
}

.btn-primary:hover {
  background: var(--primary-light);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 116, 56, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--brass);
}

.btn-outline:hover {
  background: var(--brass);
  color: #FFFFFF;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-dark {
  background: var(--section-main);
  color: var(--text-light);
}

.section-dark p,
.section-alt p {
  color: var(--cream-dark);
}

.section-alt {
  background: var(--section-alt);
  color: var(--text-light);
}

.section-green {
  background: linear-gradient(135deg, #E8F0E4 0%, #D4E4CC 100%);
  color: var(--text-dark);
}

.section-green .section-header h2,
.section-green h2,
.section-green h3 {
  color: var(--primary-dark);
}

.section-green p,
.section-green li {
  color: var(--cream-dark);
}

.section-green .section-icon {
  color: var(--primary);
}

.section-green .card {
  background: #FFFFFF;
  border-color: var(--primary);
}

.section-green .card h3 {
  color: var(--primary-dark);
}

.section-green .card p {
  color: var(--text-dark);
}

.section-green .card-icon {
  color: var(--primary);
}

.section-green .calendar-item {
  background: #FFFFFF;
}

.section-green .calendar-item h4 {
  color: var(--primary-dark);
}

.section-green .calendar-item p {
  color: var(--cream-dark);
}

.section-green .mood-btn {
  background: #FFFFFF;
  color: var(--text-dark);
}

.section-green .mood-result {
  background: #FFFFFF;
}

.section-green .mood-result h3 {
  color: var(--primary-dark);
}

.section-green .mood-result p {
  color: var(--cream-dark);
}

.section-cream {
  background: #FFFFFF;
  color: var(--text-dark);
}

.section-cream h2,
.section-cream h3 {
  color: var(--primary-dark);
}

.section-cream p,
.section-cream li {
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.section-cream .section-header h2 {
  color: var(--primary-dark);
}

.section-header .subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-cream .section-header .subtitle {
  color: #5A4A3A;
}

.section-icon {
  font-size: 2.5rem;
  color: var(--accent-contrast);
  margin-bottom: 1rem;
  display: block;
}

.section-cream .section-icon {
  color: var(--primary);
}

/* Steampunk decorative border */
.steam-border {
  border: 2px solid var(--brass);
  position: relative;
  padding: 2rem;
  background: #FFFFFF;
  box-shadow: 0 2px 8px var(--shadow);
}

.steam-border::before,
.steam-border::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--copper);
  background: var(--brass);
}

.steam-border::before {
  top: -6px;
  left: -6px;
}

.steam-border::after {
  bottom: -6px;
  right: -6px;
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Cards */
.card {
  background: var(--dark-light);
  border: 2px solid var(--brass);
  border-radius: 6px;
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.card-icon {
  font-size: 2rem;
  color: var(--accent-contrast);
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--cream-dark);
  font-size: 0.95rem;
}

.section-cream .card {
  background: var(--section-alt);
  border-color: var(--primary);
}

.section-cream .card h3 {
  color: var(--primary-dark);
}

.section-cream .card p {
  color: var(--text-dark);
}

.section-cream .card-icon {
  color: var(--primary);
}

/* Image sections */
.img-section .img-wrap {
  border: 3px solid var(--brass);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.img-section .img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--copper);
  margin: 6px;
  pointer-events: none;
}

.img-section img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.img-wrap-full img {
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
}

/* Feature list */
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list .bi {
  font-size: 1.5rem;
  color: var(--accent-contrast);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-cream .feature-list .bi {
  color: var(--primary);
}

.feature-list strong {
  color: var(--cream);
  display: block;
  margin-bottom: 0.25rem;
}

.section-cream .feature-list strong {
  color: var(--primary-dark);
}

/* Numbered steps */
.steps-list {
  counter-reset: step;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 4.5rem;
  margin-bottom: 1rem;
  background: #FFFFFF;
  border-left: 4px solid var(--primary);
  border-radius: 0 6px 6px 0;
  box-shadow: 0 2px 6px var(--shadow);
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brass);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Program cards */
.program-card {
  background: #FFFFFF;
  border: 2px solid var(--brass);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
}

.program-card:hover {
  transform: scale(1.02);
}

.program-card-header {
  background: var(--primary);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.program-card-header .bi {
  font-size: 1.75rem;
  color: var(--brass-light);
}

.program-card-header h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
}

.program-card-body {
  padding: 1.5rem;
}

.program-card-body p {
  color: var(--cream-dark);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.program-tag {
  display: inline-block;
  background: rgba(76, 116, 56, 0.1);
  color: var(--primary-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  font-size: 0.8rem;
  border: 1px solid var(--primary);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

/* Interactive selector */
.mood-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.mood-btn {
  background: #FFFFFF;
  border: 2px solid var(--brass);
  color: var(--text-dark);
  padding: 1.25rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  font-family: inherit;
  font-size: 0.9rem;
  box-shadow: 0 2px 6px var(--shadow);
}

.mood-btn .bi {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-contrast);
}

.mood-btn:hover,
.mood-btn.active {
  background: var(--primary);
  border-color: var(--primary-dark);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.mood-btn:hover .bi,
.mood-btn.active .bi {
  color: #FFFFFF;
}

.mood-result {
  background: #FFFFFF;
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 2rem;
  display: none;
  box-shadow: 0 2px 8px var(--shadow);
}

.mood-result.visible {
  display: block;
}

.mood-result h3 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.mood-result p {
  color: var(--cream-dark);
}

/* FAQ */
.faq-item {
  border: 2px solid var(--brass);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #FFFFFF;
  border: none;
  color: var(--text-dark);
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: background var(--transition);
}

.faq-question:hover {
  background: #E8F0E4;
}

.faq-question .bi {
  color: var(--accent-contrast);
  transition: transform var(--transition);
}

.faq-item.open .faq-question .bi {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--section-alt);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 1.25rem 1.5rem;
  color: var(--cream-dark);
  font-size: 0.95rem;
}

/* Calendar */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.calendar-item {
  background: #FFFFFF;
  border: 2px solid var(--brass);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow);
}

.calendar-date {
  background: var(--primary);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.calendar-item h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.calendar-item p {
  color: var(--cream-dark);
  font-size: 0.9rem;
}

/* Safety guidelines */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.safety-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(76, 116, 56, 0.15);
  border: 1px solid var(--primary);
  border-radius: 6px;
}

.safety-item .bi {
  font-size: 1.75rem;
  color: var(--accent-contrast);
  flex-shrink: 0;
}

.safety-item h4 {
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.safety-item p {
  color: var(--cream-dark);
  font-size: 0.9rem;
}

.section-cream .safety-item {
  background: rgba(76, 116, 56, 0.08);
}

.section-cream .safety-item h4 {
  color: var(--primary-dark);
}

.section-cream .safety-item p {
  color: var(--text-dark);
}

.section-cream .safety-item .bi {
  color: var(--primary);
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.section-cream .form-group label {
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--brass);
  border-radius: 4px;
  background: #FFFFFF;
  color: var(--text-dark);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}

.section-cream .form-group input,
.section-cream .form-group textarea {
  background: #fff;
  color: var(--text-dark);
  border-color: var(--primary);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-check label {
  color: var(--cream-dark);
  font-size: 0.9rem;
}

.section-cream .form-check label {
  color: var(--text-dark);
}

/* Map */
.map-wrap {
  border: 3px solid var(--brass);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 2rem;
}

.map-wrap iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.map-consent {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--dark-mid);
  text-align: center;
}

.map-consent-icon {
  font-size: 2.5rem;
  color: var(--brass-light);
}

.map-consent p {
  color: var(--cream-dark);
  max-width: 520px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.map-consent a {
  color: var(--brass-light);
  text-decoration: underline;
}

/* Contact info */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  text-align: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border: 2px solid var(--brass);
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
}

.contact-info-item .bi {
  font-size: 2rem;
  color: var(--accent-contrast);
  margin-bottom: 0.75rem;
}

.contact-info-item h4 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.contact-info-item p,
.contact-info-item a {
  color: var(--cream-dark);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  border-top: 3px solid var(--brass);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.footer-contact {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--cream-dark);
}

.footer-contact a {
  color: var(--cream-dark);
}

.footer-contact .bi {
  color: var(--primary);
  margin-right: 0.35rem;
}

.trust-box {
  padding: 1.75rem;
  border-radius: 8px;
  border: 2px solid var(--brass);
  background: #fff;
}

.trust-box h3 {
  color: var(--primary-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-box-yes h3 .bi {
  color: var(--primary);
}

.trust-box-no h3 .bi {
  color: #8B4513;
}

.trust-box .feature-list li {
  border-bottom-color: rgba(76, 116, 56, 0.15);
}

.trust-box .feature-list strong {
  color: var(--primary-dark);
}

.transparency-note {
  background: rgba(76, 116, 56, 0.08);
  border: 2px solid var(--primary);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
}

.transparency-note p {
  color: var(--cream-dark);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.transparency-note p:last-child {
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--cream-dark);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid #D5CFC5;
  padding-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.75rem;
}

.footer-legal-links a,
.footer-cookie-settings {
  color: var(--cream-dark);
  font-size: 0.85rem;
}

.footer-legal-links a:hover,
.footer-cookie-settings:hover {
  color: var(--primary);
}

.footer-cookie-settings {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-mid);
  border-top: 3px solid var(--brass);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px var(--shadow);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  color: var(--cream-dark);
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--brass-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.cookie-buttons .cookie-accept-all,
.cookie-buttons .cookie-reject {
  min-width: 140px;
  justify-content: center;
}

.cookie-reject {
  border-width: 2px;
  font-weight: 600;
}

.cookie-buttons .cookie-reject {
  background: transparent;
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}

.cookie-buttons .cookie-reject:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #FFFFFF;
}

.cookie-modal-buttons .cookie-reject {
  background: transparent;
  border-color: var(--brass);
  color: var(--cream);
}

.cookie-modal-buttons .cookie-reject:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--dark-mid);
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: var(--dark-mid);
  border: 3px solid var(--brass);
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid #E8E2D8;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category h4 {
  color: var(--brass-light);
  font-size: 0.95rem;
}

.cookie-category p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--dark-light);
  border: 2px solid var(--brass);
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--cream);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Policy pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

.policy-content h1 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.policy-content .updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
}

.policy-content p,
.policy-content li {
  color: var(--cream-dark);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  list-style: disc;
}

/* Success page */
.success-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.success-page h1 {
  color: var(--cream);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-page p {
  color: var(--cream-dark);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Page hero (smaller) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250, 247, 242, 0.7) 0%,
    rgba(76, 116, 56, 0.45) 100%
  );
}

.page-hero .hero-content h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.45);
}

.page-hero .hero-content p {
  color: #F5F0E8;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.45);
}

/* Highlight box */
.highlight-box {
  background: rgba(76, 116, 56, 0.08);
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
}

.highlight-box p {
  color: var(--cream-dark);
}

.section-cream .highlight-box {
  background: rgba(76, 116, 56, 0.08);
  border-left-color: var(--primary);
}

.section-cream .highlight-box p {
  color: var(--text-dark);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
  background: var(--dark-light);
  border: 2px solid var(--brass);
  border-radius: 8px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  color: var(--cream-dark);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-3,
  .grid-4,
  .mood-selector,
  .calendar-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-mid);
    border-left: 3px solid var(--brass);
    padding: 5rem 1.5rem 2rem;
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #E8E2D8;
  }

  .main-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    display: none;
  }

  .nav-overlay.visible {
    display: block;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .safety-grid,
  .contact-info-grid,
  .mood-selector,
  .calendar-grid,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .section {
    padding: 2.5rem 0;
  }

  .img-section img {
    height: 220px;
  }

  .img-wrap-full img {
    height: auto;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 0.5rem 0.75rem;
  }

  .logo-text {
    font-size: 0.75rem;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .disclaimer-bar {
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
  }

  .cookie-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .steam-border {
    padding: 1.25rem;
  }
}
