@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Source+Sans+3:wght@400;600&display=swap');

:root {
  --olive: #829A41;
  --olive-dark: #6B7D34;
  --olive-light: #A8B86A;
  --cream: #F7F3EB;
  --marble: #EDE8DC;
  --stone: #D4CFC0;
  --text-dark: #1E2A1F;
  --text-mid: #3D4A3E;
  --text-light: #F7F3EB;
  --accent-gold: #C4A35A;
  --section-alt: #E8E4D6;
  --section-dark: #2C3E2D;
  --white: #FFFFFF;
  --shadow: rgba(30, 42, 31, 0.12);
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Source Sans 3', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--olive-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--olive);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

ul, ol {
  margin: 0 0 1rem 1.25rem;
}

li { margin-bottom: 0.4rem; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--section-dark);
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  text-align: center;
  line-height: 1.45;
}

.disclaimer-bar a {
  color: var(--olive-light);
  font-weight: 600;
  text-decoration: underline;
}

.disclaimer-bar a:hover {
  color: var(--white);
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  padding: 1.25rem 0;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-strip-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-mid);
}

.trust-strip-item i {
  font-size: 1.35rem;
  color: var(--olive-dark);
  flex-shrink: 0;
}

.trust-strip-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.footer-tagline {
  font-size: 0.9rem;
  opacity: 0.92;
  line-height: 1.45;
}

.ai-notice-bar {
  background: #3d4a32;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
  text-align: center;
  line-height: 1.45;
  border-bottom: 1px solid rgba(247, 243, 235, 0.15);
}

.ai-notice-bar i {
  color: var(--olive-light);
  vertical-align: -0.1em;
  margin-right: 0.25rem;
}

.ai-notice-bar a {
  color: var(--olive-light);
  font-weight: 600;
  text-decoration: underline;
}

.ai-notice-bar a:hover {
  color: var(--white);
}

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--olive);
  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: 1140px;
  margin: 0 auto;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-dark);
}

.logo-link img {
  height: 42px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--olive);
  color: var(--olive-dark);
  font-size: 1.5rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
  line-height: 1;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--olive-dark);
  border-bottom-color: var(--olive);
}

.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(44, 62, 45, 0.82) 0%, rgba(107, 125, 52, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-content p {
  color: var(--cream);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.hero-inner {
  min-height: 55vh;
}

.hero-inner::before {
  background: linear-gradient(180deg, rgba(44, 62, 45, 0.75) 0%, rgba(44, 62, 45, 0.5) 100%);
}

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--olive);
  color: var(--text-light);
  border-color: var(--olive);
}

.btn-primary:hover {
  background: var(--olive-dark);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--olive-dark);
}

.btn-dark {
  background: var(--section-dark);
  color: var(--text-light);
  border-color: var(--section-dark);
}

.btn-dark:hover {
  background: var(--olive-dark);
  color: var(--text-light);
}

section {
  padding: 4rem 0;
}

.section-light {
  background: var(--cream);
  color: var(--text-dark);
}

.section-alt {
  background: var(--section-alt);
  color: var(--text-dark);
}

.section-olive {
  background: var(--olive);
  color: var(--cream);
}

.section-olive h1,
.section-olive h2,
.section-olive h3,
.section-olive h4,
.section-olive p,
.section-olive li,
.section-olive td,
.section-olive th,
.section-olive label,
.section-olive .stat-item span {
  color: var(--cream);
}

.section-olive .stat-item strong {
  color: var(--accent-gold);
}

