/* --- CSS RESET & BASE --- */
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 {
  scroll-behavior: smooth;
  background: #13181d;
}
body {
  min-height: 100vh;
  background: #13181d;
  color: #F3F7F0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  /* Prevent iOS font size adjust */
  -webkit-text-size-adjust: 100%;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
  box-sizing: border-box;
}
ul, ol {
  padding-left: 24px;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6, .cta-primary, .cta-secondary, nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

h1 { font-size: 2.5rem; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
h2 { font-size: 2rem;   line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
h3 { font-size: 1.375rem; line-height: 1.3; margin-bottom: 12px; }
h4 { font-size: 1.125rem; font-weight: 700; }
.subtitle { font-size: 1.25rem; color: #d4e0e3; font-family: 'Roboto', Arial, sans-serif; margin-bottom: 24px; }
.brand-story, .brand-promise, .review-highlights, .unique-classes-highlight, .included-services {
  color: #cad3cf;
  font-size: 1.05rem;
  margin-bottom: 18px;
}


/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
}
/* Visual separation for dark mode; subtle metallic accent edge */
.section:not(:last-child) {
  box-shadow: 0 2px 20px 0 rgba(24,50,75,0.12), 0 1.5px 0 0 #3d4538 inset;
}

/* Mandatory Card Containers (Flexbox only) */
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #1d232c;
  border-radius: 14px;
  box-shadow: 0 5px 24px 0 rgba(20,24,32,0.18), 0 1px 0 0 #4a5760;
  padding: 24px 20px;
  color: #F3F7F0;
  min-width: 270px;
  flex: 1 1 250px;
  transition: box-shadow 0.24s;
}
.card:hover {
  box-shadow: 0 7px 32px 0 rgba(29,40,48,0.42), 0 1.5px 0 0 #23b074;
  border-color: #23b074;
  z-index: 1;
}
.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;
  background: #F3F7F0;
  color: #18324b;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(24,50,75,0.16);
  flex: 1 1 290px;
  position: relative;
  border-left: 4px solid #23B074;
  transition: box-shadow 0.16s, border-color 0.24s;
}
.testimonial-card span {
  display: block;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-left: auto;
  letter-spacing: 0.05em;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 #23B07455, 0 1px 0 0 #18324B22;
  border-left: 4px solid #18324B;
}

.average-rating {
  margin-top: 16px;
  color: #d4e0e3;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #18324B;
  box-shadow: 0 2px 12px 0 #11181d44;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 14px 0;
}
header a img, .footer-bar a img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: #F3F7F0;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.18s;
  letter-spacing: 0.01em;
  padding: 6px 0;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #23B074;
}
.main-nav .cta-primary {
  margin-left: 18px;
}

/* Mobile menu button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: #F3F7F0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #23B074;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #18324Bdd;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.67,.11,.33,.9);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #F3F7F0;
  background: none;
  border: none;
  position: absolute;
  top: 28px;
  right: 28px;
  cursor: pointer;
  z-index: 1111;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #23B074;
}
.mobile-nav {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  color: #F3F7F0;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  width: 75vw;
  text-align: center;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #23445d;
  color: #23B074;
}
.mobile-nav .cta-primary {
  background: #23B074;
  color: #18324B;
  padding: 12px 30px;
  font-weight: 700;
  border-radius: 7px;
  margin: 0 auto;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav .cta-primary:hover, .mobile-nav .cta-primary:focus {
  background: #1b9e63;
  color: #fff;
}

/* --- MAIN --- */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 60vh;
}

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

