/* ======================= CSS RESET & BASE ======================= */
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: inherit;
  box-sizing: border-box;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F5F0;
  color: #1A2532;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.2em;
}
a {
  color: #24593B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BCA663;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ======================= BRAND & COLORS ======================= */
:root {
  --primary: #24593B;
  --secondary: #F3F5F0;
  --accent: #BCA663;
  --brand-light: #FFFFFF;
  --brand-dark: #222;
  --artistic-teal: #57A57E;
  --artistic-pink: #D97686;
  --artistic-yellow: #FBE77E;
  --shadow: 0 4px 24px 0 rgba(36, 89, 59, 0.09);
  --border-radius: 18px;
}

/* ======================= TYPOGRAPHY ======================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 900;
  line-height: 1.1;
}
h1 { font-size: 2.75rem; letter-spacing: -1.5px; margin-bottom: 16px; }
h2 { font-size: 2.1rem; margin-bottom: 12px; }
h3 { font-size: 1.5rem; margin-bottom: 8px; font-weight: 700; }
h4 { font-size: 1.2rem; margin-bottom: 6px; font-weight: 700; }
h5, h6 { font-size: 1rem; }
p, ul, ol { font-size: 1.08rem; line-height: 1.6; color: #2B3D23; }
.subheadline { font-size: 1.5rem; color: var(--artistic-teal); margin-bottom: 16px; font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }
strong, b { font-weight: bold; }
em, i { font-style: italic; }

/* ======================= BUTTONS ======================= */
.button-primary,
.button-primary:visited {
  background: linear-gradient(90deg, var(--primary) 70%, var(--artistic-teal));
  color: var(--brand-light) !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 2em;
  padding: 14px 40px;
  font-size: 1.18rem;
  margin-top: 12px;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(36, 89, 59, 0.12);
  position: relative;
  transition: background 0.2s, box-shadow 0.18s, transform 0.13s;
  text-decoration: none;
  letter-spacing: 1px;
}
.button-primary:hover,
.button-primary:focus {
  background: linear-gradient(90deg, #1b4032 70%, #74c4a5 100%);
  box-shadow: 0 5px 22px 0 rgba(36, 89, 59, 0.22);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}
.button-secondary {
  background: var(--accent);
  color: var(--brand-light);
  border: none;
  border-radius: 1.2em;
  padding: 12px 28px;
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.button-secondary:hover,
.button-secondary:focus {
  background: var(--artistic-pink);
  color: #fff;
  box-shadow: 0 2px 10px var(--accent, #96812B, 0.07);
}

/* ======================= HEADER & MAIN NAVIGATION ======================= */
header {
  background: var(--primary);
  color: var(--brand-light);
  padding: 0;
  box-shadow: 0 1px 10px rgba(36, 89, 59, 0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 56px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--brand-light);
  font-size: 1.09rem;
  background: none;
  border-radius: 80px;
  padding: 7px 18px;
  transition: background 0.16s, color 0.16s;
  text-decoration: none;
  position: relative;
}
.main-nav a:not(.button-primary):hover, .main-nav a:not(.button-primary):focus {
  color: var(--accent);
  background: rgba(255,255,255,0.10);
}
.main-nav .button-primary {
  margin-left: 12px;
  padding: 9px 30px;
  font-size: 1rem;
}
.mobile-menu-toggle {
  display: none;
  background:var(--accent);
  border: none;
  font-size: 2.1rem;
  color: var(--brand-light);
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--artistic-teal);
  color: #fff;
  box-shadow: 0 4px 18px 0 #96812B22;
}

/* ======================= MOBILE MENU ======================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--brand-light);
  overflow-y: auto;
  transform: translateX(102vw);
  transition: transform 0.4s cubic-bezier(.61,-0.03,.67,.93);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 16px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--brand-light);
  font-size: 2.3rem;
  cursor: pointer;
  padding: 6px 16px 14px 6px;
  margin-bottom: 18px;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: var(--artistic-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--brand-light);
  font-size: 1.4rem;
  text-decoration: none;
  padding: 10px 6px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  width: 95%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--artistic-teal);
  color: var(--artistic-yellow);
}

/* ======================= HERO SECTION ======================= */
.hero {
  background: var(--artistic-yellow);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 6px 24px 0 rgba(36, 89, 59, 0.05);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 340px;
  padding-top: 46px;
  padding-bottom: 46px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
}
.hero .subheadline {
  color: var(--artistic-pink);
  font-weight: 700;
}
.hero .button-primary {
  margin-top: 16px;
  font-weight: 800;
}

/* ======================= FEATURE GRID ======================= */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
}
.features .feature-grid li {
  background: var(--brand-light);
  border-radius: 22px;
  box-shadow: var(--shadow);
  flex: 1 1 265px;
  max-width: 320px;
  padding: 24px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.19s, transform 0.17s;
  margin-bottom: 20px;
  border-left: 7px solid var(--accent);
  position: relative;
  min-width: 220px;
}
.features .feature-grid li:hover,
.features .feature-grid li:focus-within {
  box-shadow: 0 6px 38px 0 rgba(185, 166, 99, 0.19);
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
}
.features .feature-grid img {
  width: 54px; height: 54px; margin-bottom: 9px; filter: none; }
.features .feature-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--primary);
}
.features .feature-grid p {
  color: #2B3D23;
  font-size: 1rem;
}

