/*! 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, main, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
}
ul, ol {
  list-style: none;
}
a, button {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* BRAND VARIABLES & FONTS */
:root {
  --color-primary: #24324D;
  --color-primary-light: #32425F;
  --color-accent: #E63946;
  --color-accent-dark: #B42C37;
  --color-warm-bg: #FFF5ED;
  --color-card-bg: #FFFFFF;
  --color-secondary-bg: #E4E7EB;
  --color-cta-bg: #E63946;
  --color-text: #24282B;
  --color-light-text: #343A3F;
  --color-muted: #7D7D7D;
  --color-border: #F1E5DE;
  --shadow-soft: 0 2px 16px rgba(224, 92, 67, 0.07), 0 1.5px 12px rgba(36, 50, 77, 0.06);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-warm-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-warm-bg);
  color: var(--color-text);
  min-height: 100vh;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.16;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.40rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
p, ul, ol, li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-light-text);
  margin-bottom: 12px;
}

ul, ol {
  padding-left: 1.2em;
  margin-bottom: 16px;
}

li {
  margin-bottom: 6px;
}
strong {
  font-weight: 600;
}

/* SECTION SPACING PATTERNS */
.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;
}

/* HEADER & NAV */
header {
  background: var(--color-primary);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.navbar img {
  width: 155px;
  height: auto;
  border-radius: var(--radius-md);
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  border-radius: var(--radius-sm);
  padding: 7px 13px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: #fff;
  transition: background 0.22s, color 0.22s;
}
.primary-cta {
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 10px rgba(230,57,70,0.13);
  transition: background 0.18s, box-shadow 0.3s, color 0.18s;
  display: inline-block;
  margin-left: 12px;
  letter-spacing: 0.02em;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 4px 24px rgba(180,44,55,0.13);
  transform: translateY(-2px) scale(1.03);
}
/* Hamburger */
.mobile-menu-toggle {
  font-size: 2rem;
  color: #fff;
  background: transparent;
  border: 0;
  line-height: 1;
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: 6px 9px;
  display: none;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: rgba(36,50,77,0.09);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,50,77,0.97);
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.6,.05,.3,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin: 0 24px 24px 0;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background 0.18s;
  z-index: 10;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(36,50,77,0.19);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-left: 40px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  padding: 12px 0;
  border-radius: var(--radius-md);
  letter-spacing: 0.01em;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

@media (max-width: 900px) {
  .navbar {
    gap: 8px;
    padding: 8px 0;
  }
}

/* GENERAL LAYOUTS --- */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px 20px;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .text-section {
    padding: 20px 7px;
  }
}

/* HERO SECTIONS */
.hero, .about-hero, .services-hero, .pricing-hero, .galerie-hero, .contact-hero, .thank-you {
  background: linear-gradient(108deg, #FFF5ED 87%, #E4E7EB 100%);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-bottom: 40px;
}
.hero .content-wrapper, .about-hero .content-wrapper, .services-hero .content-wrapper, .pricing-hero .content-wrapper, .galerie-hero .content-wrapper, .contact-hero .content-wrapper, .thank-you .content-wrapper {
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 36px;
  gap: 18px;
}

/* FEATURES GRID */
.features {
  margin-bottom: 60px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 210px;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  min-width: 200px;
  max-width: 320px;
  transition: transform 0.16s, box-shadow 0.25s;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 7px 32px rgba(230,57,70,0.17);
  transform: translateY(-3px) scale(1.04);
}

/* SERVICE ITEMS & PRICING */
.services-list .service-item,
.pricing-table .service-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  padding: 18px 20px;
  gap: 12px;
  font-size: 1.07rem;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.services-list .service-item:hover, .pricing-table .service-price-row:hover {
  box-shadow: 0 5px 24px rgba(230,57,70,0.10);
  border-color: var(--color-accent);
}
.service-price {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-left: 12px;
}

/* TESTIMONIALS */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 370px;
  padding: 28px 22px;
  color: var(--color-primary);
  font-size: 1.1rem;
  position: relative;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1.12rem;
  margin-bottom: 15px;
}
.testimonial-card span {
  color: var(--color-accent);
  font-size: 1rem;
}
.testimonial-card:before {
  content: '\201C';
  color: var(--color-accent);
  font-size: 2.5rem;
  position: absolute;
  top: 15px;
  left: 20px;
  opacity: 0.11;
  z-index: 0;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 9px 44px rgba(230,57,70,0.11);
}

/* CTA */
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 38px 10px;
}

.cta .primary-cta {
  font-size: 1.125rem;
  padding: 13px 30px;
  border-radius: 32px;
  margin: 0;
}

/* ABOUT, TEAM, MISSION, USP */
.mission ul, .team ul, .usp ul, .about-preview ul, .services-list ul, .price-notes ul, .benefits ul, .workshop-features ul, .process-description ol {
  margin-bottom: 16px;
  padding-left: 1.2em;
}
.mission ul li, .team ul li, .usp ul li, .about-preview ul li, .services-list ul li, .price-notes ul li, .benefits ul li, .workshop-features ul li, .process-description ol li {
  position: relative;
  margin-bottom: 8px;
  color: var(--color-primary-light);
  font-size: 1rem;
}
.mission ul li:before, .team ul li:before, .usp ul li:before, .about-preview ul li:before, .price-notes ul li:before, .benefits ul li:before, .workshop-features ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 10px;
  margin-bottom: 2px;
}
.process-description ol {
  list-style-type: decimal;
  padding-left: 22px;
}
.process-description ol li {
  margin-left: 10px;
  color: var(--color-primary);
}

