/* --- 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,
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;
}
footer span {
  color: white;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F8F7F0;
  color: #3d3e3c;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #38503B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #6F4B21;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
}
strong {
  font-weight: 700;
}

/* --- BRAND PASTEL PALETTE --- */
:root {
  --primary: #38503B;
  --primary-light: #4C6C48;
  --accent: #8D6E53;
  --accent-dark: #6F4B21;
  --secondary: #D7C9B0;
  --cream-bg: #F8F7F0;
  --white: #FFFFFF;
  --pastel-peach: #F6E8E2;
  --pastel-green: #DFF7EA;
  --pastel-blue: #E8F3F8;
  --pastel-lav: #EFE9F8;
  --gray-light: #F2F2F2;
  --shadow1: 0 2px 12px 0 rgba(56,80,59,0.06);
  --shadow2: 0 1.5px 8px 0 rgba(56,80,59,0.08);
  --text-heading: #38503B;
  --text-body: #3d3e3c;
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-weight: bold;
  font-size: 2.25rem;
  color: var(--text-heading);
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h2 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-heading);
  letter-spacing: 0.01em;
}
h3 {
  font-family: 'Merriweather', 'Georgia', serif;
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-heading);
}
h4, h5, h6 {
  font-family: 'Merriweather', 'Georgia', serif;
}
p, li, span, div, label {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 400;
}

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

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* --- HEADER & NAV --- */
header {
  background: var(--white);
  box-shadow: var(--shadow1);
  position: sticky;
  top: 0;
  z-index: 12;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  padding: 8px 6px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 6px;
  color: var(--primary);
  transition: background 0.2s, color 0.2s;
}
header nav a:hover,
header nav a:focus {
  background: var(--pastel-green);
}
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  padding: 10px 30px;
  margin-left: 12px;
  box-shadow: var(--shadow2);
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.22s, box-shadow 0.22s, transform 0.16s;
  text-align: center;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent-dark);
  color: var(--white);
  box-shadow: 0 4px 20px 0 rgba(109, 74, 33, 0.14);
  transform: translateY(-1.5px) scale(1.04);
  text-decoration: none;
}
button.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 7px 9px;
  margin-left: 12px;
  border-radius: 7px;
  line-height: 1;
  z-index: 120;
  transition: background 0.15s, color 0.2s;
  display: none;
}
button.mobile-menu-toggle:focus,
button.mobile-menu-toggle:hover {
  background: var(--pastel-green);
  color: var(--accent-dark);
}
@media (max-width: 992px) {
  header nav {
    display: none;
  }
  button.mobile-menu-toggle {
    display: block;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(216, 233, 220, 0.98);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.28,.56,.23,.93), opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 24px 8px 0;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.15s;
  z-index: 1201;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-peach);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Merriweather', serif;
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 12px;
  width: 88vw;
  max-width: 410px;
  text-align: center;
  background: var(--cream-bg);
  margin-bottom: 4px;
  box-shadow: var(--shadow1);
  transition: background 0.18s, color 0.18s, box-shadow 0.26s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--pastel-green);
  color: var(--accent-dark);
  box-shadow: 0 3px 16px 0 rgba(56,80,59,0.1);
}

/* --- MAIN/SECTION LAYOUT --- */
main {
  min-height: 500px;
  margin-bottom: 80px;
  background: transparent;
}

.hero {
  padding: 64px 0 44px 0;
  background: linear-gradient(120deg, var(--pastel-peach) 0%, var(--pastel-green) 100%);
  border-radius: 0 0 44px 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
  max-width: 620px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  line-height: 1.25;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 22px;
}

.features, .services, .about, .about-details, .about-philosophy, .contact-data, .shop-terms, .privacy-policy, .rodo, .cookie-policy, .thank-you {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow1);
  margin-bottom: 60px;
  padding: 40px 24px 40px 24px;
}

