/* ===========================================================
   CSS RESET & BASE RULES
   =========================================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3EFE6;
  color: #255257;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;
}
ul, ol {
  list-style: none;
}
a {
  color: #255257;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
*:focus {
  outline: 2px solid #AA7D4D;
  outline-offset: 2px;
}

/* ===========================================================
   TYPOGRAPHY & HEADINGS
   =========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', serif;
  color: #255257;
  letter-spacing: -0.015em;
  font-weight: 800;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.13;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #AA7D4D;
  font-weight: 800;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.19rem;
  font-weight: 600;
  color: #255257;
  opacity: 0.85;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
}
p, li {
  font-size: 1rem;
  line-height: 1.68;
  color: #255257;
}
strong, b {
  font-weight: 800;
}
blockquote {
  border-left: 5px solid #AA7D4D;
  background: #fffbea;
  color: #255257;
  font-style: italic;
  padding: 1.2em 1.6em;
  margin: 32px 0 24px 0;
  border-radius: 10px;
}

/* ===========================================================
   LAYOUT: GENERAL FLEXBOX & SPACING PATTERNS
   =========================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 22px rgba(34,82,87,0.12);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.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: 16px;
  min-height: 100px;
  box-shadow: 0 3px 12px rgba(34,82,87,0.07);
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Cards (services, products etc) */
.service-cards, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card, .workshop-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 4px 18px rgba(85,125,77,0.07);
  min-width: 260px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid #AA7D4D10;
  transition: box-shadow .17s, border .18s;
}
.service-card:hover, .workshop-card:hover {
  box-shadow: 0 8px 26px rgba(34,82,87,0.18);
  border-color: #AA7D4D;
}
.price {
  color: #AA7D4D;
  font-size: 1.10rem;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.03em;
}

/* Custom Static Spacing for Legal/About/etc sections */
.legal, .about, .team, .contact, .form, .footer-contact, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 28px;
  max-width: 760px;
}

/* ===========================================================
   NAVIGATION (DESKTOP & MOBILE)
   =========================================================== */