/* ======================== CARD & FLEX CONTAINERS ======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  max-width: 410px;
  padding: 28px 24px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px 0 var(--accent, #96812B44);
  transform: scale(1.03) rotate(-1.7deg);
}
.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;
}

/* ======================= TESTIMONIALS ======================= */
.testimonials {
  background: var(--brand-light);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(36, 89, 59, 0.06);
}
.testimonials h2 {
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: var(--secondary);
  border-radius: 20px;
  padding: 28px 24px 20px 24px;
  box-shadow: 0 2px 18px 0 rgba(36, 89, 59, 0.10);
  margin-bottom: 20px;
  max-width: 640px;
  border-left: 8px solid var(--artistic-pink);
  transition: border-color 0.18s, box-shadow 0.18s;
  color: #333;
}
.testimonial-card:hover { 
  border-left-color: var(--artistic-teal); 
  box-shadow: 0 2px 38px 0 rgba(185, 166, 99, 0.11);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: #222;
  font-weight: 500;
}
.review-details {
  display: flex;
  gap: 18px;
  align-items: center;
  color: #24593B;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.93;
}
.reviewer {
  font-weight: 700;
}
.stars {
  color: var(--artistic-pink);
  letter-spacing: 1.5px;
  font-size: 1.12em;
}

/* ======================= ABOUT/VALUE/TEAM/PROJECTS STYLES ======================= */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.values-list > div {
  background: var(--brand-light);
  border-radius: 18px;
  box-shadow: var(--shadow);
  flex: 1 1 210px;
  padding: 20px 16px 18px 16px;
  transition: box-shadow 0.14s, transform 0.12s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  margin-bottom: 20px;
}
.values-list img {
  width: 46px;
  margin-bottom: 9px;
}
.values-list h4 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 5px;
}
.values-list p {
  font-size: 0.98rem;
  color: #2B3D23;
}

