/* ===========================
   CSS RESET & NORMALIZE
============================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  width: 100vw;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #3A2D28;
  background-color: #F5EFE1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #21465F;
  text-decoration: underline;
  transition: color 0.2s;
  cursor: pointer;
}
a:focus {
  outline: 2px dashed #E0851A;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  color: #21465F;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  text-shadow: 0 2px 0 #F9D88B, 0 4px 8px rgba(58,45,40,0.10);
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #8C5C35;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===============
   VINTAGE RETRO THEME
================== */
:root {
  --color-primary: #21465F;
  --color-secondary: #1bbc9b;
  --color-accent: #F6F7F9;
  --color-bg: #F5EFE1;
  --color-vintage-yellow: #F9D88B;
  --color-vintage-orange: #E0851A;
  --color-vintage-red: #D85D52;
  --color-vintage-brown: #8C5C35;
  --color-dark-text: #3A2D28;
  --color-light: #FFF;
  --shadow-vintage: 0 8px 36px rgba(58,45,40, 0.10), 0 2px 4px #e6c98a;
}

body {
  background: var(--color-bg);
}

/* =====================
   HEADER & NAVIGATION
====================== */
header {
  width: 100%;
  background-color: var(--color-vintage-yellow);
  box-shadow: 0 3px 10px rgba(33,70,95,0.04);
  padding: 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-bottom: 6px solid var(--color-vintage-brown);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 90px;
}
.logo img {
  height: 52px;
}
nav {
  display: flex;
  align-items: center;
}
nav a {
  font-family: inherit;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 22px;
  background: none;
  transition: background 0.15s, color 0.18s;
  text-decoration: none;
  outline: none;
  position: relative;
}
nav a:hover, nav a:focus {
  background:rgba(33,70,95,0.09);
  color: var(--color-vintage-brown);
  text-shadow: 0 2px 0 var(--color-vintage-yellow);
}
.primary-cta {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.15rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  background: var(--color-primary);
  color: var(--color-light);
  border: none;
  border-radius: 25px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 2px 16px rgba(33,70,95,0.08);
  cursor: pointer;
  transition: background 0.25s, color 0.17s, transform 0.11s;
  margin-left: 14px;
  position: relative;
  z-index: 2;
  text-decoration: none;
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--color-vintage-brown);
  color: #fffbe5;
  transform: translateY(-2px) scale(1.04);
}

/* ===============
   BURGER MOBILE MENU
================== */
.mobile-menu-toggle {
  position: fixed;
  top: 26px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  z-index: 101;
  border: none;
  font-size: 2.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(33,70,95,0.10);
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus {
  background: var(--color-vintage-orange);
  color: #fff;
}
@media (max-width: 900px) {
  header .container nav, header .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-vintage-yellow);
  box-shadow: 0 0 18px rgba(33,70,95,0.13);
  z-index: 200;
  transform: translateX(-105vw);
  transition: transform 0.33s cubic-bezier(.6,.04,.40,1.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: var(--color-dark-text);
  border: none;
  margin: 18px 22px 0 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 203;
  padding: 8px 11px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: #fff9e7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 34px 0 0 30px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-primary);
  background: transparent;
  padding: 8px 20px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.15s, color 0.14s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-vintage-brown);
}

@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}

