:root {
  --accent: #ACA536;
  --accent-dark: #8a8629;
  --accent-light: #c9c45a;
  --bg-dark: #1a1c14;
  --bg-mid: #2d3020;
  --bg-light: #f7f6ef;
  --bg-cream: #eeecdf;
  --text-dark: #1a1c14;
  --text-light: #f7f6ef;
  --text-muted: #4a4d3a;
  --contrast-icon: #ffffff;
  --shadow: 0 8px 32px rgba(26, 28, 20, 0.12);
  --radius: 4px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-sans);
  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(--accent-dark);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.disclaimer-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--bg-dark);
  color: var(--text-light);
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
  text-align: center;
  line-height: 1.4;
}

body.has-disclaimer {
  --disclaimer-h: 2.5rem;
}

body.has-disclaimer .site-header {
  top: var(--disclaimer-h);
}

body.has-disclaimer main {
  padding-top: calc(var(--header-h) + var(--disclaimer-h));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 28, 20, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(172, 165, 54, 0.3);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-light);
}

.logo-link img {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-desktop a {
  color: var(--text-light);
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: none;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--accent-light);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.75rem;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-dark);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  border-bottom: 2px solid var(--accent);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
}

.nav-mobile li {
  border-bottom: 1px solid rgba(247, 246, 239, 0.1);
}

.nav-mobile a {
  display: block;
  padding: 0.85rem 0;
  color: var(--text-light);
  font-size: 1rem;
}

.nav-mobile a:hover {
  color: var(--accent-light);
}

main {
  padding-top: var(--header-h);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-mid);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 28, 20, 0.75) 0%, rgba(45, 48, 32, 0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 2rem 1.5rem;
  max-width: 800px;
}

.hero-content h1 {
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid var(--accent);
  transition: background 0.2s, color 0.2s;
  font-size: 0.95rem;
}

.btn:hover {
  background: transparent;
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
  margin-left: 0.75rem;
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}

