/* =====================================================
   RESET & NORMALIZATION
   ===================================================== */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FFF;
  font-family: 'Roboto', Arial, sans-serif;
  color: #21243D;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

ul, ol {
  padding-left: 1.5em;
}
a {
  color: #21243D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus-visible {
  outline: 2px dashed #EFA2B4;
  outline-offset: 2px;
}

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #21243D;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; font-weight: 600; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }

.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;

  margin-bottom: 20px;
}

p {
  margin-bottom: 16px;
  color: #21243D;
}

strong {
  font-weight: bold;
}

.text-section {
  margin-bottom: 32px;
  font-size: 1rem;
  color: #21243D;
}

/* ============== LAYOUT ============== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.header-container,
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 72px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(239, 162, 180, 0.08), 0 1.5px 4px #EFA2B420;
  padding: 32px 28px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 10px 44px rgba(239, 162, 180, 0.18), 0 4px 12px #21243D10;
  transform: translateY(-4px) scale(1.025);
}
.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: #FFF;
  color: #21243D;
  border-radius: 20px;
  box-shadow: 0 3px 24px rgba(239, 162, 180, 0.13);
  padding: 28px 26px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 380px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.18s;
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(239, 162, 180, 0.20);
  transform: translateY(-4px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Feature list styling in hero section */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 14px 0;
  list-style: none;
}
.feature-list li {
  background: #EFA2B4;
  color: #21243D;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  box-shadow: 0 3px 16px #EFA2B420;
  transition: box-shadow 0.16s;
}
.feature-list li:hover {
  box-shadow: 0 6px 24px #EFA2B440;
}

/* ============== HERO SECTION ============== */
.hero {
  background: linear-gradient(98deg, #EFA2B4 0%, #FFF 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
  box-shadow: 0 4px 24px rgba(239, 162, 180, 0.16);
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}

/* ============== SERVICES GRID (on home) ============== */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 24px #EFA2B423;
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 360px;
  transition: box-shadow 0.2s, transform 0.17s;
  margin-bottom: 20px;
}
.service-card:hover {
  box-shadow: 0 10px 40px #EFA2B445;
  transform: translateY(-4px) scale(1.025);
}

.learn-more-link {
  color: #EFA2B4;
  text-decoration: underline;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.learn-more-link:hover {
  color: #21243D;
}

/* CTA sections */
.cta {
  background: #EFA2B4;
  border-radius: 40px;
  box-shadow: 0 2px 24px #EFA2B430;
  padding: 40px 20px !important;
  margin-bottom: 40px;
  color: #21243D;
}
.cta .cta-button {
  margin-top: 14px;
}

/* ============== BUTTONS ============== */
.cta-button,
.nav-cta,
button, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  background: #21243D;
  color: #fff;
  box-shadow: 0 3px 24px #21243D24, 0 1.5px 4px #EFA2B430;
  transition: background 0.22s, color 0.18s, box-shadow 0.21s, transform 0.15s;
  text-shadow: none;
  margin-top: 18px;
  margin-bottom: 12px;
}
.cta-button:hover,
.cta-button:focus,
.nav-cta:hover,
.nav-cta:focus {
  background: #EFA2B4;
  color: #21243D;
  box-shadow: 0 6px 32px #EFA2B459, 0 2px 6px #21243D18;
  transform: scale(1.045);
}
.nav-cta {
  margin-left: 18px;
  background: #EFA2B4;
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px #EFA2B429;
}
.nav-cta:hover, .nav-cta:focus {
  background: #21243D;
  color: #fff;
  box-shadow: 0 4px 18px #21243D22;
}
.cookie-btn {
  min-width: 120px;
  padding: 10px 18px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 12px;
  font-size: 1rem;
  border-radius: 16px;
}

/* Inactive cookie btn (Secondary/Reject) */
.cookie-btn.secondary {
  background: #fff;
  color: #21243D;
  border: 2px solid #EFA2B4;
  box-shadow: 0 1px 4px #EFA2B415;
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: #EFA2B4;
  color: #fff;
}