/* ================
   MAIN LAYOUT & SECTIONS
================== */
main {
  min-height: 64vh;
  background: var(--color-bg);
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Hero Section (vintage look) */
.hero {
  background: linear-gradient(94deg, #F9D88B 44%, #fffbe5 100%);
  border-bottom: 6px solid #D85D52;
  box-shadow: 0 8px 32px rgba(58,45,40,0.09);
  padding: 55px 0 60px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-vintage-brown);
  text-shadow: 0 2px 1px #FFF8E6;
  font-size: 2.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.hero p {
  font-size: 1.10rem;
  color: var(--color-dark-text);
  margin-bottom: 24px;
  max-width: 485px;
}
.hero .primary-cta {
  margin-top: 12px;
  background: var(--color-vintage-red);
  color: #fff9e7;
  box-shadow: 0 2px 10px #f9d88b49;
}
.hero .primary-cta:hover {
  background: var(--color-primary);
}

/* ===================
   CARDS & FLEX GRID
==================== */
.card-container, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card {
  background: #fffbe5;
  border: 2px solid #f9d88b;
  border-radius: 18px;
  box-shadow: var(--shadow-vintage);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px 26px 20px;
  flex: 1 1 265px;
  min-width: 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.18s, transform 0.18s, border 0.20s;
}
.card:hover, .service-card:hover {
  border-color: var(--color-vintage-orange);
  box-shadow: 0 16px 36px 0 rgba(33,70,95,0.18), 0 6px 8px #f9d88b86;
  transform: translateY(-3px) scale(1.041);
}
.service-card img {
  width: 40px;
  height: 40px;
}
.service-card h2,
.service-card h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
.service-card p {
  font-size: 1rem;
  color: var(--color-dark-text);
  margin-bottom: 0;
}

/* ===============
  TESTIMONIALS
================ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 22px;
  background: #fff;
  border: 2px dashed #E0851A;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(214,133,26,0.08);
  position: relative;
  font-size: 1.08rem;
  max-width: 560px;
}
.testimonial-card p {
  color: #24201d;
  margin-bottom: 3px;
  font-style: italic;
}
.testimonial-card strong {
  color: #D85D52;
  font-weight: 800;
}
.testimonial-card span {
  color: #5E3325;
  font-size: 0.98rem;
  padding-left: 8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
}


/* ================
   LISTS & UL, OL
================== */
ul {
  margin-bottom: 18px;
  margin-left: 0;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
ol {
  margin-bottom: 22px;
  margin-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
ul li, ol li {
  list-style: disc;
  color: #3A2D28;
  font-size: 1rem;
}
ul li strong {
  color: #D85D52;
}
ol li strong {
  color: #8C5C35;
}

/* ==============
   MAP + ADDRESS
================ */
.address-map {
  background: #fffbe5;
  border: 1.5px solid #F9D88B;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 14px #e0851a09;
  max-width: 320px;
  margin: 0 auto 16px auto;
}

/* ===============
   FOOTER
================== */
footer {
  width: 100%;
  background: var(--color-vintage-yellow);
  border-top: 6px solid #1BBC9B;
  box-shadow: 0 -2px 6px rgba(214,133,26,0.04);
  padding: 18px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #21465F;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: underline;
}
footer nav a:hover {
  color: #D85D52;
  text-decoration: none;
}
footer span {
  color: #8C5C35;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =====================
   CONTENT & DECORATIVE SECTIONS
====================== */
.text-section {
  font-size: 1rem;
  color: var(--color-dark-text);
  margin-bottom: 20px;
  padding: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-overview {
  background: #fffbe5;
  border: 1px solid #F9D88B;
  border-radius: 14px;
  padding: 14px 18px 12px 18px;
  margin-top: 6px;
  box-shadow: 0 2px 10px #f9d88b24;
}
.project-summary {
  background: #FDF6EC;
  border-left: 4px solid #E0851A;
  border-radius: 10px;
  padding: 12px 20px 9px 24px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(214,133,26,0.04);
}


/* =================
   ACCORDION (FAQ)
=================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-bottom: 24px;
}
.faq-item {
  background: #fffbe5;
  border: 2px solid #E0851A;
  border-radius: 14px;
  box-shadow: 0 2px 12px #f9d88b13;
  padding: 18px 22px;
  transition: box-shadow 0.18s;
}
.faq-item h2 {
  font-size: 1.13rem;
  margin-bottom: 7px;
  color: #21465F;
}
.faq-item p {
  color: #3A2D28;
  font-size: 1rem;
  margin-bottom: 0;
}

.contact-banner {
  background: #F9D88B;
  color: #21465F;
  font-family: 'Montserrat', sans-serif;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 6px rgba(241,177,24,0.05);
  margin-top: 20px;
  text-align: center;
}
.contact-banner a {
  color: #D85D52;
  font-weight: 700;
  text-decoration: underline;
}

/* =======================
   FLEXBOX LAYOUT UTILITIES
========================== */
.card-container,
.card-grid, /* fallback for possible .card-grid class */
.service-cards,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.working-hours {
  margin-top: 18px;
  background: #fffbe5;
  border: 1.5px solid #F9D88B;
  border-radius: 10px;
  padding: 14px 20px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
}
.social-links a {
  display: inline-block;
  background: #F5EFE1;
  border-radius: 8px;
  padding: 5px 7px;
  transition: background 0.17s, box-shadow 0.16s;
  box-shadow: 0 1px 3px #f9d88b13;
}
.social-links a:hover {
  background: #E0851A22;
}

/* =====================
      BUTTONS & LINKS
====================== */
button, .primary-cta {
  cursor: pointer;
}
button:focus-visible, .primary-cta:focus-visible {
  outline: 2px solid #E0851A;
  outline-offset: 2px;
}

/* Generic button */
.btn, .cookie-btn {
  appearance: none;
  border: none;
  border-radius: 22px;
  color: var(--color-light);
  font-weight: 700;
  padding: 12px 28px;
  font-size: 1.08rem;
  background: var(--color-primary);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 3px 12px #f9d88b24;
}
.btn:hover, .btn:focus, .cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-vintage-orange);
  color: #fffbe5;
}


/* Cookie Banner ================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #F9D88B;
  color: #21465f;
  font-size: 1.05rem;
  box-shadow: 0 -8px 24px #E0851A27, 0 -2px 8px #fffbe5;
  z-index: 3000;
  padding: 18px 18px 14px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(.71,0,.29,1.03), opacity 0.25s;
  border-top: 5px solid #E0851A;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-banner-content {
  max-width: 480px;
  min-width: 220px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #21465f;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 20px;
  font-size: 0.98rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  outline: none;
  border: none;
  transition: background 0.16s;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-dark-text);
  border: 2px solid #E0851A;
}
.cookie-btn.settings:hover {
  background: #fffbe5;
  color: #E0851A;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,70,95,0.34);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fffbe5;
  border-radius: 20px;
  padding: 32px 26px 28px 26px;
  max-width: 420px;
  min-width: 238px;
  box-shadow: 0 5px 32px #E0851A50;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: none;
  border: none;
  color: #E0851A;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
}
.cookie-modal-close:hover {
  color: #D85D52;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 9px 0;
}
.cookie-category input[type=checkbox] {
  accent-color: #1BBC9B;
}
.cookie-category label {
  font-size: 1rem;
  color: #21465F;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category.essential label {
  color: #888;
  font-style: italic;
}

/* ==============
   RESPONSIVE DESIGN
================== */
@media (max-width: 1080px) {
  .container { max-width: 98vw; }
  section, .section { padding: 30px 7vw; }
}
@media (max-width: 900px) {
  header .container { height: 76px; }
  h1 { font-size: 2.13rem; }
  h2 { font-size: 1.45rem; }
  .hero {
    padding: 40px 0 36px 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  section, .section { padding: 18px 8px; margin-bottom: 44px; }
  .container { padding: 0 6px; }
  .content-wrapper {
    gap: 18px;
  }
  .card-container, .service-cards,
  .content-grid, .card-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card, .service-card {
    max-width: 98vw;
    min-width: unset;
    align-self: center;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .address-map {
    margin-left: 0;
    margin-right: 0;
    max-width: 99vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    text-align: left;
    align-items: flex-start;
    padding: 12px 8px 8px 8px;
  }
}

/* ====================
   TYPOGRAPHY VINTAGE
===================== */
h1, h2, h3 { font-family: 'Montserrat', 'Roboto', Arial, sans-serif; letter-spacing: 0.04em; }
h1 { font-family: 'Montserrat', 'Roboto', Arial, sans-serif; text-transform: uppercase; }
.text-section, p, ul, li, label, .faq-item p { font-family: 'Roboto', Arial, sans-serif; }

/* =========================
   MICRO-INTERACTIONS
========================== */
.primary-cta, .btn, .cookie-btn {
  transition: background 0.15s, color 0.15s, transform 0.15s, box-shadow 0.20s;
}
.card:hover, .service-card:hover {
  transition: box-shadow 0.18s, border 0.20s, transform 0.17s;
}
.mobile-menu, .mobile-menu.open {
  transition: transform 0.33s cubic-bezier(.6,.04,.40,1.10);
}
.cookie-banner {
  transition: transform 0.3s cubic-bezier(.71,0,.29,1.03), opacity 0.23s;
}

/* Decorative Vintage Pattern (border ribbon top sections) */
.section, section {
  border-top: 8px double #f9d88b;
}
.hero {
  border-top: none;
}

/* ================
   ACCESSIBILITY
================== */
:focus-visible {
  outline: 2px solid #D85D52;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #8C5C35; opacity: .7; }
::-moz-placeholder { color: #8C5C35; opacity: .7; }
:-ms-input-placeholder { color: #8C5C35; opacity: .7; }
::placeholder { color: #8C5C35; opacity: .7; }

/* ===========
   HIDE on DESKTOP
============ */
@media (min-width: 901px) {
 .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* END */
