/* ===============================================
   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, 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100%;
  background: #fff;
  color: #18191a;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #ffffff;
}

img { max-width: 100%; height: auto; display: block; }
a {color: #18191a; text-decoration: none; transition: color .2s; }
a:focus { outline: 2px solid #222; outline-offset: 2px; }
ul, ol { margin-left: 24px; }
strong, b { font-weight: 700; }
hr { border: none; border-top: 1px solid #ececec; margin: 32px 0; }

/* ===============================================
   TYPOGRAPHY
=============================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }
h5, h6 { font-size: 1rem; margin-bottom: 6px; }
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
}

p, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #18191a;
  font-size: 1rem;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.18rem;
  color: #444;
  margin-bottom: 22px;
}

/* ===============================================
   LAYOUT CONTAINERS & SECTIONS
=============================================== */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fafbfc;
  border-radius: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 600px) {
  .section { padding: 26px 8px; }
  .container { padding: 0 8px; }
  .content-wrapper { gap: 10px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s;
  min-width: 250px;
  flex: 1 1 300px;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(32,32,32,0.09);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

.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;
    gap: 16px;
    align-items: flex-start;
  }
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  justify-content: flex-start;
  padding: 20px 26px 20px 24px;
  margin-bottom: 20px;
  background: #fff;
  border-left: 5px solid #18191a;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(0,0,0,0.05);
  min-width: 260px;
  flex: 1 1 300px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #232324;
  font-style: italic;
}
.testimonial-card .rating {
  font-size: 1.3rem;
  color: #222;
  letter-spacing: 0.13rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #727272;
  font-style: normal;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 12px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  flex: 1 1 220px;
  min-width: 210px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .2s;
}
.feature-grid > div:hover {
  box-shadow: 0 7px 24px rgba(0,0,0,0.09);
}

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

.event-list, .plan-grid, .faq-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.event-list > div, .plan-grid > div, .faq-list > div, .service-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 13px rgba(0,0,0,0.07);
  flex: 1 1 285px;
  min-width: 240px;
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.price {
  font-size: 1.4rem;
  font-family: 'Roboto Slab', serif;
  margin-top: 12px;
  color: #18191a;
  font-weight: 700;
  letter-spacing: -0.8px;
}

/* ===============================================
   BUTTONS & INTERACTIVE ELEMENTS
=============================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background: #18191a;
  color: #fff;
  border-radius: 8px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  transition: background .3s, color .2s, box-shadow .2s, transform .16s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #18191a;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  outline: 2px solid #18191a;
  transform: translateY(-3px) scale(1.03);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #fff;
  color: #18191a;
  border: 2px solid #18191a;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #18191a;
  color: #fff;
}

a.btn-primary { text-decoration: none; }

/* ===============================================
   HEADER & NAVIGATION
=============================================== */
header {
  background: #171718;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img { height: 42px; width: auto; display: block; }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav.main-nav a {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .16s;
  position: relative;
  padding: 4px 0;
}
nav.main-nav a:not(.btn-primary):after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width .2s;
  position: absolute;
  bottom: -3px;
  left: 0;
}
nav.main-nav a:hover:not(.btn-primary):after, nav.main-nav a:focus:not(.btn-primary):after {
  width: 80%;
}
nav.main-nav .btn-primary {
  margin-left: 26px;
  background: #fff;
  color: #18191a;
}
nav.main-nav .btn-primary:hover, nav.main-nav .btn-primary:focus {
  background: #18191a;
  color: #fff;
}

/* ===============================================
   MOBILE MENU
=============================================== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 18px;
  transition: color .1s;
  z-index: 30;
}

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

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #171718ff;
  z-index: 1001;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  transform: translateX(100vw);
  transition: transform .33s cubic-bezier(.55, .22, .16, 1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 24px; right: 32px;
  cursor: pointer;
  z-index: 1012;
}

.mobile-nav {
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 38px 38px 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 7px 0;
  width: 100%;
  border-radius: 6px;
  transition: background .18s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff;
  color: #18191a;
}
@media (max-width: 450px) {
  .mobile-nav { padding: 64px 13px 13px 13px; }
}

/* ===============================================
   HERO SECTION
=============================================== */
.hero {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 16px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.04);
  padding: 40px 0 50px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 180px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
}

@media (max-width: 650px) {
  .hero { padding: 20px 0 22px 0; }
}

/* ===============================================
   FORMS, MAPS, UTILITIES
=============================================== */
input, textarea, select {
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 14px;
  background: #fafbfc;
  color: #222;
  transition: border .18s;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border: 1.7px solid #18191a;
}
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafbfc;
  border-radius: 10px;
  min-height: 160px;
  padding: 16px;
  margin-top: 12px;
  box-shadow: 0 2px 14px 0 rgba(0,0,0,0.04);
}

