/* =======================
  CSS RESET & BASE STYLES
  ======================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F9F8F4;
  color: #223B44;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #223B44;
  text-decoration: none;
  transition: color 0.2s;
}
button {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1em;
}

/* ==========================*/
/* BRAND COLORS & VARIABLES */
:root {
  --primary: #223B44;
  --secondary: #A7B26C;
  --accent: #F9F8F4;
  --brand-blue: #223B44;
  --brand-green: #A7B26C;
  --brand-cream: #F9F8F4;
  --pink: #E2646A;
  --orange: #FFA95E;
  --art-mustard: #F2C94C;
}

/* ============
   TYPOGRAPHY
   ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--primary);
  text-shadow: 2px 3px 0px var(--art-mustard), 0 2px 8px rgba(162,162,162,0.10);
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 18px;
  color: var(--brand-green);
  position: relative;
  display: inline-block;
  padding-bottom: 0.2em;
}
h2:after {
  display: block;
  content: '';
  width: 36px;
  height: 4px;
  background: var(--pink);
  border-radius: 2px;
  margin-top: 6px;
}
h3 {
  font-size: 1.3rem;
  color: var(--brand-blue);
  margin-bottom: 12px;
}
h4, h5, h6 {
  color: var(--primary);
}
p, ul li, ol li {
  font-size: 1rem;
  color: #223B44;
  margin-bottom: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
strong {
  color: var(--brand-blue);
  font-weight: 700;
  font-family: inherit;
}
em {
  color: var(--pink);
}
blockquote {
  font-style: italic;
  background: #fffbea;
  border-left: 5px solid var(--pink);
  margin: 16px 0;
  padding: 12px 20px 12px 18px;
  border-radius: 8px;
  color: #223B44;
}

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

/* =============================
   LAYOUT & FLEX CONTAINERS
   ============================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 860px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(34,59,68,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  flex: 1 1 300px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(34,59,68,0.17);
  transform: translateY(-4px) scale(1.02);
}
.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;
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(34,59,68,0.07);
  margin-bottom: 24px;
  margin-top: 12px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 18px 0 rgba(162,178,108,0.17);
  transform: translateY(-3px);
}
.testimonial-card p {
  color: #223B44;
  font-weight: 500;
  flex: 1;
  margin-bottom: 0;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: var(--secondary);
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Project details styling */
.project-overview-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.project-detail {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(34,59,68,0.10);
  padding: 24px 22px;
  min-width: 250px;
  flex: 1 1 340px;
  margin-bottom: 20px;
}

/* ==========================
   ARTISTIC & CREATIVE GAPS
   ========================== */
.icons-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 32px;
}
.icons-grid img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(3px 5px 0 var(--art-mustard));
  transition: filter 0.2s, transform 0.2s;
}
.icons-grid img:hover {
  filter: drop-shadow(2px 7px 0 var(--pink));
  transform: scale(1.1) rotate(-6deg);
}

/* ======================
   HEADER & NAVIGATION
   ====================== */
header {
  background: linear-gradient(90deg, #f9f8f4 70%, #ffd6cf 100%);
  box-shadow: 0 2px 8px rgba(34,59,68,0.04);
  padding: 0 0 7px 0;
  z-index: 30;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 18px 12px 18px;
}
header a img {
  max-height: 42px;
  min-width: 56px;
}
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
nav a {
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--art-mustard);
  color: #223B44;
}

.cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 28px;
  border-radius: 30px;
  background: var(--secondary);
  color: #fff;
  font-weight: 800;
  font-size: 1.12rem;
  box-shadow: 0 3px 12px 0 rgba(167,178,108,0.13);
  letter-spacing: 0.01em;
  border: none;
  margin-left: 12px;
  transition: background 0.20s, transform 0.18s, box-shadow 0.18s;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--pink);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 5px 18px 0 rgba(226,100,106,0.08);
}