section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section-dark {
  background: var(--bg-mid);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p,
.section-dark li {
  color: rgba(247, 246, 239, 0.92);
}

.section-dark a {
  color: var(--accent-light);
}

.section-accent {
  background: var(--accent);
  color: var(--text-dark);
}

.section-accent h2,
.section-accent h3 {
  color: var(--text-dark);
}

.section-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section-light {
  background: var(--bg-light);
  color: var(--text-dark);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.section-dark .section-header .icon-wrap {
  background: var(--accent);
}

.section-dark .icon-wrap i {
  color: var(--text-dark);
}

.icon-wrap i {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.section-dark .icon-wrap i {
  color: var(--text-dark);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  color: var(--text-dark);
}

.section-dark .card {
  background: rgba(247, 246, 239, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(172, 165, 54, 0.25);
}

.card h3 {
  color: inherit;
}

.card-icon {
  font-size: 2rem;
  color: var(--accent-dark);
  margin-bottom: 0.75rem;
}

.section-dark .card-icon {
  color: var(--accent-light);
}

.img-rounded {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  align-items: flex-start;
}

.feature-list i {
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.section-dark .feature-list i {
  color: var(--accent-light);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
}

.numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.recipe-card {
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  background: var(--bg-cream);
  margin-bottom: 1.25rem;
}

.section-dark .recipe-card {
  background: rgba(26, 28, 20, 0.4);
  border-left-color: var(--accent-light);
}

.recipe-card h4 {
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.4rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-light);
}

.section-dark .timeline-item::before {
  border-color: var(--bg-mid);
}

.faq-item {
  border-bottom: 1px solid rgba(26, 28, 20, 0.15);
  margin-bottom: 0.5rem;
}

.section-dark .faq-item {
  border-color: rgba(247, 246, 239, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem 2rem 1rem 0;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  cursor: pointer;
  color: inherit;
  position: relative;
  font-weight: 600;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent-dark);
}

.section-dark .faq-question::after {
  color: var(--accent-light);
}

.faq-question.active::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding-bottom: 1rem;
  font-size: 0.95rem;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.calendar-table th,
.calendar-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 28, 20, 0.1);
}

.section-dark .calendar-table th,
.section-dark .calendar-table td {
  border-color: rgba(247, 246, 239, 0.12);
}

.calendar-table th {
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 600;
}

.calendar-table tr:hover td {
  background: rgba(172, 165, 54, 0.12);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.stat-box {
  text-align: center;
  padding: 1.25rem 1.75rem;
  min-width: 140px;
  background: rgba(172, 165, 54, 0.15);
  border-radius: var(--radius);
}

.stat-box strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent-dark);
}

.section-dark .stat-box strong {
  color: var(--accent-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(26, 28, 20, 0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: #fff;
  color: var(--text-dark);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.25rem;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.contact-info i {
  color: var(--accent-dark);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  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: rgba(247, 246, 239, 0.85);
}

.site-footer a:hover {
  color: var(--accent-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 246, 239, 0.12);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(247, 246, 239, 0.7);
}

.footer-legal {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-legal a,
.link-btn {
  color: rgba(247, 246, 239, 0.9);
}

.link-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
}

.link-btn:hover {
  color: var(--accent-light);
}

.footer-disclaimer-small {
  font-size: 0.78rem;
  opacity: 0.85;
  max-width: 720px;
  margin: 0.5rem auto;
}

.trust-bar {
  background: var(--bg-cream);
  border-top: 1px solid rgba(26, 28, 20, 0.08);
  border-bottom: 1px solid rgba(26, 28, 20, 0.08);
  padding: 1.25rem 0;
}

.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  font-size: 0.9rem;
}

.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.business-box {
  background: var(--bg-cream);
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
}

.map-placeholder {
  background: rgba(26, 28, 20, 0.06);
  padding: 2rem 1.5rem;
  text-align: center;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 10000;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.cookie-actions .btn {
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
}

.btn-reject {
  background: #4a4f36;
  color: var(--text-light);
  border-color: #7a8058;
}

.btn-reject:hover {
  border-color: var(--accent-light);
  color: var(--text-light);
  background: #5a6042;
}

.cookie-settings-panel {
  display: none;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 246, 239, 0.15);
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(247, 246, 239, 0.08);
}

.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: rgba(247, 246, 239, 0.2);
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text-light);
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent);
}

.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;
}

.policy-content h2 {
  margin-top: 2rem;
}

.policy-content ul {
  margin: 0 0 1rem 1.5rem;
}

.thank-you-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.thank-you-page .icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.page-hero-small {
  padding: 4rem 0 3rem;
  background: var(--bg-mid);
  color: var(--text-light);
  text-align: center;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--accent-light);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1rem;
}

.tag-list li {
  background: var(--accent);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  border-radius: 2px;
  font-weight: 600;
}

.columns-aside {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
}

.aside-box {
  background: var(--bg-cream);
  padding: 1.25rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--accent);
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .contact-grid,
  .footer-grid,
  .columns-aside {
    grid-template-columns: 1fr;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 0.75rem;
    display: inline-block;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 64px;
  }

  .hero-content .btn-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }

  .hero-content .btn,
  .hero-content .btn-outline {
    width: 100%;
    max-width: 260px;
    text-align: center;
    margin: 0;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    text-align: center;
  }

  .calendar-table {
    font-size: 0.78rem;
  }

  .calendar-table th,
  .calendar-table td {
    padding: 0.5rem 0.4rem;
  }

  .map-wrap iframe {
    height: 280px;
  }
}

@media (max-width: 320px) {
  .container {
    width: 94vw;
  }

  .logo-text {
    font-size: 0.75rem;
    max-width: 140px;
    line-height: 1.2;
  }

  .disclaimer-bar {
    font-size: 0.68rem;
    padding: 0.4rem 0.5rem;
  }
}
