/* === CSS RESET & BASE STYLES === */
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, 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,
article, aside, canvas, details, embed,  
figure, figcaption, footer, header, hgroup,  
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #faf9f6;
  color: #20334A;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #20334A;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #F6C145;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong, b {
  font-weight: bold;
}

/* === BRAND FONTS === */
h1, h2, h3, .cta-btn, header nav, .main-nav, .mobile-nav {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
}

/* === LAYOUT CONTAINERS === */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* HEADER & NAVIGATION === */
header {
  background: #20334A;
  color: #fff;
  box-shadow: 0 6px 20px rgba(32,51,74,0.10);
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 20px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 32px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  padding: 8px 0;
  font-size: 16px;
  position: relative;
  transition: color .2s;

}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: #F6C145;
  transition: width .3s cubic-bezier(.55,.085,.68,.53);
  border-radius: 8px;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F6C145;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 70%;
}
.cta-btn {
  background: #F6C145;
  color: #20334A;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 12px 38px;
  border-radius: 32px 8px 32px 8px;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 4px 20px 0 rgba(246,193,69,0.14);
  transition: background .22s, color .22s, box-shadow .22s, transform .18s;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin-left: 24px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #20334A;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(246,193,69,0.22);
  transform: translateY(-2px) scale(1.03) rotate(-2deg);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #F6C145;
  border: none;
  color: #20334A;
  font-size: 2.2rem;
  border-radius: 12px;
  padding: 6px 16px 4px 16px;
  margin-left: auto;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #20334A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,51,74,0.95);
  color: #fff;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  margin: 20px 0 16px 24px;
  cursor: pointer;
  transition: color .22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F6C145;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 18px 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  transition: color .18s;
  padding: 12px 0 12px 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6C145;
}

