/* RESET & BASE TYPOGRAPHY */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background: #F3F3F3;
}
body {
  color: #1B2531;
  background: #F3F3F3;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
a {
  color: #1B2531;
  text-decoration: none;
  transition: color 0.2s linear;
}
a:hover,
a:focus {
  color: #C0211A;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
input, textarea {
  border-radius: 0;
}


/* FONT FACE: OSWALD for Headings */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1B2531;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 0.75em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.6em;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.35em;
  line-height: 1.3;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 0.25em;
}
p, ul, ol {
  margin-bottom: 1.2em;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.subtitle {
  font-size: 1.125rem;
  color: #353F4B;
  letter-spacing: 0.015em;
  margin-bottom: 1.8em;
}
blockquote {
  margin: 18px 0;
  padding: 20px 32px;
  border-left: 4px solid #C0211A;
  color: #1B2531;
  font-style: italic;
  background: #F3F3F3;
  border-radius: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}

strong {
  font-weight: 700;
}
.small {
  font-size: 0.92rem;
}

/* CONTAINER & GRID STYLES */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-grid { /* can be reused for flex layouts */
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-section {
  max-width: 830px;
  margin: 0 auto;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 18px rgba(38,48,67,0.07);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 270px;
  transition: transform 0.18s cubic-bezier(0.42,0,0.58,1), box-shadow 0.18s cubic-bezier(0.42,0,0.58,1);
  border: 1.5px solid #F3F3F3;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(27,37,49,0.13);
  transform: translateY(-3px) scale(1.012);
  border-color: #C0211A33;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: start;
}
.feature {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(38,48,67,0.10);
  padding: 32px 24px;
  flex: 1 1 300px;
  min-width: 260px;
  text-align: left;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 2.5px solid #F3F3F3;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.feature:hover {
  box-shadow: 0 8px 28px rgba(27,37,49,0.12);
  border-color: #C0211A55;
}
.feature img {
  height: 44px;
  margin-bottom: 10px;
  filter: grayscale(0.2) contrast(1.13);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.value-list li, .workshop-list li, .categories-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.value-list img, .workshop-list img, .categories-list img {
  width: 28px;
  height: 28px;
}

/* SERVICES */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-block {
  flex: 1 1 290px;
  background: #FFFFFF;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(27,37,49,0.09);
  border: 1.5px solid #F3F3F3;
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.service-block:hover {
  box-shadow: 0 5px 22px rgba(192,33,26,0.09);
  border-color: #C0211A32;
}
.service-price {
  color: #C0211A;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-top: 6px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
  margin-top: 8px;
  padding-left: 12px;
}
.process-steps li {
  position: relative;
  padding-left: 34px;
  font-size: 1.06rem;
}
.process-steps li:before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 5px;
  width: 18px;
  height: 18px;
  background: #C0211A;
  border-radius: 2.5px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 2px 18px rgba(38,48,67,0.08);
  padding: 20px 30px 20px 30px;
  margin-bottom: 20px;
  border-left: 6px solid #C0211A;
  transition: box-shadow 0.15s;
}
.testimonial-card p {
  color: #212933;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.8;
}
.testimonial-card span {
  color: #1B2531;
  opacity: 0.95;
  font-size: 15px;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 6px 22px rgba(27,37,49,0.14);
}

/* BLOG */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-post {
  flex: 1 1 320px;
  background: #FFF;
  border: 2px solid #F3F3F3;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(38,48,67,0.09);
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, border-color 0.13s;
}
.blog-post:hover {
  box-shadow: 0 6px 23px rgba(192,33,26,0.10);
  border-color: #DB504A33;
}
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.categories-list li {
  padding: 7px 17px;
  background: #F3F3F3;
  border-radius: 18px;
  letter-spacing: 0.02em;
  color: #1B2531;
  font-weight: 500;
}

/* FORM FIELDS (Newsletter) */
label {
  display: block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 7px;
  margin-top: 12px;
  color: #1B2531;
}
input[type="email"],
input[type="text"],
input[type="password"],
input[type="number"],
textarea {
  width: 100%;
  border: 1.5px solid #DB504A44;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  background: #FFF;
  color: #1B2531;
  margin-bottom: 16px;
  transition: border-color 0.13s;
}
input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus {
  border-color: #C0211A;
  outline: none;
}

/* BUTTONS / CALL TO ACTIONS */
.cta-primary,
button.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C0211A;
  color: #FFF;
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.13rem;
  letter-spacing: 0.04em;
  padding: 13px 32px;
  border-radius: 34px;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 2px rgba(38,48,67,0.04);
  transition: background 0.19s, box-shadow 0.15s, transform 0.13s;
  margin-top: 8px;
}
.cta-primary:hover,
.cta-primary:focus,
button.cta-primary:hover,
button.cta-primary:focus {
  background: #B51811;
  box-shadow: 0 2px 10px rgba(27,37,49,0.13);
  transform: translateY(-2px);
  color: #FFF;
}
.cta-secondary,
button.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F3F3F3;
  color: #C0211A;
  font-family: 'Oswald', Arial Black, Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  border: 2px solid #C0211A;
  border-radius: 34px;
  font-weight: 700;
  padding: 11px 27px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, border-color 0.14s, box-shadow 0.13s;
  margin-top: 8px;
}
.cta-secondary:hover,
.cta-secondary:focus,
button.cta-secondary:hover,
button.cta-secondary:focus {
  background: #C0211A;
  color: #FFF;
  border-color: #C0211A;
  box-shadow: 0 1px 6px rgba(192,33,26,0.10);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #1B2531;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  min-height: 70px;
  position: relative;
  z-index: 100;
}
.logo {
  display: flex;
  align-items: center;
  padding: 18px 25px;
}
.logo img {
  height: 36px;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #F3F3F3;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 6px;
  border-radius: 3px;
  line-height: 1.5;
  transition: color 0.19s, background 0.16s;
}
nav a:hover,
nav a:focus {
  background: #C0211A;
  color: #FFF;
}
nav .cta-primary {
  background: #C0211A;
  color: #FFF;
  border-radius: 26px;
  padding: 10px 22px;
  margin-left: 7px;
  line-height: 1.4;
  font-size: 1.06rem;
}
nav .cta-primary:hover,
nav .cta-primary:focus {
  background: #B51811;
  color: #FFF;
  box-shadow: 0 2px 10px #1B253166;
}

/* HAMBURGER BUTTON FOR MOBILE */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #FFF;
  background: none;
  border: none;
  outline: none;
  margin-right: 17px;
  cursor: pointer;
  z-index: 202;
  transition: color 0.15s, transform 0.11s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  color: #C0211A;
  transform: scale(1.08);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1B2531ED;
  opacity: 0;
  pointer-events: none;
  z-index: 300;
  transition: opacity 0.33s cubic-bezier(0.7,0,0.27,1);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.05rem;
  margin: 18px 30px 0 0;
  z-index: 10;
  cursor: pointer;
  transition: color 0.14s, transform 0.14s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #C0211A;
  transform: rotate(5deg) scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  padding: 50px 28px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #F3F3F3;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #C0211A;
  color: #FFF;
}

/* FOOTER */
footer {
  padding: 36px 0 38px 0;
  background: #1B2531;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F3F3F3;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0.83;
  transition: color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #C0211A;
  background: none;
}
.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 16px;
  margin-top: 7px;
}
.footer-info img {
  height: 27px;
  filter: grayscale(0.33) contrast(1.08);
}
.footer-info span {
  color: #F3F3F3;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.88;
  letter-spacing: 0.01em;
}


