/* =============================================================
   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,main,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 { -webkit-text-size-adjust:100%; }
body { line-height: 1.5; min-height: 100vh; background:#fcfcfa; color:#1c2230; font-family:'Roboto', Arial, sans-serif; font-size:16px; -webkit-font-smoothing:antialiased; }
*, *::before, *::after { box-sizing: border-box; }
img { max-width:100%; height:auto; border:0; }
ul,ol { list-style-position:inside; padding-left:0; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { margin-bottom: 0.5em; font-family: 'Montserrat', Arial, Helvetica, sans-serif; line-height:1.1; font-weight:700; color:#183153; }
h1 { font-size:2.5rem; }
h2 { font-size:2rem; }
h3 { font-size:1.3rem; }
p { margin-bottom:1em; }
strong { font-weight:700; }

/* ============= BOXES & CONTAINER =============== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(24,49,83,0.08);
  padding: 40px 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border: none;
}
@media (max-width: 990px) {
  .content-wrapper { padding:32px 12px; }
  .section { padding:32px 10px; }
}
@media (max-width: 600px) {
  .container { padding: 0 5vw; }
  .content-wrapper { padding:22px 6px; gap:18px; }
  .section { padding:24px 6px; margin-bottom:36px; }
}

/* =============================================================
   TYPOGRAPHY & LUXURY DETAILS =================================
*/
body {
  background: #fcfcfa;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing:0.015em;
  color: #183153;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; color: #183153; }
@media (max-width:600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size:1.26rem; }
  h3 { font-size: 1.06rem; }
  body { font-size:15px; }
}
.subheadline, .mission-statement {
  font-size: 1.17rem;
  color: #222;
  font-weight:500;
}
.brand-story { font-style:italic; color:#555; }
.confirmation-message, .next-steps { color:#444; }

/* Luxury details */
.cta-primary {
  background: #183153;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 0.92em 2.2em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 10px 0 rgba(24,49,83,0.12);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
  border: 2px solid #F9D885;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2e4891;
  color: #F9D885;
  box-shadow: 0 4px 24px 0 rgba(24,49,83,0.17);
  border-color: #F9D885;
}

/* Luxurious Gold Accent Headings */
h1, h2, .cta-primary {
  position:relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 4px;
  border-radius: 2px;
  margin-top: 0.5em;
  background: #F9D885;
}
@media (max-width:600px) {
  h1::after, h2::after { width: 34px; height: 3px; }
}

/* For all section ul li clarity */
ul li, ol li {
  margin-bottom: .7em;
  font-size: 1em;
}
ul li strong, ol li strong { color:#183153; }

/* ============================================================
   MAIN NAVIGATION - DESKTOP & MOBILE BURGER ==================
*/
header {
  background: #fff;
  border-bottom: 1px solid #F9D885;
  box-shadow: 0 2px 16px 0 rgba(24,49,83,0.03);
  position:sticky; top:0; left:0; width:100%; z-index:30;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  height: 70px;
  min-height: 70px;
  font-family:'Montserrat', Arial, Helvetica, sans-serif;
}
.main-nav a {
  color: #183153;
  font-weight:500;
  font-size:1.07rem;
  padding:7px 12px 7px 12px;
  border-radius:24px;
  transition: background 0.18s, color 0.15s;
  position:relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f9f6ee;
  color: #B88922;
}
.main-nav a.cta-primary {
  margin-left: auto;
  margin-right:0;
}
.main-nav img {
  height:38px; width:auto; vertical-align:middle;
  margin-right:8px;
  border-radius:0;
}

.mobile-menu-toggle {
  display:none;
  position:absolute; top:16px; right:18px;
  background:#fff;
  color:#183153;
  font-size:2.15rem;
  border:none;
  border-radius:8px;
  width:48px; height:48px;
  cursor:pointer;
  z-index:112;
  align-items:center; justify-content:center;
  box-shadow:0 1px 6px 0 rgba(24,49,83,0.05);
  transition: background-color .15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F9D885;
  color: #183153;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,49,83,0.96);
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 4px 32px 0 rgba(24,49,83,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  border:none;
  background:none;
  color:#F9D885;
  font-size:2rem;
  position:absolute; top:22px; right:25px;
  cursor:pointer;
  z-index:121;
  width:48px; height:48px;
  border-radius:8px;
  transition: background 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background:#F9D885;
  color:#183153;
}
.mobile-nav {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;
  height:100vh;
  margin-top:-32px;
}
.mobile-nav a {
  color:#F9D885;
  font-family:'Montserrat', Arial, sans-serif;
  font-size:1.32rem;
  font-weight:600;
  padding:12px 32px;
  border-radius:26px;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background:#183153;
  color:#F9D885;
}

@media (max-width: 990px) {
  .main-nav a.cta-primary { margin-left:0; }
  .main-nav {
    gap:18px;
    padding:0 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display:none;
  }
  .mobile-menu-toggle {
    display:flex;
  }
}
@media (min-width:901px) {
  .mobile-menu { display:none !important; }
  .mobile-menu-toggle { display:none !important; }
}


/* ============================================================
   FLEX UTILITY CLASSES (spacings & alignment)
*/
/* Card container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius:16px;
  box-shadow: 0 2px 20px 0 rgba(24,49,83,0.09);
  position: relative;
  transition: box-shadow .22s;
  border: 1px solid #F9D8851A;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 36px 0 rgba(183,137,34,0.16);
  border-color: #F9D885;
}
.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;
    align-items: flex-start;
    gap: 20px;
  }
  .feature-grid, .testimonial-slider, .testimonial-list, .testimonial-grid {
    flex-direction: column !important;
    gap: 16px !important;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #fcfcfa;
  border: 1.5px solid #18315318;
  box-shadow: 0 1px 8px 0 rgba(24,49,83,0.07);
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow .2s, border-color .2s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 32px 0 rgba(249,216,133,0.19);
  border-color: #F9D885;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== Feature Grids in .feature-grid, .testimonial-slider, .testimonial-grid ==== */
.feature-grid, .testimonial-slider, .testimonial-list, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  background:#fff;
  border-radius:14px;
  padding:26px 20px 20px 20px;
  box-shadow:0 2px 12px 0 rgba(24,49,83,0.09);
  border:1px solid #F9D8851A;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:12px;
  transition: box-shadow .19s, border-color .19s;
}
.feature img { height:38px; width:auto; margin-bottom:8px; }
.feature:hover, .feature:focus {
  box-shadow:0 9px 28px 0 rgba(249,216,133,0.12);
  border-color:#F9D885;
}

/* =================== TESTIMONIALS ======================== */
.testimonial-meta, .testimonial-card .testimonial-meta {
  color: #183153;
  font-size: 1rem;
  margin-top: 0.15em;
  font-weight: 500;
  letter-spacing:0.015em;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.testimonial-card p {
  color: #222;
  font-size: 1.08rem;
  margin-bottom: 0;
}

/* ===== Press/Review Highlights ===== */
.aggregate-ratings, .press-mentions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color:#B88922;
  font-weight:500;
  margin-top: 8px;
}
.aggregate-ratings img, .press-mentions img { height:20px; width:20px; vertical-align:middle; }


/* ================== MAP, CONTACT, SOCIAL =================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom:22px;
}
.contact-info img { height: 22px; width: 22px; margin-right:10px; vertical-align: middle; }
.opening-hours { margin-bottom:16px; color: #555; }
.map-snippet {
  margin-top: 18px;
  display: flex;
  align-items:center;
}
.map-snippet img {
  border-radius:8px;
  height:90px;
  width:160px;
  object-fit: cover;
  box-shadow:0 4px 24px 0 rgba(24,49,83,0.09);
}
.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 18px;
}
.social-links a img {
  height:32px; width:32px;
  transition: filter .22s;
}
.social-links a:hover img,
.social-links a:focus img {
  filter:drop-shadow(0 2px 8px #F9D88580) brightness(0.96);
}

/* =================== FAQ & Directions =================== */
.faq-list {
  margin-bottom: 20px;
}
.faq-list ul {
  margin-top:8px;
}
.directions { margin-top:12px; color:#666; }

/* =================== FOOTER ========================= */
footer {
  background: #183153;
  color: #fff;
  padding: 38px 0 14px 0;
  margin-top:50px;
}
.footer-nav {
  display: flex;
  flex-wrap:wrap;
  gap: 28px;
  padding: 0 12px 18px 12px;
  border-bottom:1px solid #F9D88544;
  margin-bottom: 18px;
  justify-content: center;
}
.footer-nav a {
  color: #F9D885;
  font-size: 1.08rem;
  font-family:'Montserrat', Arial, Helvetica, sans-serif;
  padding: 7px 14px;
  border-radius: 20px;
  font-weight:500;
  transition: background 0.15s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fffef4;
  color: #183153;
}
.footer-contact {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact img {
  height:42px; width:auto;
  border-radius:50%;
  filter: drop-shadow(0 1px 8px #B8892230);
  margin-right: 12px;
}
.footer-contact div {
  color: #fff;
  font-size: 0.99rem;
}
.footer-copy {
  text-align: center;
  color: #F9D885;
  font-size: 0.93rem;
  margin-top: 10px;
  letter-spacing:0.01em;
}
@media (max-width:800px) {
  .footer-contact { flex-direction:column; gap:10px; align-items:flex-start; }
}
@media (max-width:600px) {
  .footer-nav { gap:14px; padding:0 4px 12px 4px; }
  .footer-contact { gap:7px; }
  .footer-contact img { height:30px; }
}

/* === Brand Timeline (About Page) === */
.brand-timeline {
  margin-top: 21px;
  color: #444;
  background: #f8f8f4;
  border-radius: 10px;
  padding: 15px 24px 15px 24px;
  box-shadow: 0 1px 6px rgba(24,49,83,0.08);
  border-left: 4px solid #F9D885;
}
.brand-timeline h3 {
  color: #183153;
  margin-bottom:7px;
  font-size:1.09rem;
}
.brand-timeline ul li {
  font-size:1em;
}

/* Certifications/credentials, teaching methods, etc */
.credentials, .teaching-methods, .impact-stories, .event-highlights, .alumni-successes, .video-quotes {
  background: #f8f8f4;
  border-radius: 10px;
  padding: 14px 22px;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(24,49,83,0.06);
  border-left: 4px solid #F9D885;
}
.credentials h3, .teaching-methods h3, .impact-stories h3, .event-highlights h3, .alumni-successes h3, .video-quotes h3 {
  color: #183153;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* =========== MODALS/COOKIE CONSENT ==================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #fff9eb;
  color: #222;
  display: flex;
  flex-direction:column;
  align-items:center;
  justify-content: flex-start;
  gap:14px;
  box-shadow: 0 -2px 14px 0 rgba(24,49,83,0.10);
  padding: 24px 14px 18px 14px;
  z-index: 1000;
  transition: transform .35s cubic-bezier(.77,0,.18,1), opacity .19s;
}
.cookie-banner.hidden { transform:translateY(200%); opacity:0; pointer-events:none; }
.cookie-banner .cookie-banner-btns {
  display: flex;
  flex-wrap:wrap;
  gap: 18px;
  align-items:center;
  margin-top: 6px;
}
.cookie-banner button {
  border:none;
  outline:none;
  border-radius:26px;
  padding:9px 22px;
  font-family:'Montserrat', Arial,sans-serif;
  font-size: 1rem;
  cursor: pointer;
  font-weight:600;
  margin-right:5px;
  transition: background .17s, color .13s, box-shadow .18s;
}
.cookie-accept {
  background: #183153;
  color: #fff;
  border:2px solid #F9D885;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #F9D885;
  color: #183153;
}
.cookie-reject {
  background: #fff;
  color: #183153;
  border:2px solid #183153;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #183153;
  color:#F9D885;
}
.cookie-settings {
  background: #fff8ef;
  color: #B88922;
  border:1.8px solid #F9D885;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #F9D885;
  color: #183153;
}

/* ===== Cookie Modal ===== */
.cookie-modal-overlay {
  position:fixed; left:0; top:0; width:100vw; height:100vh;
  background:rgba(24,49,83,0.18);
  z-index:1202;
  display:none;
  align-items:center; justify-content:center;
  transition: background .16s;
}
.cookie-modal-overlay.open { display:flex; }
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(24,49,83,0.21);
  padding: 32px 20px 24px 20px;
  width: 94vw;
  max-width: 430px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  position:relative;
  gap: 16px;
}
.cookie-modal h2 { color:#183153; font-size:1.3rem; }
.cookie-modal .cookie-section {
  margin-bottom:8px;
  display:flex;
  flex-direction:row;
  align-items:center;
  gap:12px;
}
.cookie-modal label {
  font-size:1.08rem;
  color:#183153;
  cursor:pointer;
  padding-left:4px;
}
.cookie-toggle {
  appearance:none; width:42px;height:22px; border-radius:11px;
  background:#F9D88588; outline:none; position:relative;
  transition: background .14s;
  cursor:pointer;
  border:none;
}
.cookie-toggle:checked {
  background:#183153;
}
.cookie-toggle:before {
  content:'';
  position:absolute;
  left:2.2px; top:2px;
  width:18px; height:18px;
  border-radius:50%;
  background: #fff;
  transition: transform .18s;
}
.cookie-toggle:checked:before {
  transform: translateX(20px);
}
.cookie-modal-btns {
  display:flex;
  flex-wrap:wrap;
  gap:13px;
  margin-top:12px;
}
.cookie-modal-close {
  position:absolute; top:13px; right:20px;
  background:none;
  color:#B88922;
  border:none;
  font-size:2rem;
  cursor:pointer;
  border-radius:6px;
  width:36px; height:36px;
  transition: background .12s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background:#F9D885;
  color:#183153;
}

/* ===================== BUTTONS & INTERACTIONS ==================== */
button, .cta-primary, input[type="submit"] {
  cursor: pointer;
  outline:none;
  transition: background 0.13s, color 0.13s;
}
button:active, .cta-primary:active {
  filter:brightness(0.97);
}

/* ===================== ANIMATIONS & UTILS =================== */
@media (max-width:600px) {
  .cookie-modal { padding:20px 6px; }
}
.cookie-banner, .cookie-modal, .mobile-menu {
  will-change: transform, opacity;
}

/* ===== GENERAL ACCESSIBILITY ===== */
:focus { outline:3px solid #F9D885; outline-offset:2px; }
::-webkit-input-placeholder { color:#aaa; }
::-moz-placeholder { color:#aaa; }
:-ms-input-placeholder { color:#aaa; }
::placeholder { color:#aaa; }

/* ============================================================
   RESPONSIVE FLEX LAYOUTS ====================================
*/
@media (max-width: 900px) {
  .content-grid, .card-container, .footer-nav {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start !important;
    align-items:stretch;
  }
}

/* =============== PRINT OPTIMIZATION ============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .content-wrapper, .section, body, .container {
    box-shadow:none !important; background:#fff !important; color:#000 !important;
  }
}

/* =============== LUXURY EFFECTS (MICRO-INTERACTIONS) ============== */
.card, .feature, .testimonial-card {
  transition: box-shadow 0.17s, border 0.18s;
}
.card:hover, .feature:hover, .testimonial-card:hover,
.card:focus, .feature:focus, .testimonial-card:focus {
  box-shadow: 0 7px 28px 0 rgba(249,216,133,0.17);
  border-color: #F9D885;
}

/* =============== SCROLLBAR STYLE (LUXURY) ============== */
body::-webkit-scrollbar { width: 11px; background: #F9D88511; }
body::-webkit-scrollbar-thumb { background: #F9D88588; border-radius: 8px; }
body { scrollbar-width: thin; scrollbar-color: #F9D885 #fafaf6; }

/* =============== CLASS OVERRIDES / MISC FIXES ============ */
h1 + .subheadline, h1 + p.subheadline, h1 + .mission-statement {
  margin-top:-14px;
}
.card + .card, .testimonial-card + .testimonial-card, .feature + .feature {
  margin-top: 0 !important;
}
.section:not(:last-child) { margin-bottom:60px; }
.card:not(:last-child), .testimonial-card:not(:last-child), .feature:not(:last-child) {
  margin-bottom: 20px;
}

/************************************************************/
/* END OF STYLE.CSS */
