/* 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 {
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  line-height: 1.6;
  background: #FFF;
  color: #1A2129;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #EFEDEA;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
  padding: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* BRAND COLORS */
:root {
  --primary: #115173;
  --secondary: #7FB285;
  --accent: #EFEDEA;
  --dark: #1A2129;
  --focus: #206684;
  --art-yellow: #FFDC5E;
  --art-pink: #F99CA2;
  --art-orange: #FFBC7A;
  --art-purple: #B49FEB;
  --white: #FFF;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 6px;
}

p, li, dd {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  color: var(--primary);
  font-weight: 700;
}
.text-section ul {
  padding-left: 20px;
  list-style: outside disc;
}
.text-section ul li {
  margin-bottom: 12px;
}

/* GENERAL CONTAINERS & FLEX SPACING */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}
.header-flex, .footer-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 rgba(17,81,115,0.07);
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(17,81,115,0.12);
  z-index: 2;
}
.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;
  gap: 20px;
  background: var(--art-yellow);
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(17,81,115,0.08);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 350px;
  position: relative;
  font-size: 1rem;
  color: var(--dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 25px 0 rgba(17, 81, 115, 0.16);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.testimonial-name {
  font-family: Raleway, Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  margin-top: 8px;
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-list,
.services-list,
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.features-list li,
.services-list li,
.services-grid li {
  flex: 1 1 210px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(17,81,115,0.09);
  padding: 20px 22px 18px 22px;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 190px;
  max-width: 320px;
  margin-bottom: 8px;
  border-left: 10px solid var(--art-pink);
  position: relative;
}
.features-list li:hover, .services-list li:hover, .services-grid li:hover {
  box-shadow: 0 8px 22px 0 rgba(17,81,115,0.12);
  transform: translateY(-3px) scale(1.02);
  border-left: 10px solid var(--art-orange);
}
.features-list img, .services-list img, .services-grid img {
  margin-bottom: 10px;
  width: 42px;
  height: 42px;
}

.team-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.team-member {
  flex: 1 1 200px;
  background: var(--art-purple);
  color: var(--primary);
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px 0 rgba(17,81,115,0.09);
  margin-bottom: 6px;
}

.certifications-list {
  margin-top: 10px;
  background: var(--accent);
  border-left: 4px solid var(--art-yellow);
  border-radius: 10px;
  padding: 12px 18px 8px 20px;
}
.certifications-list h3 {
  font-size: 1.05rem;
  color: var(--secondary);
}
.certifications-list ul li {
  color: var(--primary);
  margin-bottom: 5px;
}

.price-inclusions ul {
  list-style: disc inside;
  color: var(--primary);
}
.price-inclusions ul li {
  margin-bottom: 8px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--accent);
  color: var(--dark);
}
.pricing-table th {
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.faq-list {
  margin-top: 10px;
}
.faq-list dt {
  font-family: 'Raleway', Arial, sans-serif;
  color: var(--primary);
  font-weight: bold;
  margin-top: 16px;
}
.faq-list dd {
  margin-left: 0;
  margin-bottom: 10px;
  color: var(--dark);
  background: var(--accent);
  padding: 8px 14px;
  border-radius: 6px;
}

/* HERO & BACKGROUND SECTIONS */
.hero {
  min-height: 300px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 40px 40px 0 0/80px 80px 0 0;
  margin-bottom: 44px;
  box-shadow: 0 10px 48px 0 rgba(127, 178, 133, 0.09);
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px 36px 20px;
  gap: 14px;
}
.hero h1, .hero p {
  color: var(--white);
  text-shadow: 0 2px 6px rgba(17, 81, 115, 0.10);
}
.primary-bg {
  background: var(--primary);
  color: var(--white);
}
.primary-bg h1,
.primary-bg h2,
.primary-bg h3,
.primary-bg p,
.primary-bg ul,
.primary-bg li {
  color: var(--white);
}
.secondary-bg {
  background: var(--secondary);
  color: var(--white);
  border-radius: 24px;
  box-shadow: 0 3px 16px rgba(33,60,15, .07);
}
.secondary-bg h2, .secondary-bg p, .secondary-bg a, .secondary-bg ul, .secondary-bg li {
  color: var(--white);
}
.legal.primary-bg {
  background: var(--primary);
  color: var(--white);
  border-radius: 28px;
}
.legal.primary-bg h1, .legal.primary-bg h2, .legal.primary-bg ul {
  color: var(--white);
}
.legal.primary-bg .text-section {
  color: var(--white);
}

/* CTA BUTTONS */
.cta-primary {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg,var(--art-pink) 0%, var(--secondary) 100%);
  color: var(--primary);
  font-weight: 700;
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1.11rem;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(127,178,133,.085);
  margin: 8px 0 0 0;
  transition: background 0.24s, color 0.18s, box-shadow 0.16s, transform 0.18s;
  text-shadow: none;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, var(--art-orange) 0%, var(--art-purple) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px 0 rgba(17,81,115,0.20);
  transform: translateY(-2px) scale(1.04);
}

/* HEADER, MAIN NAV, LOGO */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 2px 16px 0 rgba(17,81,115,0.04);
}
.logo img {
  display: inline-block;
  width: 48px;
  height: auto;
  margin-right: 12px;
}
nav.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  font-family: 'Raleway', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 24px;
  transition: background 0.16s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--art-yellow);
  color: var(--focus);
}
.main-nav a.cta-primary {
  margin-left: 9px;
  box-shadow: 0 1px 8px 0 rgba(127,178,133,.08);
  font-size: 1.08rem;
  font-weight: 700;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: inline-flex;
  font-size: 2.05rem;
  color: var(--primary);
  background: var(--art-yellow);
  border-radius: 7px;
  border: none;
  cursor: pointer;
  padding: 5px 13px 5px 13px;
  margin-left: 12px;
  transition: background 0.16s, box-shadow 0.16s;
  z-index: 80;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--art-pink);
  color: var(--focus);
  outline: 2px solid var(--secondary);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 35px 0 rgba(17,81,115,0.18);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.87,-0.41,.19,1.44);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: var(--art-pink);
  border-radius: 9px;
  border: none;
  margin: 18px 24px 0 0;
  color: var(--primary);
  padding: 4px 14px 4px 14px;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 120;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--art-yellow);
  color: var(--focus);
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 36px;
  gap: 4px;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Raleway', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.18rem;
  padding: 16px 0 16px 8px;
  border-radius: 8px;
  width: 94%;
  transition: background 0.13s, color 0.13s;
  margin-bottom: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--art-yellow);
  color: var(--focus);
}

