/* --- CSS RESET & NORMALIZE --- */
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, 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, body {
  height: 100%;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #1C2328;
  color: #F4F4F9;
  line-height: 1.55;
  min-height: 100vh;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
a {
  color: #E9C46A;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #F4F4F9;
  outline: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #E9C46A;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

p, li {
  font-size: 1.125rem;
  color: #F4F4F9;
  margin-bottom: 12px;
}
p.subheadline {
  font-size: 1.25rem;
  color: #c9ccd6;
  margin-bottom: 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}

address {
  font-style: normal;
  color: #F4F4F9;
  margin-bottom: 12px;
}

strong {
  color: #E9C46A;
  font-weight: 700;
}

/* --- GLOBAL STRUCTURE --- */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23292d;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(28,35,40,0.19);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 6px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #1C2328;
  border-bottom: 2px solid #E9C46A;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  gap: 20px;
}
header img {
  height: 44px;
  margin-right: 24px;
  filter: brightness(1.2) contrast(1.2);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #E9C46A;
  font-family: 'Merriweather', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 6px 0 6px 0;
  border-bottom: 2px solid transparent;
  font-size: 1.12rem;
  position: relative;
  transition: color 0.17s, border 0.2s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover, .main-nav a:focus {
  color: #F4F4F9;
  border-bottom: 2px solid #E9C46A;
}

.cta.primary, .cta.secondary {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Merriweather', serif;
  font-size: 1.12rem;
  border-radius: 28px;
  font-weight: bold;
  letter-spacing: 0.04em;
  transition: background 0.24s cubic-bezier(.4,0,.2,1), color 0.2s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
  border: none;
  margin-left: 16px;
  box-shadow: 0 2px 8px 0 rgba(20,28,33,0.09);
  cursor: pointer;
  text-align: center;
  outline: none;
  min-width: 150px;
}
.cta.primary {
  background: #E9C46A;
  color: #23292d;
  border: 2px solid #E9C46A;
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFC857;
  color: #23292d;
  box-shadow: 0 4px 12px 0 rgba(233,196,106,0.10);
}
.cta.secondary {
  background: transparent;
  color: #E9C46A;
  border: 2px solid #E9C46A;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #E9C46A;
  color: #23292d;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #E9C46A;
  font-size: 2.4rem;
  border-radius: 7px;
  padding: 4px 8px;
  border: 2px solid #E9C46A;
  margin-left: 18px;
  z-index: 102;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #E9C46A;
  color: #23292d;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1C2328;
  z-index: 101;
  padding: 32px 40px 16px 40px;
  transform: translateX(-100vw);
  transition: transform 0.37s cubic-bezier(.45,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #E9C46A;
  font-size: 2.1rem;
  padding: 6px 10px;
  margin-bottom: 32px;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid #E9C46A;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E9C46A;
  color: #23292d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.32rem;
  color: #E9C46A;
  padding: 16px 0 6px 0;
  border-bottom: 2px solid transparent;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  transition: color 0.2s, border 0.2s cubic-bezier(.4,0,.2,1);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4F4F9;
  border-bottom: 2px solid #E9C46A;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO & MAIN SECTIONS --- */
.hero {
  margin-bottom: 60px;
  background: linear-gradient(104deg, #23292d 65%, #264653 100%);
  box-shadow: 0 2px 14px rgba(30,34,37,0.21);
  border-radius: 16px 16px 12px 12px;
  min-height: 270px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 275px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 730px;
  gap: 14px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 140px;
    margin-bottom: 34px;
    border-radius: 10px;
  }
  .hero .container {
    min-height: 120px;
    padding: 40px 6px 26px 6px;
  }
  .hero .content-wrapper{
    max-width: 100%;
  }
}

/* --- FEATURE, CARD & FLEX LAYOUTS --- */
.features {
  width: 100%;
  margin-bottom: 60px;
  background: #22272C;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(28,35,40,0.11);
  padding: 40px 0 30px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #23292d;
  padding: 28px 24px 22px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(28,35,40,0.07);
  min-width: 230px;
  max-width: 330px;
  flex: 1 1 260px;
  border: 2px solid #31383d;
  min-height: 235px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.2s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  filter: grayscale(32%) brightness(1.3) drop-shadow(0 0 1.5px #1C2328);
  margin-bottom: 2px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 20px 0 rgba(233,196,106,0.19);
  border-color: #E9C46A;
}
@media (max-width: 1024px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    min-width: unset;
    max-width: unset;
    width: 100%;
    min-height: 120px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23292d;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(28,35,40,0.12);
  border: 1.5px solid #37414a;
  transition: box-shadow 0.14s, border-color 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 22px 0 rgba(233,196,106,0.13);
  border-color: #E9C46A;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #E9C46A;
  color: #22272C;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(33,33,33,0.07);
  margin-bottom: 54px;
  padding: 44px 0 40px 0;
}
.testimonials .content-wrapper h2 {
  color: #23292d;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #1C2328;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 #e0d9c0b0;
  padding: 20px 32px;
  margin-bottom: 20px;
  position: relative;
  flex-wrap: wrap;
  min-width: 220px;
  max-width: 680px;
  border-left: 7px solid #264653;
  transition: box-shadow 0.16s, border-color 0.17s;
}
.testimonial-card p {
  color: #23292d;
  font-size: 1.13rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-details span {
  color: #264653;
  font-family: 'Merriweather', serif;
  font-size: 1.04rem;
}
.community-statement {
  margin-top: 18px;
  font-size: 1.12rem;
  color: #1C2328;
  font-weight: bold;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 20px 0 20px 0;
    margin-bottom: 24px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px 12px;
    min-width: unset;
    max-width: unset;
    border-left-width: 5px;
  }
}

/* --- SERVICES/PRICING --- */
.services {
  background: #22272C;
  border-radius: 14px;
  padding: 40px 0 30px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 14px rgba(28,35,40,0.11);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}
.service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #33393E;
  padding: 12px 0;
  color: #F4F4F9;
}
.price {
  background: #E9C46A;
  color: #23292d;
  border-radius: 7px;
  padding: 3px 13px;
  margin-left: 13px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.011em;
}
.pricing-info,
.service-overview,
.service-details,
.service-info,
.club-benefits,
.genre-overview,
.meeting-schedule {
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .service-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }
}

/* --- FOOTER --- */
footer {
  background: #1C2328;
  border-top: 2px solid #E9C46A;
  width: 100%;
  margin-top: 40px;
  padding: 26px 0 12px 0;
}
.footer-menu {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #E9C46A;
  font-size: 1.02rem;
  border-bottom: 1.5px solid transparent;
  font-family: 'Merriweather', serif;
  transition: color 0.19s, border 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F4F4F9;
  border-bottom: 1.5px solid #E9C46A;
}
.footer-meta p {
  color: #F4F4F9;
  font-size: 1.01rem;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* --- LEGAL SECTIONS --- */
.legal {
  background: #23292d;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(28,35,40,0.051);
  margin-bottom: 46px;
  padding: 40px 0 28px 0;
}
.legal ul {
  margin-left: 1em;
  margin-bottom: 18px;
}
.legal li {
  position: relative;
  margin-bottom: 8px;
  font-size: 1.07rem;
  color: #F4F4F9;
  padding-left: 14px;
}
.legal li:before {
  content: '\25A0';
  color: #E9C46A;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.72em;
}
@media (max-width: 768px) {
  .legal {
    padding: 20px 0 12px 0;
    margin-bottom: 28px;
  }
}

/* --- USP/Steps/Highlights --- */
.usp-list, .highlight-list, .steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.usp-list li, .highlight-list li, .steps li {
  color: #E9C46A;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- CONTACT PAGE --- */
.contact {
  background: #23292d;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(28,35,40,0.09);
  margin-bottom: 36px;
  padding: 36px 0 24px 0;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.12rem;
}
.contact-methods a {
  color: #E9C46A;
}
.contact-methods a:hover, .contact-methods a:focus {
  color: #F4F4F9;
}

/* --- FORMS --- */
input, textarea {
  border: 1.5px solid #264653;
  border-radius: 7px;
  background: #1C2328;
  color: #F4F4F9;
  font-size: 1.01rem;
  padding: 7px 14px;
  margin-bottom: 11px;
  width: 100%;
  resize: vertical;
}
input:focus, textarea:focus {
  border-color: #E9C46A;
  outline: none;
}

/* --- UTILITIES --- */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.flex {
  display: flex;
  gap: 24px;
}
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-space { justify-content: space-between; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 600;
  background: #23292d;
  color: #F4F4F9;
  box-shadow: 0 -2px 24px 0 rgba(20,20,20,0.14);
  border-top: 3px solid #E9C46A;
  padding: 26px 28px 20px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  min-height: 60px;
  transition: transform 0.36s cubic-bezier(.42,0,.2,1), opacity 0.31s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner p {
  margin: 0;
  font-size: 1.13rem;
  color: #F4F4F9;
  flex: 1 1 300px;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  min-width: 110px;
  border-radius: 8px;
  background: #E9C46A;
  color: #23292d;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 18px;
  border: none;
  margin: 0 2px;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(233,196,106,0.10);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFC857;
  color: #23292d;
  box-shadow: 0 3px 14px 0 rgba(233,196,106,0.17);
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #E9C46A;
  border: 2px solid #E9C46A;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #E9C46A;
  color: #23292d;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 8px 12px 8px;
    align-items: flex-start;
  }
  .cookie-buttons {
    width: 100%;
    gap: 10px;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(36, 38, 41, 0.46);
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.21s;
}
.cookie-modal {
  background: #23292d;
  color: #F4F4F9;
  border-radius: 18px;
  padding: 32px 26px 24px 26px;
  min-width: 310px;
  max-width: 98vw;
  box-shadow: 0 6px 48px 0 rgba(28,35,40,0.33);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 820;
  animation: modal-in 0.29s cubic-bezier(.48,0,.2,1);
}
@keyframes modal-in {
  0% { transform: translateY(80px) scale(0.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 11px;
  font-size: 1.8rem;
  background: none;
  color: #E9C46A;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E9C46A;
  color: #23292D;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.12rem;
  color: #E9C46A;
  flex-shrink: 0;
}
.cookie-category .toggle {
  margin-left: 8px;
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-category .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #37414a;
  border-radius: 24px;
  transition: background 0.22s;
}
.cookie-category .toggle input:checked + .slider {
  background: #E9C46A;
}
.cookie-category .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-category .toggle input:checked + .slider:before {
  transform: translateX(20px);
  background: #23292d;
}
.cookie-category .permanent {
  font-size: 1.02rem;
  color: #91afbc;
  font-style: italic;
  margin-left: 15px;
}

/* --- MISC/HELP --- */
::-webkit-scrollbar {
  width: 10px;
  background: #22272C;
}
::-webkit-scrollbar-thumb {
  background: #264653;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #E9C46A;
}

/* --- TYPOGRAPHY DETAILS --- */
@media (max-width: 450px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.09rem; }
  p, li { font-size: 1.01rem; }
}

/* --- FOCUS STYLES (for accessibility) --- */
a:focus, button:focus, .cta:focus, input:focus, textarea:focus {
  outline: 2px solid #E9C46A;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #E9C46A33;
}

/* --- ANIMATION TRANSITIONS --- */
.card, .feature-item, .testimonial-card, .cta, .cookie-banner, .cookie-banner button, input, textarea {
  transition-property: box-shadow, border-color, color, background, transform;
  transition-duration: 0.16s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}

/* --- PRINT STYLES --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #23292d; }
}