/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #1B2531;
  color: #F3F3F3;
  padding: 24px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -3px 18px rgba(27,37,49,0.13);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieBannerIn 0.6s cubic-bezier(0.68,0,0.26,1) 0.1s 1 both;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin-left: 13px;
  margin-right: 2px;
  margin-top: 7px;
}
.cookie-banner .cta-primary, .cookie-banner .cta-secondary {
  box-shadow: none;
  min-width: 125px;
  padding: 10px 22px;
  font-size: 1rem;
}
.cookie-banner .cta-secondary {
  background: #353F4B;
  color: #FFF;
  border: 2px solid #F3F3F3;
}
.cookie-banner .cta-secondary:hover,
.cookie-banner .cta-secondary:focus {
  background: #FFF;
  color: #C0211A;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(27,37,49,0.67);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s cubic-bezier(0.68,0,0.26,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #F3F3F3;
  color: #1B2531;
  max-width: 430px;
  width: 94%;
  padding: 36px 30px 28px 30px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  box-shadow: 0 3px 48px rgba(27,37,49,0.16);
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieModalIn 0.46s cubic-bezier(0.68,0,0.26,1) 0.03s 1 both;
  z-index: 10001;
}
@keyframes cookieModalIn {
  from { transform: scale(0.93) translateY(42px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  color: #1B2531;
  margin-bottom: 10px;
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.09rem;
}
.cookie-modal .toggle-switch {
  appearance: none;
  width: 32px;
  height: 18px;
  background: #C0211A44;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-modal .toggle-switch:checked {
  background: #C0211A;
}
.cookie-modal .toggle-switch:after {
  content: '';
  display: block;
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 13px;
  height: 13px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.19s cubic-bezier(0.42,0,0.58,1), background 0.16s;
}
.cookie-modal .toggle-switch:checked:after {
  left: 16px;
  background: #FFF;
}
.cookie-modal .category .description {
  font-size: 0.98rem;
  color: #353F4B;
  opacity: 0.86;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 13px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-modal .cta-primary, .cookie-modal .cta-secondary {
  min-width: 100px;
  font-size: 1rem;
  border-radius: 28px;
  margin: 0;
}

/* CLOSE BUTTON for cookie modal */
.cookie-modal .close-modal {
  position: absolute;
  right: 21px;
  top: 17px;
  color: #C0211A;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal .close-modal:focus,
.cookie-modal .close-modal:hover {
  color: #B51811;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
  .feature-grid,.card-container,.service-list,.blog-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 16px;
  }
  .feature-grid,.card-container,.service-list,.blog-list {
    flex-direction: column;
    gap: 0;
  }
  .feature, .card, .blog-post, .service-block {
    min-width: unset;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  h3 {
    font-size: 1.07rem;
  }
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
  .section, section {
    padding: 28px 0px 36px 0px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }

  .content-grid {
    flex-direction: column;
    gap: 14px;
  }

  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.15rem;}
  .section, section { padding: 18px 0 16px 0; }
  .container { padding-left: 5px; padding-right: 5px;}
  .cookie-banner { flex-direction: column;align-items: stretch; padding: 14px 6px; font-size: 0.99rem; }
  .cookie-modal { padding: 18px 4vw 17px 4vw; max-width: 97vw; }
}

/* UTILITIES & MICRO-INTERACTIONS */
::selection { background: #DB504A; color: #FFF; }

.section:last-child, section:last-child { margin-bottom: 0; }
[tabindex="0"]:focus { outline: 2px solid #C0211A; outline-offset: 2px; }

.additional-info {
  background: #F3F3F3;
  border-radius: 12px;
  padding: 18px 18px;
  margin-top: 9px;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px rgba(38,48,67,0.03);
}
.story-block {
  background: #FFF;
  border-left: 6px solid #C0211A;
  border-radius: 13px;
  padding: 24px 30px;
  margin: 22px 0;
  box-shadow: 0 2px 14px rgba(38,48,67,0.06);
}

/***** GEOMETRIC DECORATIVES *****/
.feature::before, .card::before {
  content: '';
  display: block;
  width: 54px; height: 8px;
  background: #DB504A;
  position: absolute;
  top: 0; left: 14px;
  border-radius: 4px 0 0 0;
  opacity: 0.14;
}
.feature::after, .card::after {
  content: '';
  display: block;
  width: 19px; height: 19px;
  background: #F3F3F3;
  position: absolute;
  bottom: 12px; right: 18px;
  clip-path: polygon(100% 0%,100% 100%,0% 100%);
  opacity: 0.19;
}
.feature:hover::before, .card:hover::before {
  opacity: 0.33;
}
.feature:hover::after, .card:hover::after {
  opacity: 0.3;
}

/***** ACCESSIBILITY *****/
[role="dialog"], [aria-modal="true"] {
  outline: none;
}

/***** SPACING UTILITIES *****/
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 12px !important; }
.mb-3 { margin-bottom: 20px !important; }

/***** END STYLES *****/
