/* --- 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;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #F5F3EE;
  color: #233047;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #A76837; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #233047; text-decoration: underline; }
ul, ol { padding-left: 24px; margin-bottom: 16px; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #3D3846;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.5rem; letter-spacing: 1px; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
strong { font-weight: 700; }

/* --- VINTAGE RETRO COLOR PALETTE --- */
:root {
  --brand-primary: #233047;
  --brand-secondary: #9DABBF;
  --brand-accent: #F5F3EE;
  --retro-orange: #F1AE5B;
  --retro-red: #A76837;
  --retro-brown: #87543C;
  --retro-mint: #BFD7B5;
  --retro-olive: #B7B59F;
  --retro-bg: #F5EFE6;
  --retro-dark: #3D3846;
  --retro-yellow: #F9E59A;
  --white: #fff;
}

/* --- GENERAL LAYOUT --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  background: var(--retro-bg);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35, 48, 71, 0.07), 0 0.5px 1.5px rgba(167, 104, 55, 0.05);
}

/* --- HEADER --- */
header {
  background: var(--brand-accent);
  box-shadow: 0 2px 8px rgba(35,48,71,0.08);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.logo img {
  max-height: 48px;
  min-width: 80px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand-primary);
  letter-spacing: 0.5px;
  padding: 6px 2px;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-bottom 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--retro-red);
  border-bottom: 2.5px solid var(--retro-orange);
}

/* --- PRIMARY BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 32px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s;
  user-select: none;
  outline: none;
  border: 2px solid transparent;
  margin-left: 12px;
  box-shadow: 0 1.5px 7px 0 rgba(35,48,71,0.07);
}
.btn-primary {
  background: var(--retro-orange);
  color: var(--brand-primary);
  border: 2px solid var(--retro-orange);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--retro-red);
  color: var(--white);
  border-color: var(--retro-red);
  box-shadow: 0 6px 18px 0 rgba(167,104,55,0.12);
}
.btn-secondary {
  background: var(--retro-brown);
  color: var(--white);
  border-color: var(--retro-brown);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-primary);
  color: var(--retro-yellow);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 25px 0 rgba(35,48,71,0.10);
}

/* --- MOBILE MENU BUTTON --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  z-index: 120;
  background: var(--retro-orange);
  border: none;
  color: var(--brand-primary);
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(167,104,55,0.09);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-red);
  color: #fff;
  box-shadow: 0 6px 30px rgba(167,104,55,0.15);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-accent);
  box-shadow: 0 5px 24px rgba(35,48,71,0.13);
  z-index: 110;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.49, 0.09, 0.32, 0.97);
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  margin: 16px 24px 8px 0;
  color: var(--brand-primary);
  cursor: pointer;
  z-index: 120;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--retro-red);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 38px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-primary);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 4px 12px 0;
  border-bottom: 2.5px solid transparent;
  border-radius: 0;
  width: 100%;
  transition: background 0.2s, color 0.2s, border-bottom 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-red);
  background: #f1ae5b23;
  border-bottom: 2.5px solid var(--retro-orange);
}

/* --- HERO SECTION --- */
.hero, .contact-hero, .thank-you, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use {
  background: var(--retro-yellow);
  padding: 60px 0 52px 0;
  margin-bottom: 48px;
  border-bottom: 4px dashed var(--retro-brown);
}
.hero .container, .contact-hero .container, .thank-you .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero h1, .contact-hero h1, .thank-you h1 {
  font-size: 2.4rem;
  color: var(--retro-dark);
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 1.5px 2px #f1ae5b36;
}
.hero p, .contact-hero p, .thank-you p {
  color: var(--retro-brown);
  font-size: 1.24rem;
  margin-bottom: 16px;
}