.features ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.features ul li, .services ul li,
.features .service-block, .service-grid .service-block {
  background: var(--pastel-blue);
  box-shadow: var(--shadow2);
  border-radius: 22px;
  padding: 30px 28px;
  flex: 1 1 270px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.15s, background 0.18s;
  position: relative;
}
.features ul li:hover, .services ul li:hover,
.features .service-block:hover, .service-grid .service-block:hover {
  background: var(--pastel-green);
  box-shadow: 0 5px 20px rgba(56,80,59,0.13);
  transform: translateY(-3px) scale(1.018);
}
.features ul li img, .services ul li img, .service-block img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 8px;
}
.features ul li h3, .services ul li h3, .service-block h3 {
  font-size: 1.10rem;
  color: var(--primary);
  margin-bottom: 6px;
  margin-top: 2px;
}
.features ul li p, .services ul li p, .service-block p {
  font-size: 1rem;
  color: var(--text-body);
}
.price {
  margin-top: 8px;
  font-family: 'Merriweather', serif;
  background: var(--secondary);
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 1.5px 7px 0 rgba(216,201,176,0.06);
  align-self: stretch;
  text-align: right;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--pastel-blue);
  box-shadow: var(--shadow2);
  border-radius: 22px;
  padding: 28px;
  flex: 1 1 250px;
  min-width: 215px;
  max-width: 320px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover,
.card:focus {
  box-shadow: 0 4px 22px 0 rgba(56,80,59,0.10);
  transform: translateY(-2px) scale(1.012);
}
.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;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--pastel-lav);
  border-radius: 28px;
  box-shadow: var(--shadow2);
  padding: 38px 17px 44px 17px;
  margin-bottom: 60px;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 35px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px 28px 23px 28px;
  border-radius: 20px;
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 2px 13px 0 rgba(56,80,59,0.07);
  margin-bottom: 20px;
  border-left: 6px solid var(--accent);
  transition: box-shadow 0.20s, border-color 0.22s;
}
.testimonial-card p {
  font-family: 'Lato',Arial,Helvetica,sans-serif;
  color: #24251E;
  font-size: 1.07rem;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 0.99rem;
  font-style: italic;
  color: var(--primary);
  opacity: 0.87;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 5px 18px 0 rgba(141,110,83,0.13);
  border-left: 6px solid var(--accent-dark);
}