/* Only show mobile menu toggle on small screens */
@media (min-width: 1100px) {
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
  nav.main-nav { display: flex !important; }
}
@media (max-width: 1099px) {
  nav.main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 22px 0 10px 0;
  border-radius: 36px 36px 0 0/92px 92px 0 0;
  box-shadow: 0 -6px 36px 0 rgba(127,178,133,0.09);
  margin-top: 60px;
  width: 100%;
}
footer a.logo img {
  width: 46px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: var(--white);
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 0;
  border-radius: 5px;
  transition: color 0.12s, background 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--white);
  font-size: 0.98rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

/* MAP EMBED */
.map-embed {
  margin-top: 12px;
  background: var(--accent);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--primary);
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
}

/* COOKIE BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--white);
  z-index: 110;
  box-shadow: 0 -3px 20px 0 rgba(17,81,115,0.11);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 24px 30px 22px 30px;
  font-size: 1rem;
  transition: transform 0.3s;
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-text {
  flex: 1 1 270px;
  padding-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-btn {
  border: none;
  border-radius: 28px;
  padding: 10px 25px;
  font-family: 'Raleway', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s, box-shadow 0.15s;
  margin-right: 5px;
  cursor: pointer;
  outline: none;
  margin-top: 5px;
}
.cookie-btn.accept {
  background: var(--art-yellow);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--art-pink);
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn:focus, .cookie-btn:hover {
  box-shadow: 0 2px 11px 0 rgba(127,178,133,0.10);
  background: var(--secondary);
  color: var(--white);
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 160;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(17,81,115, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--white);
  color: var(--dark);
  border-radius: 24px;
  min-width: 320px;
  max-width: 90vw;
  box-shadow: 0 8px 38px 0 rgba(127,178,133,0.15);
  padding: 32px 30px 24px 30px;
  position: relative;
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.3rem;
  font-family: 'Raleway', Arial, sans-serif;
  margin-bottom: 16px;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 22px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-modal .cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal .cookie-category input[type=checkbox],
.cookie-modal .cookie-category input[type=radio] {
  accent-color: var(--primary);
  margin-right: 9px;
}
.cookie-modal .cookie-btn.close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  color: var(--art-pink);
  font-size: 1.65rem;
  padding: 0 10px;
  border-radius: 4px;
  box-shadow: none;
}
.cookie-modal .cookie-btn.close:hover {
  background: var(--art-yellow);
  color: var(--focus);
  box-shadow: none;
}

@media (max-width: 768px) {
  html {
    font-size: 94%;
  }
  .container {
    padding: 0 7px;
  }
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .hero {
    min-height: 180px;
    border-radius: 15px 15px 0 0/38px 38px 0 0;
    margin-bottom: 28px;
  }
  .hero .container {
    padding: 33px 5px 15px 5px;
  }
  .footer-flex {
    gap: 16px;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
  .features-list, .services-list, .services-grid {
    flex-direction: column;
    gap: 10px;
  }
  .features-list li, .services-list li, .services-grid li {
    min-width: unset;
    max-width: unset;
  }
  .team-section {
    flex-direction: column;
    gap: 10px;
  }
  .section {
    margin-bottom: 28px;
    padding: 22px 8px;
  }
  nav.main-nav a, .footer-nav a {
    font-size: 1.05rem;
    padding: 7px 10px;
  }
  .cookie-banner {
    padding: 20px 7px 18px 7px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 9px;
  }
  .cookie-modal {
    min-width: 95vw;
    max-width: 98vw;
    padding: 20px 9px 14px 10px;
  }
}

/* UNIQUE ARTISTIC ELEMENTS */
.features-list li:before, .services-list li:before, .services-grid li:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  right: -18px;
  width: 29px;
  height: 29px;
  background: var(--art-orange);
  border-radius: 50%;
  opacity: .14;
  z-index: 1;
}
.features-list li:nth-child(odd):before {
  background: var(--art-pink);
}
.features-list li:nth-child(even):before {
  background: var(--art-yellow);
}
.testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -16px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: var(--art-purple);
  border-radius: 50%;
  opacity: .13;
  z-index: 0;
}