/* ===============================================
   FOOTER
=============================================== */
footer {
  background: #18191a;
  color: #e4e4e4;
  padding: 36px 0 18px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 3px;
}
.footer-nav a {
  color: #e4e4e4;
  font-size: 1rem;
  font-family: 'Roboto Slab', serif;
  transition: color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact, .footer-hours {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 0.98rem;
}
.footer-contact img {
  height: 18px;
  margin-right: 4px;
}
.footer-brand {
  margin-top: 8px;
}
.footer-brand img { height: 40px; filter: grayscale(1) contrast(1.2); }
@media (max-width: 600px) {
  footer .container { gap: 9px; }
}

/* ===============================================
   COOKIE CONSENT BANNER
=============================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #18191a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 20px;
  box-shadow: 0 -2px 20px rgba(15,15,15,0.06);
  font-size: 1rem;
  animation: fadein-banner .8s;
}
.cookie-banner p {
  color: #fff;
  margin: 0 0 0 0;
  font-size: 1.05rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  border: none;
  border-radius: 5px;
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 20px;
  cursor: pointer;
  background: #fff;
  color: #18191a;
  transition: background .18s, color .17s, box-shadow .16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #18191a;
  color: #fff;
  outline: 2px solid #fff;
}
.cookie-banner .btn-cookie-settings {
  background: #fff;
  color: #18191a;
  border: 1.3px solid #b1b1b1;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: #18191a;
  color: #fff;
  border-color: #fff;
}
@keyframes fadein-banner {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 7px;
    font-size: 0.95rem;
  }
}

/* ===============================================
   COOKIE CONSENT MODAL
=============================================== */
.cookie-modal-overlay {
  position: fixed;
  background: rgba(0,0,0,0.45);
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2100;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modal-fade .4s;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes modal-fade {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #18191a;
  border-radius: 14px;
  max-width: 410px;
  box-shadow: 0 10px 34px rgba(20,20,20,0.13);
  padding: 36px 26px 26px 26px;
  animation: modalpop .28s cubic-bezier(.68,-0.55,.27,1.55);
  font-size: 1rem;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
@keyframes modalpop {
  from { opacity: 0; transform: scale(0.82) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 12px;
  color: #18191a;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
  font-size: 1.02rem;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: #18191a;
  width: 19px; height: 19px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px; right: 12px;
  background: none;
  border: none;
  color: #18191a;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus { color: #444; }

/* ===============================================
   RESPONSIVE & GENERAL UTILITIES
=============================================== */
@media (max-width: 950px) {
  .container { max-width: 98vw; padding: 0 8px; }
  .feature-grid, .plan-grid, .event-list, .faq-list, .card-container {
    gap: 16px;
  }
}
@media (max-width: 770px) {
  .card-container, .plan-grid, .content-grid, .feature-grid, .event-list, .faq-list, .testimonial-list, .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .feature-grid > div,
  .plan-grid > div, .event-list > div, .faq-list > div, .service-list > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 550px) {
  .section { margin-bottom: 32px; }
  .event-list, .plan-grid, .feature-grid, .faq-list, .testimonial-list {
    gap: 8px;
  }
  .testimonial-card, .feature-grid > div, .event-list > div, .plan-grid > div {
    padding: 15px 10px 13px 10px;
  }
}

/* ===============================================
   MISC
=============================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #ededed;
}
::-webkit-scrollbar-thumb {
  background: #b6b6b6;
  border-radius: 4px;
}

/* ===============================================
   VISUAL HIERARCHY & SPACING
=============================================== */
main {
  margin-bottom: 32px;
  margin-top: 22px;
  min-height: 60vh;
}

.section, .card, .testimonial-card, .feature-grid > div, .event-list > div, .plan-grid > div {
  margin-bottom: 20px;
}

/* Unmistakable monochrome_sophisticated Elements */
.section, .card, .testimonial-card, .feature-grid > div, .event-list > div, .plan-grid > div, .faq-list > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(0,0,0,0.06);
  border: 1px solid #ececec;
}

hr {
  border: 0;
  border-top: 1.5px solid #dadada;
  margin: 26px 0;
}

/* ===============================================
   ACCESSIBILITY
=============================================== */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #222;
  outline-offset: 2px;
}

/* ===============================================
   HELPER CLASSES
=============================================== */
.hide { display: none !important; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.align-center { align-items: center !important; }
.gap-20 { gap: 20px !important; }

/* Animated micro-interactions */
.card, .feature-grid > div, .plan-grid > div, .event-list > div, .testimonial-card {
  transition: box-shadow .18s, transform .14s;
}
.card:hover, .feature-grid > div:hover, .plan-grid > div:hover, .event-list > div:hover, .testimonial-card:hover {
  box-shadow: 0 9px 32px 0 rgba(32,32,32,0.13);
  transform: translateY(-4px) scale(1.017);
}

/* END OF CSS */
