/* RESET & NORMALIZE (mobile first) */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #faf4ed;
  color: #2d3a32;
}

body {
  min-height: 100vh;
  background: #FAF4ED;
  color: #2D3A32;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}

*, *:before, *:after {
  box-sizing: inherit;
}

:root {
  --primary: #2D3A32;
  --secondary: #B4895C;
  --accent: #FAF4ED;
  --vib1: #FF1166;
  --vib2: #44F0A6;
  --vib3: #FFC719;
  --vib4: #117BFF;
  --shadow: 0 4px 18px rgba(44,56,47,0.10), 0 1.5px 6px rgba(180,137,92,0.04);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* HEADER & MAIN NAV */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px rgba(44,56,47,0.03);
  position: relative;
  z-index: 11;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
  padding: 16px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 8px 12px;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  outline: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vib2);
  color: #1a1a1a;
}

.logo {
  height: 48px;
  width: auto;
  display: block;
}

/* CALL TO ACTION BTN */
.cta-btn {
  background: linear-gradient(90deg, var(--vib1) 0%, var(--vib3) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  padding: 12px 32px;
  box-shadow: 0 6px 28px 0 rgba(255,17,102,0.12), var(--shadow);
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.25s, transform 0.22s, box-shadow 0.23s;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 8px;
  text-align: center;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, var(--vib3) 0%, var(--vib1) 100%);
  color: #212121;
  transform: translateY(-2px) scale(1.055);
  box-shadow: 0 12px 40px 0 rgba(255,199,25,0.13), var(--shadow);
}

/* --- HERO & SECTION LAYOUT --- */
.hero {
  background: var(--vib4);
  color: #fff;
  padding: 64px 0 48px 0;
  box-shadow: 0 8px 60px 0 rgba(68,240,166,0.12), 0 2px 20px 0 rgba(44,56,47,0.037);
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  min-height: 212px;
  padding: 0 4px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 4px 28px rgba(44,56,47,0.25);
  margin-bottom: 6px;
}
.hero p {
  font-size: 1.3rem;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(44,56,47,0.12);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  padding: 0 0 4px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* LISTS AND FEATURE BLOCKS */
ul, ol {
  padding-left: 24px;
  margin-top: 8px;
  margin-bottom: 16px;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
ul li, ol li {
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.6;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}
.features ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features h2 {
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 222px;
  padding: 18px 18px 16px 18px;
  background: var(--vib1);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 6px 28px 0 rgba(255, 17, 102, 0.07);
}

/* --- CARDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  padding: 24px;
  flex: 1 1 320px;
  min-width: 280px;
  transition: box-shadow 0.19s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 44px 0 rgba(68,240,166,0.08), var(--shadow);
  transform: translateY(-2px) scale(1.03);
  z-index: 10;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-card {
  background: var(--accent);
  border: 3px solid var(--vib2);
  border-radius: var(--radius);
  box-shadow: 0 4px 23px rgba(44,56,47,0.05);
  padding: 22px 18px 18px 18px;
  flex: 1 1 270px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.23s, border-color 0.19s;
  color: var(--primary);
}
.service-card:hover, .service-card:focus {
  border-color: var(--vib1);
  box-shadow: 0 12px 32px 0 rgba(255,17,102,0.08), var(--shadow);
}

.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;
}
.text-image-section > * {
  flex: 1 1 290px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff9f3;
  color: #2D3A32;
  border-left: 8px solid var(--vib1);
  border-radius: var(--radius);
  box-shadow: 0 2px 20px 0 rgba(180,137,92,0.07);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.65;
  transition: border-color 0.22s;
}
.testimonial-card p {
  flex: 1 1 auto;
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.98em;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-left-color: var(--vib4);
}

/* FOOTER */
footer {
  width: 100%;
  background: var(--primary);
  color: #faf4ed;
  padding: 32px 0 20px 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -4px 26px rgba(44,56,47,0.07);
}
.footer-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-bar a img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #ffe6db;
  font-size: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.18s;
  outline: none;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--vib3);
}
.footer-contact {
  min-width: 210px;
  font-size: 1em;
  line-height: 1.52;
  color: #efc8a4;
  font-style: normal;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary);
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 14px;
}
h2 {
  font-size: 1.78rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.27rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  font-size: 1.07rem;
  margin-bottom: 9px;
  color: #2D3A32;
}
a {
  color: var(--vib1);
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: var(--vib4);
  text-decoration: underline;
}
strong {
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.03em;
}

/* BUTTONS (besides .cta-btn) */
button, .button {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--vib2) 0%, var(--vib1) 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 16px 0 rgba(44,56,47,0.05);
  transition: background 0.23s, color 0.17s, transform 0.17s;
  outline: none;
}
button:hover, button:focus, .button:hover, .button:focus {
  background: linear-gradient(90deg, var(--vib1) 0%, var(--vib2) 100%);
  color: #fff200;
  transform: scale(1.04);
}

