/* --- CSS RESET & NORMALIZATION --- */
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #1e2326;
  color: #f6f6f4;
  min-height: 100vh;
}
img, video {
  max-width: 100%;
  display: block;
}
a {
  color: #D94D1A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ff5e1e;
  outline: none;
}
ul, ol {
  padding-left: 1.2rem;
  margin: 0 0 16px 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.4em;
  color: #F8F5F2;
}
h1 { font-size: 2.35rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.26rem; }
h4, h5, h6 { font-size: 1.08rem; }
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.03rem; }
}
p, li, input, label, textarea {
  font-size: 1rem;
  color: #E3E0DB;
  line-height: 1.6;
}
strong, b { color: #F8F5F2; font-weight: bold; }

/* --- BRAND PALETTE --- */
:root {
  --primary: #256239;
  --primary-dark: #1b4426;
  --secondary: #F8F5F2;
  --accent: #D94D1A;
  --accent-dark: #A03312;
  --metall: #606060;
  --surface: #232628;
  --border-light: #41444B;
  --text-light: #F8F5F2;
  --text: #E3E0DB;
  --text-dark: #141615;
  --shadow: rgba(20, 20, 20, 0.15);
  --card-bg: #26292c;
  --test-bg: #F8F5F2;
  --test-text: #373939;
  --test-meta: #256239;
}

/* --- LAYOUT GLOBAL --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
main {
  min-height: 50vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 8px;
    margin-bottom: 34px;
  }
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  min-height: 80px;
  background: #222529;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  position: relative;
  z-index: 100;
  box-shadow: 0 3px 16px -8px var(--shadow);
}
header a img {
  height: 46px;
  width: auto;
  margin-right: 12px;
  filter: grayscale(0%) contrast(1.2);
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--accent-dark);
  color: var(--secondary);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--secondary);
  font-size: 2.2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 150;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--secondary);
}
@media (max-width: 980px) {
  header {
    padding: 0 14px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* --- MOBILE SLIDE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(22, 25, 27, 0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(0.5, 0, 0.1, 1);
  z-index: 4000;
  box-shadow: 4px 0 32px 0 var(--shadow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  padding: 18px 20px 12px 16px;
  margin-top: 7px;
  margin-bottom: 8px;
  cursor: pointer;
  align-self: flex-end;
  outline: none;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
  margin-top: 16px;
}
.mobile-nav a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.14rem;
  color: var(--secondary);
  padding: 17px 32px 12px 32px;
  border-bottom: 1px solid #343942;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--primary-dark);
  color: var(--accent);
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  width: 100%;
  padding: 56px 0 48px 0;
  background: linear-gradient(110deg, #25292b 82%, var(--primary) 110%);
  box-shadow: 0 5px 32px -12px var(--shadow);
  margin-bottom: 52px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 220px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  max-width: 650px;
}
.hero h1 {
  color: var(--secondary);
  font-size: 2.2rem;
  text-shadow: 1px 2px 8px rgba(10,14,14,0.23);
  letter-spacing: 0.03em;
}
.hero .subheadline {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.005em;
  margin-bottom: 10px;
}
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.05rem;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 13px 32px;
  margin-top: 12px;
  box-shadow: 0 4px 14px -4px var(--shadow),0 1.5px 0 #803b18 inset;
  letter-spacing: 0.05em;
  transition: background 0.25s, transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 7px 34px -8px var(--accent-dark),0 1.5px 0 #64270a inset;
}
@media (max-width: 768px) {
  .hero { padding: 28px 0 20px 0; }
  .hero .container { min-height: 120px; }
  .content-wrapper { max-width: 98vw; }
}

/* --- GENERIC LISTS, ICON LISTS --- */
ul li, ol li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 24px;
}
ul li img {
  width: 30px;
  height: 30px;
  margin-right: 7px;
  object-fit: contain;
  filter: grayscale(1) brightness(2) contrast(1.9) drop-shadow(1px 2px 3px #0002);
}
@media (max-width: 600px) {
  ul li img {
    width: 22px;
    height: 22px;
  }
}
ul li strong {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right: 2px;
}

/* --- CARD & FLEXBOX GRIDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 16px -6px var(--shadow);
  border: 1.5px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.21s;
}
.card:hover {
  box-shadow: 0 10px 36px -5px var(--accent-dark);
  border-color: var(--primary);
  transform: translateY(-2.5px) scale(1.015);
}
.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;
}
@media (max-width: 800px) {
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--test-bg);
  border-radius: 14px;
  box-shadow: 0 1.2px 14px -5px var(--shadow), 0 0px 0 1.2px var(--primary-dark);
  margin-bottom: 25px;
  min-width: 0;
  margin-right: 0;
  margin-left: 0;
  color: var(--test-text);
  border-left: 5px solid var(--primary);
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px -2px var(--accent);
  transform: translateY(-2.3px) scale(1.012);
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--test-text);
  margin-bottom: 2px;
  letter-spacing: 0.01em;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.97rem;
  color: var(--test-meta);
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-meta strong {
  color: var(--primary);
}
.testimonial-meta span:last-child {
 color: #F3A120;
 font-size: 1.0rem;
 letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .testimonial-card { padding: 12px; }
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #191b1c;
  color: var(--secondary);
  font-size: 0.99rem;
  border-top: 2px solid var(--border-light);
  margin-top: 48px;
  padding: 28px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.footer-navigation a {
  color: var(--secondary);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  color: var(--accent);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
  color: var(--secondary);
  font-size: 0.98rem;
}
.contact-info a {
  color: var(--accent);
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.social-links a img {
  width: 29px;
  height: 29px;
  filter: grayscale(1) brightness(1.3) contrast(2.1);
  transition: filter 0.18s, transform 0.18s;
  border-radius: 5px;
}
.social-links a:hover img {
  filter: grayscale(0%) brightness(1.08) contrast(2.2) drop-shadow(0 2px 7px #d94d1a22);
  transform: scale(1.08);
}
@media (max-width: 700px) {
  footer .container {
    padding: 0 5px;
  }
}

/* --- MISCELLANEOUS SECTIONS --- */
.text-section {
  margin: 18px 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.workshop-highlight-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  align-items: stretch;
}
.workshop-highlight-cards > div {
  flex: 1 1 240px;
  background: var(--card-bg);
  border-radius: 11px;
  box-shadow: 0 2px 13px -6px var(--shadow);
  border: 1.2px solid var(--border-light);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.17s;
}
.workshop-highlight-cards > div:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 29px -5px var(--accent-dark);
  transform: scale(1.015);
}
@media (max-width: 900px) {
  .workshop-highlight-cards {
    flex-direction: column;
    gap: 14px;
  }
  .workshop-highlight-cards > div {
    width: 97%;
  }
}