/* Cookie settings btn */
.cookie-btn.settings {
  background: #fff;
  color: #EFA2B4;
  border: 2px dashed #EFA2B4;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #EFA2B4;
  color: #fff;
  border-style: solid;
}

button:active {
  transform: scale(0.97);
}

/* Anchor Buttons */
a.cta-button {
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

/* ============== NAVIGATION ============== */
header {
  background: #fff;
  width: 100%;
  box-shadow: 0 1px 8px #EFA2B410;
  min-height: 72px;
  position: sticky;
  top: 0;
  z-index: 15;
}
.logo img {
  height: 42px;
  width: auto;
  border-radius: 50%;
  background: #EFA2B420;
  padding: 6px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #21243D;
  padding: 6px 15px;
  border-radius: 12px;
  transition: background 0.12s, color 0.16s;
  margin-right: 4px;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #EFA2B4;
  color: #FFF;
}
.main-nav .nav-cta {
  margin-left: 18px;
}

.mobile-menu-toggle {
  font-size: 2rem;
  background: #EFA2B4;
  color: #fff;
  border: none;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.13s, color 0.12s, box-shadow 0.15s;
  box-shadow: 0 2px 12px #EFA2B425;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: #21243D;
  color: #fff;
}

/* ============== MOBILE MENU ============== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 4px 40px #EFA2B435;
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.8, .3, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 30px;
  top: 24px;
  font-size: 2.3rem;
  color: #EFA2B4;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: color 0.13s;
}
.mobile-menu-close:hover {
  color: #21243D;
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #21243D;
  padding: 9px 18px;
  border-radius: 12px;
  transition: background 0.14s, color 0.13s;
  min-width: 150px;
  margin-right: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #EFA2B4;
  color: #fff;
}


/* ============== TESTIMONIALS ============== */
.testimonials-preview {
  background: #fdf6f7;
  border-radius: 32px;
  box-shadow: 0 1px 16px #EFA2B424;
  padding: 36px 0;
  margin-bottom: 50px;
}
.testimonials-preview h2 {
  color: #21243D;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 22px;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #21243D;
  font-style: italic;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #EFA2B4;
  font-size: 0.98rem;
  font-weight: 500;
}

.testimonial-stars {
  color: #EFA2B4;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 2.5px;
}

.see-all-reviews-link {
  color: #EFA2B4;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.16s;
}
.see-all-reviews-link:hover {
  color: #21243D;
}

/* ============== PRICING TABLE ============== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 28px;
  box-shadow: 0 1px 22px #EFA2B410;
  border-radius: 16px;
  overflow: hidden;
}
.pricing-table thead tr {
  background: #EFA2B4;
  color: #fff;
  font-size: 1.02rem;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tbody tr {
  background: #fff;
  border-bottom: 1px solid #EFA2B420;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  font-size: 1rem;
  color: #21243D;
}

/* ============== FOOTER ============== */
footer {
  background: #21243D;
  color: #fff;
  padding: 50px 0 24px 0;
  margin-top: 38px;
  box-shadow: 0 -2px 16px #EFA2B410;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 50px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff4;
  margin-bottom: 8px;
  box-shadow: 0 2px 14px #EFA2B430;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
  opacity: 0.85;
  margin-bottom: 2px;
}
.footer-nav a:hover {
  color: #EFA2B4;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
  color: #fff;
}
.footer-contact img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ============== COOKIE CONSENT BANNER & MODAL ============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #21243D;
  border-top: 4px solid #EFA2B4;
  box-shadow: 0 -3px 17px #EFA2B435;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 26px 18px 18px 18px;
  z-index: 10001;
  transition: transform 0.4s cubic-bezier(.7, .1, .28, 1);
  transform: translateY(100%);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner .cookie-message {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,36,61,0.43);
  z-index: 10002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.cookie-modal-overlay.visible {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #21243D;
  border-radius: 32px;
  max-width: 350px;
  width: 100%;
  box-shadow: 0 8px 40px #EFA2B460, 0 1.5px 6px #21243D17;
  padding: 32px 28px 24px 28px;
  z-index: 10003;
  animation: popin 0.26s cubic-bezier(.7, .1, .28, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes popin {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #EFA2B4;
  font-size: 1.26rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #EFA2B4;
  width: 19px;
  height: 19px;
}
.cookie-category .always {
  color: #93A0B3;
  font-size: 0.94rem;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 1.7rem;
  color: #EFA2B4;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 3px 0 0 0;
  transition: color 0.15s;
}
.cookie-modal-close:hover {
  color: #21243D;
}

/* ============== GALLERY/STAFF/ABOUT STYLING ============== */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}

ul, ol {
  margin-bottom: 18px;
}
li {
  margin-bottom: 6px;
}

/* ============== MISCELLANEOUS ============== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #EFA2B4;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #fff;
}

/* Artistic accent lines for headers */
h1, h2 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 55px;
  height: 4px;
  background: #EFA2B4;
  border-radius: 3px;
  margin-top: 13px;
}

/* Decorative artistic dashes for main sections */
.section {
  position: relative;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 2px 24px #EFA2B414;
}
.section::before {
  content: '';
  position: absolute;
  left: 30px; top: -16px;
  width: 70px; height: 14px;
  background: #EFA2B4;
  opacity: 0.12;
  border-radius: 9px;
  z-index: 0;
  display: block;
}

/* Artistic fonts on display headings/hero */
.hero h1, .hero .subheadline, .cta h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -1.5px;
}

