/* --- CSS RESET & NORMALIZATION --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F3E6C4;
  color: #1E3A36;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}

/* --- FONT IMPORTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #91672C;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.17rem; margin-bottom: 14px; }

p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2e2e2e;
  margin-bottom: 0.75em;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 16px;
}

strong {
  font-weight: 700;
  color: #91672C;
}
a {
  color: #91672C;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ae8624;
  text-decoration: none;
}

/* --- SECTIONS, CONTAINERS, GRIDS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px 1px rgba(197,158,86,0.12);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.18s, box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 3px rgba(197,158,86,0.19);
  transform: translateY(-3px) scale(1.02);
}

.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fffbee;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(145,103,44,0.09);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 520px;
  font-size: 1.1rem;
  color: #2c2c2c;
  border-left: 7px solid #eed399;
  transition: box-shadow 0.18s, border-color 0.25s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 4px rgba(145,103,44,0.13);
  border-color: #91672C;
}
.testimonial-card p {
  color: #363636;
  margin-bottom: 12px;
  font-style: italic;
}

.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(145,103,44,0.08);
  padding: 24px 18px;
  min-width: 230px;
  flex: 1 1 220px;
  max-width: 280px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 24px 0 rgba(145,103,44,0.18);
}
.feature-grid img {
  width: 38px;
  background: #F3E6C4;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(233,209,154,0.10);
  margin-bottom: 6px;
}

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

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-list {
  padding-left: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list li {
  list-style: none;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px 12px 20px;
  box-shadow: 0 2px 10px 1px rgba(225,197,141,0.13);
  margin-bottom: 0px;
  position: relative;
  transition: box-shadow 0.18s;
}
.service-list li:hover {
  box-shadow: 0 6px 18px 3px rgba(145,103,44,0.12);
}
.service-desc {
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
  margin-bottom: 8px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.service-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(145,103,44,0.10);
  padding: 20px 17px;
  min-width: 210px;
  flex: 1 1 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
}
.service-grid > div:hover {
  box-shadow: 0 7px 22px 0 rgba(145,103,44,0.16);
}
.service-price {
  font-size: 1rem;
  font-weight: 600;
  color: #91672C;
  margin-top: 6px;
}

.feature-icons {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-top: 12px;
}
.feature-icons img {
  width: 35px;
  border-radius: 10px;
  background: #eed399;
  box-shadow: 0 1px 3px 0 rgba(197,158,86,0.09);
  padding: 4px;
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  background: linear-gradient(90deg, #eed399 0%, #F3E6C4 60%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 38px 0 rgba(145,103,44,0.12);
  margin-bottom: 48px;
  min-height: 190px;
  padding: 56px 0 36px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #91672C;
  font-size: 2.15rem;
  margin-bottom: 12px;
  line-height: 1.14;
}
.hero p {
  font-size: 1.13rem;
  color: #1E3A36;
  margin-bottom: 12px;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #91672C;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  padding: 13px 38px;
  margin: 10px 0 0 0;
  box-shadow: 0 2px 12px 1px rgba(145,103,44,0.11);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.15s, box-shadow 0.18s, transform 0.16s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ae8624;
  color: #fffbe9;
  box-shadow: 0 6px 18px 2px rgba(145,103,44,0.13);
  transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
  background: #eed399;
  color: #91672C;
  font-weight: 700;
  outline: none;
  border: none;
  border-radius: 24px;
  padding: 11px 28px;
  margin: 0 10px 0 0;
  box-shadow: 0 2px 8px 1px rgba(145,103,44,0.10);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.17s, color 0.15s, box-shadow 0.14s, transform 0.12s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #f7e4be;
  color: #ae8624;
  box-shadow: 0 4px 12px 2px rgba(225,197,141,0.13);
}

.btn-tertiary {
  background: transparent;
  color: #91672C;
  font-weight: 600;
  border: 2px solid #eed399;
  border-radius: 24px;
  padding: 10px 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s, border 0.16s;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #eed399;
  color: #91672C;
}

/* --- TABLES --- */
.price-table {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 11px 1px rgba(197,158,86,0.09);
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  overflow: hidden;
  font-size: 1rem;
}
.price-table th, .price-table td {
  padding: 16px 18px;
  text-align: left;
}
.price-table th {
  background: #eed399;
  color: #91672C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
}
.price-table tbody tr {
  border-bottom: 1px solid #f5ecd9;
}
.price-table tr:last-child {
  border-bottom: none;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fffbe9;
  box-shadow: 0 2px 12px 0 rgba(145,103,44,0.08);
  position: relative;
  z-index: 102;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 15px 20px;
  position: relative;
}
header img {
  height: 44px;
  max-width: 170px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-left: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #1E3A36;
  text-decoration: none;
  font-size: 1.01rem;
  border-radius: 13px;
  padding: 7px 14px;
  transition: background 0.15s, color 0.12s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  background: #eed399;
  color: #91672C;
}
header .btn-primary {
  margin-left: auto;
  margin-right: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #91672C;
  font-size: 2rem;
  cursor: pointer;
  z-index: 150;
  margin-left: 15px;
  padding: 5px 12px;
  border-radius: 8px;
  transition: background 0.13s, color 0.12s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eed399;
  color: #ae8624;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(243,230,196, 0.99);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.54,0.07,0.24,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #91672C;
  background: #fffbe9;
  border: none;
  margin: 32px 28px 10px 0;
  border-radius: 14px;
  padding: 8px 16px;
  cursor: pointer;
  box-shadow: 0 2px 7px 0 rgba(225,197,141,0.11);
  transition: background 0.13s;color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #eed399;
  color: #ae8624;
}
.mobile-nav {
  width: 100%;
  padding: 35px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.mobile-nav a {
  width: 100%;
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #1E3A36;
  padding: 15px 28px 15px 38px;
  border-radius: 13px;
  text-decoration: none;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #eed399;
  color: #91672C;
}

/* --- FOOTER --- */
footer {
  background: #FFFBE9;
  color: #1E3A36;
  font-size: 0.975rem;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 20px 0 rgba(193, 161, 71, 0.10);
  margin-top: 64px;
  padding: 22px 0 5px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 6px 20px 0 20px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #91672C;
  text-decoration: none;
  padding: 5px 9px;
  border-radius: 9px;
  font-weight: 600;
  transition: background 0.13s, color 0.12s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #eed399;
  color: #7e5f25;
}
.contact-info {
  color: #665e47;
  font-size: 1rem;
  margin-bottom: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  text-align: center;
}
.contact-info a { color: #91672C; }
.copyright {
  color: #ab8630;
  font-size: 0.98rem;
  padding-bottom: 10px;
  text-align: center;
  margin-top: 6px;
}

/* --- CONTACT --- */
.contact-details {
  background: #fff;
  padding: 18px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 10px 2px rgba(225,197,141,0.13);
  margin-bottom: 20px;
}
.map-embed {
  background: #fffbe9;
  padding: 16px 20px;
  border-radius: 13px;
  box-shadow: 0 1px 5px 0 rgba(225,197,141,0.11);
  margin-bottom: 16px;
  font-size: 1rem;
  color: #91672C;
  font-style: italic;
}
.text-section {
  background: #fff;
  padding: 20px 18px;
  border-radius: 15px;
  box-shadow: 0 1px 7px 1px rgba(225,197,141,0.11);
  margin-bottom: 15px;
}

blockquote {
  border-left: 5px solid #eed399;
  padding: 12px 22px;
  font-style: italic;
  background: #fffbe9;
  color: #91672C;
  border-radius: 16px;
  font-size: 1.08rem;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px 0 rgba(225,197,141,0.11);
}

.instructor-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 992px) {
  .container { max-width: 97vw; }
  .feature-grid,
  .service-grid {
    gap: 18px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .service-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .feature-grid > div, .service-grid > div, .card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    padding: 0 12px;
  }
  .hero {
    padding: 36px 0 21px 0;
    border-radius: 0 0 20px 20px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 38px;
  }
  .main-nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu { display: flex; }
}
@media (max-width: 580px) {
  h1 { font-size: 1.47rem; }
  h2 { font-size: 1.21rem; }
  .hero h1 { font-size: 1.18rem; }
  .service-list li, .feature-grid > div, .service-grid > div, .card {
    padding: 13px 10px 10px 10px;
  }
  .feature-icons img { width: 28px; }
  .footer-nav { gap: 10px; }
}
@media (max-width: 440px) {
  .container, footer .container { padding: 0 4px; }
}
@media (max-width: 490px) {
  .contact-details, .map-embed, .text-section {
    padding: 11px 7px;
  }
}

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 20px; }
  .content-wrapper, .instructor-list { gap: 16px; }
  .testimonial-card { max-width: 97vw; }
}