/* =============================
   MOBILE MENU HAMBURGER SYSTEM
   ============================= */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
}
@media (max-width: 1024px) {
  nav {
    gap: 6px;
  }
}
@media (max-width: 820px) {
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 18px 8px 7px 8px;
  }
  nav {
    display: none;
  }
  .cta-button {
    margin-left: 0px;
  }
  .mobile-menu-toggle {
    display: block;
    background: var(--secondary);
    color: #fff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 2rem;
    border: none;
    box-shadow: 0 1px 6px 0 rgba(34,59,68,0.12);
    position: absolute;
    right: 24px;
    top: 20px;
    z-index: 122;
    transition: background 0.16s, color 0.16s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: var(--pink);
  }
  .mobile-menu {
    display: flex;
    pointer-events: none;
    opacity: 0;
    transform: translateX(100%);
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.96);
    z-index: 130;
    transition: transform 0.32s cubic-bezier(.6,.1,0,1), opacity 0.25s;
  }
  .mobile-menu.active {
    pointer-events: auto;
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 38px;
    background: var(--primary);
    color: #fff;
    font-size: 2.1rem;
    border-radius: 8px;
    padding: 4px 14px 4px 10px;
    transition: background 0.15s, color 0.15s;
    z-index: 140;
    border: none;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    background: var(--pink);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 98px;
    align-items: flex-start;
    padding-left: 40px;
  }
  .mobile-nav a {
    font-size: 1.25rem;
    padding: 16px 0;
    color: var(--brand-blue);
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    border-bottom: 1.7px dotted var(--secondary);
    min-width: 80vw;
    transition: color 0.19s, background 0.13s;
    border-radius: 0;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    color: var(--pink);
    background: #F2C94C22;
  }
}

/* =========================
   MAIN CONTENT STRUCTURE
   ========================= */
main {
  position: relative;
  z-index: 4;
}

/* ============================
   ARTISTIC SECTIONS & CARDS
   ============================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 28px 4vw;
    margin-bottom: 36px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
}

ul {
  list-style: none;
  margin-top: 8px;
  margin-bottom: 20px;
}
ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
ul li:before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--art-mustard);
  position: absolute;
  left: 0; top: 2px;
  box-shadow: 3px 3px 0 var(--pink) inset;
}
.section ul li img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -3px;
}

/* Highlights for feature/service list price */
ul li span {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.99em;
  font-weight: 700;
  background: var(--art-mustard);
  color: var(--primary);
  padding: 3px 11px;
  border-radius: 9px;
  letter-spacing: 0.01em;
}

