/* --- CSS RESET & BASE --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  color: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2C3C52;
  background: #F7F7FA;
  min-height: 100vh;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  border-radius: 12px;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 16px;
  padding-left: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
}
a {
  color: #BC9256;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #2C3C52;
  text-decoration: underline;
}
strong {
  font-weight: bold;
}
blockquote {
  background: #fff8eb;
  border-left: 5px solid #D7B86A;
  margin: 16px 0;
  padding: 16px 20px;
  border-radius: 10px 20px 20px 10px;
  font-size: 1.18rem;
  color: #6e521a;
}
hr {
  border: 0;
  border-top: 1px solid #E7E7EE;
  margin: 32px 0;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 992px) {
  .content-wrapper {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- HEADINGS & TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: #2C3C52;
  letter-spacing: -.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #C29A49;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}
p, .subheadline {
  color: #42381f;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  color: #6a5949;
  margin-bottom: 20px;
}

.text-section {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  .subheadline {
    font-size: 1.28rem;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff6e0;
  box-shadow: 0 3px 16px 0 rgba(212,184,106,0.06);
  border-bottom: 1px solid #E7E7EE;
  position: relative;
  z-index: 11;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #2C3C52;
  padding: 7px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFECCC;
  color: #C29A49;
}

.cta-primary {
  font-family: 'Montserrat', sans-serif;
  background: #D7B86A;
  color: #2C3C52;
  border-radius: 22px;
  padding: 11px 30px;
  font-size: 1.09rem;
  font-weight: bold;
  box-shadow: 0 2px 7px 0 rgba(184,142,58,0.10);
  transition: background 0.17s, color 0.17s, transform .11s;
  text-align: center;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  outline: none;
  display: inline-block;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #C29A49;
  color: #fff;
  transform: scale(1.035);
  border-color: #BC9256;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #D7B86A;
  border-radius: 12px;
  font-size: 1.9rem;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  color: #2C3C52;
  border: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.14s;
  box-shadow: 0 2px 6px 0 rgba(212,184,106,0.08);
  z-index: 31;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #f9d79e;
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,60,82,0.94);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 1002;
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.82,.01,.35,1);
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #2C3C52;
  border: none;
  font-size: 2.5rem;
  line-height: 1;
  border-radius: 16px;
  margin: 18px 0 8px 18px;
  padding: 6px 16px 7px 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(215,184,106,0.13);
  transition: background 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #ffeccc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 28px 0 0 28px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.16rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 14px 0;
  border-radius: 10px;
  transition: background .16s, color .16s;
  width: 90%;
  max-width: 320px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffe8bb;
  color: #2C3C52;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width:992px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO --- */
.hero {
  background: linear-gradient(97deg, #FFF8EB 40%, #FFECCC 100%);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 8px 32px 0 rgba(215,184,106,0.10);
  padding-top: 44px;
  padding-bottom: 46px;
  margin-bottom: 50px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  gap: 12px;
}
.hero h1 {
  color: #2C3C52;
}

/* --- FEATURES & CONTENT BLOCKS --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.features-grid > div {
  background: #fffaf2;
  border-radius: 22px;
  box-shadow: 0 4px 14px 0 rgba(212,184,106,0.10);
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 340px;
  padding: 28px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .22s, transform .13s, background .17s;
  margin-bottom: 20px;
}
.features-grid > div:hover {
  box-shadow: 0 8px 30px 2px rgba(184,142,58,0.17);
  transform: translateY(-2px) scale(1.018);
  background: #fffbf7;
}
.features-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}

.club-highlights-list, .clubs-list {
  margin-top: 10px;
  margin-bottom: 24px;
}
.unique-offers {
  background: #fffaea;
  border-radius: 18px;
  padding: 14px 20px;
  color: #a37c2d;
  font-weight: 500;
  box-shadow: 0 1.5px 4px 0 rgba(215,184,106,0.10);
  margin-bottom: 10px;
}

.special-events-highlights {
  margin-top: 16px;
  margin-bottom: 24px;
  background: #fff4d5;
  border-radius: 12px;
  padding: 13px 16px;
  box-shadow: 0 1.5px 4px 0 rgba(215,184,106,0.09);
}

.benefit-comparison {
  margin-top: 24px;
  background: #fffaea;
  border-radius: 14px;
  padding: 18px 18px;
}
.faq-snippet {
  margin-top: 18px;
  background: #fff8eb;
  border-radius: 10px;
  padding: 13px 18px;
}

/* --- PLANS GRID --- */
.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.plans-grid > div {
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 300px;
  background: #fffaf2;
  border-radius: 20px;
  box-shadow: 0 2.5px 12px 0 rgba(212,184,106,0.07);
  padding: 24px 14px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .13s;
}
.plans-grid > div:hover {
  box-shadow: 0 8px 32px 2px rgba(184,142,58,0.17);
  transform: translateY(-2px) scale(1.018);
}

/* --- CARDS, TESTIMONIALS, CALL OUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 4px 14px 0 rgba(212,184,106,0.08);
  padding: 24px 19px;
  transition: box-shadow .20s, transform .11s;
}
.card:hover {
  box-shadow: 0 8px 32px 3px rgba(215,184,106,0.18);
  transform: scale(1.018);
}

.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;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .features-grid, .plans-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff8eb;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 3.5px 12px 0 rgba(215,184,106,0.13);
  color: #2C3C52;
  flex-wrap: wrap;
  font-size: 1.08rem;
  transition: box-shadow .18s, background .13s;
}
.testimonial-card strong {
  font-weight: 700;
  color: #C29A49;
  margin-left: auto;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px 0 rgba(184,142,58,0.14);
  background: #fff3dc;
}

.callout {
  background: #ffe8bb;
  border-radius: 22px;
  padding: 38px 20px 30px;
  margin-bottom: 16px;
  text-align: center;
  box-shadow: 0 3.5px 12px 0 rgba(215,184,106,0.11);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.callout h2 {
  color: #BC9256;
}
@media (min-width: 768px) {
  .callout {
    flex-direction: row;
    text-align: left;
    gap: 24px;
    justify-content: space-between;
  }
}

/* --- FOOTER --- */
footer {
  background: #2C3C52;
  color: #FFF8EB;
  padding: 32px 0 16px 0;
  border-top: 4px solid #D7B86A;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  font-weight: 600;
  color: #FFD370;
}
.footer-brand img {
  width: 38px;
  height: 38px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #FFECCC;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  padding: 5px 8px;
  transition: background .14s, color .14s;
}
.footer-nav a:hover {
  color: #2C3C52;
  background: #FFECCC;
}
.footer-contact {
  font-size: 0.99rem;
  color: #FFE5A9;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: text-bottom;
}

@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }
}