@media (max-width: 998px) {
  .main-nav {
    display: none !important;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 999px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === HERO SECTION & HEADINGS === */
.hero-section {
  background: linear-gradient(80deg,#B1C1D1 80%,#F6C145 100%);
  padding: 48px 0 48px 0;
  border-radius: 0 0 64px 64px / 0 0 44px 68px;
  box-shadow: 0 16px 60px 0 rgba(177,193,209,0.14);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-section h1 {
  font-size: 2.85rem;
  color: #20334A;
  text-shadow: 0 3px 14px rgba(32,51,74,0.04);
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: .02em;
}
.hero-section p {
  font-size: 1.36rem;
  color: #20334a;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 520px;
}

/* === PAGE HEADINGS & TYPOGRAPHY === */
h1 {
  font-size: 2.4rem;
  line-height: 1.16;
  color: #20334A;
  font-weight: 900;
  margin-bottom: 14px;
}
h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #F6C145;
  margin-bottom: 14px;
  letter-spacing: .01em;
}
h3 {
  font-size: 1.24rem;
  color: #20334A;
  font-weight: 700;
  margin-bottom: 8px;
}
p, ul li, ol li {
  font-size: 1.08rem;
  color: #1d293a;
  margin-bottom: 6px;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 14px;
}

.section:last-child {
  margin-bottom: 0;
}

/* === FEATURE GRID & CARDS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin: 24px 0 4px 0;
}
.feature-grid li {
  background: #fff;
  border-radius: 16px 36px 24px 12px / 18px 44px 22px 10px;
  box-shadow: 0 8px 36px 0 rgba(32,51,74,0.061);
  padding: 30px 24px 24px 24px;
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 12px 44px 0 rgba(177,193,209,0.17);
  transform: translateY(-4px) scale(1.03) rotate(-1deg);
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 4px;
  border-radius: 10px;
  background: #F6C14510;
  box-shadow: 0 3px 10px rgba(246,193,69,0.10);
  padding: 4px;
}

/* === TREND & EVENT LISTS === */
.trend-list, .event-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 16px;
}
.event-list li {
  background: #B1C1D1;
  color: #20334A;
  padding: 30px 28px;
  border-radius: 24px 8px 36px 12px;
  box-shadow: 0 4px 20px 0 rgba(32,51,74,0.10);
  margin-bottom: 20px;
}
.event-list h2 {
  color: #20334A;
  font-size: 1.35rem;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 26px 16px 40px 10px;
  box-shadow: 0 3px 14px 0 rgba(32,51,74,0.07);
  margin-bottom: 20px;
  min-width: 240px;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(246,193,69,0.14);
  transform: rotate(-1.5deg) scale(1.02);
}
.testimonial-card p {
  color: #20334A;
  font-size: 1.08rem;
  margin-bottom: 10px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card strong {
  color: #F6C145;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span:last-child {
  color: #20334A;
  font-size: 20px;
  margin-left: 12px;
}

/* === CARDS & ITEM LAYOUT === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 22px 12px 36px 18px;
  background: #fff;
  box-shadow: 0 3px 14px 0 rgba(32,51,74,0.07);
  padding: 28px 22px;
  transition: box-shadow .17s, transform .17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 34px 0 rgba(246,193,69,0.20);
  transform: rotate(-0.8deg) scale(1.01);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === CONTACT PAGE SNIPPETS === */
.contact-info {
  background: #B1C1D1;
  border-radius: 12px 44px 28px 8px;
  box-shadow: 0 2px 10px 0 rgba(177,193,209,0.10);
  padding: 23px 28px 13px 28px;
  margin-bottom: 28px;
  color: #20334A;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info a {
  color: #20334A;
  font-weight: bold;
  word-break: break-all;
  transition: color 0.2s;
}
.contact-info a:hover {
  color: #F6C145;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  margin-top: 10px;
}
.map-snippet img {
  width: 30px;
  height: 30px;
}

/* === FOOTER === */
footer {
  background: #20334A;
  color: #fff;
  padding: 38px 0 0 0;
  font-size: 1rem;
  margin-top: 80px;
  box-shadow: 0 -8px 36px rgba(32,51,74,0.045);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}
.footer-brand img {
  height: 48px;
  width: 48px;
  border-radius: 18px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #B1C1D1;
  transition: color .18s;
  font-size: 1rem;
}
.footer-menu a:hover {
  color: #F6C145;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .17s;
}
.footer-contact a:hover {
  color: #F6C145;
}
.footer-hours {
  color: #F6C145;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: 1rem;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10000;
  background: #fff;
  color: #20334A;
  border-top: 4px solid #F6C145;
  box-shadow: 0 -8px 36px rgba(246,193,69,0.13);
  padding: 24px 24px 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  font-size: 1.09rem;
  animation: cookiebannerin .7s cubic-bezier(.65,.05,.36,1) 1;
}
@keyframes cookiebannerin {
  from { transform: translateY(120px); opacity: 0; } to { transform: none; opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-left: auto;
}
.cookie-btn, .cookie-close-btn {
  background: #F6C145;
  color: #20334A;
  border: none;
  border-radius: 20px 6px 20px 10px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .17s, color .17s, box-shadow .15s;
  box-shadow: 0 3px 12px rgba(246,193,69,0.13);
}
.cookie-btn.secondary {
  background: #B1C1D1;
  color: #20334A;
}
.cookie-btn:focus,
.cookie-btn:hover,
.cookie-close-btn:focus,
.cookie-close-btn:hover {
  background: #20334A;
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top:0;
  left:0;
  width: 100vw;
  height: 100vh;
  z-index: 12000;
  background: rgba(32,51,74,0.83);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodalin .5s cubic-bezier(.65,.05,.36,1) 1;
}
@keyframes cookiemodalin {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  width: 92vw;
  max-width: 430px;
  border-radius: 22px 34px 18px 12px;
  box-shadow: 0 16px 68px rgba(246,193,69,0.21);
  padding: 30px 18px 22px 18px;
  color: #20334A;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal h3 {
  color: #F6C145;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.cookie-category label {
  font-size: 1.08rem;
  flex: 1 1 auto;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #B1C1D1;
  border-radius: 22px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .18s;
  margin-right: 4px;
}
.cookie-switch:checked {
  background: #F6C145;
}
.cookie-switch::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: left .18s cubic-bezier(.62,0,.21,1);
}
.cookie-switch:checked::before {
  left: 18px;
}
.cookie-close-btn {
  position: absolute;
  top: 16px;
  right: 14px;
  background: #B1C1D1;
  color: #20334A;
  border: none;
  font-size: 1.38rem;
  padding: 2px 10px;
}
.cookie-close-btn:focus, .cookie-close-btn:hover {
  background: #F6C145;
  color: #fff;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1220px) {
  .container {
    max-width: 99vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 998px) {
  .footer-brand {
    margin-bottom: 14px;
  }
  .footer-menu,
  .footer-contact,
  .footer-hours {
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.29rem;
  }
  header .cta-btn {
    display: none;
  }
  .hero-section h1 {
    font-size: 1.65rem;
  }
  .feature-grid li {
    min-width: 94vw;
    max-width: 99vw;
    padding: 22px 12px 16px 12px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .event-list li, .card {
    padding: 16px 10px;
    font-size: 1rem;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 34px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .footer-menu {
    gap: 3px;
  }
  .footer-contact {
    gap: 3px;
  }
  .cookie-banner {
    font-size: .99rem;
    padding: 12px 6px 12px 6px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cookie-banner .cookie-buttons {
    margin-left: 0;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 4px;
  }
  .cookie-modal {
    max-width: 94vw;
    padding: 14px 2px 12px 2px;
  }
  .footer-brand img {
    width: 38px;
    height: 38px;
  }
  .hero-section {
    border-radius: 0 0 24px 22px / 0 0 16px 23px;
  }
  .feature-grid li {
    border-radius: 16px 16px 16px 12px;
    padding: 16px 7px 12px 7px;
  }
}

/* === MICRO-ANIMATION EFFECTS === */
.cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  box-shadow: 0 3px 14px 0 rgba(246,193,69,0.12);
  transition: transform 0.18s, box-shadow 0.18s, background 0.22s, color 0.22s;
}
.cta-btn:active, .cookie-btn:active, .mobile-menu-toggle:active {
  transform: scale(0.99);
}

/* === VISUAL ARTISTIC EFFECTS === */
.feature-grid li, .testimonial-card, .event-list li {
  border-left: 4px solid #F6C145;
  border-bottom: 2px solid #B1C1D1;
}

/* === OVERRIDES FOR CONSISTENCY === */
.card, .feature-grid li, .testimonial-card, .event-list li {
  margin-right: 0;
  margin-left: 0;
}

/* --- Hide outline for mouse users but show for keyboard navigation --- */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #F6C145;
  outline-offset: 2px;
}

/* --- Ensure no overflow --- */
body {
  overflow-x: hidden;
}