.section-olive a {
  color: var(--cream);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section-olive a:hover {
  color: var(--white);
}

.section-olive .icon-wrap {
  color: var(--accent-gold);
}

.section-olive .check-list li::before {
  color: var(--accent-gold);
}

.section-olive .events-table th {
  background: var(--olive-dark);
  color: var(--cream);
}

.section-olive .events-table td {
  color: var(--cream);
  border-bottom-color: rgba(247, 243, 235, 0.35);
}

.section-olive .card {
  background: var(--white);
  border-color: var(--stone);
  color: var(--text-dark);
}

.section-olive .card h3 {
  color: var(--olive-dark);
}

.section-olive .card p,
.section-olive .card li {
  color: var(--text-mid);
}

.section-olive .card-icon {
  color: var(--olive);
}

.section-dark {
  background: var(--section-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
  color: var(--cream);
}

.section-dark a {
  color: var(--olive-light);
}

.meander-top {
  border-top: 4px solid var(--olive);
  position: relative;
}

.meander-top::before {
  content: '';
  display: block;
  height: 12px;
  background: repeating-linear-gradient(
    90deg,
    var(--olive) 0,
    var(--olive) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.4;
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header .icon-wrap {
  font-size: 2.5rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.section-dark .icon-wrap {
  color: var(--olive-light);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px var(--shadow);
}

.section-dark .card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: var(--cream);
}

.card h3 {
  color: var(--olive-dark);
}

.section-dark .card h3 {
  color: var(--olive-light);
}

.card-icon {
  font-size: 2rem;
  color: var(--olive);
  margin-bottom: 0.75rem;
}

.image-block {
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid var(--olive);
  box-shadow: 0 8px 24px var(--shadow);
}

.image-block img {
  width: 100%;
  object-fit: cover;
  min-height: 220px;
}

.image-caption {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: 0.5rem;
  font-style: italic;
}

.section-dark .image-caption {
  color: var(--stone);
}

.columns-classic {
  column-count: 2;
  column-gap: 2rem;
}

.highlight-box {
  background: var(--white);
  border-left: 5px solid var(--olive);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 8px var(--shadow);
}

.section-olive .highlight-box {
  background: rgba(255, 255, 255, 0.15);
  border-left-color: var(--accent-gold);
  color: var(--cream);
}

.section-olive .highlight-box strong {
  color: var(--white);
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  margin-left: 0;
}

.numbered-steps li {
  counter-increment: step;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.25rem;
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--olive);
  color: var(--text-light);
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.9rem;
}

.check-list {
  list-style: none;
  margin-left: 0;
}

.check-list li {
  padding-left: 1.75rem;
  position: relative;
}

.check-list li::before {
  content: '\eb7b';
  font-family: 'remixicon';
  position: absolute;
  left: 0;
  color: var(--olive);
  font-size: 1.1rem;
}

.timeline {
  border-left: 3px solid var(--olive);
  padding-left: 1.5rem;
  margin-left: 0.5rem;
}

.timeline-item {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.85rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  background: var(--olive);
  border-radius: 50%;
  border: 2px solid var(--cream);
}

.plate-builder {
  max-width: 520px;
  margin: 0 auto 2rem;
}

.plate-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  border: 6px solid var(--accent-gold);
  box-shadow: 0 8px 32px var(--shadow);
  overflow: hidden;
}

.plate-sector {
  position: absolute;
  width: 50%;
  height: 50%;
  z-index: 1;
  cursor: pointer;
  display: flex;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  text-align: left;
  padding: 0;
  transition: background 0.2s, outline 0.2s;
  color: var(--text-dark);
  border: none;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

.plate-sector:focus-visible {
  outline: 3px solid var(--olive-dark);
  outline-offset: -3px;
  z-index: 2;
}

.plate-sector-inner {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  pointer-events: none;
  max-width: 72%;
  width: max-content;
  min-width: 0;
}

.plate-sector-heading {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--olive-dark);
  line-height: 1.15;
}

.plate-sector-heading i {
  font-size: 0.95rem;
  color: var(--olive-dark);
  flex-shrink: 0;
}

.plate-sector-role {
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-mid);
  letter-spacing: 0;
}

.plate-sector-pick {
  display: block;
  margin-top: 0.1rem;
  padding: 0.25rem 0.35rem;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-mid);
  font-style: italic;
  word-break: break-word;
  hyphens: auto;
  background: rgba(255, 255, 255, 0.75);
  border: 1px dashed var(--stone);
  border-radius: 4px;
  max-width: 100%;
}

.plate-sector.has-selection .plate-sector-pick {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-style: normal;
  font-weight: 700;
  color: var(--olive-dark);
  background: var(--white);
  border: 2px solid var(--olive);
  box-shadow: 0 2px 6px var(--shadow);
}

.plate-sector.has-selection .plate-sector-pick::before {
  content: '\eb7b';
  font-family: 'remixicon';
  font-size: 0.85rem;
  color: var(--olive);
  flex-shrink: 0;
}

.sector-protein.has-selection .plate-sector-pick,
.sector-fats.has-selection .plate-sector-pick {
  flex-direction: row-reverse;
}

.plate-sector.active.has-selection {
  background: rgba(130, 154, 65, 0.4);
}

.sector-protein.active.has-selection {
  background: rgba(196, 163, 90, 0.45);
}

.sector-carbs.active.has-selection {
  background: rgba(212, 207, 192, 0.75);
}

.sector-fats.active.has-selection {
  background: rgba(107, 125, 52, 0.4);
}

.plate-sector:hover {
  background: rgba(130, 154, 65, 0.35);
}

.sector-protein:hover {
  background: rgba(196, 163, 90, 0.35);
}

.sector-carbs:hover {
  background: rgba(212, 207, 192, 0.65);
}

.sector-fats:hover {
  background: rgba(107, 125, 52, 0.35);
}

/* Content sits toward plate centre (away from outer rim) */
.sector-veg {
  top: 0;
  left: 0;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 6% 8% 20% 8%;
  border-radius: 100% 0 0 0;
  background: rgba(130, 154, 65, 0.15);
}

.sector-veg .plate-sector-inner {
  align-items: flex-end;
  text-align: right;
}

.sector-protein {
  top: 0;
  right: 0;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 6% 8% 20% 8%;
  border-radius: 0 100% 0 0;
  background: rgba(196, 163, 90, 0.2);
}

.sector-protein .plate-sector-inner {
  align-items: flex-start;
  text-align: left;
}

