/* ------------------------------------------------------------
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  background: #F9F6F1;
  color: #2E4952;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
a {
  color: #D6336C;
  text-decoration: none;
  transition: color 0.19s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #F59A23;
}
ul, ol {
  list-style: inside disc;
  margin-top: 12px;
  margin-bottom: 18px;
}
strong {
  font-weight: bold;
}
.container {
  width: 100%;
  max-width: 1224px;
  padding: 0 18px;
  margin: 0 auto;
}

/* ------------------------------------------------------------
TYPOGRAPHY & HEADINGS
------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #6B2C1A;
  margin-bottom: 16px;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.125;
}
h1 {
  font-size: 2.375rem;
  margin-top: 8px;
  text-shadow: 0 2px 12px rgba(246,152,35,0.12);
}
h2 {
  font-size: 1.5rem;
  margin-top: 28px;
  border-left: 7px solid #D6336C;
  padding-left: 12px;
  background: linear-gradient(90deg, #F9F6F1 80%, #F59A23 120%);
}
h3 {
  font-size: 1.15rem;
}
h4 {
  font-size: 1rem;
}
.subtitle {
  font-size: 1.13rem;
  color: #D6336C;
  font-weight: 500;
  margin-bottom: 30px;
}
p, li {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ------------------------------------------------------------
LAYOUT CLASSES & SPACING (MANDATORY)
------------------------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF9F4;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(214,51,108,0.09);
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(107,44,26,0.10);
  position: relative;
  transition: transform .17s, box-shadow .17s;
  padding: 28px 20px;
}
.card:hover, .card:focus-within {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 32px rgba(214,51,108,0.15);
}
.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;
  border-radius: 16px;
  background: #f9f9fa;
  color: #2E4952;
  box-shadow: 0 2px 16px rgba(246,154,35,0.12), 0 0 0 2px #FFEAEA inset;
  margin-bottom: 20px;
  min-width: 260px;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: #2E4952;
  margin-bottom: 12px;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card .testimonial-name,
.testimonial-card div {
  color: #D6336C;
  font-weight: 600;
  font-size: .98em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
}

/* ------------------------------------------------------------
HEADER & NAVIGATION
------------------------------------------------------------- */
header {
  width: 100%;
  background: #FFFFFFFF;
  box-shadow: 0 4px 18px rgba(214,51,108,0.07);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
}
header a img {
  height: 44px;
  margin-right: 24px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2E4952;
  font-weight: bold;
  padding: 7px 10px;
  position: relative;
  border-radius: 8px;
  transition: background 0.19s, color 0.1s;
}
nav a:hover, nav a.active {
  color: #fff;
  background: #D6336C;
}
.cta-btn {
  background: #D6336C;
  color: #fff !important;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 3px 22px rgba(246,154,35,0.14);
  margin-left: 32px;
  margin-right: 0;
  cursor: pointer;
  transition: background .13s, transform .13s, box-shadow .13s, color .13s;
  text-shadow: 0 1px 6px rgba(214,51,108,0.04);
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F59A23;
  color: #fff !important;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 6px 28px rgba(214,51,108,0.18);
}
.mobile-menu-toggle {
  display: none;
  background: #F59A23;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  padding: 6px 16px;
  margin-left: 18px;
  cursor: pointer;
  transition: box-shadow 0.15s, background 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #D6336C;
  box-shadow: 0 4px 24px rgba(107,44,26,0.20);
}

/* ------------------------------------------------------------
MOBILE MENU
------------------------------------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #F9F6F1;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 1100;
  box-shadow: -4px 0 40px 0 rgba(214,51,108,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #D6336C;
  font-size: 2rem;
  padding: 6px 16px;
  border: none;
  border-radius: 12px;
  align-self: flex-end;
  margin: 30px 26px 4px 0;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(246,154,35,0.11);
  transition: background .17s, color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F59A23;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 40px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.22rem;
  color: #6B2C1A;
  font-weight: 600;
  padding: 14px 38px;
  background: #fff;
  border-radius: 16px;
  margin: 0 0 6px 0;
  box-shadow: 0 2px 12px rgba(214,51,108,0.065);
  transition: background .16s, color .16s, box-shadow .19s;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #D6336C;
  color: #fff;
  box-shadow: 0 6px 36px rgba(107,44,26,0.16);
}

/* ------------------------------------------------------------
MAIN SECTIONS & CONTENT
------------------------------------------------------------- */
.content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 0 0 0;
}
.feature-grid, .services-list, .service-list-detailed, .team-bios, .blog-previews, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}
.feature-grid > div, .services-list > div, .service-list-detailed > div, .team-bios > div, .blog-previews > article {
  background: #fff;
  padding: 22px 20px 18px 20px;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(246,154,35,0.08);
  transition: transform .13s, box-shadow .13s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  width: calc(33% - 12px);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 8px;
}
.feature-grid h3,
.features-list h3 {
  font-size: 1.11rem;
  color: #D6336C;
}
.services-list > div, .service-list-detailed > div {
  background: #F9F6F1;
  border: 2px solid #F59A23;
}
.service-price {
  margin-top: 8px;
  font-size: 1.15rem;
  color: #F59A23;
  font-weight: 700;
  background: #FFF9F4;
  padding: 2px 14px;
  border-radius: 11px;
  letter-spacing: 0.045em;
}
.category-tag {
  display: inline-block;
  background: #D6336C;
  color: #fff;
  font-size: 0.96rem;
  padding: 2px 12px;
  border-radius: 10px;
  margin-top: 7px;
}
.team-bios > div {
  font-size: 1.09rem;
  background: #FCF0F2;
  color: #6B2C1A;
  border-left: 5px solid #6B2C1A;
  font-style: italic;
}

