:root {
  --primary: #816460;
  --primary-dark: #5f4a47;
  --primary-light: #a88a86;
  --bg: #ebe4e2;
  --bg-alt: #ddd4d1;
  --bg-dark: #6b534f;
  --text: #2a2220;
  --text-muted: #4a403e;
  --text-on-dark: #fff8f6;
  --accent: #3d6b5e;
  --accent-light: #5a9a88;
  --shadow-dark: #c5bab7;
  --shadow-light: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max-width: 1140px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  min-width: 320px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  font-size: 0.8rem;
  padding: 0.55rem 1rem;
  text-align: center;
  line-height: 1.45;
}

.trust-panel {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-top: 1.5rem;
  border-left: 4px solid var(--accent);
  box-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
}

.trust-panel h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.trust-panel p,
.trust-panel li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-panel ul {
  margin: 0.5rem 0 0 1.25rem;
}

.editorial-note {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  padding: 0.65rem 0.9rem;
  background: rgba(61, 107, 94, 0.08);
  border-radius: var(--radius-sm);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  box-shadow: 0 4px 12px rgba(42, 34, 32, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
}

.logo-link img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.logo-text {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  max-width: 160px;
}

.nav-toggle {
  display: none;
  background: var(--bg);
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  box-shadow: 4px 4px 8px var(--shadow-dark), -4px -4px 8px var(--shadow-light);
  color: var(--primary-dark);
}

.nav-toggle .material-icons {
  font-size: 1.75rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
  border-bottom-color: var(--accent);
}

.hero {
  padding: 3rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.hero-content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 12px 12px 24px var(--shadow-dark), -8px -8px 20px var(--shadow-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg);
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
   
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--accent);
}

.btn:active {
  box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-on-dark);
  box-shadow: 6px 6px 14px rgba(95, 74, 71, 0.35);
}

.btn-primary:hover {
  color: var(--text-on-dark);
  background: var(--primary-dark);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-on-dark);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 248, 246, 0.92);
}

.section-dark a {
  color: var(--accent-light);
}

.section-dark a:hover {
  color: #8ec4b5;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.section-dark .section-title {
  color: var(--text-on-dark);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.section-dark .section-intro {
  color: rgba(255, 248, 246, 0.85);
}

.neu-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}

.section-alt .neu-card {
  background: var(--bg-alt);
  box-shadow: 8px 8px 16px #c9beb9, -8px -8px 16px #f5efed;
}

.section-dark .neu-card {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.2), -4px -4px 12px rgba(255, 255, 255, 0.06);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.section-dark .card-grid a {
  color: #ffffff;
}

.section-dark .card-grid a:hover {
  color: #ffffff;
  opacity: 0.85;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}