/* --- FEATURES SECTION --- */
.features {
  background: var(--retro-bg);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: 0 1.5px 7px 0 rgba(35, 48, 71, 0.05);
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--retro-brown);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff7ed;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(35, 48, 71, 0.08);
  padding: 26px 18px 22px 20px;
  min-width: 240px;
  flex: 1 1 260px;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid var(--retro-orange);
  transition: box-shadow 0.18s, border-color 0.19s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
  filter: sepia(0.22) saturate(1.3) brightness(0.98);
}
.feature-item h3 {
  font-size: 1.23rem;
  /* Use a retro font/variant effect */
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--retro-red);
}
.feature-item p {
  color: var(--retro-brown);
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: var(--retro-red);
  box-shadow: 0 8px 26px 0 rgba(167,104,55,0.13);
}

/* --- CARDS & FLEX CONTAINERS --- */
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(167,104,55,0.10);
  transition: box-shadow 0.18s, border 0.16s;
  border: 2px solid var(--retro-olive);
}
.card:hover, .card:focus-within {
  border: 2px solid var(--retro-orange);
  box-shadow: 0 4px 24px rgba(35, 48, 71, 0.09);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px 20px;
}

/* --- TEXT + IMAGE --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --- TESTIMONIALS --- */
.testimonials, .case-studies {
  background: var(--retro-mint);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(35,48,71,0.09);
}
.testimonials h2, .case-studies h2 {
  color: var(--retro-brown);
  font-size: 2rem;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: #fffdfa;
  border-radius: 14px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(35,48,71,0.08);
  border: 2px solid var(--retro-brown);
  color: #232323;
  max-width: 620px;
  transition: border 0.2s, box-shadow 0.18s;
}
.testimonial-card:last-child { margin-bottom: 0; }
.testimonial-card blockquote {
  color: var(--brand-primary);
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-card p strong {
  font-size: 1rem;
  color: var(--retro-red);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border: 2.5px solid var(--retro-orange);
  box-shadow: 0 8px 26px 0 rgba(241,174,91,0.10);
}

/* --- CTA & CALLOUT --- */
.cta, .callout {
  background: var(--retro-olive);
  margin-bottom: 60px;
  padding: 40px 28px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(241,174,91,0.09);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta h2, .callout h2 {
  color: var(--retro-brown);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
  background: var(--brand-primary);
  color: var(--retro-yellow);
  padding: 36px 0 18px 0;
  position: relative;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--retro-yellow);
  opacity: 0.93;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--retro-orange);
  opacity: 1.0;
}
.footer-contact {
  font-size: 0.95rem;
  text-align: center;
  color: var(--retro-yellow);
  opacity: 0.85;
  margin-bottom: 6px;
}
.footer-logo img {
  max-height: 32px;
  filter: sepia(0.7) saturate(1.2);
  opacity: 0.65;
}
.footer-copy {
  font-size: 0.93rem;
  color: var(--retro-yellow);
  opacity: 0.63;
  margin-top: 8px;
}

/* --- PAGE SPECIFIC --- */
.about-short, .about, .services-highlight, .service-overview, .service-summary, .service-steps, .service-details, .contact-form, .contact-info {
  background: var(--retro-bg);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(185,165,139,0.07);
}

.values {
  background: var(--retro-yellow);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 1px 7px rgba(185,165,139,0.10);
}

.team {
  background: #EDE4D9;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(167,104,55,0.06);
}

.working-hours {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--retro-brown);
  margin: 8px 0 0 0;
}

address {
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--brand-primary);
}

/* --- TYPOGRAPHY SCALE + RETRO DETAILS --- */
@media (min-width: 769px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.36rem; }
  .hero h1, .contact-hero h1, .thank-you h1 { font-size: 3rem; }
  .feature-item { min-width: 310px; }
}

/* --- RESPONSIVE FLEXBOX ADJUSTMENTS --- */
@media (max-width: 1080px) {
  .container { max-width: 100%; }
}
@media (max-width: 900px) {
  .main-nav { gap: 18px; }
  .feature-grid { gap: 16px; }
}
@media (max-width: 768px) {
  header .container { gap: 14px; }
  .main-nav { display: none; }
  .btn.btn-primary { margin-left: 0; }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .card-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item { min-width: unset; max-width: 100%; }
  .content-wrapper, .testimonials .content-wrapper, .case-studies .content-wrapper {
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cta, .callout {
    padding: 24px 9px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.10rem; }
  h3 { font-size: 1rem; }
  header .container { flex-direction: column; align-items: flex-start; gap: 7px; }
  .mobile-nav { padding: 12px 13px; gap: 14px; }
  .footer-nav { flex-direction: column; gap: 12px; }
  .testimonial-card, .feature-item {
    padding: 13px 7px;
  }
  .hero, .contact-hero, .thank-you, .privacy-policy, .gdpr, .cookies-policy, .terms-of-use {
    padding: 36px 0 20px 0;
  }
}

/* --- LISTS --- */
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.5;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal-leading-zero;
}