/* FORM STYLE */
form {
  display: flex;
  flex-direction: column;
  gap: 19px;
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 27px 16px 22px;
  max-width: 440px;
  margin: 0 auto 20px;
}
form label {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 4px;
}
form input,
form textarea {
  padding: 9px 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-secondary-bg);
  background: #fff;
  box-shadow: none;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border 0.18s;
  resize: vertical;
}
form input:focus, form textarea:focus {
  border-color: var(--color-accent);
}
form textarea {
  min-height: 110px;
  max-height: 300px;
}
form button[type="submit"] {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-lg);
  border: none;
  padding: 10px 19px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.14s;
  box-shadow: 0 1.5px 13px rgba(230,57,70,0.12);
}
form button[type="submit"]:hover, form button[type="submit"]:focus {
  background: var(--color-accent-dark);
  transform: scale(1.04);
}

/* FOOTER STYLE */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 16px;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  margin-top: 42px;
}
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-logo img {
  width: 83px;
  height: auto;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  background: #fff;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.92;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  opacity: 1;
}
.footer-contact {
  font-size: 0.98rem;
  color: #f8f8fa;
}
.footer-contact a {
  color: #fff;
  font-weight: 500;
  text-decoration: underline;
}

/* ----- COOKIE BANNER ----- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff9f3;
  color: var(--color-primary);
  box-shadow: 0 -3px 24px rgba(36,50,77,0.09);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 18px 22px 18px;
  z-index: 3000;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.6,.05,.3,1);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-message {
  flex: 1 1 240px;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-banner .cookie-actions{
  display: flex;
  gap: 12px;
  flex: 1 1 auto;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(230,57,70,0.06);
  cursor: pointer;
  transition: background 0.18s, color 0.15s, transform 0.1s;
  margin-right: 5px;
  outline: none;
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-accent-dark);
}
.cookie-btn.reject {
  background: var(--color-secondary-bg);
  color: var(--color-primary);
  border: 1px solid #e0dedb;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffe6e6;
  color: var(--color-accent-dark);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-primary);
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,50,77,0.38);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0px 8px 48px rgba(36,50,77,0.17);
  max-width: 97vw;
  width: 380px;
  padding: 34px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: popin 0.33s cubic-bezier(.45,1.14,.5,1.12);
  gap: 20px;
}
@keyframes popin {
  0% {transform: scale(0.88) translateY(9px); opacity: .3;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal h2 {
  font-size: 1.36rem;
  color: var(--color-primary);
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: var(--color-accent);
  border-radius: 7px;
}
.cookie-category .cookie-desc {
  color: var(--color-light-text);
  font-size: 0.97rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
  justify-content: flex-end;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1070px) {
  .container {
    max-width: 98vw;
  }
  .features-grid, .testimonials .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .features-grid, .testimonials .content-wrapper, .cta .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}
@media (max-width: 700px) {
  h1 {font-size: 2rem;}
  h2 {font-size: 1.35rem;}
  .navbar img {width: 120px;}
  .footer-logo img {width: 65px;}
}
@media (max-width: 600px) {
  .section, .hero, .about-hero, .services-hero, .pricing-hero, .galerie-hero, .contact-hero, .thank-you {
    padding: 27px 7px 14px 7px;
  }
  .text-section {
    padding: 14px 4px;
  }
  .feature, .testimonial-card {
    min-width: 95vw;
    max-width: 95vw;
    padding: 17px 8px;
  }
  .footer {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-modal{
    padding: 14px 7px;
    max-width: 95vw;
    font-size: 1rem;
  }
}
@media (max-width: 520px) {
  body, html {
    font-size: 15px;
  }
  .main-nav a, .footer-nav a, .mobile-nav a {
    font-size: 1rem;
  }
}
@media (max-width: 420px) {
  body, html {
    font-size: 14px;
  }
}

/* HIGH CONTRAST FOR TESTIMONIAL SECTIONS */
.testimonials, .testimonial-card {
  background: var(--color-secondary-bg);
}
.testimonial-card {
  color: #181D27;
  background: #fff;
  box-shadow: 0 2px 16px rgba(36,50,77,.06);
}

/* MISC ELEMENTS */
a {
  color: var(--color-accent);
  transition: color 0.17s, border-bottom 0.17s;
}
a:hover, a:focus {
  color: var(--color-accent-dark);
  border-bottom: 1.5px solid var(--color-accent);
}
strong {
  color: var(--color-accent);
  font-weight: 700;
}


/* --- UTILITY CLASSES --- */
.bg-accent {
  background: var(--color-accent);
  color: #fff;
}
.rounded {
  border-radius: var(--radius-lg);
}
.shadow-soft {
  box-shadow: var(--shadow-soft);
}

/* --- Z-INDEX SAFEGUARDS --- */
header { z-index: 100; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 3000; }
.cookie-modal-overlay { z-index: 4000; }

/* --- VISUAL MICRO-INTERACTIONS --- */
button, .primary-cta, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.16s, color 0.16s, transform 0.11s, box-shadow 0.16s;
}
button:active, .primary-cta:active, .cookie-btn:active {
  transform: scale(.96);
}

/* FOCUS STYLES --- */
a:focus, button:focus, input:focus, .primary-cta:focus, .cookie-btn:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1.5px;
}

/* END OF CSS */
