/* ==================== CSS RESET & NORMALIZE ========================= */
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,
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F6F9;
  color: #184353;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
}

/* ==================== BRAND FONTS ========================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #184353;
  background-color: #F3F6F9;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184353;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
p, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #184353;
  margin-bottom: 16px;
}
blockquote.mission-statement {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #184353;
  background: #FFD98015;
  border-left: 5px solid #FFD980;
  padding: 16px 24px;
  margin-bottom: 24px;
  border-radius: 0 8px 8px 0;
}

strong { font-weight: 600; }
a:hover, a:focus {
  color: #C6A23D;
}

/* ==================== LAYOUT & CONTAINERS ========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(24,67,83,0.07);
  padding: 40px 32px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: #F3F6F9;
  box-shadow: none;
  padding: 40px 24px;
}

/* ==================== FLEXBOX PATTERNS & UTILS ========================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(24,67,83,0.07);
  padding: 24px 18px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  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;
  flex-direction: column;
  align-items: flex-start;
  background: #F3F6F9;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(24,67,83,0.06);
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
  color: #184353;
}
.testimonial-card p {
  color: #184353;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-size: 0.93rem;
  color: #987B27;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==================== MAIN NAVIGATION STYLES ========================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 12px 0 rgba(24,67,83,0.045);
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  min-height: 80px;
  gap: 24px;
}
.logo-link img {
  height: 40px;
  width: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #184353;
  padding: 8px 4px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFD98055;
  color: #184353;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 12px 32px;
  background: #184353;
  color: #fff !important;
  border-radius: 50px;
  box-shadow: 0 2px 10px 0 rgba(24,67,83,0.08);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-left: 18px;
  letter-spacing: 0.05em;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #FFD980;
  color: #184353 !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(24,67,83,0.10);
}

/* ==================== MOBILE NAVIGATION (BURGER MENU) ========================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: #FFD980;
  color: #184353;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  z-index: 170;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FFD980CC;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #184353;
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.38,0.6,0.22,1), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 22px;
  background: #FFD980;
  color: #184353;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px 0 rgba(40,40,40,0.11);
  transition: background 0.1s;
}
.mobile-menu-close:hover {
  background: #FFECB399;
}
.mobile-nav {
  margin-top: 95px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  padding: 8px 0 8px 8px;
  border-radius: 5px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FFD98022;
  color: #FFD980;
}

/* ==================== FEATURE & SERVICE LISTS ========================= */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: #F3F6F9;
  border-radius: 11px;
  padding: 16px 20px;
  min-height: 60px;
  font-size: 1rem;
}
.feature-list img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-top: 3px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  padding-left: 0;
}
.service-list > li,
.service-list > .service-item {
  flex: 1 1 340px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px 0 rgba(24,67,83,0.08);
  padding: 24px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 270px;
}
.service-list h3 {
  font-size: 1.16rem;
  margin-bottom: 3px;
  color: #184353;
}

ul.team-credentials, ul.brand-values {
  margin-bottom: 12px;
  padding-left: 18px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
ul.team-credentials li, ul.brand-values li {
  margin-bottom: 0;
  line-height: 1.55;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 12px;
  padding-left: 0;
}
.workshop-list > li {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px 0 rgba(24,67,83,0.06);
  padding: 20px 18px;
}


/* ==================== TESTIMONIALS ========================= */
.testimonial-card {
  background: #F3F6F9;
  color: #184353;
  display: flex;
  align-items: flex-start;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(24,67,83,0.06);
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-style: italic;
  color: #184353;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #987B27;
}

/* ==================== FOOTER ========================= */
footer {
  background: #fff;
  padding: 40px 0 25px 0;
  border-top: 1px solid #F3F6F9;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 14px;
  color: #184353;
  font-size: 0.97rem;
}
.footer-nav a {
  color: #184353;
  text-decoration: underline;
  margin: 0 7px;
}
.footer-nav a:hover {
  color: #987B27;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  font-size: 0.95rem;
  color: #44697c;
  opacity: 0.9;
}

/* ==================== COOKIE CONSENT BANNER ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  background: #fff;
  color: #184353;
  border-top: 2px solid #FFD980;
  box-shadow: 0 -2px 14px 0 rgba(24,67,83,0.09);
  padding: 22px 18px 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 400;
  transition: transform 0.32s, opacity 0.26s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 0;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 24px;
  background: #FFD980;
  color: #184353;
  border: none;
  transition: box-shadow 0.17s, background 0.17s, color 0.17s;
  margin-left: 3px;
}
.cookie-btn.accept {
  background: #184353;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #FFD980;
  color: #184353;
}
.cookie-btn.reject {
  background: #fff;
  color: #184353;
  border: 1px solid #FFD980;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #FFD98022;
  color: #184353;
}
.cookie-btn.settings {
  background: #F3F6F9;
  color: #184353;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #FFD98055;
  color: #184353;
}

/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,67,83,0.35);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 9px 24px 0 rgba(24,67,83,0.16);
  padding: 36px 30px 30px 32px;
  max-width: 400px;
  width: 95%;
  color: #184353;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFD980;
  color: #184353;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  z-index: 600;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #FFECB3;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 7px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #FFD980;
}
.cookie-category input:disabled {
  opacity: 0.55;
}

/* ==================== RESPONSIVE DESIGN ========================= */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding: 0 8px;
  }
  .main-nav ul {
    gap: 20px;
  }
  .content-wrapper {
    padding: 36px 15px;
  }
}

@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
  }
  .card-container, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.33rem; }
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper, .text-section {
    padding: 25px 5vw;
    margin-bottom: 40px;
    font-size: 0.97rem;
  }
  .section {
    margin-bottom: 34px;
    padding: 23px 2vw;
  }
  .service-list, .card-container, .content-grid, .workshop-list {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-info {
    flex-direction: column;
    gap: 7px;
    font-size: 0.91rem;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.93rem;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

@media (max-width: 560px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.08rem; }
  .main-nav {
    min-height: 60px;
    padding: 0 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 10px 18px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: row;
    gap: 8px;
  }
  .cookie-btn {
    font-size: 0.97rem;
    padding: 9px 10px;
  }
  .cookie-modal {
    padding: 22px 11px 21px 15px;
  }
}

/* ==================== MICRO-INTERACTIONS & TRANSITIONS ========================= */
.card, .service-item, .testimonial-card, .feature-list li, .workshop-list > li {
  transition: box-shadow 0.21s, transform 0.15s;
}
.card:hover, .service-item:hover, .testimonial-card:hover, .feature-list li:hover, .workshop-list > li:hover {
  box-shadow: 0 6px 26px 0 rgba(24,67,83,0.12);
  transform: translateY(-2px) scale(1.015);
}

.cta-btn:active,
.cookie-btn:active {
  transform: scale(0.97);
}

input[type="checkbox"]:focus {
  outline: 2px solid #FFD980;
}

/* ==================== MISC & ACCESSIBILITY ========================= */
::-webkit-input-placeholder { color: #8da3ad; }
::-moz-placeholder { color: #8da3ad; }
:-ms-input-placeholder { color: #8da3ad; }
::placeholder { color: #8da3ad; }

[tabindex]:focus,
button:focus,
a:focus {
  outline: 2px solid #FFD980;
  outline-offset: 2px;
}

/* ==================== END ========================= */