/* FORM ELEMENTS (if any) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid var(--secondary);
  border-radius: 7px;
  padding: 11px 14px;
  background: #FFF;
  margin-bottom: 16px;
  box-shadow: 0 1px 7px 0 rgba(127,178,133,.07);
  transition: border 0.15s, box-shadow 0.15s;
  color: var(--dark);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: 2px solid var(--secondary);
}
label {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
  display: inline-block;
}
::-webkit-input-placeholder { color: #5a707d; }
::-moz-placeholder { color: #5a707d; }
:-ms-input-placeholder { color: #5a707d; }
::placeholder { color: #5a707d; }

/* TABLET ADJUSTMENTS */
@media (max-width: 1000px) {
  .container {
    max-width: 95vw;
  }
  .footer-flex, .header-flex {
    gap: 16px;
    flex-wrap: wrap;
  }
}

/* COLORS & UTILS */
.bg-art-yellow { background: var(--art-yellow) !important; color: var(--primary)!important; }
.bg-art-pink { background: var(--art-pink) !important; color: var(--primary)!important; }
.bg-art-purple { background: var(--art-purple) !important; color: var(--primary)!important; }
.bg-art-orange { background: var(--art-orange) !important; color: var(--primary)!important; }
.text-primary { color: var(--primary)!important; }
.text-secondary { color: var(--secondary)!important; }
.text-white { color: var(--white)!important; }

/* SCROLLBAR (Modern browsers only) */
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

/* ANIMATIONS */
@keyframes fadeInFromBottom {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero, .section, .testimonial-card, .features-list li, .content-wrapper, .card,
.services-list li, .services-grid li {
  animation: fadeInFromBottom .7s cubic-bezier(.65,-0.01,.32,1.12);
}

/* ACCESSIBILITY (FOCUS RINGS) */
a:focus-visible, .cta-primary:focus-visible, .cookie-btn:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2.5px solid var(--art-yellow);
  outline-offset: 2px;
  background: var(--art-yellow);
}

/* BRAND FONTS - Suggest including in <head> */
@import url('https://fonts.googleapis.com/css?family=Raleway:700,900|Roboto:400,500,700&display=swap');
