@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Nunito:wght@400;600;700&display=swap');

:root {
  --primary: #D76F02;
  --primary-dark: #a85502;
  --primary-light: #f0a040;
  --bg-cream: #faf6f0;
  --bg-dark: #1a1410;
  --bg-olive: #2c3a2e;
  --bg-warm: #3d2b1f;
  --text-dark: #1a1410;
  --text-light: #faf6f0;
  --text-muted: #5c4a3a;
  --accent-green: #4a6741;
  --border-gold: #c9a227;
  --shadow: rgba(26, 20, 16, 0.15);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.3;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.ai-disclosure-bar {
  background: var(--bg-warm);
  color: var(--text-light);
  text-align: center;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(215, 111, 2, 0.4);
}

.ai-disclosure-bar i {
  color: var(--primary-light);
  margin-right: 0.35rem;
}

.ai-disclosure-bar a {
  color: var(--primary-light);
  text-decoration: underline;
  font-weight: 600;
}

.ai-disclosure-bar a:hover {
  color: #fff;
}

.trust-footer {
  border-top: 1px solid rgba(215, 111, 2, 0.25);
  padding: 1.25rem 0;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.82);
}

.trust-footer p {
  margin-bottom: 0.5rem;
}

.trust-footer a {
  color: var(--primary-light);
}

.trust-panel {
  background: rgba(215, 111, 2, 0.08);
  border: 1px solid rgba(215, 111, 2, 0.25);
  border-radius: 0 20px 0 20px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.trust-panel h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.bg-dark .trust-panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(215, 111, 2, 0.3);
}

.footer-legal-note {
  border-top: 1px solid rgba(215, 111, 2, 0.2);
  padding: 1rem 0 0.5rem;
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.75);
  text-align: center;
}

.footer-legal-note a {
  color: var(--primary-light);
  text-decoration: underline;
}

.compliance-strip {
  background: var(--bg-cream);
  border-bottom: 1px solid rgba(215, 111, 2, 0.25);
  padding: 0.5rem 0;
  font-size: 0.8rem;
}

.compliance-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.compliance-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-muted);
}

.compliance-strip i {
  color: var(--primary);
}

.compliance-strip a {
  color: var(--primary-dark);
  font-weight: 600;
}

@media (max-width: 480px) {
  .compliance-strip .container {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

.site-header {
  background: var(--bg-cream);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-link:hover {
  color: var(--primary);
}

.logo-link img {
  width: 48px;
  height: 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 20, 16, 0.82) 0%,
    rgba(215, 111, 2, 0.45) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.25rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 60'%3E%3Cpath d='M0,60 Q300,0 600,30 T1200,60 L1200,60 L0,60 Z' fill='%23faf6f0'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  z-index: 3;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--primary);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-light);
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
}

section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 700px;
}

.bg-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.bg-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.bg-dark .section-title,
.bg-dark h3,
.bg-dark h4 {
  color: var(--text-light);
}

.bg-dark .section-subtitle,
.bg-dark p {
  color: rgba(250, 246, 240, 0.85);
}

.bg-primary {
  background: var(--primary);
  color: var(--text-light);
}

.bg-primary .section-title,
.bg-primary h3,
.bg-primary h4 {
  color: var(--text-light);
}

.bg-primary .section-subtitle,
.bg-primary p {
  color: rgba(250, 246, 240, 0.92);
}

.bg-olive {
  background: var(--bg-olive);
  color: var(--text-light);
}

.bg-olive .section-title,
.bg-olive h3,
.bg-olive h4 {
  color: var(--text-light);
}

.bg-olive .section-subtitle,
.bg-olive p {
  color: rgba(250, 246, 240, 0.88);
}

.bg-warm {
  background: var(--bg-warm);
  color: var(--text-light);
}

.bg-warm .section-title,
.bg-warm h3,
.bg-warm h4 {
  color: var(--text-light);
}

.bg-warm .section-subtitle,
.bg-warm p {
  color: rgba(250, 246, 240, 0.88);
}

.art-border {
  border: 2px solid var(--border-gold);
  border-radius: 0 30px 0 30px;
  padding: 2rem;
  position: relative;
}

.art-border::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 40px;
  height: 12px;
  background: var(--primary);
  border-radius: 6px;
}

.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: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(215, 111, 2, 0.3);
  border-radius: 0 20px 0 20px;
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.bg-cream .card {
  background: #fff;
  border-color: rgba(215, 111, 2, 0.25);
  box-shadow: 0 4px 20px var(--shadow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow);
}