/* Contact Details Flexbox */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 22px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(34,59,68,0.09);
  margin-bottom: 16px;
  font-size: 1.06rem;
}
.contact-details img {
  width: 20px; height: 20px;
  margin-right: 5px;
  vertical-align: text-bottom;
}
.address-map {
  background: #E5F5E7;
  padding: 17px 18px;
  border-radius: 9px;
  margin-left: 0;
  font-style: italic;
  font-size: 1em;
  color: var(--brand-blue);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: linear-gradient(91deg, #2A454F 80%, #e2eec7 100%);
  color: #fff;
  padding: 44px 0 14px 0;
  font-size: 1rem;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 44px;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-direction: column;
  min-width: 145px;
}
footer nav a {
  color: #fff;
  text-shadow: 1px 2px 0 #223B4422;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  padding: 2px 0;
  font-weight: 500;
}
footer nav a:hover {
  color: var(--art-mustard);
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 7px;
}
.social-links a {
  display: inline-flex;
  border-radius: 50%;
  background: #fff;
  padding: 7px;
  transition: background 0.19s, transform 0.18s;
}
.social-links a:hover {
  background: var(--pink);
  transform: scale(1.13);
}
.social-links img {
  width: 28px;
  height: 28px;
}
.legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 170px;
  font-size: 0.96em;
}
.legal-links a {
  color: #fff;
  opacity: 0.86;
  transition: color 0.12s;
  margin-bottom: 3px;
}
.legal-links a:hover {
  color: var(--art-mustard);
}
.brand-note {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1.02em;
  opacity: 0.82;
  font-family: 'Montserrat',sans-serif;
}
.brand-note img {
  width: 32px; height: 32px;
}
@media (max-width: 850px) {
  footer .container{
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .brand-note {
    font-size: 0.99em;
  }
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe8;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -3px 24px 0 rgba(34,59,68,0.11);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 26px 28px;
  font-size: 1rem;
  transition: opacity 0.22s, bottom 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  bottom: -150px;
  pointer-events: none;
}
.cookie-banner p {
  flex: 1;
  font-size: 1.08em;
  color: #223B44;
  margin: 0;
}
.cookie-banner .cookie-btn {
  background: var(--secondary);
  color: #fff;
  border-radius: 22px;
  padding: 8px 22px;
  font-size: 1.1em;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  margin-left: 6px;
  border: none;
  box-shadow: 0 2px 7px 0 rgba(34,59,68,0.10);
  margin-bottom: 0;
  transition: background 0.17s, color 0.13s, box-shadow 0.13s, transform 0.13s;
}
.cookie-banner .cookie-btn:hover {
  background: var(--pink);
  color: #fff;
  transform: scale(1.05);
}
.cookie-banner .settings-btn {
  background: var(--art-mustard);
  color: #223B44;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10010;
  background: rgba(34,59,68,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(34,59,68,0.14);
  max-width: 390px;
  padding: 34px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-size: 1.08rem;
  color: #223B44;
  animation: fadeInCookie .28s cubic-bezier(.6,.1,0,1);
}
@keyframes fadeInCookie{
  from{opacity:0;transform:scale(.96)}
  to{opacity:1;transform:scale(1)}
}
.cookie-modal-dialog h3 {
  font-size: 1.25rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--brand-blue);
}
.cookie-modal-dialog label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cookie-modal-dialog input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 18px; height: 18px;
  margin-right: 6px;
}
.cookie-modal-dialog .cookie-category {
  margin-bottom: 5px;
  font-weight: 600;
}
.cookie-modal-dialog .cookie-modal-close {
  position: absolute;
  top: 8px; right: 16px;
  background: var(--pink);
  color: #fff;
  border-radius: 8px;
  font-size: 1.3rem;
  padding: 1px 10px;
  border: none;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-dialog .cookie-modal-close:hover {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal-dialog .cookie-btn {
  width: 100%;
  margin-left: 0;
  margin-top: 11px;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 10px 20px 10px;
    font-size: 0.96em;
    gap: 17px;
  }
  .cookie-modal-dialog {
    max-width: 94vw;
    padding: 22px 8vw 20px 8vw;
    font-size: 1em;
  }
}

/* =============================
   ANIMATIONS & MICROINTERACTION
   ============================= */
a, button, .cta-button {
  transition: color 0.17s, background 0.17s, box-shadow 0.17s, transform 0.17s;
}
.animated-link {
  position: relative;
  color: var(--brand-blue);
}
.animated-link:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.animated-link:hover:after { transform: scaleX(1); }

/* Focus for accessibility */
a:focus, button:focus {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1040px) {
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .icons-grid, .project-overview-list {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .card {
    min-width: 100%;
    padding: 22px 9vw;
  }
  .section {
    margin-bottom: 30px;
  }
}
@media (max-width: 512px) {
  .section {
    padding: 18px 0;
  }
  h1 {
    font-size: 1.58rem;
  }
  h2 {
    font-size: 1.26rem;
  }
  .card, .testimonial-card {
    padding: 11vw 4.5vw;
  }
}

/* =======================
   UNIQUE ARTISTIC ELEMENTS
   ======================= */
h1, h2, h3 {
  position: relative;
}
h1:before, h2:before {
  content: '';
  display: block;
  position: absolute;
  left: -22px; top: -20px;
  width: 44px; height: 14px;
  background: var(--art-mustard);
  opacity: 0.23;
  border-radius: 14px;
  z-index: -2;
  pointer-events: none;
}
h2:before {
  width: 31px;
  height: 9px;
  top: -13px;
  left: -13px;
  opacity: 0.27;
}

/* Custom markers for artistic lists */
ul li strong {
  color: var(--pink);
  font-family: 'Montserrat',sans-serif;
}
ul li:before {
  background: var(--art-mustard);
  box-shadow: 1px 4px 0 var(--pink) inset;
  opacity: 0.72;
}

/* Artful separation line */
hr {
  border: none;
  height: 3px;
  background: linear-gradient(90deg,var(--art-mustard),var(--pink));
  border-radius: 6px;
  margin: 40px 0;
}

/* Accent blocks */
.accent-block {
  background: var(--art-mustard);
  color: #223B44;
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 3px 13px rgba(226,100,106,0.06);
  margin-bottom: 18px;
}

/* ===================
   FORM & FAQ
   =================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1.3px solid var(--secondary);
  font-size: 1rem;
  margin-bottom: 16px;
  background: #fff;
  transition: border 0.18s;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--pink);
  outline: 2px solid var(--art-mustard);
}
label {
  display: block;
  margin-bottom: 5px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  color: var(--primary);
}

/* ======================
   MISCELLANEOUS
   ====================== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--brand-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--art-mustard);
  border-radius: 20px;
}

/* Remove blue highlight on button tap for mobile WebKit */
button, a { -webkit-tap-highlight-color: rgba(226,100,106,0.25); }

/* Hide elements visually but keep accessible */
.sr-only { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }

/* =======================
   OVERRIDE & UTILITIES
   ======================= */
.flex {
  display: flex !important;
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column !important;
}
.flex-row {
  flex-direction: row !important;
}
.align-center {
  align-items: center !important;
}
.gap-20 { gap: 20px !important; }
.mt-20 { margin-top: 20px!important; }
.mb-20 { margin-bottom: 20px!important; }

/* ===============================
   SELECTOR COVERAGE & COMPATIBILITY
   =============================== */
/* All class names from the HTML are targeted above. No CSS Grid, no columns. */
