@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

:root {
  --accent: #C9B5B9;
  --accent-dark: #a89498;
  --accent-light: #e8dde0;
  --bg-dark: #2a2225;
  --bg-medium: #3d2f33;
  --bg-light: #f7f3f4;
  --text-dark: #1f181a;
  --text-light: #ffffff;
  --text-muted: #4a3f42;
  --contrast-icon: #1f181a;
  --section-alt: #ebe2e4;
  --section-dark: #4a3a3e;
  --border: #b8a4a8;
  --shadow: 0 8px 32px rgba(42, 34, 37, 0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--bg-medium);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); 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 1rem;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  text-align: center;
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--text-light);
  border-bottom: 2px solid var(--accent);
  box-shadow: var(--shadow);
}

.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;
  flex-shrink: 0;
}

.logo-link img {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--bg-medium);
  border-radius: var(--radius);
  padding: 0.4rem 0.55rem;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.4rem;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  gap: 0.25rem 1.25rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--bg-medium);
  border-bottom-color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  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(42, 34, 37, 0.82), rgba(61, 47, 51, 0.65));
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  color: var(--accent-light);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

.btn-dark {
  background: var(--bg-medium);
  color: var(--text-light);
  border-color: var(--bg-medium);
}

.btn-dark:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-light);
}

section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--section-alt);
}

.section-dark {
  background: var(--section-dark);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p,
.section-dark li {
  color: var(--accent-light);
}


.section-dark a:hover {
  color: var(--text-light);
}

.section-accent a {
  color: var(--bg-dark);
  font-weight: 600;
}

.section-accent {
  background: var(--accent);
  color: var(--text-dark);
}

.section-accent h2,
.section-accent h3 {
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: var(--accent-light);
}

.magazine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.magazine-grid.reverse {
  direction: rtl;
}

.magazine-grid.reverse > * {
  direction: ltr;
}

.magazine-grid .magazine-text {
  padding: 1rem 0;
}

.magazine-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.magazine-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.magazine-asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

.magazine-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}

.section-dark .card {
  background: var(--bg-medium);
  border-color: var(--accent-dark);
}

.card-icon {
  font-size: 2rem;
  color: var(--contrast-icon);
  margin-bottom: 0.75rem;
  display: block;
}

.section-dark .card-icon {
  color: var(--accent);
}

.section-accent .card {
  background: var(--text-light);
}

.recipe-series {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.recipe-card {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.recipe-card:hover {
  transform: translateY(-4px);
}

.recipe-card h3 {
  font-size: 1.1rem;
}

.recipe-card a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.tea-builder {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.section-dark .tea-builder {
  color: var(--bg-medium);
}

.section-dark .tea-builder .herb-option {
  color: var(--bg-medium);
  background: var(--bg-light);
  border-color: var(--accent-dark);
}

.section-dark .tea-builder .herb-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--bg-dark);
}

.builder-result {
  background: var(--accent-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
  display: none;
  border: 1px solid var(--accent-dark);
  color: var(--bg-medium);
}

.section-dark .builder-result h3,
.section-dark .builder-result h4 {
  color: var(--bg-dark);
}

.section-dark .builder-result p,
.section-dark .builder-result li {
  color: var(--text-muted);
}

.section-dark .builder-result strong {
  color: var(--bg-dark);
}

.section-dark .builder-result em {
  color: var(--accent-dark);
}

.herb-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.herb-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  font-size: 0.9rem;
  color: var(--text-dark);
}

.herb-option:has(input:checked) {
  border-color: var(--bg-medium);
  background: var(--accent-light);
}

.herb-option input {
  accent-color: var(--accent-dark);
}

.builder-result.visible {
  display: block;
}

.fact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.fact-card {
  background: var(--bg-medium);
  color: var(--text-light);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
}

.fact-card i {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.fact-card h3 {
  color: var(--text-light);
}

.fact-card p {
  color: var(--accent-light);
  font-size: 0.92rem;
  margin: 0;
}

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--accent);
}

.timeline-list li {
  padding: 0 0 1.5rem 1.5rem;
  position: relative;
  margin: 0;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 13px;
  height: 13px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--text-light);
}

