/* --- 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, caption,
table, 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FBF9F4;
  color: #29485E;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  font-size: 16px;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #29485E;
  text-decoration: underline;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #E2BC8A;
  outline: none;
}

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700;600;400&family=Open+Sans:wght@400;700&display=swap');
h1, h2, h3, .btn-primary {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}
h1 { font-size: 2.8rem; letter-spacing: -1px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.2; }
h3 { font-size: 1.22rem; font-weight: 600; margin-bottom: 10px; }
p, ul, ol, li, address { font-family: 'Open Sans', Arial, sans-serif; font-size: 1rem; }

/* --- CONTAINERS / FLEXBOX SPACING --- */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(41,72,94,0.11);
  padding: 32px 26px;
  min-width: 260px;
  transition: transform 0.18s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 8px 32px #e2bc8a33;
}
.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;
  padding: 20px 26px;
  background: #FFF;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 25px #e2bc8a22;
  min-width: 270px;
  max-width: 430px;
  font-size: 1.09rem;
  border-left: 8px solid #E2BC8A;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  border-left-color: #29485E;
  box-shadow: 0 8px 32px #29485e29;
}
.testimonial-card span {
  color: #29485E;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1em;
  letter-spacing: 0.2px;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px #29485e12;
}

.text-section {
  margin-bottom: 20px;
}

/* --- HEADER/NAVIGATION --- */
header {
  background: #FFF;
  position: sticky;
  top: 0;
  z-index: 888;
  box-shadow: 0 2px 20px #29485e10;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
}
header nav img {
  height: 50px;
  width: auto;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 28px;
  list-style: none;
}
header nav ul li {
  position: relative;
}
header nav ul li a {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.1px;
  color: #29485E;
  padding: 7px 0;
  transition: color 0.25s;
  position: relative;
}
header nav ul li a::after {
  content: '';
  display: block;
  height: 4px;
  width: 0;
  background: #E2BC8A;
  border-radius: 2px;
  transition: width 0.3s;
}
header nav ul li a:hover::after,
header nav ul li a:focus::after {
  width: 80%;
}
header nav ul li a:hover, 
header nav ul li a:focus {
  color: #E2BC8A;
}
header .btn-primary {
  margin-left: 22px;
}

.mobile-menu-toggle {
  display: none;
  background: #29485E;
  color: #FFF;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 16px;
  margin-left: 8px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 999;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E2BC8A;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  z-index: 1002;
  left: 0; top: 0; right:0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(41,72,94,0.97);
  transform: translateX(-100vw);
  transition: transform 0.45s cubic-bezier(.6,-0.13,.44,1.07);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  padding-top: 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  padding: 8px 12px 8px 16px;
  margin-right: 18px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.23s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E2BC8A;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: center;
  margin-top: 12px;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1.1;
  color: #FFF;
  text-decoration: none;
  padding: 14px 0;
  letter-spacing: 0.2px;
  border-radius: 6px;
  min-width: 180px;
  transition: color 0.23s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #E2BC8A;
  background: #fff1ebe0;
}

/* --- HERO SECTIONS --- */
.hero-section {
  background: #29485E linear-gradient(90deg,#29485e 0,#638cbe 100%);
  color: #fff;
  padding: 56px 0 50px 0;
  margin-bottom: 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-section .content-wrapper {
  max-width: 680px;
  gap: 24px;
}
.hero-section h1,
.hero-section h2 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
}
.hero-section h1 {
  font-size: 2.2rem;
}
.hero-section p {
  color: #eaeaea;
}

/* --- CTA SECTIONS --- */
.cta-section {
  background: #e2bc8a;
  color: #29485E;
  border-radius: 32px;
  margin-bottom: 42px;
  margin-top: 14px;
  padding: 44px 12px;
  box-shadow: 0 6px 30px #e2bc8A26;
}
.cta-section h2 {
  color: #29485E;
}
.cta-section .btn-primary {
  margin-top: 12px;
}

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 32px;
  border-radius: 22px;
  color: #29485E;
  background: #E2BC8A;
  border: none;
  text-decoration: none;
  margin-top: 4px;
  margin-bottom: 6px;
  box-shadow: 0 2px 14px #29485e1c;
  cursor: pointer;
  transition: background 0.25s, color 0.22s, box-shadow 0.15s, transform 0.13s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #29485E;
  box-shadow: 0 4px 22px #29485e2c;
  transform: scale(1.048);
  text-decoration: none;
}

/* --- LISTS --- */
ul, ol {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 22px;
  margin-bottom: 22px;
}
li {
  font-size: 1rem;
  color: #29485E;
  line-height: 1.45;
  position: relative;
  margin-bottom: 0px;
}
ul li::marker, ol li::marker {
  color: #E2BC8A;
  font-size: 18px;
}