/* Blog Previews */
.blog-previews article {
  min-width: 210px;
  width: calc(33% - 12px);
  background: #FFFAF1;
}

/* ------------------------------------------------------------
PRICING TABLE
------------------------------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 13px;
  margin: 30px 0 28px 0;
}
.pricing-table th, .pricing-table td {
  border: none;
  padding: 13px 14px;
  font-size: 1.04rem;
  text-align: left;
}
.pricing-table th {
  background: #D6336C;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.04rem;
}
.pricing-table tbody tr {
  background: #fff;
  box-shadow: 0 3px 14px rgba(246,154,35,0.04);
  border-radius: 6px;
}
.pricing-table tr td:last-child {
  color: #F59A23;
  font-weight: bold;
}

/* ------------------------------------------------------------
FOOTER
------------------------------------------------------------- */
footer {
  background: #2E4952;
  color: #fff;
  padding: 42px 0 14px 0;
  margin-top: 90px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.footer-menu {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
}
.footer-menu a {
  color: #F9F6F1;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 13px;
  transition: color .12s, background .12s;
}
.footer-menu a:hover {
  background: #D6336C;
  color: #fff;
}
.contact-info {
  font-size: 0.97rem;
  color: #fff;
  line-height: 1.7;
  text-align: center;
}
.social-links {
  display: flex;
  gap: 19px;
  margin-top: 0px;
}
.social-links a {
  background: #fff;
  padding: 7px 12px 3px 12px;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(214,51,108,0.10), 0 0 0 2px #F59A2362 inset;
  display: flex;
  align-items: center;
  transition: background .13s, box-shadow .13s;
}
.social-links a img {
  display: block;
  width: 24px;
  height: 24px;
}
.social-links a:hover {
  background: #F59A23;
  box-shadow: 0 3px 22px rgba(214,51,108,0.13);
}

/* ------------------------------------------------------------
COOKIE BANNER & MODAL
------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFF2EA;
  color: #2E4952;
  padding: 24px 24px 26px 24px;
  box-shadow: 0 -4px 40px 0 rgba(246,154,35,0.13);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  z-index: 9999;
  font-size: 1.01rem;
  transition: transform .21s cubic-bezier(.62,-0.2,.19,1.65), opacity .1s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-btn,
.cookie-banner .cookie-settings-btn {
  padding: 8px 21px;
  border-radius: 30px;
  font-size: 1rem;
  border: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  margin-right: 7px;
  transition: background .14s, color .13s;
}
.cookie-banner .cookie-btn.accept {
  background: #D6336C;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #F59A23;
  color: #fff;
}
.cookie-banner .cookie-settings-btn {
  background: #2E4952;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #30CFCF;
  color: #2E4952;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 50px rgba(246,154,35,0.18);
  padding: 38px 32px 32px 32px;
  z-index: 10010;
  min-width: 320px;
  max-width: 98vw;
  min-height: 120px;
  font-size: 1.07rem;
  display: none;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal.active {
  display: flex;
  animation: modalOpen .26s cubic-bezier(.85,-0.45,.19,1.65);
}
@keyframes modalOpen { from {opacity:0;transform:translate(-50%,-53%) scale(.92);} to {opacity:1;transform:translate(-50%,-50%) scale(1);} }
.cookie-modal h3 {
  color: #D6336C;
  margin-bottom: 6px;
  font-size: 1.17rem;
}
.cookie-category {
  background: #FCF0F2;
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-toggle input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
.cookie-switch {
  background: #F59A23;
  width: 36px;
  height: 18px;
  border-radius: 9px;
  position: relative;
  display: inline-block;
  margin-left: 9px;
  transition: background .17s;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 7px;
  background: #fff;
  transition: left .13s;
}
.cookie-toggle input[type=checkbox]:checked + .cookie-switch {
  background: #30CFCF;
}
.cookie-toggle input[type=checkbox]:checked + .cookie-switch:before {
  left: 20px;
}
.cookie-modal-footer {
  margin-top: 12px;
  display: flex;
  gap: 14px;
}
.cookie-modal-footer button {
  border-radius: 22px;
  border: none;
  padding: 8px 18px;
  font-weight: 600;
  font-size: 1.01rem;
  background: #D6336C;
  color: #fff;
  cursor: pointer;
  transition: background .13s, color .11s;
}
.cookie-modal-footer button.secondary {
  background: #F59A23;
}
.cookie-modal-footer button:focus, .cookie-modal-footer button:hover {
  background: #2E4952;
  color: #fff;
}

/* ------------------------------------------------------------
MISC INTERACTIVE / TABLES / MAP-EMBED, CONTACT DETAILS
------------------------------------------------------------- */
.map-embed {
  background: #FFFDF6;
  border-radius: 12px;
  padding: 18px 16px;
  margin: 19px 0 10px 0;
  color: #2E4952;
  font-size: 1.04rem;
  box-shadow: 0 2px 10px rgba(246,154,35,0.085);
  font-style: italic;
}
.contact-details {
  margin-bottom: 20px;
  background: #FFFAF1;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 1rem;
  color: #6B2C1A;
}

/* ------------------------------------------------------------
RESPONSIVE DESIGN (MOBILE FIRST!)
------------------------------------------------------------- */
@media (max-width: 1020px) {
  .feature-grid > div,
  .services-list > div,
  .service-list-detailed > div,
  .team-bios > div,
  .blog-previews > article {
    width: calc(50% - 12px);
    min-width: 170px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper {
    padding: 0 0 0 0;
    max-width: 98vw;
  }
  .feature-grid,
  .services-list,
  .service-list-detailed,
  .blog-previews,
  .card-container,
  .testimonial-list,
  .team-bios {
    gap: 14px;
  }
  .feature-grid > div, .services-list > div, .service-list-detailed > div,
  .team-bios > div,
  .blog-previews > article {
    width: 100%;
    min-width: 0;
  }
  .footer-menu {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  header .container {
    flex-wrap: wrap;
    min-height: 62px;
  }
  nav {
    display: none;
  }
  .cta-btn {
    margin-left: auto;
    margin-right: 15px;
    padding: 10px 17px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }

  .testimonial-card {
    flex-direction: column;
    padding: 15px 11px;
    gap: 10px;
    min-width: 0;
    font-size: 1rem;
  }
}
@media (max-width: 560px) {
  h1 {
    font-size: 1.57rem;
  }
  h2 {
    font-size: 1.22rem;
    padding-left: 9px;
    border-left-width: 4px;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    padding: 0;
    max-width: 100vw;
  }
  .pricing-table th, .pricing-table td {
    padding: 9px 7px;
    font-size: 0.95rem;
  }
}

/* Mobile flex direction for text-image-sections */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ------------------------------------------------------------
VIBRANT ENERGETIC COLOR POP EFFECTS & MICRO-INTERACTIONS
------------------------------------------------------------- */
.card, .feature-grid > div, .services-list > div, .service-list-detailed > div, .blog-previews > article {
  border: 2px solid transparent;
  box-shadow: 0 1.5px 8px rgba(246,154,35,0.07);
  transition: border 0.15s, box-shadow 0.14s, transform 0.10s;
}
.card:hover, .feature-grid > div:hover, .services-list > div:hover,
.service-list-detailed > div:hover, .blog-previews > article:hover {
  border: 2px solid #F59A23;
  box-shadow: 0 5px 20px rgba(246,154,35,0.17), 0 0 0 3px #30CFCF33;
  transform: translateY(-5px) scale(1.020);
}

.cta-btn:active {
  background: #30CFCF;
  color: #6B2C1A !important;
}

button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #F59A23;
  outline-offset: 1.5px;
}

/* ------------------------------------------------------------
SCROLLBAR - energetic accent
------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #FFF9F4;
}
::-webkit-scrollbar-thumb {
  background: #D6336C;
  border-radius: 7px;
  border: 2.9px solid #FFF9F4;
}

/* ------------------------------------------------------------
ACCESSIBILITY & CONTRAST (Testimonials/reviews always dark text on light BG)
------------------------------------------------------------- */
.testimonial-card,
.testimonial-list .testimonial-card {
  background: #FFF;
  color: #2E4952;
  border-left: 6px solid #D6336C;
  border-right: 2px solid #F59A23;
  box-shadow: 0 2.5px 18px rgba(30,207,207,0.09);
  font-size: 1.08rem;
}

/* ------------------------------------------------------------
PRINT (disable cookie banner for printing)
------------------------------------------------------------- */
@media print {
  .cookie-banner, .cookie-modal, header .mobile-menu-toggle, .mobile-menu { display: none !important; }
}