.card-icon {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.section-dark .card-icon {
  color: var(--accent-light);
}

.neu-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.section-dark .neu-card h3 {
  color: var(--text-on-dark);
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.split-block.reverse {
  direction: rtl;
}

.split-block.reverse > * {
  direction: ltr;
}

.split-image img {
  border-radius: var(--radius);
  box-shadow: 10px 10px 20px var(--shadow-dark), -6px -6px 16px var(--shadow-light);
}

.steps-list {
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.steps-list li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--text-on-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 3px 3px 6px var(--shadow-dark);
}

.check-list {
  list-style: none;
}

.check-list li {
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.check-list li::before {
  content: "check_circle";
  font-family: "Material Icons";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.25rem;
}

.timeline {
  border-left: 3px solid var(--primary-light);
  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(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

.faq-list details {
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: 4px 4px 10px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
}

.faq-list summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--primary-dark);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before {
  content: "add_circle";
  font-family: "Material Icons";
  color: var(--accent);
}

.faq-list details[open] summary::before {
  content: "remove_circle";
}

.faq-list p {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(129, 100, 96, 0.2);
}

.events-table th {
  background: var(--primary);
  color: var(--text-on-dark);
}

.events-table tr:nth-child(even) {
  background: rgba(129, 100, 96, 0.06);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--bg);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
  box-shadow: 3px 3px 6px var(--shadow-dark), -3px -3px 6px var(--shadow-light);
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  background: rgba(61, 107, 94, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat-box {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: inset 3px 3px 6px var(--shadow-dark), inset -3px -3px 6px var(--shadow-light);
}

.stat-box strong {
  display: block;
  font-size: 1.75rem;
  color: var(--accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.checkbox-row input {
  margin-top: 0.25rem;
  width: auto;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 16px var(--shadow-dark);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.site-footer {
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding: 2.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer a {
  color: var(--accent-light);
}

.site-footer h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.5;
}

.footer-bottom a {
  color: var(--accent-light);
}

.footer-privacy-badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.policy-content {
  padding: 2.5rem 0 4rem;
}

.policy-content h1 {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.policy-content h2 {
  font-size: 1.35rem;
  color: var(--primary-dark);
  margin: 2rem 0 0.75rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.thank-you-box {
  text-align: center;
  padding: 4rem 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.thank-you-box .material-icons {
  font-size: 4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.thank-you-box .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary-dark);
  color: var(--text-on-dark);
  padding: 1.25rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
}

.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(42, 34, 32, 0.6);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.open {
  display: flex;
}

.cookie-modal-panel {
  background: var(--bg);
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 12px 12px 28px rgba(0, 0, 0, 0.25);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(129, 100, 96, 0.2);
}

.cookie-toggle input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--accent);
}

.cookie-toggle.disabled {
  opacity: 0.7;
}

.interactive-hub {
  position: relative;
}

.interactive-hub .hub-intro {
  max-width: 780px;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-dark .section-subtitle {
  color: var(--text-on-dark);
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tab-btn,
.zone-btn,
.pattern-btn {
  padding: 0.65rem 1.15rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 4px 4px 10px var(--shadow-dark), -4px -4px 10px var(--shadow-light);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.tab-btn:hover,
.zone-btn:hover,
.pattern-btn:hover {
  transform: translateY(-1px);
  color: var(--primary-dark);
}

.tab-btn.active,
.zone-btn.active,
.pattern-btn.active {
  background: var(--primary);
  color: var(--text-on-dark);
  box-shadow: inset 3px 3px 8px rgba(0, 0, 0, 0.15);
}

.tab-btn .material-icons,
.zone-btn .material-icons,
.pattern-btn .material-icons {
  font-size: 1.1rem;
}

.tab-panel,
.zone-panel {
  display: none;
  animation: panelFade 0.35s ease;
}

.tab-panel.active,
.zone-panel.active {
  display: block;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.interactive-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.interactive-panel {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 8px 8px 16px var(--shadow-dark), -8px -8px 16px var(--shadow-light);
}

.section-alt .interactive-panel {
  background: var(--bg-alt);
  box-shadow: 8px 8px 16px #c9beb9, -8px -8px 16px #f5efed;
}

.section-dark .interactive-panel {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 6px 6px 14px rgba(0, 0, 0, 0.2);
}

.interactive-panel h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.section-dark .interactive-panel h3 {
  color: var(--text-on-dark);
}

.interactive-panel p {
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.section-dark .interactive-panel p {
  color: rgba(255, 248, 246, 0.9);
}

.progress-wrap {
  margin: 1.25rem 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 10px;
  background: var(--bg-alt);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 2px 2px 5px var(--shadow-dark);
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
  transition: width 0.4s ease;
}

.check-interactive {
  list-style: none;
  margin-top: 1rem;
}

.check-interactive li {
  margin-bottom: 0.5rem;
}

.check-interactive label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--bg);
  box-shadow: 3px 3px 8px var(--shadow-dark), -3px -3px 8px var(--shadow-light);
  transition: background 0.2s, opacity 0.2s;
  font-size: 0.95rem;
  color: var(--text);
}

.section-alt .check-interactive label {
  background: var(--bg-alt);
}

.check-interactive input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.check-interactive li.done label {
  opacity: 0.65;
  text-decoration: line-through;
}

.breath-studio {
  text-align: center;
}

.breath-circle-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 1.5rem auto;
}

.breath-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 8px 8px 20px var(--shadow-dark), -6px -6px 16px var(--shadow-light);
  transform: scale(0.65);
  transition: transform 4s ease-in-out;
}

.breath-circle.inhale {
  transform: scale(1);
}

.breath-circle.hold {
  transform: scale(1);
}

.breath-circle.exhale {
  transform: scale(0.65);
}

.breath-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.breath-controls .btn {
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
}

.breath-phase {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  min-height: 1.5rem;
  margin-top: 0.5rem;
}

.hold-timer {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 1rem 0;
  font-variant-numeric: tabular-nums;
}

.hold-timer-label {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.mind-cards {
  display: grid;
  gap: 1rem;
}

.mind-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 6px 6px 14px var(--shadow-dark), -6px -6px 14px var(--shadow-light);
}

.mind-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  text-align: left;
}

.mind-card-header .material-icons {
  color: var(--accent);
  transition: transform 0.3s ease;
}

.mind-card.open .mind-card-header .material-icons.expand-icon {
  transform: rotate(180deg);
}

.mind-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.45s ease;
  padding: 0 1.25rem;
}

.mind-card.open .mind-card-body {
  max-height: 1200px;
  padding: 0 1.25rem 1.25rem;
}

.mind-card-body p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.tip-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tip-pill {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  background: rgba(61, 107, 94, 0.12);
  color: var(--accent);
  font-weight: 600;
  border: none;
  cursor: default;
}

.section-dark .tip-pill {
  background: rgba(255, 255, 255, 0.12);
  color: var(--accent-light);
}

@media (max-width: 900px) {
  .interactive-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-block,
  .card-grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split-block.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    box-shadow: 0 8px 16px rgba(42, 34, 32, 0.1);
  }

  .main-nav.open {
    max-height: 400px;
    padding: 1rem 1.25rem 1.5rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-nav a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(129, 100, 96, 0.15);
  }

  .events-table {
    font-size: 0.8rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 2.5rem 0;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