header {
  background: #F3EFE6;
  padding: 0 0 2px 0;
  border-bottom: 2.5px solid #AA7D4D11;
  z-index: 100;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  padding: 16px 20px 13px 20px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.main-nav a {
  font-weight: 700;
  font-size: 16px;
  transition: color 0.18s, background .14s;
  padding: 7px 13px;
  border-radius: 7px;
  position: relative;
}
.main-nav a.cta-btn {
  background: #255257;
  color: #fff;
  font-weight: 900;
  margin-left: 16px;
  border-radius: 9px;
  box-shadow: 0 2px 8px #AA7D4D22;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  padding: 7px 20px 8px 20px;
  transition: background 0.15s, box-shadow .13s;
}
.main-nav a.cta-btn:hover,
.main-nav a.cta-btn:focus {
  background: #AA7D4D;
  color: #fff;
  box-shadow: 0 4px 18px #AA7D4D55;
}
.main-nav a:hover, .main-nav a:focus {
  background: #AA7D4D22;
  color: #AA7D4D;
}
.main-nav img {
  height: 38px;
  margin-right: 5px;
  vertical-align: middle;
}

/* Hamburger & Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: #255257;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  padding: 7px 15px;
  border-radius: 8px;
  margin: 8px 17px 8px 0;
  cursor: pointer;
  align-items: center;
  position: absolute;
  right: 0;
  top: 19px;
  z-index: 130;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #AA7D4D;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; height: 100vh;
  background: #255257dd;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.8,.2,.9,1.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 14px 30px 14px 0;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 2;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  color: #AA7D4D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
  align-items: flex-start;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.44rem;
  font-family: 'Lora', serif;
  font-weight: 800;
  transition: color 0.16s, background .13s;
  padding: 9px 17px 8px 0;
  border-radius: 9px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #AA7D4D;
  background: #fff2e5;
}

/* Show/hide nav for mobile */
@media only screen and (max-width: 1050px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .main-nav a:not(:first-child):not(.cta-btn) {
    display: none;
  }
}
@media (max-width: 768px) {
  .main-nav a, .main-nav a.cta-btn {
    display: none;
  }
  .main-nav img {
    margin-right: 5px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ===========================================================
   HERO & CALLOUTS
   =========================================================== */
.hero {
  background: #fff;
  padding: 56px 0 48px 0;
  box-shadow: 0 2px 12px #AA7D4D11;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero h1 {
  color: #255257;
  font-weight: 900;
  font-size: 2.4rem;
  margin-bottom: 14px;
}
.hero p.subheadline {
  color: #AA7D4D;
  font-size: 1.15rem;
  opacity: 0.9;
}
.hero .cta-btn {
  margin-top: 16px;
}

.cta {
  background: #255257;
  color: #fff !important;
  border-radius: 18px;
  box-shadow: 0 2px 18px #25525718;
  margin-bottom: 56px;
}
.cta h2, .cta p {
  color: #fff !important;
}
.cta a.cta-btn {
  background: #fff;
  color: #255257;
  font-weight: 900;
  border: none;
}
.cta a.cta-btn:hover {
  background: #AA7D4D;
  color: #fff;
}

/* Special Cards & Info Blocks */
.customization-options,
.expert-advice,
.learning-benefits,
.support-info,
.benefit-callout,
.order-info,
.price-overview,
.category-list,
.form-info,
.newsletter-signup,
.thank-you-text {
  background: #fffbea;
  border-left: 6px solid #AA7D4D;
  padding: 16px 18px;
  border-radius: 12px;
  color: #255257;
  font-size: 1rem;
  margin: 0 0 20px 0;
}

/* Social Links */
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.social-links a img {
  filter: grayscale(0.2) brightness(0.96) saturate(1.24);
  width: 36px;
  height: 36px;
  transition: filter 0.18s, transform 0.14s;
  border-radius: 8px;
}
.social-links a:hover img,
.social-links a:focus img {
  filter: none;
  transform: scale(1.13) rotate(-7deg);
}

/* ===========================================================
   BUTTONS & CTA
   =========================================================== */
.cta-btn {
  background: #255257;
  color: #fff;
  font-family: 'Lora', serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.09rem;
  border: none;
  border-radius: 11px;
  padding: 12px 28px 13px 28px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 12px #AA7D4D30;
  cursor: pointer;
  transition: background 0.13s, color .15s, box-shadow .14s, transform .13s;
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #AA7D4D;
  color: #fff;
  box-shadow: 0 8px 22px #AA7D4D50;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #AA7D4D;
  color: #fff;
  font-weight: 800;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #255257;
  color: #fff;
}

/* ===========================================================
   FEATURES & LISTS
   =========================================================== */
.features, .feature-list {
  width: 100%;
}
.features ul, .feature-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0;
}
.features li, .feature-list li {
  background: #fff;
  padding: 20px 18px;
  border-radius: 12px;
  min-width: 190px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px #25525712;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: #255257;
  font-size: 1.04rem;
}
.features li img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials h2 {
  margin-bottom: 26px;
  color: #AA7D4D;
}
.testimonial-card {
  background: #fff;
  border-left: 5px solid #AA7D4D;
  color: #255257;
  margin-bottom: 24px;
  box-shadow: 0 3px 15px #25525717;
  border-radius: 14px;
  font-size: 1.11rem;
  transition: box-shadow 0.13s, border 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px #25525728;
}
.testimonial-card p {
  font-style: italic;
  color: #255257;
  margin-bottom: 14px;
}
.testimonial-card span {
  color: #AA7D4D;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
  background: #255257;
  color: #fff;
  padding: 32px 0 18px 0;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.95;
  text-decoration: underline;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
  transition: color .15s, text-decoration .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #AA7D4D;
  text-decoration: underline wavy .11em #AA7D4D;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  gap: 8px;
  color: #fff;
}
.footer-brand img {
  width: 44px;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.97rem;
  color: #fff;
  text-align: center;
}

/* ===========================================================
   RESPONSIVE DESIGN & MOBILE LAYOUT
   =========================================================== */
@media (max-width: 1060px) {
  .container {
    max-width: 98vw;
  }
  .service-cards, .workshop-list {
    flex-direction: column;
    gap: 20px;
  }
  .features ul {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .section, .hero, .features, .testimonials, .cta, .legal, .about, .team, .contact, .form, .footer-contact, .confirmation {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .card-container, .content-grid, .service-cards, .workshop-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width:768px) {
  .main-nav {
    padding: 12px 12px 13px 12px;
    gap: 7px;
  }
  .container {
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .section, .hero, .features, .testimonials, .cta, .legal, .about, .team, .contact, .form, .footer-contact, .confirmation {
    padding: 28px 4vw;
    margin-bottom: 40px;
  }
  .service-card, .workshop-card, .card {
    padding: 18px 13px;
    min-width: unset;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 11px 17px 12px 17px;
  }
  .features ul, .features li {
    gap: 15px;
    min-width: unset;
  }
  .testimonial-card {
    padding: 14px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width:530px) {
  html {
    font-size: 15px;
  }
  .footer-brand img {
    width: 36px;
    margin-bottom: 6px;
  }
}

/* ===========================================================
   ANIMATIONS & MICRO-INTERACTIONS
   =========================================================== */
.section, .hero, .cta {
  animation: fadeInSection .63s cubic-bezier(.7, 0, .5, 1) both;
}
@keyframes fadeInSection {
  from {
    opacity: 0;
    transform: translateY(38px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cta-btn, .mobile-menu-toggle, .mobile-menu-close, .service-card, .workshop-card {
  transition: box-shadow .14s, background .16s, color .15s, transform .13s, border .12s;
}

/* ===========================================================
   COOKIE CONSENT BANNER & MODAL
   =========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #255257;
  border-top: 4px solid #AA7D4D;
  box-shadow: 0 -2px 24px #25525721;
  padding: 24px 24px 20px 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.07rem;
  animation: fadeInCookie 0.64s cubic-bezier(.5,0,.6,1.02) both;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-btn {
  background: #AA7D4D;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 21px;
  font-family: 'Lora', serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  box-shadow: 0 2px 8px #AA7D4D22;
  cursor: pointer;
  transition: background .13s, color .14s, box-shadow .14s;
}
.cookie-btn.cookie-settings {
  background: #255257;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #255257;
  color: #fff;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #AA7D4D;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,82,87, 0.41);
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookie .37s cubic-bezier(.5,0,.6,1.02) both;
}
.cookie-modal {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 8px 38px #25525733;
  padding: 34px 30px 28px 30px;
  max-width: 480px;
  width: 96vw;
  color: #255257;
  font-size: 1.08rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: slideInCookie 0.37s cubic-bezier(.5,0,.6,1.02) both;
}
@keyframes slideInCookie {
  from {
    transform: scale(0.7) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #AA7D4D;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category-toggle label {
  font-size: 1rem;
  font-weight: 600;
}
/* Cookie toggles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  margin-right: 5px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #F3EFE6;
  border: 2px solid #AA7D4D77;
  border-radius: 18px;
  transition: background .13s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #AA7D4D;
  border-color: #AA7D4D;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 3px; bottom: 2.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
  box-shadow: 0 1px 3px #25525718;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 5px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top:12px;
  right:16px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #255257;
  cursor: pointer;
  padding: 2px 7px;
  z-index: 2;
  transition: color 0.17s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  color: #AA7D4D;
}

@media (max-width:460px) {
  .cookie-modal { padding: 20px 7vw 16px 7vw; }
}

/* END CSS */
