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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F4EF;
  color: #222;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #216D3B;
  text-decoration: none;
  transition: color 0.23s;
}
a:hover {
  color: #A8B545;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}
ul {
  list-style: none;
}
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
}

strong {
  font-weight: 700;
}

/* ================== BRAND TYPOGRAPHY ================== */
h1, h2, h3, .cta-main, .cta-primary, .btn, header nav a, .footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #216D3B;
  font-weight: 800;
  text-shadow: 2px 6px 36px rgba(168,181,69,0.07);
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #A8B545;
  position: relative;
  font-weight: 700;
}
h2:after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: #216D3B;
  margin: 8px 0 0 0;
  border-radius: 2px;
}
h3 {
  font-size: 1.3rem;
  color: #216D3B;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 22px;
}
p, address, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #232323;
  margin-bottom: 10px;
}
address {
  font-style: normal;
}

/* =============== CONTAINERS, LAYOUTS, FLEXBOX =============== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff7e7;
  border-radius: 16px;
  padding: 24px 22px;
  margin: 20px 0;
  box-shadow: 0 6px 32px 0 rgba(168,181,69,0.09);
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(33,109,59,0.09), 0 1px 3px #A8B54511;
  padding: 26px 24px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 12px 36px rgba(33,109,59,0.13), 0 3px 12px #A8B54517;
  transform: translateY(-3px) scale(1.01) rotate(-1.3deg);
}

.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;
  background: #fff;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 30px rgba(168,181,69,0.08);
  position: relative;
  border-left: 8px solid #A8B545;
  min-width: 0;
  flex: 1 1 280px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.12rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card strong {
  color: #216D3B;
  font-size: 1rem;
  font-weight: 700;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 8px 32px rgba(33,109,59,0.11);
  margin-bottom: 24px;
}

/* =============== HEADER & NAVIGATION =============== */
header {
  width: 100%;
  background: #216D3B;
  color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 18px -8px #A8B54563;
}
header > a img {
  height: 44px;
  margin: 0 22px 0 26px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 8px;
}
.main-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  padding: 7px 15px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A8B545;
  color: #216D3B;
  outline: none;
}

.cta-main {
  margin-left: auto;
  margin-right: 16px;
  background: #A8B545;
  color: #216D3B;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 26px;
  box-shadow: 0 4px 20px -6px #2224;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, transform 0.13s;
  text-align: center;
  display: inline-block;
}
.cta-main:hover, .cta-main:focus {
  background: #fff;
  color: #216D3B;
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #A8B545;
  cursor: pointer;
  margin-left: 16px;
  margin-right: 8px;
  z-index: 201;
  padding: 5px 10px;
  border-radius: 11px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #A8B545;
  background: #fff7e7;
}

/* =============== MOBILE MENU =============== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #A8B545;
  box-shadow: -6px 0 48px -10px #216D3B99;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1), box-shadow 0.24s;
  z-index: 202;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -16px 0 64px -6px #216D3B44;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #216D3B;
  font-size: 2.3rem;
  margin: 18px 24px 0 0;
  cursor: pointer;
  transition: background 0.15s;
  padding: 4px 12px;
  border-radius: 50%;
}
.mobile-menu-close:focus {
  outline: 2px solid #216D3B;
  background: #fff7e7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin: 44px auto 0 auto;
  width: 82vw;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 14px;
  padding: 18px;
  display: block;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F4EF;
  color: #216D3B;
  outline: none;
}

/* =============== CTA & BUTTONS =============== */
.cta-primary {
  display: inline-block;
  background: #216D3B;
  color: #F4F4EF;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 13px 30px;
  box-shadow: 0 6px 24px -8px #A8B54555;
  border: none;
  margin-top: 16px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.16s, color 0.17s, transform 0.12s;
  text-shadow: 0 2px 12px #A8B54519;
}
.cta-primary:hover, .cta-primary:focus {
  background: #A8B545;
  color: #216D3B;
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.btn, .cookie-banner button, .cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 18px;
  padding: 10px 24px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-right: 12px;
  transition: background 0.15s, color 0.19s, transform 0.11s;
}
.btn:focus, .cookie-banner button:focus, .cookie-modal button:focus {
  outline: 2px solid #216D3B;
}

/* =============== SECTIONS / CARDS / LAYOUTS =============== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container, .card-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}

.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;
}

/* Artist-Driven List Styles */
ul li img {
  width: 34px;
  height: 34px;
  vertical-align: middle;
  margin-right: 11px;
  margin-bottom: -9px;
  background: #A8B54522;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(168,181,69,0.18);
  transition: box-shadow 0.17s, background 0.13s;
}
ul li img:hover {
  box-shadow: 0 4px 16px rgba(33,109,59,0.17);
}