/* --- BUTTONS --- */
button, .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--primary);
  color: var(--secondary);
  padding: 11px 28px;
  border-radius: 8px;
  letter-spacing: 0.03em;
  transition: background 0.19s, box-shadow 0.17s, color 0.18s, transform 0.14s;
  margin: 0 5px 0 0;
}
button:hover, button:focus, .btn:hover, .btn:focus {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 5px 18px -5px var(--accent-dark);
  transform: translateY(-2px) scale(1.04);
}

/* --- INPUTS / FORMS / PRIVACY --- */
input, textarea, select {
  background: #252525;
  color: var(--secondary);
  border: 1.3px solid var(--border-light);
  padding: 10px 13px;
  border-radius: 6px;
  margin-bottom: 9px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: border 0.19s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--primary);
  outline: none;
  box-shadow: 0 0 4px 1px var(--primary);
}
.privacy-note {
  font-size: 0.87rem;
  color: #e2ae92;
  margin-top: 7px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #212323;
  color: var(--secondary);
  border-top: 2px solid var(--accent-dark);
  box-shadow: 0 -2px 34px -4px #141919cc;
  z-index: 4100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 16px 16px 16px;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.24s cubic-bezier(.17,.67,.83,.67), transform 0.29s cubic-bezier(.5,1.7,.71,1.37);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner__text {
  max-width: 520px;
  font-size: 1rem;
  margin-right: 30px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .btn-accept {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
}
.cookie-banner .btn-reject {
  background: #353535;
  color: #e1b6b2;
  font-weight: 600;
}
.cookie-banner .btn-settings {
  background: var(--primary);
  color: #fff;
  font-weight: 500;
}
.cookie-banner .btn-accept:hover,
.cookie-banner .btn-accept:focus {
  background: var(--accent-dark);
}
.cookie-banner .btn-reject:hover,
.cookie-banner .btn-reject:focus {
  background: #28292a;
  color: #fff;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  background: #29814e;
  color: #fff;
}
@media (max-width:650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    font-size: 0.98rem;
    padding: 14px 6px 8px 6px;
  }
  .cookie-banner__text {
    margin-right: 0;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 390px;
  max-width: 99vw;
  background: #23282d;
  box-shadow: 0 0 77px 0 #151616cc, 0 0 17px 2px var(--primary) inset;
  border-radius: 17px 17px 0 0;
  z-index: 4200;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 40px 32px 33px;
  gap: 16px;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.26s cubic-bezier(.23,1.12,.69,1.005);
}
.cookie-modal.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal__header h2 {
  color: var(--accent);
  font-size: 1.35rem;
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  cursor: pointer;
  transition: color 0.17s;
  outline: none;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: var(--accent);
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal__category {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  padding: 6px 0;
}
.cookie-modal__category input[type=checkbox] {
  accent-color: var(--primary);
  width: 20px; height: 20px;
}
.cookie-modal__category.essential input[type=checkbox] {
  accent-color: var(--primary-dark);
}
.cookie-modal__category .category-label{
  color: var(--secondary);
}
.cookie-modal__category.essential .category-label{
  color: var(--primary);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 25px;
}
@media (max-width: 650px) {
  .cookie-modal {
    padding: 16px 5vw 12px 4vw;
    height: auto;
    min-height: 290px;
  }
  .cookie-modal__header h2 {
    font-size: 1.01rem;
  }
}

/* --- SPACING (CRITICAL RULES) --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }

/* --- FLEXBOX ONLY (NO GRID!) --- */
/* Already implemented everywhere above */

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
/* Button Tap Animation */
button:active, .cta-btn:active {
  transform: scale(0.97) translateY(2px);
  box-shadow: 0 1px 8px -4px var(--shadow);
}

/* Fade-in section scroll (class .animate-in) */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(.11,.49,.38,.95), transform 0.54s cubic-bezier(.15,.72,.36,1.07);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {
  .section { margin-bottom: 34px; padding: 24px 5px; }
  .card-container, .content-grid, .workshop-highlight-cards {
    gap: 14px;
  }
  .content-grid, .workshop-highlight-cards {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .content-wrapper, .text-section, .contact-info {
    padding: 0 4px;
  }
  .testimonial-card { margin-bottom: 15px; }
}

/* --- ACCESSIBILITY --- */
:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 1.5px;
}
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

/* --- METALLIC ACCENTS --- */
/* Stylish metal highlight lines/themes on cards/sections */
.card, .workshop-highlight-cards > div {
  border-top: 3.5px solid #60606033;
  box-shadow: 0 1.5px 16px -9px #6d757c44, 0 1px 0 #60606033 inset;
}

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