.section ul, .section ol {
  gap: 12px;
}

/* --- ICONS IN LISTS --- */
.about-section ul li img,
.contact-section ul li img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline-block;
  border-radius: 4px;
}

/* --- SECTIONS (general spacing) --- */
.services-section, .about-section, .process-section, .testimonials-section, .projects-section, .features-section, .values-section, .contact-section, .services-list-section, .faq-section, .confirmation-section, .footer-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- SERVICE ICONS --- */
.services-section .content-wrapper
{ display:flex; flex-wrap:wrap; gap:30px; justify-content:flex-start; margin-top:21px; }
.services-section .content-wrapper > div {
  flex: 1 1 180px;
  background: #fff8f3;
  border-radius: 16px;
  box-shadow: 0 4px 22px #e2bc8A17;
  padding: 26px 16px 22px 16px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.22s;
  font-size: 1.01rem;
}
.services-section .content-wrapper > div:hover {
  transform: translateY(-8px) scale(1.045) rotate(-1.7deg);
  box-shadow: 0 8px 32px #e2bc8a22;
}
.services-section img {
  width: 44px;
  height: 44px;
  margin-bottom: 11px;
}
.services-section h3 {
  color: #29485E;
  margin: 7px 0 7px 0;
}

/* --- VALUES/FEATURES & LISTS --- */
.features-section ul, .values-section ul {
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 18px;
}
.features-section ul li, .values-section ul li {
  background: #fff8f3;
  padding: 15px 16px;
  border-radius: 12px;
  color: #29485E;
  font-size: 1.01rem;
  box-shadow: 0 2px 10px #e2bc8A11;
}