.project-list .project-preview {
  background: #fff;
  border-radius: 19px;
  box-shadow: var(--shadow);
  padding: 24px 18px 22px 18px;
  margin-bottom: 24px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.project-list .project-preview:hover {
  box-shadow: 0 5px 26px 0 rgba(36, 89, 59, 0.14);
  transform: scale(1.012) rotate(-0.5deg);
}
.customer-feedback-snippet {
  color: var(--artistic-teal);
  font-size: 1.06rem;
  font-style: italic;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 28px;
}
.service-card {
  background: var(--brand-light);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 24px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 170px;
  max-width: 330px;
  margin-bottom: 20px;
  border-left: 7px solid var(--accent);
  transition: box-shadow 0.15s, transform 0.12s;
}
.service-card:hover {
  box-shadow: 0 6px 32px rgba(185, 166, 99, 0.19);
  transform: scale(1.04) rotate(-2deg);
}
.service-card img { width: 48px; margin-bottom: 11px; }
.service-card h3 { font-size: 1.17rem; color: var(--artistic-pink); margin-bottom: 4px; }
.service-card .service-price { color: var(--artistic-teal); font-weight: bold; font-size: 1.05rem; margin-top: 12px; }

.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ======================= CTA BLOCK ======================= */
.cta-block, .contact-cta {
  background: var(--accent);
  color: #fff;
  border-radius: 19px;
  box-shadow: 0 4px 22px 0 rgba(36, 89, 59, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.cta-block h2, .contact-cta h2 { color:#fff; }
.cta-block .button-primary, .contact-cta .button-primary {
  background: var(--brand-light);
  color: var(--primary)!important;
  margin-top:20px;
  box-shadow: 0 2px 8px #96812B26;
}
.cta-block .button-primary:hover{
  background: var(--artistic-yellow);
  color: var(--accent)!important;
}

/* ======================= LEGAL SECTIONS ======================= */
.legal {
  background: var(--brand-light);
  border-radius: 21px;
  box-shadow: var(--shadow);
  margin-bottom: 56px;
  padding: 36px 22px;
}
.legal-text h2 {
  margin-top: 28px;
  margin-bottom: 7px;
}
.legal-text ul { margin-bottom: 18px; }

/* ======================= FOOTER ======================= */
footer {
  background: var(--primary);
  color: var(--brand-light);
  padding: 38px 0 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-logo img {
  height: 46px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: var(--artistic-yellow);
}
.footer-contact {
  font-size: 0.97rem;
  color: #e9eee7;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 3px;
}
.footer-contact a { color: #fff; text-decoration: underline; word-break: break-all; }
.footer-contact a:hover { color: var(--accent); }

/* ================== COOKIE BANNER & MODAL ================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffbea;
  color: #332B14;
  box-shadow: 0 0 32px 0 rgba(36, 89, 59, 0.14);
  border-radius: 18px 18px 0 0;
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px 24px;
  gap: 16px;
  animation: fadeInCookie 0.6s cubic-bezier(.19,1,.22,1);
}
@keyframes fadeInCookie {
  from { transform: translateY(84px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner .button-primary,
.cookie-banner .button-secondary {
  font-size: 1rem;
  border-radius: 1.1em;
  padding: 10px 21px;
  font-weight: 700;
  box-shadow: none;
}
.cookie-banner .button-primary {
  background: var(--artistic-teal);
  color: #fff!important;
}
.cookie-banner .button-primary:hover {
  background: var(--primary);
  color: var(--artistic-yellow)!important;
}
.cookie-banner .button-secondary {
  background: var(--artistic-pink);
  color: #fff!important;
}
.cookie-banner .button-secondary:hover {
  background: var(--accent);
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 5100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36, 89, 59, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.22s;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0;}
  100% {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 420px; width: 93vw;
  padding: 34px 24px 28px 24px;
  box-shadow: 0 6px 38px 0 rgba(36, 89, 59, 0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #273220;
  position: relative;
  animation: fadeInCookie 0.4s cubic-bezier(.19,1,.22,1);
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 2px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover {
  color: var(--artistic-pink);
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-category .cookie-toggle {
  accent-color: var(--primary);
  width: 21px; height: 21px;
  margin-left: 7px;
}
.cookie-category .locked, .cookie-category .required {
  font-size: 1.02rem;
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ================ THANK YOU, CONTACT & MINI TEAM SECTIONS ================ */
.mini-team-intro {
  background: var(--artistic-teal);
  color: #fff;
  padding: 20px 16px;
  border-radius: 13px;
  margin-top: 18px;
  box-shadow: 0 2px 14px 0 #57A57E22;
}
.mini-team-intro h3 {
  margin-bottom: 6px;
  color: #fff;
}

.thank-you .button-primary {
  margin-top: 28px;
}

/* ================ RESPONSIVE DESIGN ================ */
@media (max-width: 1080px) {
  .container {
    max-width: 95%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-logo img { height: 38px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 14px; }
  .features .feature-grid, .service-list, .values-list {
    justify-content: center;
  }
  footer .container { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  section {padding-left: 5px; padding-right: 5px;}
  .container, .hero .container { padding-left: 8px; padding-right: 8px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
    z-index: 980;
  }
  .logo img { height: 44px; }
  .features .feature-grid,
  .service-list,
  .values-list,
  .card-container,
  .content-grid,
  .footer-nav,
  .footer-contact {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .hero .container {
    min-height: unset;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .footer-logo { margin-bottom: 10px; }
  .footer-nav, .footer-contact {margin-top: 10px;}
  .text-image-section
  { flex-direction: column; gap:16px; align-items: flex-start;}
}
@media (max-width: 540px) {
  section {padding: 26px 4px;}
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.22rem;}
  .hero h1 {font-size: 1.36rem;}
  .hero .subheadline {font-size: .95rem; margin-bottom: 12px;}
  .features .feature-grid li,
  .service-card,
  .values-list > div,
  .card {
    padding: 15px 9px 16px 11px;
    border-radius: 10px;
    font-size: 0.97rem;
  }
  .testimonial-card { font-size: 0.98rem; }
  .customer-feedback-snippet {font-size: 0.99rem; }
}
@media (max-width:420px) {
  .cookie-banner, .cookie-modal {padding-left:6px; padding-right:6px;}
}

/* ================ ANIMATIONS & MICRO-INTERACTIONS ================ */
.button-primary, .main-nav a, .mobile-nav a, .service-card, .card, .testimonial-card {
  transition: box-shadow 0.2s, background 0.18s, transform 0.17s, color 0.14s;
}

/* ========== Utilities/Helpers ========== */
.mt-2 { margin-top: 12px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 16px; }
.mt-3 { margin-top: 16px; }

/* =============== Hide default outline but improve accessibility =============== */
:focus { outline: 2px solid var(--accent); outline-offset: 3px; }
::-webkit-input-placeholder { color: #bfc9be; }
::-moz-placeholder { color: #bfc9be; }
:-ms-input-placeholder { color: #bfc9be; }
::placeholder { color: #bfc9be; }

/* =============== Artistic Details =============== */
.features .feature-grid li:before,
.service-card:before,
.values-list > div:before {
  content: "";
  display: block;
  width: 46px;
  height: 5px;
  background: var(--artistic-yellow);
  border-radius: 9px;
  margin-bottom: 14px;
  opacity: 0.43;
}
.features .feature-grid li:hover:before,
.values-list > div:hover:before,
.service-card:hover:before {
  background: var(--artistic-pink);
}

/* =============== Hide elements for screen readers only =============== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