/* --- MODALS & OVERLAYS --- */
.modal, .cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(35,48,71,0.46);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 16px;
}
.modal.open, .cookie-modal.open { display: flex; animation: fadeIn 0.31s; }
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--brand-accent);
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  padding: 32px 24px;
  box-shadow: 0 12px 40px rgba(35, 48, 71, 0.18);
  position: relative;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--brand-primary);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  margin-bottom: 12px;
  color: var(--brand-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Lato', Arial, sans-serif;
  color: var(--brand-primary);
  font-weight: 500;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--retro-orange);
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 16px;
  font-size: 1.6rem;
  background: none; border: none; color: var(--retro-red); cursor: pointer;
}
.cookie-modal-close:hover { color: var(--retro-orange); }

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  z-index: 1500;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--retro-brown);
  color: var(--retro-yellow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 26px 22px 18px 22px;
  gap: 20px;
  box-shadow: 0 -2px 14px rgba(35,48,71,0.14);
  font-size: 1rem;
  animation: bannerIn 0.50s cubic-bezier(.42,.0,.58,1.0);
}
@keyframes bannerIn { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } }
.cookie-banner p {
  color: var(--retro-yellow);
  margin-right: 24px;
  font-weight: 400;
  flex: 1 1 260px;
  font-size: 1.05rem;
}
.cookie-banner .btn {
  padding: 8px 20px;
  font-size: 0.95rem;
  border-radius: 18px;
  margin: 0 6px;
  min-width: 110px;
  box-shadow: 0 1px 4px rgba(241,174,91,0.10);
}
.cookie-banner .btn-primary {
  background: var(--retro-orange); border-color: var(--retro-orange); color: var(--brand-primary);
}
.cookie-banner .btn-secondary {
  background: var(--retro-red); border-color: var(--retro-red); color: #fff;
}
.cookie-banner .btn:active {
  background: var(--retro-brown); color: var(--retro-yellow); border-color: var(--retro-yellow);
}
.cookie-banner .btn:focus { outline: 2px dashed var(--retro-yellow); }
@media (max-width:768px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px 7px; }
  .cookie-banner p { margin: 0 0 10px 0; }
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 13px;
  border-radius: 9px;
  border: 2.5px solid var(--retro-olive);
  background: #fffdf8;
  color: var(--brand-primary);
  transition: border-color 0.2s;
  box-shadow: 0 1px 6px rgba(167,104,55,0.04);
  margin-bottom: 14px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--retro-orange);
  outline: none;
}
label { font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; color: var(--brand-primary); margin-bottom:5px; }

/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
.btn, a, .feature-item, .testimonial-card, .card {
  transition: box-shadow 0.18s, background 0.2s, color 0.2s, border 0.16s;
}

/* --- RETRO VISUAL ACCENTS --- */
h1, h2, h3, h4 {
  /* Retro Drop Shadow */
  text-shadow: 1.2px 2.1px 0 rgba(167,104,55,0.10);
}
.section, .features, .testimonial-card, .feature-item {
  /* Subtle retro edge pattern with dashed border (optional): */
  border-style: solid;
  border-width: 2px;
}

/* --- UTILITIES --- */
.hide { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2.5px dashed var(--retro-orange);
  outline-offset: 1.5px;
}

/* --- CUSTOM FONTS (You must import via @import or link in HTML for Montserrat and Lato) --- */
/*
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Lato:400,700&display=swap');
*/

/* --- END OF CSS FILE --- */