/* --- MICRO-INTERACTIONS, TRANSITIONS --- */
a, .btn-primary, .btn-secondary, .btn-tertiary, .main-nav a, .footer-nav a {
  transition: background 0.14s, color 0.14s, box-shadow 0.16s, transform 0.13s;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fffbe9;
  color: #1E3A36;
  box-shadow: 0 -2px 18px 0 rgba(145,103,44,0.16);
  z-index: 2500;
  padding: 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 1rem;
  border-radius: 17px 17px 0 0;
  transition: transform 0.29s, opacity 0.13s;
  opacity: 1;
  pointer-events: all;
}
.cookie-banner.hide {
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 270px;
  max-width: 470px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button,
.cookie-banner .btn-primary,
.cookie-banner .btn-tertiary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 0.98rem;
  border-radius: 20px;
  padding: 10px 25px;
  min-width: 100px;
}
.cookie-banner .btn-primary { background: #91672C; color: #fff; }
.cookie-banner .btn-primary:hover { background: #ae8624; }
.cookie-banner .btn-secondary { background: #eed399; color: #91672C; }
.cookie-banner .btn-secondary:hover { background: #f7e4be; color: #ae8624; }
.cookie-banner .btn-tertiary {
  background: transparent; border: 2px solid #eed399; color: #91672C;
}
.cookie-banner .btn-tertiary:hover { background: #eed399; color: #91672C; }

@media (max-width: 590px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 7px;
    font-size: 0.97rem;
  }
  .cookie-banner-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .cookie-banner-content { max-width: 100vw; }
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: rgba(243,230,196, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fffbe9;
  border-radius: 21px;
  box-shadow: 0 7px 30px 0 rgba(145,103,44,0.18);
  padding: 32px 26px;
  min-width: 320px;
  max-width: 97vw;
  color: #1E3A36;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  animation: cookieModalIn 0.34s cubic-bezier(.64,.09,.29,1.13);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: scale(0.92) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h2 { color: #91672C; margin-bottom: 8px; font-size: 1.19rem; }
.cookie-modal-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
.cookie-modal-content li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal-content label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #91672C;
  font-weight: 600;
}
.cookie-toggle {
  width: 40px; height: 24px;
  display: inline-block;
  background: #eed399;
  border-radius: 12px;
  position: relative;
  margin: 0 7px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 2px; left: 2px; bottom: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(197,158,86,0.12);
  transition: 0.2s;
}
.cookie-toggle input:checked + .slider {
  background: #91672C;
  left: 18px;
}
.cookie-modal-buttons {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-direction: row;
}
@media (max-width: 530px) {
  .cookie-modal-content {padding: 17px 6px; min-width: 95vw;}
}

/* --- GENERAL ACCESSIBILITY --- */
:focus {
  outline: 2px dashed #91672C;
  outline-offset: 2px;
}

/* --- UTILITY & SPACING HELPERS --- */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-8 { margin-top: 8px!important; }
.mb-8 { margin-bottom: 8px!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.gap-8 { gap: 8px!important; }
.gap-16 { gap: 16px!important; }

/* --- END OF CSS --- */
