/* --- CSS RESET + BASE 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F1FAEE;
  color: #264653;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, .cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #264653;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1A3A4D;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #264653;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, li, span, strong {
  font-size: 1rem;
}

strong {
  font-weight: 700;
}

/* --- CONTAINER STRUCTURE --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* --- FLEX LAYOUTS: USE ONLY FLEXBOX --- */
.section, section, .hero, .features, .services, .testimonials, .cta, .about, .legal, .confirmation, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***************************
 NAVIGATION & HEADER
***************************/
header {
  width: 100%;
  background: #264653;
  padding: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 20px;
  height: 70px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.main-nav a {
  color: #F1FAEE;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 24px;
  transition: background 0.18s, color 0.16s;
  position: relative;
}
.main-nav a:not(.cta):hover {
  background: #E9C46A;
  color: #264653;
}
.main-nav a.cta.primary {
  background: #E9C46A;
  color: #264653;
  font-weight: 700;
  border-radius: 99px;
  margin-left: auto;
  margin-right: 0;
  padding: 10px 24px;
  box-shadow: 0 4px 18px 0 rgba(233,196,106,0.10);
  transition: background 0.28s, color 0.16s, box-shadow 0.16s;
}
.main-nav a.cta.primary:hover,
.cta.primary:focus {
  background: #264653;
  color: #E9C46A;
  outline: 2px solid #E9C46A;
}

/***************
 MOBILE MENU
****************/
.mobile-menu-toggle {
  display: none;
  background: #E9C46A;
  border: none;
  font-size: 2rem;
  color: #264653;
  border-radius: 50%;
  padding: 8px 14px;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1031;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F1FAEE;
  color: #264653;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,70,83,0.98);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,.21,.44,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding-top: 36px;
  padding-bottom: 32px;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #E9C46A;
  color: #264653;
  font-size: 2rem;
  border-radius: 50%;
  z-index: 2002;
  align-self: flex-end;
  margin-right: 22px;
  margin-bottom: 12px;
  width: 46px; height: 46px;
  line-height: 46px;
  text-align: center;
  box-shadow: 0 4px 20px 0 rgba(233,196,106,0.07);
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F1FAEE;
  outline: 2px solid #E9C46A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}
.mobile-nav a {
  color: #F1FAEE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 16px 0;
  border-radius: 32px;
  width: 80%;
  text-align: center;
  letter-spacing: 1px;
  transition: background .17s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E9C46A;
  color: #264653;
}

/********************
 HERO + ARTISTIC EFFECTS
********************/
.hero {
  background: #E9C46A;
  color: #264653;
  border-radius: 0 0 64px 64px;
  box-shadow: 0 8px 40px 0 rgba(38,70,83,0.07);
  margin-bottom: 60px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 580px;
}
.hero h1 {
  color: #264653;
}
.hero p {
  font-size: 1.15rem;
  color: #2a4260;
  margin-bottom: 16px;
}

/*****************
 SECTIONS
*****************/
.section, .services, .features, .about, .contact, .legal, .confirmation {
  background: #FFFFFFCC;
  border-radius: 32px;
  box-shadow: 0 4px 28px 0 rgba(38,70,83,0.06);
}
.section:not(:last-child),
.services:not(:last-child),
.features:not(:last-child),
.about:not(:last-child),
.contact:not(:last-child) {
  margin-bottom: 60px;
}

/********************
 FEATURES LISTS
********************/
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  padding-left: 0;
}
.features li {
  background: #F1FAEE;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(38,70,83,0.07);
  padding: 22px 24px;
  min-width: 220px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 164px;
  transition: box-shadow 0.20s, transform 0.23s;
  margin-bottom: 20px;
  position: relative;
}
.features li img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.features li:hover {
  box-shadow: 0 8px 32px 0 rgba(233,196,106,.15);
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
}

/*******************
 SERVICES / OFFERINGS
*******************/
.services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services li {
  background: #F1FAEE;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(38,70,83,0.06);
  padding: 26px 24px 20px 24px;
  flex: 1 0 320px;
  min-width: 260px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, transform 0.19s;
  border-left: 7px solid #E9C46A;
  position: relative;
}
.services li:hover {
    box-shadow: 0 8px 40px 0 rgba(38,70,83,0.13);
    transform: scale(1.01) rotate(1deg);
}
.services strong {
  color: #264653;
  margin-top: 8px;
}

/**********************************
 TESTIMONIALS / REVIEW CARDS
**********************************/
.testimonials {
  background: #F1FAEE;
  border-radius: 32px;
  box-shadow: 0 4px 30px 0 rgba(38,70,83,0.05);
}
.testimonials h2 {
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px rgba(38,70,83,0.09);
  margin-bottom: 20px;
  padding: 22px 26px 18px 26px;
  border-left: 8px solid #E9C46A;
  min-width: 200px;
  max-width: 580px;
  position: relative;
}
.testimonial-card p {
  color: #222;
  font-size: 1.13rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  color: #264653;
  font-size: 0.97rem;
}
.testimonial-card div {
  color: #E9C46A;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

/**********************************
 CTA SECTION
***********************************/
.cta {
  background: #264653;
  color: #fff;
  border-radius: 38px;
  box-shadow: 0 4px 24px 0 rgba(38,70,83,0.18);
  margin-bottom: 60px;
  text-align: center;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta h2 {
  color: #E9C46A;
  margin-bottom: 18px;
  font-size: 2.15rem;
}
.cta.primary, .cta.secondary {
  display: inline-block;
  border-radius: 99px;
  padding: 12px 36px;
  font-size: 1.15rem;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background 0.17s, color 0.16s, transform 0.18s, box-shadow 0.18s;
  margin-top: 10px;
  text-align: center;
  border: none;
  box-shadow: 0 3px 24px 0 rgba(233,196,106,0.13);
  cursor: pointer;
}
.cta.secondary {
  background: #fff;
  color: #264653;
  border: 2px solid #E9C46A;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #E9C46A;
  color: #264653;
  outline: 2px solid #fff;
}

/***********************************
 FOOTER
***********************************/
footer {
  background: #264653;
  color: #F1FAEE;
  padding: 38px 0 14px 0;
  border-radius: 48px 48px 0 0;
  box-shadow: 0 -6px 36px 0 rgba(38,70,83,0.10);
}
footer .container {
  padding: 0 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  width: 54px;
  margin-bottom: 12px;
}
.footer-contact {
  font-size: 1rem;
  margin-bottom: 10px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-menu a {
  color: #E9C46A;
  font-size: 1rem;
  padding: 2px 0;
  transition: color 0.16s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #E9C46A;
  padding: 4px;
  transition: background 0.18s;
  box-shadow: 0 2px 8px 0 rgba(233,196,106,0.11);
}
.footer-social a:hover img {
  background: #F1FAEE;
}

/******************************** 
 FORMS & CONTACT SECTIONS
*********************************/
.contact-info, .contact-notice, .text-section {
  margin-top: 12px;
  margin-bottom: 8px;
}
.contact-notice {
  background: #E9C46A;
  color: #264653;
  padding: 16px 18px;
  border-radius: 18px;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px rgba(38,70,83,0.07);
}

/**********************
 LEGAL / POLICY PAGES
**********************/
.legal, .confirmation {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 22px 0 rgba(38,70,83,0.08);
}
.legal h1 {
  margin-bottom: 20px;
}
.legal .text-section {
  margin-bottom: 18px;
}
.legal ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

/***************************************
 COOKIE CONSENT BANNER & MODAL
****************************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #222;
  border-top: 4px solid #E9C46A;
  box-shadow: 0 -3px 22px 0 rgba(38,70,83,0.13);
  padding: 26px 16px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2500;
  align-items: flex-start;
  font-size: 1rem;
  animation: slideUpCookie .7s cubic-bezier(.47,1.64,.41,.8);
}

@keyframes slideUpCookie {
  0% { transform: translateY(120px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}
.cookie-banner>.cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner button {
  background: #E9C46A;
  color: #264653;
  border: none;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 1.06rem;
  font-weight: 700;
  margin-right: 10px;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner button.reject {
  background: #264653;
  color: #E9C46A;
}
.cookie-banner button.settings {
  background: #fff;
  color: #264653;
  border: 2px solid #E9C46A;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #2A4260;
  color: #F1FAEE;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(38,70,83,0.45);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .25s;
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 55px rgba(38,70,83,0.22);
  padding: 38px 32px 30px 32px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.cookie-modal h3 {
  color: #1A3A4D;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #E9C46A;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 20px; right: 28px;
  background: #E9C46A;
  color: #264653;
  font-size: 1.4em;
  border-radius: 50%;
  padding: 6px 9px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #fff;
  color: #264653;
  outline: 2px solid #E9C46A;
}

/**********************************
 ARTISTIC & CREATIVE DECORATIVE EFFECTS
**********************************/
.hero, .cta, .section, .services, .features, .testimonials, .about, .legal, .confirmation, .contact {
  /* Handmade artistic strokes */
  box-shadow: 0 6px 54px 0 rgba(38,70,83,0.10), 0 0 0 7px rgba(233,196,106,0.05) inset;
}

.features li::before,
.services li::before {
  content: '';
  display: block;
  width: 36px; height: 6px;
  background: #E9C46A;
  border-radius: 3px;
  margin-bottom: 7px;
  opacity: 0.7;
}

/***********************
 LINKS, BUTTONS, GENERAL
***********************/
a {
  color: #264653;
  text-decoration: underline dotted;
  transition: color 0.17s;
}
a:focus {
  outline: 2px dashed #E9C46A;
  outline-offset: 2px;
}
a:hover {
  color: #E76F51;
}

/* Button generic class for helpers */
.button, button, input[type=submit], a.cta.primary, .cta.secondary, .cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
}

/***********************************
 RESPONSIVE DESIGN (MOBILE-FIRST)
***********************************/
@media (max-width: 990px) {
  .main-nav {
    gap: 9px;
  }
  .footer-contact, .footer-menu, .footer-social {
    font-size: 0.97rem;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 0.99rem;
  }
  .section, .hero, .services, .features, .about, .contact, .legal, .confirmation, .cta {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .hero {
    padding: 34px 6px;
    min-height: 120px;
    border-radius: 0 0 32px 32px;
  }
  .features ul, .services ul {
    flex-direction: column;
    gap: 16px;
  }
  .testimonials > .container > .content-wrapper,
  .features > .container > .content-wrapper,
  .about > .container > .content-wrapper,
  .services > .container > .content-wrapper,
  .cta > .container > .content-wrapper {
    align-items: stretch;
    gap: 14px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
  }
  .testimonial-card {
    padding: 18px 14px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .hero h1, h1 {
    font-size: 1.36rem;
  }
  .cta h2, .features h2, h2 {
    font-size: 1.11rem;
  }
  .footer-brand img {
    width: 40px;
  }
  .features li, .services li {
    padding: 16px 10px;
    min-width: 0;
  }
  .cookie-modal {
    padding: 24px 8px 18px 8px;
    min-width: 220px;
  }
}

/************************
 SPACING & FLEX UTILITIES
*************************/
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
gap-20 { gap: 20px; }
gap-30 { gap: 30px; }

/************************
 MISC. ARTISTIC EXTRAS
*************************/
.features li, .services li {
  border-image: linear-gradient(45deg,#E9C46A 60%,#F1FAEE 100%) 1;
}
.features li h3, .services li h3, .features li h2, .services li h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.13rem;
  letter-spacing: .5px;
  color: #1A3A4D;
}

/* Subtle button hover lift */
.cta.primary, .cta.secondary, .button, .cookie-banner button {
  will-change: transform;
}
.cta.primary:hover, .cta.secondary:hover, .cookie-banner button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 30px 0 rgba(233,196,106,0.17);
}

/***************
 ARTISTIC FONTS
***************/
h1, h2, h3, .cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}
/***************
 CUSTOM SCROLLBAR (ARTISTIC)
***************/
::-webkit-scrollbar {
  width: 10px;
  background: #E9C46A;
}
::-webkit-scrollbar-thumb {
  background: #264653;
  border-radius: 8px;
}

/* --- END --- */
