/* RESET & BASELINE STYLES */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100vh;
  background: #f4ede2;
  color: #1a1c1d;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #425067;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #1a1c1d;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: inside disc;
  margin: 1em 0 1em 1.5em;
}

/* FONT FAMILY HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  color: #1a1c1d;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.625rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, .info-text, blockquote {
  font-size: 1.125rem;
}

@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  p, .info-text, blockquote { font-size: 1rem; }
}

/* LAYOUT WRAPPERS AND SECTIONS */
.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(90deg, #f4ede2 0%, #c7c9d3 100%);
  padding: 80px 0 64px 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.75rem;
  color: #1a1c1d;
  margin-bottom: 18px;
}
.hero p {
  color: #425067;
  margin-bottom: 28px;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 32px 0;
  }
  .hero h1 { font-size: 1.5rem; }
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(33,40,46,0.04);
  padding: 0;
  z-index: 15;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-size: 1rem;
  color: #425067;
  position: relative;
  padding: 6px 0;
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.main-nav a.button.primary {
  background: linear-gradient(90deg, #425067 0%, #1a1c1d 100%);
  color: #f4ede2;
  padding: 10px 22px;
  font-weight: 700;
  border-radius: 22px;
  box-shadow: 0 4px 16px 0 rgba(66,80,103,.08);
  transition: background 0.22s, color 0.18s, box-shadow 0.20s;
}
.main-nav a.button.primary:hover {
  background: #1a1c1d;
  color: #f4ede2;
  box-shadow: 0 4px 24px 0 rgba(33,40,46,.20);
}
.main-nav a:hover,
.main-nav a:focus {
  color: #1a1c1d;
  background: #f4ede2;
  text-decoration: none;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #425067;
  font-size: 2rem;
  line-height: 1;
  display: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 60;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #f4ede2;
  color: #1a1c1d;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,28,29,0.96);
  color: #f4ede2;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.65,0,.35,1);
  will-change: transform;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #f4ede2;
  font-size: 2.5rem;
  position: absolute;
  top: 22px; right: 28px;
  z-index: 205;
  padding: 8px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #425067;
}
.mobile-nav {
  margin: 88px 24px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #f4ede2;
  font-size: 1.3rem;
  padding: 10px 2px;
  border-radius: 6px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #425067;
  color: #f4ede2;
}

/* BUTTONS & LINKS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s, color 0.20s, box-shadow 0.18s, transform 0.14s;
  outline: none;
  white-space: nowrap;
  padding: 10px 28px;
  margin-top: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px 0 rgba(66,80,103,0.07);
}
.button.primary {
  background: linear-gradient(90deg, #425067 0%, #1a1c1d 100%);
  color: #f4ede2;
}
.button.primary:hover, .button.primary:focus {
  background: #1a1c1d;
  color: #f4ede2;
  box-shadow: 0 4px 20px 0 rgba(66,80,103,.12);
  transform: translateY(-2px) scale(1.03);
}
.button.secondary {
  background: #f4ede2;
  color: #1a1c1d;
  border: 2px solid #425067;
}
.button.secondary:hover, .button.secondary:focus {
  background: #425067;
  color: #f4ede2;
  border-color: #425067;
  box-shadow: 0 4px 14px 0 rgba(66,80,103,.11);
  transform: translateY(-1px) scale(1.02);
}
.button.small {
  padding: 6px 18px;
  font-size: 0.93rem;
  border-radius: 14px;
}

/* FEATURES GRID & CARDS */
.features-grid, .review-list, .interview-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(66,80,103,0.08);
  padding: 30px 28px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 360px;
  transition: box-shadow 0.20s, transform 0.16s;
}
.feature img {
  margin-bottom: 16px;
  height: 44px;
  width: 44px;
}
.feature h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  color: #1a1c1d;
}
.feature p {
  font-size: 1rem;
  color: #425067;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 10px 32px 0 rgba(66,80,103,0.16);
  transform: translateY(-2px) scale(1.01);
}
.review-list, .interview-list {
  gap: 24px;
  flex-wrap: wrap;
}
.review-excerpt, .interview-excerpt {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(66,80,103,0.10);
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 390px;
  padding: 30px 24px 20px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.14s;
}
.review-excerpt h3, .interview-excerpt h3 {
  color: #425067;
  margin-bottom: 4px;
}
.review-excerpt .review-rating {
  font-size: 1.1rem;
  color: #1a1c1d;
  margin-bottom: 6px;
  font-weight: bold;
}
.review-excerpt .button.small, .interview-excerpt .button.small {
  margin-top: 8px;
  align-self: start;
}
.review-excerpt:hover, .interview-excerpt:hover {
  box-shadow: 0 8px 22px 0 rgba(66,80,103,0.18);
  transform: translateY(-2px) scale(1.016);
}