/* Hero section edge effect */
section:first-of-type {
  border-bottom: 2px solid #23445d;
  background: linear-gradient(90deg, #171d22 87%, #232729 100%);
}

/* --- FEATURE / SERVICE GRIDS --- */
.feature-grid, .unique-features, .sauna-features, .wellness-services, .benefits-list, .member-benefits, .faq-list, .service-list, .key-facts, .fact-grid, .class-schedule, .arrival-hints {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-bottom: 26px;
  list-style: none;
}
.feature-grid li,
.unique-features li,
.member-benefits li,
.benefits-list li,
.faq-list li,
.sauna-features li,
.arrival-hints li,
.class-schedule li,
.service-list li,
.key-facts li,
.fact-grid li,
.wellness-services li {
  flex: 1 1 250px;
  background: #1d232c;
  padding: 20px 16px;
  border-radius: 8px;
  font-size: 1.05rem;
  box-shadow: 0 1.5px 0 #3e4851 inset;
  color: #F3F7F0;
  margin-bottom: 20px;
  min-width: 230px;
}
.feature-grid li img { height: 44px; margin-bottom: 10px; }
.feature-grid li h3 { margin-top: 0; margin-bottom: 6px; font-size: 1.25rem; }
.service-list span { float: right; font-family: 'Montserrat', Arial, sans-serif; color: #23B074; font-weight: 600; }

/* Tables for Memberships */
.price-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 16px;
}
.price-table th, .price-table td {
  border: 1.5px solid #33495C;
  padding: 10px 12px;
  text-align: center;
  font-size: 1rem;
}
.price-table th {
  background: #18324B;
  color: #23B074;
  font-family: 'Montserrat', Arial, sans-serif;
}
.price-table td {
  background: #232d36;
  color: #F3F7F0;
}
.price-table tr:nth-child(even) td {
  background: #202831;
}

/* --- CALL TO ACTION STYLES --- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.16rem;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 7px;
  text-decoration: none;
  box-shadow: 0 2px 14px 0 #1d232c55;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  margin-top: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.cta-primary {
  background: #23B074;
  color: #18324B;
  border: 2.5px solid #23B074;
}
.cta-primary:hover, .cta-primary:focus {
  background: #1b9e63;
  color: #fff;
  box-shadow: 0 6px 24px 0 #1b9e6325;
  border-color: #1b9e63;
}
.cta-secondary {
  background: #F3F7F0;
  color: #18324B;
  border: 2.5px solid #c0c7cd;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #e7edea;
  color: #23B074;
  border-color: #23B074;
}

.highlighted-cta {
  background: #18324B;
  color: #F3F7F0;
  padding: 32px 24px;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 #16724b25, 0 1px 0 0 #3d4538 inset;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 30px 0 12px 0;
}
.highlighted-cta h2 { color: #23B074; }

/* --- MISC ELEMENTS --- */
.quick-info, .contact-details {
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
}
.quick-info li, .contact-details li {
  margin-bottom: 10px;
  color: #F3F7F0;
  font-size: 1.08rem;
}
.quick-info a,
.contact-details a,
.data-protection-notice a,
.contact-info a {
  color: #23B074;
  text-decoration: underline;
}
.quick-steps ol,
.process-steps {
  padding-left: 24px;
  margin-bottom: 18px;
  color: #F3F7F0;
}
.quick-steps li, .process-steps li { margin-bottom: 8px; }

.map-preview {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #1d232c;
  padding: 18px 16px;
  border-radius: 9px;
  margin-bottom: 24px;
  box-shadow: 0 1px 0 #3e4851 inset;
}
.map-preview img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 8px 0 0;
}

.data-protection-notice {
  margin-top: 10px;
  color: #b4bcbc;
  font-size: 0.98rem;
}

/* --- TESTIMONIAL CAROUSELS AND LISTS --- */
.testimonial-carousel, .testimonial-list, .member-experiences, .success-stories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.testimonial-list .testimonial-card,
.member-experiences .testimonial-card,
.success-stories .testimonial-card {
  flex: 1 1 300px;
  max-width: 500px;
}

/* --- FORMS (if any in the future) --- */
input, textarea, select {
  border-radius: 6px;
  border: 1.5px solid #233042;
  background: #13181d;
  color: #F3F7F0;
  padding: 10px 14px;
  margin-bottom: 12px;
  width: 100%;
  font-size: 1.06rem;
}
input:focus, textarea:focus, select:focus {
  border-color: #23B074;
  outline: none;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #10161b;
  padding: 32px 0 14px 0;
  border-top: 2.5px solid #25394d;
  box-shadow: 0 -2px 10px 0 #18324B29;
}
.footer-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer-menu a {
  color: #b4babf;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  text-decoration: none;
  transition: color 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #23B074;
}
.social-links {
  display: flex; align-items: center; gap: 18px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.1) brightness(1.1) drop-shadow(0 2px 2px #10161b11);
  transition: filter 0.19s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: none;
}
.legal-note {
  flex-basis: 100%;
  text-align: right;
  color: #607889;
  font-size: 0.98rem;
  margin-top: 18px;
}

/* --- FAQ LIST --- */
.faq-list li {
  margin-bottom: 14px;
  background: #20262a;
  padding: 16px 16px 13px 16px;
  border-radius: 7px;
  border-left: 3px solid #23B074;
}
.faq-highlights {
  margin-top: 14px;
  background: #1d232c;
  border-radius: 8px;
  padding: 16px 14px;
  color: #F3F7F0;
}
.faq-highlights h3 {
  margin-bottom: 8px;
  color: #23B074;
}