.sector-protein .plate-sector-heading {
  flex-direction: row-reverse;
}

.sector-carbs {
  bottom: 0;
  left: 0;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20% 8% 6% 8%;
  border-radius: 0 0 0 100%;
  background: rgba(212, 207, 192, 0.5);
}

.sector-carbs .plate-sector-inner {
  align-items: flex-end;
  text-align: right;
}

.sector-fats {
  bottom: 0;
  right: 0;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20% 8% 6% 8%;
  border-radius: 0 0 100% 0;
  background: rgba(107, 125, 52, 0.2);
}

.sector-fats .plate-sector-inner {
  align-items: flex-start;
  text-align: left;
}

.sector-fats .plate-sector-heading {
  flex-direction: row-reverse;
}

.plate-sector.active {
  z-index: 2;
  outline: 3px solid var(--olive-dark);
  outline-offset: -3px;
}

.plate-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24%;
  height: 24%;
  background: var(--cream);
  border-radius: 50%;
  border: 3px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem;
  text-align: center;
  color: var(--olive-dark);
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 400px) {
  .plate-sector-inner {
    max-width: 68%;
  }

  .plate-sector-heading {
    font-size: 0.58rem;
  }

  .plate-sector-role {
    font-size: 0.52rem;
  }

  .plate-sector-pick {
    font-size: 0.55rem;
    padding: 0.2rem 0.3rem;
  }

  .sector-veg,
  .sector-protein {
    padding-bottom: 22%;
  }

  .sector-carbs,
  .sector-fats {
    padding-top: 22%;
  }
}

.plate-controls {
  margin-top: 1.5rem;
}

.plate-controls label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.plate-controls select {
  width: 100%;
  padding: 0.6rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  border: 2px solid var(--olive);
  border-radius: 4px;
  background: var(--white);
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.plate-feedback {
  background: var(--section-dark);
  color: var(--cream);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  min-height: 4rem;
}

.plate-selections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.plate-tag {
  background: var(--olive);
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 0.8rem;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

.faq-item {
  border-bottom: 1px solid var(--stone);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 2.5rem 1rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
}

.section-dark .faq-question {
  color: var(--cream);
}

.faq-question::after {
  content: '\ea4e';
  font-family: 'remixicon';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--olive);
  font-size: 1.25rem;
}

.faq-question[aria-expanded="true"]::after {
  content: '\ea78';
}

.faq-answer {
  padding: 0 0 1rem;
  display: none;
}

.faq-answer.open {
  display: block;
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
}

.events-table th,
.events-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--stone);
}

.events-table th {
  background: var(--olive);
  color: var(--text-light);
}

.section-dark .events-table th {
  background: var(--olive-dark);
}

.section-dark .events-table td {
  border-color: rgba(255,255,255,0.2);
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form label {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem;
  margin-bottom: 1rem;
  border: 2px solid var(--stone);
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 1rem;
  background: var(--white);
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-row label {
  font-weight: 400;
  font-size: 0.9rem;
}

.map-wrap {
  border-radius: 6px;
  overflow: hidden;
  border: 3px solid var(--olive);
}

.map-wrap iframe {
  width: 100%;
  height: 350px;
  display: block;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.5rem;
  color: var(--olive);
  flex-shrink: 0;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content h3 {
  margin-top: 1.25rem;
}

.policy-content code {
  font-family: var(--font-ui);
  font-size: 0.9em;
  background: var(--section-alt);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.policy-content table {
  margin: 1rem 0 1.5rem;
}

.success-block {
  text-align: center;
  padding: 5rem 1.5rem;
  min-height: 50vh;
}

.success-block i {
  font-size: 4rem;
  color: var(--olive);
  margin-bottom: 1rem;
}

.site-footer {
  background: var(--section-dark);
  color: var(--cream);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: var(--olive-light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--section-dark);
  color: var(--cream);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px var(--shadow);
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.cookie-banner p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

.cookie-banner .btn-outline {
  color: var(--cream);
  border-color: var(--cream);
}

.cookie-banner .btn-outline:hover {
  background: var(--cream);
  color: var(--section-dark);
}

.cookie-banner a {
  color: var(--olive-light);
}

.cookie-settings-panel {
  display: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #666;
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--olive);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.stat-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--olive);
}

.section-dark .stat-item strong {
  color: var(--olive-light);
}

.inline-link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.link-card {
  display: block;
  padding: 1.25rem;
  background: var(--white);
  border: 2px solid var(--olive);
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow);
  color: var(--olive-dark);
}

.link-card i {
  font-size: 1.75rem;
  color: var(--olive);
  margin-bottom: 0.5rem;
  display: block;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .columns-classic {
    column-count: 1;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 3px solid var(--olive);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 420px;
    box-shadow: 0 8px 16px var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--stone);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-inner {
    min-height: 45vh;
  }
}

@media (max-width: 320px) {
  .header-inner {
    padding: 0.5rem 0.75rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
    text-align: center;
  }
}