/* Artistic squiggle underline for CTA sections */
.cta h2 {
  position: relative;
}
.cta h2::after {
  content: '';
  width: 48px;
  height: 6px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 0; bottom: -12px;
  display: block;
}

/* =================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .footer-container, .header-container, .content-grid {
    gap: 16px 22px;
  }
  .feature-list, .testimonial-list, .service-grid{
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .header-container, .footer-container{
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    min-height: unset;
  }
  .footer-brand, .footer-contact, .footer-nav { padding-bottom: 10px; }
}
@media (max-width: 800px) {
  .hero {
    border-bottom-right-radius: 32px;
    border-bottom-left-radius: 32px;
    min-height: 280px;
    padding: 22px 0;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 38px;
  }
  .cta {
    padding: 26px 9px !important;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.29rem; }
  .section { padding: 20px 5px; margin-bottom: 30px; }
  .card, .service-card, .testimonial-card { padding: 20px 13px; border-radius: 15px; }
  .content-wrapper { gap: 18px; }
  .content-grid { flex-direction: column; gap: 13px; }
  .feature-list,
  .testimonial-list,
  .service-grid {
    flex-direction: column;
    gap: 14px;
  }
  .main-nav { display: none !important; }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 600px) {
  .hero { border-radius: 22px; min-height: 170px; padding: 10px 0; }
  .section { border-radius: 20px; }
  .footer-container { padding-left: 10px; padding-right: 10px; gap: 12px; }
  .footer-brand img { width: 38px; height: 38px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.1rem; }
  h2 { font-size: 1rem; }
  .subheadline, p, .feature-list li, .service-card, .testimonial-card { font-size: 0.98rem; }
  .footer-nav, .footer-contact { font-size: 0.85rem; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}

/* ============== ANIMATIONS & MICRO-INTERACTIONS ============== */
.card, .service-card, .testimonial-card, .feature-list li, .cta-button, .nav-cta, .see-all-reviews-link, .learn-more-link, .cookie-btn {
  transition: box-shadow 0.18s, transform 0.12s, background 0.15s, color 0.15s;
}
.card:hover,.service-card:hover,.testimonial-card:hover, .feature-list li:hover{
  z-index: 2;
  filter: brightness(1.02);
}

/* =========== Unique artistic elements ========== */
.feature-list li img, .footer-contact img, .text-section img, .service-list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

hr {
  height: 2px;
  border: none;
  background: #EFA2B4;
  border-radius: 1.5px;
  margin: 30px 0;
}

/* ============== PRINT STYLING ============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main, .container, .section { padding: 0; margin: 0; box-shadow: none; background: #fff; }
  .section, .cta, .feature-list, .service-card, .testimonial-card { border-radius: 0; box-shadow: none; }
}
