/* === 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, 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;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #171717;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
a:focus {
  outline: 2px solid #254B4F;
  outline-offset: 2px;
}
/* === BASE TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #171717;
  margin-bottom: 16px;
}
h1 { font-size: 2.7rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.2; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
p, li, td, th, span {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #292929;
  font-weight: 400;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}
small {
  font-size: 0.95em;
  color: #454545;
}
/* === LAYOUT CONTAINERS & SPACING === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(18, 18, 18, 0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  min-width: 270px;
  flex: 1 1 270px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #f8f8f8;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(20,20,20,0.09);
  border: 1px solid #ebebeb;
  min-width: 220px;
  flex: 1 1 320px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(37,75,79,0.08), 0 1px 4px rgba(151, 151, 151, 0.04);
  transform: translateY(-3px) scale(1.03);
}
.testimonial-meta {
  font-size: 1.06em;
  color: #171717;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.stars {
  color: #946326;
  font-size: 1.1em;
  letter-spacing: 1.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
  padding: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  min-height: 78px;
  justify-content: space-between;
  gap: 24px;
}
header img {
  height: 38px;
  margin-right: 24px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  padding: 7px 5px;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
nav a:hover, nav a:focus {
  color: #254B4F;
  background: #f7f7f7;
}
.btn-primary {
  background: #171717;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  font-size: 1.07rem;
  letter-spacing: 0.015em;
  font-weight: 600;
  border-radius: 8px;
  padding: 14px 32px;
  transition: background .2s, box-shadow .2s, color .2s, transform .12s;
  box-shadow: 0 2px 16px rgba(30,30,30,0.07);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #254B4F;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 38px rgba(37,75,79,0.11);
}
.btn-secondary {
  background: none;
  color: #254B4F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: 2px solid #254B4F;
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 13px 32px;
  transition: color .2s, background .2s, border-color .2s, transform .15s;
  cursor: pointer;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #254B4F;
  color: #fff;
  border-color: #121212;
  transform: translateY(-2px) scale(1.03);
}
.mobile-menu-toggle {
  background: none;
  color: #171717;
  font-size: 2rem;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  display: none;
  z-index: 51;
  line-height: 1;
  transition: background .18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #f6f6f6;
}
/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,18,18,0.86);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .40s cubic-bezier(.55,0,.1,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  border: none;
  font-size: 2.5rem;
  margin: 30px 28px 10px 0;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .18s;
  z-index: 101;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #292929;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 18px 0;
  min-width: 220px;
  border-radius: 8px;
  text-align: center;
  transition: background .16s, color .18s;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #254B4F;
  color: #fff;
}
/* === HERO SECTION === */
.hero {
  padding: 60px 0 44px 0;
  background: #fff;
  border-bottom: 2px solid #ececec;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #171717;
}
.hero p {
  font-size: 1.13rem;
  color: #222;
  opacity: .97;
  margin-bottom: 10px;
}
/* === FEATURE GRID (Home & About) === */
.feature-grid, .class-types-grid, .team-list, .instructor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid > div, .class-types-grid > div, .team-member, .instructor-profile {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,34,34,0.06);
  padding: 28px 20px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid #ededed;
  transition: box-shadow .18s, transform .15s;
}
.feature-grid > div:hover, .class-types-grid > div:hover, .team-member:hover, .instructor-profile:hover {
  box-shadow: 0 4px 32px rgba(40,40,40,0.08), 0 1px 4px rgba(151, 151, 151, 0.06);
  transform: translateY(-3px) scale(1.025);
}
.feature-grid img,
.class-types-grid img,
.feature-grid svg {
  width: 30px; height: 30px;
  margin-bottom: 4px;
  opacity: 0.86;
}
.feature-grid h3, .class-types-grid h3, .team-member h3, .instructor-profile h3 {
  color: #171717;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 8px;
  margin-top: 0;
}
/* === TEAM/BIO/VALUES OVERVIEW === */
.values-overview, .bio-snippets, .membership-options, .benefits-list {
  background: #f3f3f3;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}
.values-overview h4, .bio-snippets h4, .membership-options h3, .benefits-list h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #171717;
  margin-bottom: 9px;
}
/* === TESTIMONIALS === */
.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
/* === CONTACT SECTIONS === */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 13px;
}
.info-item img {
  width: 24px;
  height: 24px;
}
/* === PRICING, TABLES & FAQ === */
.pricing-table, .timetable-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  font-size: 1.05em;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(18,18,20,0.07);
  overflow: hidden;
}
.pricing-table th, .pricing-table td,
.timetable-table th, .timetable-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #efefef;
  text-align: left;
}
.pricing-table th, .timetable-table th {
  background: #f7f7f7;
  color: #171717;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1em;
}
.pricing-table tr:last-child td,
.timetable-table tr:last-child td {
  border-bottom: none;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fafafa;
  border-radius: 8px;
  padding: 16px 24px;
  border: 1px solid #ebebeb;
  box-shadow: 0 1px 3px rgba(40,40,40,0.04);
  transition: box-shadow .15s;
}
.faq-item:hover {
  box-shadow: 0 4px 14px rgba(37,75,79,0.06);
}
.faq-item h3 {
  font-size: 1.11rem;
  margin-bottom: 6px;
}
/* === CTA / CALLOUT === */
.callout, .cta {
  background: #171717;
  color: #fff;
  border-radius: 16px;
  margin-bottom: 56px;
  /* visually separate */
  box-shadow: 0 3px 24px rgba(37,75,79,0.10);
}
.callout h2, .cta h2,
.callout p, .cta p {
  color: #fff;
}
/* === POLICY PAGES === */
.policy {
  background: #fcfcfc;
  border-radius: 20px;
  min-height: 70vh;
}
.policy h2 {
  margin-top: 28px;
  font-size: 1.18rem;
}
.policy ul {
  margin-bottom: 16px;
}
/* === FOOTER === */
footer {
  background: #171717;
  color: #fff;
  padding: 40px 0 24px 0;
  border-top: 1px solid #212121;
}
footer .container {
  align-items: flex-start;
  gap: 32px;
}
.footer-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #f8f8f8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  opacity: .86;
  transition: color .14s, opacity .13s;
}
.footer-links a:hover,
.footer-links a:focus {
  color: #C19066;
  opacity: 1;
}
.footer-contact {
  font-size: 1rem;
  opacity: .93;
  color: #e7e7e7;
  margin-bottom: 12px;
}
footer small {
  font-size: 94%;
  color: #bdbdbd;
  margin-top: 18px;
}
/* === THANK YOU PAGE === */
.thanks {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.thanks .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: #222;
  color: #fff;
  padding: 24px 8px 16px 8px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 26px;
  width: 100vw;
  max-width: 100%;
  animation: cookieFadeIn .6s cubic-bezier(.27,1.1,.5,1);
  font-size: 1.04rem;
}
.cookie-banner p {
  color: #fff;
  margin: 0 0 4px 0;
}
.cookie-btn {
  background: #254B4F;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 7px;
  padding: 10px 22px;
  margin-left: 10px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .14s, transform .12s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #946326;
  color: #fff;
  transform: translateY(-1px) scale(1.04);
}
.cookie-btn.settings {
  background: #222;
  color: #fff;
  border: 1px solid #fff;
  margin-left: 14px;
}
.cookie-btn.settings:hover {
  background: #fff;
  color: #121212;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,19,22,0.73);
  z-index: 10001;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalOverlayIn .28s;
}
@keyframes modalOverlayIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #171717;
  border-radius: 18px;
  padding: 34px 30px 28px 30px;
  min-width: 290px;
  max-width: 94vw;
  box-shadow: 0 7px 38px rgba(70,70,70,0.19);
  font-size: 1.06em;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  color: #171717;
  margin-bottom: 8px;
}
.cookie-options-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1em;
}
.cookie-option label {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #171717;
}
.cookie-modal-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #e3e3e3;
  border-radius: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  border: 1.3px solid #ddd;
  transition: background .12s, border-color .14s;
}
.cookie-modal-toggle:checked {
  background: #254B4F;
  border-color: #254B4F;
}
.cookie-modal-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(60,60,60,.08);
  transition: transform .14s;
}
.cookie-modal-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none;
  border: none;
  color: #121212;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
  padding: 4px 7px;
  transition: background .16s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #f2f2f2;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
  justify-content: flex-end;
}
.cookie-category-required label {
  color: #254B4F;
  font-weight: bold;
}
.cookie-category-required .cookie-modal-toggle {
  opacity: 0.5;
  pointer-events: none;
}
/* === FORM ELEMENTS === */
input, select, textarea {
  border-radius: 6px;
  border: 1px solid #d5d5d5;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.04em;
  padding: 11px 14px;
  margin-bottom: 17px;
  transition: border-color .14s, box-shadow .14s;
  background: #fff;
}
input:focus, select:focus, textarea:focus {
  border-color: #254B4F;
  box-shadow: 0 0 0 1px #254B4F44;
  outline: none;
}
select {
  cursor: pointer;
  min-width: 140px;
}
/* === FILTERS FOR SCHEDULE === */
.filter-options {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.filter-options span {
  font-weight: 600;
  font-size: 1.07em;
  color: #254B4F;
  margin-right: 4px;
}
/* === RESPONSIVE DESIGN === */
@media (max-width: 1170px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }
  .feature-grid, .class-types-grid, .team-list, .instructor-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 13px;
    min-height: 58px;
  }
  nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding: 0 6px;
  }
  .section, section {
    padding: 32px 6px;
    margin-bottom: 32px;
  }
  .content-wrapper
  {
    gap: 22px;
  }
  .hero {
    padding: 38px 0 28px 0;
  }
  .callout, .cta {
    border-radius: 10px;
    margin-bottom: 26px;
    padding: 32px 12px;
  }
  .feature-grid, .class-types-grid, .team-list, .instructor-grid {
    flex-direction: column;
  }
  .content-grid, .contact-info {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: 94vw;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    min-height: 58px;
  }
  nav {
    display: none;
  }
  .btn-primary, .btn-secondary {
    padding: 13px 16px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid > div, .class-types-grid > div, .team-member, .instructor-profile {
    min-width: 0;
  }
  .thanks .content-wrapper {
    gap: 12px;
  }
  .values-overview, .bio-snippets, .membership-options, .benefits-list {
    padding: 12px;
    margin-bottom: 11px;
  }
  .pricing-table, .timetable-table {
    font-size: 1em;
    padding: 0 2px;
    min-width: 280px;
  }
  .policy {
    border-radius: 8px;
    padding: 13px 7px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 22px 7px 17px 7px;
  }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .hero h1 {
    font-size: 2rem;
  }
}
/* === MICRO-INTERACTIONS & EFFECTS === */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background .18s, color .18s, box-shadow .18s, transform .10s;
}
/* === UTILITY CLASSES === */
.mt-2 { margin-top: 12px!important; }
.mb-2 { margin-bottom: 12px!important; }
.gap-1 { gap: 8px!important; }
.gap-2 { gap: 16px!important; }
.text-center { text-align: center!important; }
.rounded { border-radius: 10px!important; }

/* === FOCUS VISIBILITY === */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible
{ outline: 2px solid #254B4F; outline-offset: 2px; }

/* === COLOR/CONTRAST & ACCESSIBILITY === */
.testimonial-card p,
.testimonial-card .testimonial-meta {
  color: #111;
}

/*********************************
  END OF STYLES
*********************************/