/* --- UTILITY STYLES --- */
.text-section { margin-bottom: 18px; }

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1d232c;
  color: #F3F7F0;
  padding: 20px 28px;
  box-shadow: 0 -3px 24px #000a1a33;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  border-top: 3px solid #23B074;
  transition: transform 0.29s cubic-bezier(.62,.08,.25,1), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #F3F7F0;
  margin-bottom: 5px;
  font-size: 1rem;
}
.cookie-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 6px;
  padding: 11px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  margin-right: 0;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-banner .accept {
  background: #23B074;
  color: #18324B;
  border-color: #23B074;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #1b9e63;
  color: #fff;
  border-color: #1b9e63;
}
.cookie-banner .reject {
  background: #f3f7f0;
  color: #18324b;
  border-color: #c0c7cd;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #e7edea;
  color: #18324b;
  border-color: #23B074;
}
.cookie-banner .settings {
  background: transparent;
  color: #23B074;
  border: 2px solid #23B074;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #18324B;
  color: #F3F7F0;
  border-color: #23B074;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24,50,75,0.85);
  z-index: 2100;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #232d36;
  color: #F3F7F0;
  border-radius: 16px;
  padding: 36px 30px 28px 30px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 6px 40px #11202b66;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 2rem;
  color: #F3F7F0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  line-height: 1;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #23B074;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 140px;
}
.cookie-modal .cookie-category input[type='checkbox'] {
  accent-color: #23B074;
  width: 22px; height: 22px;
}
.cookie-modal .category-note {
  font-size: 0.97rem;
  color: #b4babf;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  border-radius: 6px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  margin-right: 0;
  cursor: pointer;
  border: 2px solid transparent;
}
.cookie-modal .modal-actions .save {
  background: #23B074;
  color: #18324B;
  border-color: #23B074;
}
.cookie-modal .modal-actions .save:hover, .cookie-modal .modal-actions .save:focus {
  background: #1b9e63;
  color: #fff;
  border-color: #1b9e63;
}
.cookie-modal .modal-actions .cancel {
  background: transparent;
  color: #23B074;
  border: 2px solid #23B074;
}
.cookie-modal .modal-actions .cancel:hover, .cookie-modal .modal-actions .cancel:focus {
  background: #18324B;
  color: #F3F7F0;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 1100px) {
  .container { max-width: 980px; }
  .feature-grid li,
  .unique-features li,
  .member-benefits li,
  .benefits-list li,
  .fact-grid li,
  .class-schedule li,
  .service-list li,
  .key-facts li { flex: 1 1 180px; }
}
@media (max-width: 900px) {
  .footer-bar,
  .header-bar { flex-direction: column; align-items: flex-start; gap: 22px;}
  .footer-menu { gap: 15px; }
  .social-links { margin-top: 8px; }
}
@media (max-width: 768px) {
  .content-wrapper { gap: 18px; }
  .section, section { padding: 26px 0; margin-bottom: 32px; }
  .feature-grid, .unique-features, .sauna-features, .wellness-services, .benefits-list, .member-benefits,
  .faq-list, .service-list, .key-facts, .fact-grid, .class-schedule, .arrival-hints {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 12px;
  }
  .feature-grid li,
  .unique-features li,
  .member-benefits li,
  .benefits-list li,
  .fact-grid li,
  .class-schedule li,
  .service-list li,
  .key-facts li { min-width: 0; }
  .testimonial-carousel, .testimonial-list, .member-experiences, .success-stories {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-bar { flex-direction: column; gap: 18px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .container { padding: 0 10px; }
  .legal-note { text-align: left; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.35rem; }
  .container {max-width: 97vw;}
  .section, section { padding: 16px 0; }
  .highlighted-cta { padding: 18px 8px; }
}

/* --- ANIMATION/MICRO-INTERACTION --- */
a, button {
  transition: color 0.18s, background 0.18s, box-shadow 0.17s;
}
.card,
.testimonial-card,
.cta-primary,
.cta-secondary {
  transition: box-shadow 0.25s, background 0.20s, border-color 0.17s, color 0.17s;
}
.card:active,
.cta-primary:active,
.cta-secondary:active {
  transform: translateY(1px) scale(0.99);
}

/* --- FOCUS VISIBILITY --- */
:focus-visible {
  outline: 2.5px solid #23B074;
  outline-offset: 2px;
}

/* --- HIDE/SHOW UTILITIES (js helper classes) --- */
.hide { display: none!important; }
.show { display: block!important; }

/* --- METALLIC ACCENTS for INDUSTRIAL FEEL --- */
.card, .highlighted-cta, .testimonials, .price-table th {
  box-shadow: 0 2px 20px 0 rgba(97,97,97,0.11), 0 1.5px 0 0 #6c7379 inset;
}

/* --- SPECIAL OVERRIDES --- */
table { width: 100%; }