/* --- CONTACT SECTION --- */
.contact-section ul {
  gap: 14px;
  margin-bottom: 26px;
}
.contact-section ul li {
  display: flex;
  align-items: center;
  font-size: 1.07rem;
}
.contact-section ul li strong { color: #E2BC8A; font-weight: 700; }
.contact-section a { color: #29485E; }
.contact-section a:focus, .contact-section a:hover { color: #E2BC8A; }

/* --- PROJECTS SECTION --- */
.projects-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.projects-section .text-section {
  background: #FFF;
  border-radius: 15px;
  padding: 22px 18px;
  box-shadow: 0 2px 12px #29485e0b;
  min-width: 240px;
  flex: 1 1 230px;
}

/* --- FAQ SECTION --- */
.faq-section ul {
  gap: 16px;
}
.faq-section ul li {
  background: #f2eddc;
  color: #29485E;
  border-radius: 11px;
  padding: 14px 16px;
  box-shadow: 0 2px 10px #e2bc8A10;
  font-size: 1rem;
}

/* --- FOOTER --- */
footer {
  background: #29485E;
  color: #fff;
  padding: 34px 0 22px 0;
  font-size: 1rem;
  width: 100%;
  margin-top: 30px;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: #E2BC8A;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.19s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline;
  outline: none;
}
footer .text-section {
  text-align: center;
  color: #fff;
  font-size: 0.92rem;
  margin-bottom: 0px;
}
footer address {
  color: #eee7;
  font-size: 0.98em;
  font-style: normal;
  margin-top: 4px;
}
footer address a { color: #E2BC8A; text-decoration: underline; }
footer address a:hover { color: #FFF; }

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8f3;
  color: #29485E;
  box-shadow: 0 -2px 24px #29485e24;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 24px 14px 16px 14px;
  z-index: 1300;
  font-size: 1rem;
  border-top: 4px solid #E2BC8A;
  animation: fadeInCookie 0.7s ease;
}
.cookie-banner p { margin-bottom: 7px; }
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button,
.cookie-banner .btn {
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 22px;
  margin-top: 0;
  border-radius: 14px;
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  cursor: pointer;
  background: #e2bc8a;
  color: #29485E;
  box-shadow: 0 2px 9px #29485e12;
}
.cookie-banner button:hover, .cookie-banner .btn:hover,
.cookie-banner button:focus, .cookie-banner .btn:focus {
  background: #29485E;
  color: #fff;
  outline: none;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1355;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(41,72,94,0.55);
  align-items: center;
  justify-content: center;
  animation: fadeInCookie 0.5s;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #fff;
  padding: 36px 20px 24px 20px;
  border-radius: 20px;
  min-width: 320px;
  min-height: 220px;
  max-width: 96vw;
  box-shadow: 0 11px 48px #29485e2e;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: stretch;
  animation: fadeInCookie 0.6s;
  position: relative;
}
.cookie-modal h3 {
  color: #29485E;
  font-size: 1.17rem;
  margin-bottom: 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.04rem;
  cursor: pointer;
  margin-bottom: 6px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #E2BC8A;
  width: 19px;
  height: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}
.cookie-modal .btn {
  border-radius: 14px;
}
.cookie-modal .close {
  position: absolute;
  right: 16px;
  top: 13px;
  background: none;
  color: #29485E;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  color: #E2BC8A;
}

@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* --- CONFIRMATION/THANK YOU SECTION --- */
.confirmation-section {
  background: #E2BC8A22;
  border-radius: 28px;
  margin: 50px 0 35px 0;
  text-align: center;
  box-shadow: 0 4px 32px #e2bc8a17;
  padding-top: 32px;
  padding-bottom: 32px;
}
.confirmation-section h1 {
  color: #29485E;
}
.confirmation-section .btn-primary {
  margin-top: 14px;
}

/* --- UTILITY: Hide visually but accessible --- */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- UNIQUE ARTISTIC TOUCHES --- */
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section:before {
  content: '';
  position: absolute;
  left: -70px;
  top: -70px;
  width: 160px;
  height: 160px;
  background: #E2BC8A;
  border-radius: 40% 60% 50% 80%;
  opacity: 0.23;
  z-index: 1;
}
.hero-section:after {
  content: '';
  position: absolute;
  right: -110px;
  bottom: -90px;
  width: 190px;
  height: 150px;
  background: #FFF;
  border-radius: 60% 30% 60% 35%;
  opacity: 0.15;
  z-index: 1;
}
.hero-section .container, .hero-section .content-wrapper {
  position: relative;
  z-index: 2;
}

.services-section .content-wrapper > div {
  border: 2.5px solid #E2BC8A05;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 14px #29485e13, 0 0px 0 #e2bc8a;
}
.services-section .content-wrapper > div:after {
  content: '';
  position: absolute;
  bottom: -10px; right: -10px;
  width: 30px; height: 30px;
  background: #E2BC8A44;
  border-radius: 50%;
  opacity: 0.17;
  z-index: 1;
}

.services-section .content-wrapper > div:nth-child(even):after {
  left: -12px; right: auto; bottom:auto; top: -11px;
  background: #29485e33;
  opacity: 0.11;
}

.testimonial-card {
  border-image: linear-gradient(90deg, #E2BC8A 70%, #29485E) 1;
  border-width: 0 0 0 8px;
  border-style: solid;
}

/* --- GENERAL ANIMATIONS --- */
.section,[class*="-section"] {
  animation: fadeSection 0.7s; 
}
@keyframes fadeSection {
  0% { opacity:0; transform:translateY(28px); }
  100% { opacity:1; transform:none; }
}

/* --- SCROLLBAR (artistic touch) --- */
::-webkit-scrollbar { width: 10px; background: #e2bc8a15; }
::-webkit-scrollbar-thumb { background: #E2BC8A; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #29485E; }

/* --- MEDIA QUERIES FOR RESPONSIVE DESIGN --- */
@media (max-width: 985px) {
  .container { padding-left: 10px; padding-right: 10px; }
  header nav ul { gap: 18px; }
  .services-section .content-wrapper { gap:18px; }
}
@media (max-width: 860px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .process-section .content-wrapper,
  .projects-section .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  .testimonials-section .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .hero-section .content-wrapper {
    max-width: 95vw;
  }
  .services-section .content-wrapper {
    flex-direction: column;
  }
  .projects-section .text-section {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  /* Responsive menu */
  header nav ul,
  header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header nav {
    padding: 12px 10px;
  }
  .section, .services-section, .about-section, .process-section, .testimonials-section, .projects-section, .features-section, .values-section, .contact-section, .services-list-section, .faq-section, .confirmation-section, .footer-section {
    padding: 26px 8px;
    margin-bottom: 38px;
  }
  .cta-section {
    padding: 22px 9px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .testimonial-card {
    max-width: 100vw;
    padding: 17px 10px;
    font-size: 1.03rem;
  }
  .content-wrapper, .projects-section .content-wrapper, .hero-section .container {
    padding: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .features-section ul, .values-section ul {
    gap: 7px;
  }
  .hero-section {
    padding: 38px 0 32px 0;
  }
  .services-section .content-wrapper > div {
    padding: 20px 10px 13px 10px;
    font-size: 0.98rem;
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.32rem; }
  h2, .btn-primary, .mobile-nav a { font-size: 1rem; }
}

/****************************************
    END, all flex, all vibrant, artistic
*****************************************/