@media (max-width: 1024px) {
  .features-grid, .review-list, .interview-list {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .review-excerpt, .interview-excerpt {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(90deg, #c7c9d3 0%, #f4ede2 100%);
  padding: 48px 0;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: 0 4px 18px 0 rgba(66,80,103,0.07);
}
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta-section h2 {
  color: #1a1c1d;
  margin-bottom: 10px;
  font-size: 2rem;
}

/* INFO TEXT */
.info-text {
  color: #425067;
  background: #f6f6f9;
  border-left: 4px solid #425067;
  border-radius: 8px;
  padding: 20px 20px;
  margin-bottom: 12px;
}

/* FILTER BAR */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.filter-bar a {
  color: #425067;
  font-weight: 600;
  border-radius: 5px;
  padding: 3px 10px;
  transition: background 0.16s, color 0.16s;
}
.filter-bar a:hover, .filter-bar a:focus {
  background: #f4ede2;
  color: #1a1c1d;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  color: #1a1c1d;
  box-shadow: 0 2px 10px 0 rgba(66,80,103,0.10);
  border-radius: 18px;
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 420px;
  gap: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.testimonial-card p {
  font-size: 1.13rem;
  margin-bottom: 0;
  color: #1a1c1d;
}
.testimonial-meta {
  color: #425067;
  font-size: 0.92rem;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(66,80,103,0.15);
  transform: translateY(-1px) scale(1.013);
}

/* CONTACT INFO */
.contact-info {
  background: #fff;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 2px 7px 0 rgba(66,80,103,0.09);
  margin-bottom: 20px;
}
.contact-info p, .contact-info ul, .contact-info li { color: #425067; font-size: 1.11rem; }
.contact-info ul { margin: 0 0 0 1.2em; }

.map-placeholder {
  background: #f6f6f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: #425067;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #1a1c1d 0%, #425067 100%);
  color: #f4ede2;
  padding: 56px 0 26px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #f4ede2;
  font-weight: 600;
  font-size: 1rem;
  padding: 3px 1px;
  border-radius: 6px;
  transition: background 0.15s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #f4ede2;
  color: #1a1c1d;
}
.footer-contact {
  font-size: 1rem;
  color: #f4ede2;
}
.footer-contact a {
  color: #f4ede2;
  text-decoration: underline;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #d9ab57;
}
.footer-copy {
  font-size: 0.92rem;
  color: #f4ede2;
  margin-top: 16px;
}
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* CONTENT UTILS */
ul, ol li {
  margin-bottom: 6px;
}
blockquote {
  background: #f6f6f9;
  border-left: 5px solid #425067;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-style: italic;
  color: #425067;
}

/* FLEX SPACING AND ALIGNMENT RULES */
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* GENERAL SPACING AND UTILITIES */
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-40 { margin-top: 40px !important; }
.text-center { text-align: center !important; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .container { padding: 0 8px; }
}
@media (max-width: 600px) {
  .section { padding: 26px 4px; margin-bottom: 34px; }
  .footer-logo img { height: 32px; }
  .hero { padding: 24px 0 16px 0; }
}

/* MICRO-ANIMATIONS & TRANSITIONS */
.button, .main-nav a, .footer-nav a, .feature, .review-excerpt, .interview-excerpt, .testimonial-card, .feature {
  transition: box-shadow 0.20s, color 0.18s, background 0.18s, transform 0.13s;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1a1c1d;
  color: #f4ede2;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 22px 14px 18px 14px;
  z-index: 350;
  box-shadow: 0 -3px 24px 0 rgba(66,80,103,.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
  transition: opacity 0.32s cubic-bezier(.6,0,.3,1), transform 0.32s cubic-bezier(.6,0,.3,1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner__text {
  max-width: 460px;
  font-size: 1rem;
  color: #f4ede2;
}
.cookie-banner__buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner__button {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 14px;
  border: none;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(244,237,226,0.10);
  margin: 0 2px;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s;
}
.cookie-banner__button.accept {
  background: #425067;
  color: #f4ede2;
}
.cookie-banner__button.accept:hover, .cookie-banner__button.accept:focus {
  background: #f4ede2;
  color: #1a1c1d;
  box-shadow: 0 3px 11px 0 rgba(244,237,226,0.22);
}
.cookie-banner__button.reject {
  background: #f4ede2;
  color: #1a1c1d;
}
.cookie-banner__button.reject:hover, .cookie-banner__button.reject:focus {
  background: #1a1c1d;
  color: #f4ede2;
}
.cookie-banner__button.settings {
  background: transparent;
  color: #f4ede2;
  outline: 2px solid #f4ede2;
}
.cookie-banner__button.settings:hover, .cookie-banner__button.settings:focus {
  background: #425067;
  color: #f4ede2;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 5px 10px 5px;
    font-size: 0.95rem;
  }
  .cookie-banner__buttons { gap: 10px; }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 355;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(66,80,103,0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: #f4ede2;
  color: #1a1c1d;
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  width: 94vw;
  max-width: 410px;
  box-shadow: 0 10px 30px 0 rgba(66,80,103,.28);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  right: 20px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #425067;
  cursor: pointer;
  border-radius: 7px;
  padding: 4px 6px;
  transition: background 0.11s, color 0.13s;
}
.cookie-modal__close:hover {
  background: #f4ede2;
  color: #1a1c1d;
}
.cookie-modal__title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #1a1c1d;
  margin-bottom: 2px;
}
.cookie-modal__category {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-modal__category-label {
  font-size: 1rem;
  font-weight: 600;
  flex: 1 1 auto;
}
.cookie-modal__toggle {
  margin-left: 10px;
}
.cookie-modal__category .toggle-switch[disabled], .cookie-modal__category .toggle-switch[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
}
/* Simple Toggle Switch */
.toggle-switch {
  width: 42px;
  height: 24px;
  border-radius: 16px;
  background: #c7c9d3;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.16s;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s, background 0.13s;
  box-shadow: 0 2px 8px 0 rgba(66,80,103,0.12);
}
.toggle-switch input:checked + .toggle-slider {
  left: 20px;
  background: #425067;
}
.toggle-switch.input-disabled, .toggle-switch[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal__footer {
  margin-top: 10px;
  width: 100%;
  display: flex;
  gap: 14px;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal__button {
  padding: 7px 17px;
  border-radius: 14px;
  border: none;
  background: #425067;
  color: #f4ede2;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal__button.secondary {
  background: #f4ede2;
  color: #1a1c1d;
  border: 1px solid #425067;
}
.cookie-modal__button:hover, .cookie-modal__button:focus {
  background: #1a1c1d;
  color: #f4ede2;
}
.cookie-modal__button.secondary:hover, .cookie-modal__button.secondary:focus {
  background: #425067;
  color: #f4ede2;
}

@media (max-width: 600px) {
  .cookie-modal__content { padding: 26px 9px 18px 14px; max-width: 97vw; }
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
  background: #f4ede2;
}
::-webkit-scrollbar-thumb {
  background: #c7c9d3;
  border-radius: 7px;
}

/* HIDE NOISE FOR JS UNAVAILABLE ELEMENTS */
.no-js .mobile-menu, .no-js .cookie-banner, .no-js .cookie-modal {
  display: none !important;
}

/* AUTO ACCESSIBILITY FOCUS RING */
a:focus-visible, .button:focus-visible, .cookie-banner__button:focus-visible, .cookie-modal__button:focus-visible {
  outline: 2px solid #425067;
  outline-offset: 2px;
}

/* INTUITIVE FOCUS WITHIN SUPPORT */
.feature:focus-within, .review-excerpt:focus-within, .interview-excerpt:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 8px 26px 0 rgba(66,80,103,0.18);
  border: 1px solid #425067;
}
