/* =================== CSS RESET & BASE =================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F4EB;
  color: #252626;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #275141;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #8A6A43;
  outline-offset: 2px;
}

/* =================== BRAND FONTS =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #21382B;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
blockquote {
  font-family: 'Merriweather', serif;
  font-style: italic;
  color: #8A6A43;
  background: #F3EDDF;
  border-left: 3px solid #8A6A43;
  margin: 20px 0;
  padding: 16px 24px;
}

ul, ol {
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}

/* =============== LUXURY PREMIUM UI COLORS =============== */
:root {
  --primary: #275141;
  --secondary: #8A6A43;
  --accent: #F8F4EB;
  --gold: #C3A063;
  --text: #252626;
  --white: #FFFFFF;
  --shadow: 0 4px 14px 0 rgba(39,81,65,0.07);
}

/* =============== GENERAL LAYOUT STRUCTURE =============== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: #F3EDDF;
  border-left: 4px solid var(--gold);
}

/* ============= Section & Card Containers ============= */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.card-container,
.card-grid,
.feature-grid,
.instructor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature-item {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border: 1.5px solid #eee;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(39,81,65,.18);
  transform: translateY(-2px) scale(1.02);
  border-color: var(--gold);
}

.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;
  background: #FAF6EF;
  border-radius: 16px;
  border-left: 5px solid var(--gold);
  box-shadow: 0 2px 12px #c3a0630d;
  padding: 20px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.team-overview, .package-overview, .booking-policy-overview, .approach-overview {
  background: #f3eddf;
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--primary);
  font-size: 1.02em;
}

.quick-facts {
  background: #F8F4EB;
  border-left: 5px solid var(--gold);
  padding: 12px 18px;
  border-radius: 10px;
  margin-top: 14px;
  color: var(--text);
}
/* ============= Pricing Table ============= */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  margin-bottom: 24px;
  font-size: 1rem;
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 12px;
  text-align: left;
}
.pricing-table th {
  color: var(--primary);
  background: #F3EDDF;
  border-bottom: 2.5px solid var(--gold);
  font-family: 'Merriweather', serif;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #ececec;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}

/* =========== CONTACT DETAILS CARDS =========== */
.contact-info,
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-info img,
.contact-details img {
  width: 22px;
  vertical-align: middle;
  margin-right: 7px;
  display: inline-block;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f3eddf;
  border-radius: 10px;
  padding: 12px 18px;
}
.map-placeholder img {
  width: 26px;
  height: 26px;
}

/* ================ BUTTONS ================== */
.btn-primary, .btn-gold {
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(90deg, var(--gold) 10%, var(--secondary) 90%);
  border: none;
  border-radius: 30px;
  padding: 13px 36px;
  box-shadow: 0 2px 8px #8A6A4330;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s, transform 0.1s;
  cursor: pointer;
  text-align: center;
  text-shadow: 0 1px 2px rgba(39,81,65,0.09);
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  display: inline-block;
}
.btn-primary:hover, .btn-gold:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #F5D389 10%, #c3a063 90%);
  color: var(--primary);
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 22px #c3a06370;
}

.btn-secondary {
  background: var(--accent);
  color: var(--secondary);
  border: 2px solid var(--gold);
  border-radius: 30px;
  padding: 11px 32px;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: none;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--gold);
  color: var(--primary);
}

