/* =============================
   CSS RESET & NORMALIZATION
   ============================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  color: #2D3A4A;
  background: #FFF8F2;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #E4B749;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #cc9b1d;
  text-decoration: underline;
  outline: none;
}
img {
  max-width: 100%;
  border-radius: 8px;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  color: #2D3A4A;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

p, .subheadline {
  color: #403c30;
  font-size: 1.1rem;
  margin-bottom: 1.1em;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.24rem;
  color: #9D6F3A;
  font-weight: 500;
}
strong { font-weight: 700; }

/* Container & Section Layouts */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffdf9;
  border-radius: 24px;
  box-shadow: 0 2px 24px rgba(188,153,103,0.10);
}
main > section.hero {
  margin-bottom: 40px;
  padding: 56px 20px 56px 20px;
  background: #FFE7C4;
  box-shadow: 0 2px 24px rgba(228,183,73, 0.09);
  border-radius: 0 0 40px 40px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.text-section {
  gap: 16px;
}
.features-grid, .featured-reviews, .testimonial-slider, .testimonial-snippet-grid, .curated-lists, .newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid {
  justify-content: space-between;
  margin-bottom: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 220px;
  min-width: 220px;
  background: #FDF5E6;
  padding: 28px 20px;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(188,153,103,0.07);
  transition: box-shadow 0.2s;
}
.feature-item:hover {
  box-shadow: 0 4px 24px rgba(228,183,73,0.16);
}
/* Cards */
.card, .review-teaser {
  background: #fffdfa;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 1px 4px rgba(188,153,103,0.08);
  padding: 24px 18px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .review-teaser:hover {
  box-shadow: 0 5px 20px rgba(228,183,73,0.12);
  transform: translateY(-2px) scale(1.02);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* Testimonials */
.testimonials {
  background: #FFFAF3;
  border-radius: 29px;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(188, 153, 103, 0.11);
  min-width: 250px;
  max-width: 420px;
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  color: #4C463E;
  font-style: italic;
  margin-bottom: 0.6em;
}
.testimonial-meta {
  font-size: 1rem;
  color: #6A5D41;
}
.stars {
  color: #E4B749;
  font-size: 1.17em;
  letter-spacing: 1px;
  margin-left: 0.4em;
}
.testimonial-slider, .testimonial-snippet-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.confirmation {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
/* List and Service Styles */
.service-list, .events-list, .faq-list, .contact-info, .newsletter-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.service-list li, .events-list li, .newsletter-benefits li, .faq-list li {
  padding: 20px 18px;
  border-radius: 15px;
  background: #FFF6E0;
  box-shadow: 0 1px 6px rgba(228,183,73,0.06);
  margin-bottom: 12px;
  font-size: 1.08rem;
}
/* Filter/Tag Styles */
.filter-genres ul, .curated-lists ul, .filter-options ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 0 0;
}
.filter-genres li, .curated-lists li, .filter-options li {
  background: #FAE3B6;
  color: #2D3A4A;
  border-radius: 24px;
  padding: 4px 16px;
  font-size: 1rem;
  margin-bottom: 0;
}
.filter-genres strong {
  font-weight: 600;
  margin-right: 10px;
}
.filter-options p {
  margin-bottom: 0;
  font-size: 1rem;
}
/* Button Styles */
.button-primary, .button-secondary {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 26px;
  border: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  cursor: pointer;
  margin-right: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  box-shadow: 0 1px 4px rgba(228,183,73,0.12);
}
.button-primary {
  background: #E4B749;
  color: #2D3A4A;
}
.button-primary:hover, .button-primary:focus {
  background: #CF9C26;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.button-secondary {
  background: #fff;
  color: #E4B749;
  border: 2px solid #E4B749;
}
.button-secondary:hover, .button-secondary:focus {
  background: #E4B749;
  color: #2D3A4A;
  transform: translateY(-2px) scale(1.03);
}
.button-primary:active, .button-secondary:active {
  box-shadow: 0 2px 10px rgba(192,120,40,0.18);
}
/* Header / Nav */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(228,183,73, 0.04);
  padding: 0 0 4px 0;
  margin-bottom: 12px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 18px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  background: transparent;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #2D3A4A;
  font-size: 1.12rem;
  border-radius: 18px;
  padding: 8px 18px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus, .footer-nav a:hover, .footer-nav a:focus {
  background: #FFE7C4;
  color: #BF8C33;
}
/* Hide on mobile, show burger instead */
.mobile-menu-toggle {
  background: #fff;
  border: 2px solid #E4B749;
  color: #CF9C26;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 0 rgba(192,152,80,0.07);
  margin-left: 10px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFE7C4;
  color: #9D6F3A;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF6E0;
  z-index: 100;
  box-shadow: 0 4px 40px rgba(228,183,73,0.16);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.71,0,0,.98);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 20px 0 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #E4B749;
  border: 2px solid #E4B749;
  border-radius: 24px;
  font-size: 1.7rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 2;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFE7C4;
  color: #BF8C33;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 22px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 600;
  padding: 15px 8px;
  border-radius: 18px;
  color: #2D3A4A;
  transition: background 0.13s, color 0.13s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFE7C4;
  color: #BF8C33;
  outline: none;
}

/* Footer */
footer {
  background: #fffbe8;
  box-shadow: 0 -2px 8px rgba(228,183,73, 0.11);
  margin-top: 40px;
  border-radius: 24px 24px 0 0;
  padding: 0;
  font-size: 1rem;
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 28px 18px 10px 18px;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #9D6F3A;
  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 12px;
  padding: 8px 12px;
  transition: background 0.13s, color 0.13s;
}
.footer-bottom {
  padding: 14px 18px 26px 18px;
  text-align: left;
  color: #AE9A6C;
  font-size: 0.97rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdfa;
  border-top: 3px solid #E4B749;
  box-shadow: 0 -2px 16px rgba(156,130,61,0.09);
  padding: 22px 24px 26px 24px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
  transition: opacity 0.28s, transform 0.29s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner p {
  color: #655331;
  font-size: 1rem;
  flex: 1;
  margin-right: 20px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 11px 28px;
  margin-right: 10px;
  margin-bottom: 0;
  box-shadow: 0 1px 6px rgba(205,150,60,0.04);
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .accept-btn {
  background: #E4B749;
  color: #2D3A4A;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #cf9c26;
  color: #fff;
  outline: none;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #E4B749;
  border: 2px solid #E4B749;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #E4B749;
  color: #fff;
  outline: none;
}
.cookie-banner .settings-btn {
  background: #fff7e4;
  color: #a1864d;
  border: 2px solid #dfce9f;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #fae3b6;
  color: #87631a;
  outline: none;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(208,180,109,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 23px;
  box-shadow: 0 8px 50px 0 rgba(180,140,40,0.15);
  max-width: 470px;
  width: 98vw;
  padding: 38px 22px 30px 22px;
  position: relative;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.38s cubic-bezier(0.78,0,0,1.08);
}
@keyframes cookieModalIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #2D3A4A;
  font-size: 1.21rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}
.cookie-category label {
  font-size: 1.04rem;
  color: #433317;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #E4B749;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  margin-right: 7px;
}
.cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 9px;
}
.cookie-modal-btns button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 22px;
  padding: 11px 28px;
  cursor: pointer;
  background: #E4B749;
  color: #2D3A4A;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-btns button.save-btn:hover, .cookie-modal-btns button.save-btn:focus {
  background: #CF9C26;
  color: #fff;
}
.cookie-modal-btns button.cancel-btn {
  background: #fff;
  color: #E4B749;
  border: 2px solid #E4B749;
}
.cookie-modal-btns button.cancel-btn:hover, .cookie-modal-btns button.cancel-btn:focus {
  background: #fae3b6;
  color: #A1864D;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.38rem;
  background: #fff;
  border: 2px solid #E4B749;
  color: #E4B749;
  border-radius: 22px;
  padding: 3px 13px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #FFE7C4;
  color: #CF9C26;
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .features-grid, .featured-reviews, .testimonial-slider, .testimonial-snippet-grid, .curated-lists, .newsletter-benefits {
    gap: 14px;
  }
  .feature-item {
    min-width: 185px;
    padding: 18px 13px;
  }
  .section, main > section {
    padding: 32px 7px;
    margin-bottom: 46px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.1rem; }
  .container {
    max-width: 98vw;
    padding: 0 5px;
  }
  .section, main > section {
    padding: 18px 3px;
    margin-bottom: 35px;
    border-radius: 16px;
  }
  .content-wrapper, .text-section, .features-list {
    gap: 13px !important;
  }
  .features-grid, .featured-reviews, .testimonial-slider, .testimonial-snippet-grid, .curated-lists, .newsletter-benefits {
    flex-direction: column;
    gap: 10px;
  }
  .feature-item, .card, .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 14px 9px;
    font-size: 0.99rem;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav {
    gap: 10px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding: 14px 8px 7px 8px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 9px 7px 7px 7px;
    gap: 4px;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: 0;
    padding: 12px 7px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 6px 20px 6px;
    font-size: 0.98rem;
  }
}
@media (max-width: 540px) {
  .footer-bottom {
    padding: 7px 6px 14px 6px;
    font-size: 0.91rem;
  }
  .cookie-modal {
    padding: 22px 3px 20px 3px;
    min-width: 0;
    max-width: 98vw;
    font-size: 1rem;
  }
}
/* Hide burger by default on desktop */
.mobile-menu-toggle {
  display: none;
}
/* Show only on mobile -- nav */
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* Hide mobile menu by default */
.mobile-menu {
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.33s, transform 0.33s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ------------------------------------------ */
/* Microinteractions & Custom Transitions     */
/* ------------------------------------------ */
.button-primary, .button-secondary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal-btns button {
  transition: background 0.17s, color 0.16s, box-shadow 0.16s, transform 0.14s;
}
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .feature-item:hover {
  box-shadow: 0 6px 30px rgba(205, 150, 60, 0.15);
  transform: translateY(-2px) scale(1.015);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #E4B749;
  outline-offset: 2px;
}
/* Highlighted call on forms, newsletter, etc */
input, textarea, select {
  border: 1.5px solid #e6d6b1;
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border-color 0.15s;
  background: #fffdfa;
}
input:focus, textarea:focus, select:focus {
  border-color: #E4B749;
}

/* Accessibility: High contrast for review/testimonials & on hover/focus */
.testimonial-card, .review-teaser, .card {
  color: #2D3A4A;
  background: #fff;
}
.testimonial-card blockquote, .review-teaser p, .review-teaser h3 {
  color: #2D3A4A;
}

::selection {
  background: #FFE7C4;
}

/* Layout Spacing - Mandated Patterns (see brief) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------- Utility Styles ------------ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ta-center { text-align: center !important; }
.rounded { border-radius: 21px !important; }

/* End CSS */