/* --- MOBILE NAVIGATION (BURGER MENU) --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 185;
  background: var(--vib1);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 10px rgba(255,17,102,0.08);
  cursor: pointer;
  transition: background 0.18s, transform 0.14s;
}
.mobile-menu-toggle:active {
  background: var(--vib3);
  color: var(--vib1);
  transform: scale(0.97);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #2D3A32cc;
  z-index: 199;
  padding-top: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1), opacity 0.17s;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 24px 24px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--vib3);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 54px;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 12px;
  letter-spacing: 0.09em;
  transition: background 0.20s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--vib2);
  color: #2D3A32;
}

@media (max-width: 1100px) {
  .header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    min-height: auto;
  }
  .main-nav {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-bar {
    flex-direction: column;
    gap: 36px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .header-bar {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 6px;
  }
  .testimonial-card, .service-card, .card {
    padding: 16px 10px;
    font-size: 1rem;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .text-image-section, .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-bar {
    gap: 26px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 100vw;
    padding: 0 3vw;
  }
  .hero {
    padding: 40px 0 24px 0;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }
  .hero h1 {
    font-size: 1.49rem;
    line-height: 1.13;
  }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: linear-gradient(90deg, #FFFBEA 60%, #FFE6DB 100%);
  color: #2D3A32;
  box-shadow: 0 -2px 25px 0 rgba(44,56,47,0.09);
  padding: 28px 16px 28px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
  border-top: 4px solid var(--vib1);
  font-size: 1.11rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(90px);
  transition: opacity 0.17s, transform 0.27s cubic-bezier(0.57,0.1,0.25,1.15);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  background: var(--vib4);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, transform 0.17s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--vib1);
}
.cookie-banner .cookie-btn.reject {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: var(--vib2);
  color: #2D3A32;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--vib3);
  color: #2D3A32;
  transform: scale(1.06);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.97rem;
    padding: 12px 6px;
  }
  .cookie-banner-buttons {
    gap: 8px;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3050;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(45,58,50,0.66);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  margin: auto;
  background: #fffbe9;
  color: #2D3A32;
  border-radius: 24px;
  box-shadow: 0 8px 52px 0 rgba(68,240,166,0.14), 0 2px 18px rgba(180,137,92,0.09);
  max-width: 420px;
  min-width: 240px;
  padding: 28px 28px 18px 28px;
  z-index: 3999;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: popin 0.44s cubic-bezier(0.60,1.7,0.5,1.05);
}
@keyframes popin {
  0% {
    transform: scale(0.7) translateY(60px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 19px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #b4895c;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--vib1);
}
.cookie-modal h2 {
  font-size: 1.23rem;
  color: var(--primary);
  margin-bottom: 8px;
  margin-top: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal .category-label {
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--vib4);
  font-size: 1rem;
}
.cookie-modal .toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  background: #ddd;
  border-radius: 16px;
  position: relative;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
  margin-left: 8px;
}
.cookie-modal .toggle:checked {
  background: linear-gradient(90deg, var(--vib1) 10%, var(--vib4) 90%);
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(44,56,47,0.14);
  transition: left 0.22s;
}
.cookie-modal .toggle:checked:before {
  left: 22px;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-btn.accept {
  background: var(--vib1);
  color: #fff;
}
.cookie-modal .cookie-btn.settings {
  background: var(--vib2);
  color: #2D3A32;
}

/* --- FORMS (if any appear) --- */
input, textarea, select {
  font-family: var(--font-body);
  border-radius: 7px;
  border: 1.2px solid #b4895c8a;
  padding: 8px 14px;
  font-size: 1rem;
  margin-bottom: 14px;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--vib2);
  box-shadow: 0 0 0 2px var(--vib2)22;
  outline: none;
}
label {
  font-family: var(--font-display);
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  display: block;
}

/* --- MISC EFFECTS --- */
.card, .service-card, .testimonial-card, .cookie-modal {
  transition: box-shadow 0.24s, transform 0.18s;
}
.card:hover, .service-card:hover, .testimonial-card:hover
{ box-shadow: 0 14px 52px 0 rgba(17,123,255,0.11), var(--shadow);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 10px; background: #eee; }
::-webkit-scrollbar-thumb { background: var(--vib2); border-radius: 6px; }

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2px dashed var(--vib3);
  outline-offset: 2px;
}

/* --- GENERAL SPACING --- */
main > section, section {
  margin-bottom: 60px;
}
.content-wrapper > * + * {
  margin-top: 10px;
}

/* --- VIBRANT ENERGY DECORATIVE STRIPE (optional for style!) --- */
.vibrant-stripe {
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #FF1166 15%, #FFC719 40%, #44F0A6 80%, #117BFF 100%);
  margin-bottom: 32px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(17,123,255,0.08);
}

/* --- PRINT OVERRIDE --- */
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cookie-modal,
  header, footer { display: none !important; }
}