/* ================ TAGLINE ================ */
.tagline {
  font-family: 'Merriweather', serif;
  color: #8A6A43;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

/* ================ NAVIGATION ================ */
header {
  width: 100%;
  background: var(--white);
  box-shadow: 0 2px 12px #0001;
  position: sticky;
  top: 0;
  z-index: 50;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 16px;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 22px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3EDDF;
  color: var(--secondary);
  outline: none;
}
.main-nav a.btn-primary {
  margin-left: auto;
  margin-right: 0;
  background: linear-gradient(90deg, var(--gold) 10%, var(--secondary) 90%);
  color: var(--white);
  box-shadow: 0 2px 10px #c3a06320;
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
  background: linear-gradient(90deg, #F5D389 10%, #c3a063 90%);
  color: var(--primary);
}
.main-nav img {
  height: 46px;
  margin-right: 15px;
  vertical-align: middle;
}

/* ========== MOBILE NAVIGATION & BURGER MENU ========== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 2.05rem;
  background: none;
  border: none;
  color: var(--primary);
  z-index: 201;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  color: var(--gold);
  outline: 2px solid var(--gold);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,81,65,0.97);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 68px;
  z-index: 500;
  transform: translateX(-100vw);
  transition: transform 0.28s cubic-bezier(0.59,0.02,0,.97);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff1e0;
  font-size: 2.2rem;
  position: absolute;
  top: 16px;
  right: 18px;
  cursor: pointer;
  z-index: 501;
  padding: 6px 12px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin-top: 20px;
  width: 100%;
  padding: 0 32px;
}
.mobile-nav a {
  color: #fffbe9;
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  padding: 11px 10px 11px 0;
  border-radius: 0 16px 16px 0;
  width: 100%;
  transition: background 0.15s, color 0.15s;
  margin-left: 0;
  margin-right: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f3eddf18;
  color: var(--gold);
}

/* =========== FOOTER =========== */
footer {
  background: #274137;
  color: #f8f6f2;
  padding: 44px 0 24px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--gold);
  font-family: 'Merriweather', serif;
  font-size: 1.07rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fffbe9;
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.99rem;
  color: #f3eddf;
  text-align: center;
  margin-top: 8px;
  opacity: 0.96;
}
.footer-contact span {
  margin-right: 10px;
}

/* ========== LUXURY MICRO-INTERACTIONS & SHADOWS ==========  */
.card, .testimonial-card, .feature-item, .content-wrapper, .pricing-table, .team-overview {
  box-shadow: 0 2px 10px #c3a06310;
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 38px #c3a06344;
  transform: translateY(-2px) scale(1.011);
  border-color: var(--gold);
}

/* ============== TESTIMONIALS ============== */
.testimonial-card p {
  font-size: 1.08rem;
  color: #212615;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-card strong {
  font-family: 'Merriweather', serif;
  color: #8A6A43;
  font-size: 1rem;
}
.testimonial-card img {
  width: 24px;
  display: inline-block;
  margin-right: 2px;
}

/* ============== UTILITY SPACING & WHITE SPACE ============== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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; }

/* ========== RESPONSIVE LAYOUT ========== */
@media (max-width: 990px) {
  .container { max-width: 96vw; padding: 0 6vw; }
  .main-nav { max-width: 96vw; }
  .content-wrapper { padding: 24px 12px; }
  .pricing-table th, .pricing-table td { padding: 10px 6px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section { padding-top: 18px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper, .card, .feature-item, .testimonial-card {
    padding: 16px 8px;
    border-radius: 11px;
  }
  .feature-grid, .instructor-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  .container { padding: 0 2vw; }
  .footer-contact {
    font-size: 0.92rem;
  }
}

/* =================== COOKIE BANNER =================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 9998;
  background: var(--white);
  box-shadow: 0 -2px 20px #c3a06333;
  border-top: 3px solid var(--gold);
  padding: 20px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: transform 0.2s, opacity 0.2s;
}
#cookie-banner.hide {
  transform: translateY(170%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-text {
  color: var(--text);
  font-size: 1rem;
}
#cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
#cookie-banner .btn-primary,
#cookie-banner .btn-secondary {
  padding: 8px 22px;
  font-size: 1rem;
}
#cookie-banner .btn-secondary {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: none;
}
#cookie-banner .btn-secondary:hover {
  background: var(--gold);
  color: var(--primary);
}
#cookie-banner .btn-settings {
  background: #e7ddca;
  color: var(--primary);
  border-radius: 24px;
  padding: 8px 22px;
  margin-left: 10px;
  border: 1.5px solid #C3A063;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.14s, color 0.15s;
}
#cookie-banner .btn-settings:hover, #cookie-banner .btn-settings:focus {
  background: var(--gold);
  color: var(--white);
}

/* ===== COOKIE MODAL ===== */
#cookie-modal {
  position: fixed;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: 10010;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 36px #27514140;
  padding: 40px 24px 32px 24px;
  min-width: 340px;
  max-width: 95vw;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  transition: opacity 0.23s;
}
#cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
#cookie-modal h3 {
  font-size: 1.18rem;
  color: var(--gold);
  margin-bottom: 13px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.cookie-category-row label {
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle-switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: inline-block;
}
.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #dbdbdb;
  border-radius: 26px;
  transition: background 0.18s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider {
  background: var(--gold);
}
.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background: var(--white);
  border: 1.5px solid #d2a75a;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-toggle-switch input:checked + .cookie-toggle-slider:before {
  transform: translateX(18px);
  border-color: var(--primary);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
#cookie-modal .btn-primary, #cookie-modal .btn-secondary {
  font-size: 1rem;
  padding: 8px 25px;
}
#cookie-modal .btn-secondary {
  background: none;
  color: var(--gold);
  border: 2px solid var(--gold);
}
#cookie-modal .btn-secondary:hover {
  background: var(--gold);
  color: var(--primary);
}
#cookie-modal .close-modal {
  position: absolute;
  right: 12px;
  top: 10px;
  background: none;
  color: #c3a063;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  color: var(--primary);
}

/* =================== HIDE SCROLL WHEN MOBILE MENU / MODAL =================== */
body.modal-open, body.mobile-menu-open {
  overflow: hidden;
  height: 100vh;
}

/* ========== HIDING / ACCESSIBILITY ========= */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* ========== MISCELLANEOUS / OTHER =========== */
::-webkit-scrollbar {
  width: 9px;
  background: #f8f4eb;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: #e4cfa0;
  border-radius: 5px;
}

::selection {
  background: #f7ecd2;
}

/* ========== PAGE-SPECIFIC (OPTIONAL, IF WANTED) ========= */
.package-overview, .booking-policy-overview {
  border-left: 3.5px solid var(--gold);
}
.approach-overview {
  border-left: 3.5px solid var(--secondary);
}

/* ============= LUXURY GOLD BORDER ACCENTS ============= */
hr {
  border: none;
  border-top: 2px solid var(--gold);
  margin: 38px 0 32px 0;
}

/*************** END ********************************* */