.card-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.bg-dark .card-icon,
.bg-olive .card-icon,
.bg-warm .card-icon,
.bg-primary .card-icon {
  color: var(--primary-light);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
}

.image-block {
  border-radius: 0 40px 0 40px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow);
  border: 3px solid var(--primary);
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(215, 111, 2, 0.15);
}

.feature-list li::before {
  content: '\F26A';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.1rem;
}

.bg-dark .feature-list li::before,
.bg-olive .feature-list li::before,
.bg-warm .feature-list li::before {
  color: var(--primary-light);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.numbered-list li {
  counter-increment: item;
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-left: 2px solid var(--primary);
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: -1rem;
  top: 0.85rem;
  width: 2rem;
  height: 2rem;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.recipe-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.recipe-table th,
.recipe-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(215, 111, 2, 0.2);
}

.recipe-table th {
  background: var(--primary);
  color: var(--text-light);
  font-weight: 700;
}

.recipe-table tr:nth-child(even) {
  background: rgba(215, 111, 2, 0.06);
}

.bg-dark .recipe-table tr:nth-child(even),
.bg-olive .recipe-table tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item {
  border: 1px solid rgba(215, 111, 2, 0.25);
  border-radius: 0 15px 0 15px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: rgba(215, 111, 2, 0.08);
  border: none;
  padding: 1rem 1.25rem;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.bg-dark .faq-question,
.bg-olive .faq-question,
.bg-warm .faq-question {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 1.25rem;
}

.faq-answer.open {
  max-height: 500px;
  padding: 1rem 1.25rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.event-card {
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--primary);
  padding: 1.25rem;
  border-radius: 0 12px 12px 0;
}

.event-date {
  font-weight: 700;
  color: var(--primary-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.bg-cream .event-card {
  background: #fff;
  box-shadow: 0 2px 12px var(--shadow);
}

.bg-cream .event-date {
  color: var(--primary);
}

.contact-form {
  max-width: 600px;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: inherit;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(215, 111, 2, 0.3);
  border-radius: 0 12px 0 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  background: #fff;
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.3rem;
  accent-color: var(--primary);
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.9rem;
}

.map-container {
  border-radius: 0 30px 0 30px;
  overflow: hidden;
  border: 3px solid var(--primary);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.contact-info-block {
  margin-top: 2rem;
}

.contact-info-block p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info-block i {
  color: var(--primary);
  font-size: 1.2rem;
}

.bg-dark .contact-info-block i,
.bg-olive .contact-info-block i {
  color: var(--primary-light);
}

.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  color: var(--primary-light);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(250, 246, 240, 0.8);
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(215, 111, 2, 0.3);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 246, 240, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.cookie-banner .btn-outline {
  color: var(--text-light);
  border-color: var(--text-light);
}

.cookie-banner .btn-outline:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}

.success-page .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--bg-cream);
  color: var(--text-dark);
  max-width: 500px;
  width: 100%;
  border-radius: 0 20px 0 20px;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.cookie-category {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(215, 111, 2, 0.2);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category h4 {
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
}

.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: #ccc;
  border-radius: 26px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 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-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero .hero-bg img {
  min-height: 50vh;
}

.page-hero .hero-content h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--primary);
}

.policy-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.75rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.tag {
  background: rgba(215, 111, 2, 0.15);
  color: var(--primary-dark);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.bg-dark .tag {
  background: rgba(215, 111, 2, 0.25);
  color: var(--primary-light);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.bg-dark .stat-number,
.bg-olive .stat-number {
  color: var(--primary-light);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.bg-dark .stat-label {
  color: rgba(250, 246, 240, 0.7);
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-box {
  background: rgba(215, 111, 2, 0.1);
  border-left: 4px solid var(--primary);
  padding: 1.25rem;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
}

.bg-dark .highlight-box {
  background: rgba(255, 255, 255, 0.06);
}

.inline-link {
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--bg-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    box-shadow: -4px 0 20px var(--shadow);
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-overlay.show {
    opacity: 1;
    visibility: visible;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3rem 0;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
  }

  .art-border {
    padding: 1.25rem;
  }

  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 0.75rem;
  }

  .logo-link span {
    font-size: 0.85rem;
  }

  .logo-link img {
    width: 36px;
    height: 36px;
  }

  .main-nav {
    width: 100%;
    right: -100%;
  }

  .disclaimer-bar {
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
  }

  .ai-disclosure-bar {
    font-size: 0.68rem;
    padding: 0.35rem 0.5rem;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .stat-row {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}