.faq-list details {
  background: var(--text-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 0;
  overflow: hidden;
}

.section-dark .faq-list details {
  background: var(--bg-medium);
  border-color: var(--accent-dark);
}

.faq-list summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-dark .faq-list summary {
  color: var(--text-light);
}

.faq-list summary::after {
  content: '\F282';
  font-family: 'bootstrap-icons';
  transition: transform var(--transition);
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list .faq-answer {
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
}

.section-dark .faq-answer {
  color: var(--accent-light);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--text-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.events-table th,
.events-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.events-table td {
  color: var(--bg-medium);
  background: var(--text-light);
}

.events-table a {
  color: var(--bg-dark);
  text-decoration: underline;
  font-weight: 600;
}

.events-table a:hover {
  color: var(--accent-dark);
}

.section-accent .events-table td,
.section-dark .events-table td {
  color: var(--bg-medium);
  background: var(--text-light);
}

.section-accent .events-table a,
.section-dark .events-table a {
  color: var(--bg-dark);
}

.events-table th {
  background: var(--bg-medium);
  color: var(--text-light);
  font-weight: 600;
}

.events-table tr:last-child td {
  border-bottom: none;
}

.numbered-steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.numbered-steps li {
  counter-increment: step;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  background: var(--text-light);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
}

.numbered-steps li::before {
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
}

.checklist li::before {
  content: '\F26B';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--bg-medium);
}

.contact-form {
  background: var(--text-light);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-light);
  color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-dark);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.form-check input {
  margin-top: 0.25rem;
  accent-color: var(--bg-medium);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-info {
  padding: 1.5rem;
}

.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.25rem;
  color: var(--bg-medium);
  margin-top: 0.15rem;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--accent-light);
  padding: 2.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: var(--accent-light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--bg-medium);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-compliance {
  font-size: 0.8rem;
  color: var(--accent-light);
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.footer-compliance a {
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.25rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform var(--transition);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-text {
  flex: 1 1 300px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  font-size: 0.85rem;
  padding: 0.55rem 1rem;
}

.cookie-buttons .btn-reject {
  background: var(--text-light);
  color: var(--bg-dark);
  border: 2px solid var(--text-light);
  font-weight: 600;
}

.cookie-buttons .btn-reject:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--bg-dark);
}

.cookie-buttons .btn-manage {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--accent);
  font-weight: 600;
}

.cookie-buttons .btn-manage:hover {
  background: var(--accent);
  color: var(--bg-dark);
  border-color: var(--accent);
}

.cookie-modal-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-modal-actions .btn-reject {
  background: var(--bg-light);
  color: var(--bg-dark);
  border: 2px solid var(--border);
}

.cookie-modal-actions .btn-reject:hover {
  background: var(--accent-light);
  border-color: var(--accent-dark);
}

.footer-cookie-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--accent-light);
  text-decoration: underline;
  cursor: pointer;
}

.footer-cookie-link:hover {
  color: var(--text-light);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--text-light);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--text-dark);
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-category label {
  font-weight: 600;
}

.cookie-category p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.25rem 0 0;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 26px;
  transition: background var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text-light);
  border-radius: 50%;
  transition: transform var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--bg-medium);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.policy-content h1 {
  margin-bottom: 1.5rem;
}

.policy-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.policy-content p,
.policy-content li {
  color: var(--text-muted);
}

.policy-content .events-table {
  font-size: 0.9rem;
}

.policy-content .events-table td {
  color: var(--bg-medium);
  vertical-align: top;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.success-page i {
  font-size: 4rem;
  color: var(--bg-medium);
  margin-bottom: 1rem;
  display: block;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.split-feature {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.quote-block {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: var(--section-alt);
  font-style: italic;
  margin: 1.5rem 0;
}

.section-dark .quote-block {
  background: var(--bg-medium);
  color: var(--accent-light);
}

@media (max-width: 900px) {
  .magazine-grid,
  .magazine-asymmetric,
  .magazine-stack,
  .split-feature {
    grid-template-columns: 1fr;
  }

  .magazine-grid.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--text-light);
    border-bottom: 2px solid var(--accent);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .main-nav.open {
    max-height: 400px;
    box-shadow: var(--shadow);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid var(--border);
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 0;
  }

  section {
    padding: 2.5rem 0;
  }

  .events-table {
    font-size: 0.85rem;
  }

  .events-table th,
  .events-table td {
    padding: 0.6rem 0.5rem;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: stretch;
  }

  .cookie-buttons .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .logo-text {
    font-size: 0.75rem;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .btn {
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .hero-content .btn {
    display: block;
    margin-bottom: 0.5rem;
  }

  .card,
  .tea-builder,
  .contact-form {
    padding: 1.25rem;
  }

  .herb-options {
    grid-template-columns: 1fr;
  }
}