/* --- CTA SECONDARY --- */
.cta-secondary {
  background: linear-gradient(110deg, var(--pastel-green) 0%, var(--pastel-peach) 100%);
  border-radius: 28px;
  box-shadow: var(--shadow1);
  padding: 38px 17px 44px 17px;
  margin-bottom: 60px;
  text-align: center;
}
.cta-secondary h2 {
  margin-bottom: 13px;
  font-size: 1.42rem;
}
.cta-secondary p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* --- SPECIAL SECTIONS --- */
.about-details ul, .about-philosophy ul, .about ul, .contact-data ul, .faq ul, .workshop-schedule ul {
  margin-left: 0;
  margin-top: 16px;
  margin-bottom: 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.about-details ul li, .about-philosophy ul li, .about ul li, .contact-data ul li, .faq ul li, .workshop-schedule ul li {
  padding-left: 8px;
  font-size: 1rem;
}

.shop-terms ul, .privacy-policy ul, .rodo ul, .cookie-policy ul {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.info-box {
  background: var(--pastel-peach);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 12px;
  margin-top: 16px;
  font-size: 1rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}

.map-box {
  margin: 16px 0;
}
.map-placeholder {
  background: var(--pastel-lav);
  border: 1.5px solid var(--pastel-blue);
  border-radius: 15px;
  padding: 21px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
  box-shadow: 0 1px 9px 0 rgba(56,80,59,0.04);
  color: var(--text-body);
}
.social-links {
  margin: 14px 0 0 0;
  display: flex;
  align-items: center;
  gap: 13px;
}
.social-links a img {
  width: 29px;
  height: 29px;
  border-radius: 7px;
  transition: background 0.21s;
}
.social-links a:hover img,
.social-links a:focus img {
  background: var(--pastel-blue);
  box-shadow: 0 2px 8px 0 rgba(56,80,59,0.10);
}
.faq h3 {
  margin-bottom: 9px;
  margin-top: 17px;
}

.workshop-schedule {
  margin-top: 23px;
  background: var(--pastel-blue);
  border-radius: 15px;
  padding: 18px;
  box-shadow: 0 1.5px 6px 0 rgba(56,80,59,0.03);
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 32px 0 36px 0;
  box-shadow: 0 -2px 14px 0 rgba(56,80,59,0.04);
  position: relative;
  border-radius: 28px 28px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 28px;
  margin-bottom: 14px;
}
footer nav a {
  color: var(--white);
  opacity: 0.9;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 7px;
  padding: 7px 9px;
  transition: background 0.16s, color 0.2s, opacity 0.22s;
}
footer nav a:hover,
footer nav a:focus {
  background: var(--pastel-green);
  color: var(--primary);
  opacity: 1;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  opacity: 0.84;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--pastel-peach);
  box-shadow: 0 -3px 18px 0 rgba(141, 110, 83, 0.14);
  border-radius: 24px 24px 0 0;
  padding: 18px 19px 17px 19px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  z-index: 130;
  font-size: 1rem;
  transition: transform 0.32s, opacity 0.22s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cookie-consent-banner button {
  border: none;
  background: var(--accent);
  color: var(--white);
  padding: 8px 28px;
  border-radius: 19px;
  font-family: 'Merriweather',serif;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow1);
  transition: background 0.19s, box-shadow 0.17s, transform 0.16s;
}
.cookie-consent-banner button:hover,
.cookie-consent-banner button:focus {
  background: var(--accent-dark);
  box-shadow: 0 3px 12px 0 rgba(56,80,59,0.08);
  transform: translateY(-1px) scale(1.035);
}
.cookie-consent-banner button.cookie-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-consent-banner button.cookie-settings:hover,
.cookie-consent-banner button.cookie-settings:focus {
  background: var(--pastel-green);
  color: var(--primary);
}

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1600;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(220, 236, 221, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: var(--cream-bg);
  border-radius: 25px;
  box-shadow: 0 6px 38px 0 rgba(56,80,59,0.15);
  padding: 36px 36px 29px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 300px;
  max-width: 95vw;
  gap: 19px;
  animation: modalFadeIn .35s cubic-bezier(.23,1,.32,1);
}
@keyframes modalFadeIn {
  0% { transform: scale(0.93) translateY(90px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.23rem;
  margin-bottom: 11px;
}
.cookie-categories {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-cat-row input[type="checkbox"] {
  accent-color: var(--accent);
  width: 18px; height: 18px;
}
.cookie-cat-row label {
  font-weight: 600;
}
.cookie-essential {
  opacity: 0.92;
  color: var(--text-body);
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 25px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
}
/* --- Forms and Inputs (where present) --- */
input, textarea, select {
  border: 1.5px solid var(--secondary);
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 1rem;
  margin-bottom: 16px;
  background: var(--white);
  transition: border 0.19s, background 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  background: var(--pastel-green);
}

/* --- THANK YOU SECTION --- */
.thank-you .content-wrapper {
  align-items: center;
  gap: 20px;
  text-align: center;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 750px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  header .container {
    height: 67px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  .content-wrapper, .section, .features ul, .services ul, .service-grid, .testimonial-slider, .testimonial-list {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }
  .features ul li, .services ul li, .service-block {
    max-width: 98vw;
    min-width: unset;
    width: 100%;
  }
  .card, .testimonial-card {
    max-width: 99vw;
    min-width: unset;
    width: 100%;
  }
  .cta-button {
    display: block;
    margin: 16px 0 0 0;
    width: 100%;
    text-align: center;
  }
  .hero {
    padding: 44px 0 26px 0;
    border-radius: 0 0 28px 28px;
  }
  .testimonials, .cta-secondary, .features, .services, .about, .about-details, .about-philosophy, .contact-data, .shop-terms, .privacy-policy, .rodo, .cookie-policy, .thank-you {
    border-radius: 13px;
    padding: 25px 6px 26px 6px;
  }
  .footer-brand {
    flex-direction: column;
  }
  footer .container {
    gap: 14px;
  }
  footer nav {
    flex-direction: column;
    gap: 8px;
  }
  .map-placeholder {
    flex-direction: column;
    gap: 9px;
    padding: 11px 10px;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.11rem; }
  h3 { font-size: 1rem; }
  .features ul li, .services ul li, .service-block { padding: 19px 9px; }
  .testimonial-card, .card { padding: 16px 10px 12px 10px; }
}

/* --- PRINT --- */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  body { background: #FFF; color: #111; }
}