/* Distinctive Artistic Elements */
section h2::before {
  content: '\273F'; /* 8-pointed floral star */
  color: #A8B545;
  font-size: 2rem;
  vertical-align: baseline;
  margin-right: 12px;
  opacity: 0.5;
}
section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =============== FOOTER =============== */
footer {
  background: #216D3B;
  color: #fff;
  padding: 36px 0 18px 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  border-radius: 13px;
  padding: 6px 14px;
  transition: background 0.13s, color 0.13s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #A8B545;
  color: #216D3B;
}
footer p {
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

/* =============== COOKIE CONSENT BANNER & MODAL =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #216D3B;
  box-shadow: 0 -4px 18px #216D3B20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  z-index: 301;
  gap: 26px;
  font-size: 1.03rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.77,0,.18,1), opacity 0.16s;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner button {
  margin-right: 12px;
  background: #A8B545;
  color: #fff;
  font-weight: 700;
}
.cookie-banner button.accept {
  background: #216D3B;
  color: #fff;
}
.cookie-banner button.reject {
  background: #b8422a;
  color: #fff;
  font-weight: 700;
}
.cookie-banner button.settings {
  background: #F4F4EF;
  color: #216D3B;
  border: 2px solid #A8B545;
}
.cookie-banner button:hover {
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 3px 12px #A8B54524;
}

/* MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  z-index: 308;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,109,59,0.24);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.show {
  display: flex;
  opacity: 1;
}

.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 8px 46px #216D3B29;
  padding: 34px 32px 26px 32px;
  min-width: 310px;
  max-width: 98vw;
}
.cookie-modal h3 {
  color: #216D3B;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.cookie-modal ul {
  margin-bottom: 20px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 1.02rem;
}
.cookie-modal input[type=checkbox] {
  margin-right: 8px;
  accent-color: #A8B545;
  width: 18px; height: 18px;
}
.cookie-modal button {
  background: #A8B545;
  color: #fff;
  font-weight: 700;
  margin-top: 14px;
}
.cookie-modal button.close {
  float: right;
  background: none;
  color: #b8422a;
  font-size: 1.3rem;
  padding: 0 8px;
  border-radius: 6px;
  margin-top: -11px;
  margin-right: -8px;
  margin-left: 12px;
}
.cookie-modal button.close:hover {
  background: #F4F4EF;
  color: #216D3B;
}

/* =============== RESPONSIVE DESIGN =============== */
@media (max-width: 1200px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 990px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  .testimonial-card { flex-direction: column; text-align: center; gap: 10px; }
}
@media (max-width: 768px) {
  /* Header & nav */
  header { flex-wrap: wrap; padding: 11px 0 9px 0; }
  header > a img { height: 34px; margin: 0 12px 0 8px; }
  .main-nav, .cta-main { display: none; }
  .mobile-menu-toggle { display: block; margin-left: auto; margin-right: 18px; }
  .mobile-menu { width: 100vw; }
  .mobile-nav { width: 92vw; gap: 12px; }
  
  section, .section { padding: 22px 7px; margin-bottom: 36px; }
  .container { padding: 0 6px; }
  .card-container, .content-grid, .features { flex-direction: column; gap: 17px; }
  .testimonial-card { flex-direction: column; text-align: center; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .text-section { padding: 18px 11px; }
}
@media (max-width: 550px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.09rem; }
  .cta-primary, .cta-main { font-size: 0.97rem; padding: 9px 12px; border-radius: 15px; }
  .testimonial-card, .feature-item { padding: 12px 7px; border-radius: 14px; }
  .footer-nav { gap: 10px; }
}

/* ============ ACCESSIBILITY: FOCUS/HOVER STATES ============ */
a:focus, button:focus, .cta-main:focus, .cta-primary:focus, .footer-nav a:focus {
  outline: 2px solid #216D3B;
  outline-offset: 2px;
}

/* ============ MICRO-INTERACTIONS & ARTISTIC EFFECTS ============ */
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 18px 54px -14px #216D3B29;
  transform: scale(1.017) rotate(-1.5deg);
}

.cta-primary, .cta-main, .footer-nav a, .main-nav a, .btn {
  transition: background 0.18s, color 0.18s, transform 0.13s, box-shadow 0.17s;
}

/* Icon pop effect */
ul li img {
  transition: transform 0.17s, filter 0.15s, background 0.19s;
}
ul li img:hover {
  transform: scale(1.09) rotate(-5deg);
  filter: brightness(1.2);
}

/* Artistic divider for major sections */
section:not(:last-child) {
  border-bottom: 2.5px dashed #A8B54577;
}

/* Hide cookie modal on init */
.cookie-modal, .cookie-modal-overlay {
  display: none;
  opacity: 0;
}
.cookie-modal-overlay.show, .cookie-modal.show {
  display: flex;
  opacity: 1;
}

/* ============== UTILITY =============== */
.gap-20 { gap: 20px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }

/* ============== PRINT =============== */
@media print {
  header, .main-nav, .footer-nav, .mobile-menu, .mobile-menu-toggle,
  .cookie-banner, .cookie-modal, .cookie-modal-overlay {
    display: none !important;
  }
  section, footer, main, .container {
    background: none !important;
    color: #232323 !important;
    box-shadow: none !important;
  }
}

/* ============== END OF STYLE.CSS =============== */