/* --- SECTION SPACING --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px 0 20px;
}
@media (max-width: 600px) {
  section {
    padding: 28px 5vw 0 5vw;
    margin-bottom: 42px;
  }
}

/* --- RESPONSIVE UTILITIES --- */
@media (max-width: 520px) {
  .hero {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  h1 {
    font-size: 2.08rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}

/* --- FORM ELEMENTS --- */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 12px;
  border: 1.5px solid #E7E7EE;
  padding: 10px 13px;
  margin-bottom: 12px;
  box-shadow: 0 1.5px 5px 0 rgba(215,184,106,0.04);
  background: #fffdfa;
  color: #42381f;
  width: 100%;
  transition: border .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #D7B86A;
  outline: none;
}
button, .button {
  font-family: 'Montserrat', sans-serif;
  background: #D7B86A;
  color: #2C3C52;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 20px;
  margin-right: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.17s,
    transform 0.11s;
  box-shadow: 0 2px 6px 0 rgba(212,184,106,0.09);
  outline: 0;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: #C29A49;
  color: #fff;
  transform: translateY(-1px) scale(1.02);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  z-index: 2000;
  bottom: 0; left: 0; right: 0;
  background: #fffdf9;
  color: #614d23;
  box-shadow: 0 -4px 16px 0 rgba(215,184,106,0.13);
  padding: 26px 10vw 20px 8vw;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  border-top: 3px solid #d7b86a;
  transition: transform .32s cubic-bezier(.7,.3,.25,1);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(130%);
  transition: transform .22s;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  min-width: 104px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  background: #D7B86A;
  color: #2C3C52;
  border: none;
  transition: background .16s, color .13s;
  cursor: pointer;
}
.cookie-banner button.reject {
  background: #fffdfa;
  border: 1.5px solid #D7B86A;
  color: #C29A49;
}
.cookie-banner button.settings {
  background: #FFECCC;
  color: #2C3C52;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #BC9256;
  color: #fff;
}
.cookie-banner button.settings:hover { background: #F9DCA6; }
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 3vw 8px 3vw;
    font-size: 0.98rem;
    gap: 11px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 8px;
    margin-top: 4px;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2500;
  inset: 0;
  background: rgba(44,60,82,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .23s;
}
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffefb;
  border-radius: 20px;
  box-shadow: 0 12px 55px 5px rgba(215,184,106,0.22);
  padding: 40px 24px 32px 24px;
  max-width: 410px;
  width: 94vw;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 10vh auto 0 auto;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #C29A49;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.01rem;
  margin-bottom: 8px;
}
.cookie-modal .category-desc {
  color: #42381f;
  font-size: 0.99rem;
  margin-bottom: 9px;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ffeccc;
  border-radius: 21px;
  transition: background .15s;
}
.toggle-switch input:checked + .toggle-slider {
  background-color: #D7B86A;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px; width: 16px;
  left: 4px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform .21s;
  box-shadow: 0 2px 5px 0 rgba(212,184,106,0.09);
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal button {
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 14px;
}
.cookie-modal .essential-desc {
  color: #a37c2d;
  font-size: 0.96rem;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 25px 9px 18px 9px;
  }
}

/* --- HELPER FLEX CLASSES (MANDATORY) --- */
.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;
}

/* --- WARM FRIENDLY CUSTOM EFFECTS --- */
.card, .features-grid > div, .testimonial-card, .callout {
  transition: box-shadow .21s, background .18s, transform .15s;
}
.card:hover, .features-grid > div:hover, .testimonial-card:hover, .callout:hover {
  box-shadow: 0 10px 34px 6px rgba(215,184,106,0.13);
  background-color: #FFF9F2;
  transform: translateY(-1px) scale(1.01);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 11px;
  background: #FFF8EB;
}
::-webkit-scrollbar-thumb {
  background: #e6d7b0;
  border-radius: 9px;
}

/* --- SELECTION COLOR --- */
::selection {
  background: #FFECCC;
  color: #2C3C52;
}

/* --- ACCESSIBILITY/CONTRAST --- */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #2C3C52 !important;
}

/* --- ANIMATIONS/MICRO-INTERACTIONS --- */
.cta-primary, button, .main-nav a, .card, .features-grid > div, .testimonial-card, .footer-nav a {
  transition: background 0.14s, color 0.13s, box-shadow .18s, transform .13s;
}

@media (max-width: 480px) {
  .plans-grid > div, .features-grid > div {
    min-width: 100%;
    max-width: unset;
  }
}
