/* RESET & BASELINE ----------------------- */
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, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;  padding: 0;  border: 0;  font-size: 100%;  font: inherit;  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body { line-height: 1; background: #fff; color: #22334C; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
img, svg { max-width: 100%; display: block; }
*, *::before, *::after { box-sizing: border-box; }

/* FONT FACE ----------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FFFFFF;
  color: #22334C;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #22334C;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.16;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }

p, li { font-size: 1rem; line-height: 1.7; letter-spacing: 0.01em; }
p { margin-bottom: 16px; }
a { color: #C9510C; text-decoration: none; transition: color .2s; }
a:hover, a:focus {
  color: #22334C;
  text-decoration: underline;
}
strong, b { font-weight: 700; }

/* CONTAINER & GENERAL LAYOUT --------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

.section:last-child { margin-bottom: 0; }

/* HEADER & NAVIGATION ------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(34, 51, 76, 0.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
.logo img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #22334C;
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C9510C;
}
.cta.primary {
  background: #C9510C;
  color: #fff;
  border: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  box-shadow: 0 2px 10px rgba(34,51,76,0.07);
  cursor: pointer;
  transition: background .2s, transform .16s;
  margin-left: 16px;
}
.cta.primary:hover, .cta.primary:focus {
  background: #22334C;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

/* MOBILE NAVIGATION ------------------- */
.mobile-menu-toggle {
  display: none;
  appearance: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #22334C;
  padding: 8px 16px;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-toggle:focus {
  color: #C9510C;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: rgba(34,51,76,0.97);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px;
  transform: translateX(-120vw);
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  transition: color .2s;
  margin-bottom: 40px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #C9510C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 320px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color .2s, background .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #C9510C;
  background: rgba(201,81,12,0.10);
}

/* HERO & SECTION LAYOUT ----------------- */
.hero {
  background: #F5F7FA;
  padding: 64px 0 48px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #556;
  margin-bottom: 24px;
}
.content-wrapper {
  width: 100%;
  gap: 24px;
}

.features {
  background: #fff;
}
.features .content-wrapper {
  gap: 32px;
}
.feature-grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid li, .features ul li {
  background: #F5F7FA;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(34,51,76,0.04);
  flex: 1 1 220px;
  min-width: 180px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}

/* SERVICE CARDS & OVERVIEWS ----------- */
.services {
  background: #F5F7FA;
  border-radius: 12px;
  margin-bottom: 60px;
}
.services .content-wrapper {
  gap: 32px;
}
.services-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(34,51,76,0.08);
  padding: 24px 20px;
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid #F5F7FA;
  transition: box-shadow .18s, border .18s, transform .18s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 4px 24px rgba(34,51,76,0.16);
  border: 1.5px solid #C9510C;
  transform: translateY(-3px) scale(1.008);
}
.service-card .price {
  color: #C9510C;
  font-weight: 700;
  margin-top: 6px;
  font-size: 1.08rem;
}

/* ABOUT / TEAM / TEXT BLOCKS ---------- */
.about-short, .about, .team,
.text-section, .contact-info, .map, .contact-confirmation, .confirmation, .legal {
  background: #fff;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  margin-bottom: 12px;
}
.text-section ul li {
  position: relative;
  padding-left: 16px;
}
.text-section ul li::before {
  content: '\2022';
  position: absolute;
  left: 0; top: 0;
  color: #C9510C;
  font-size: 1.2em;
  line-height: 1;
}
.team-highlight {
  background: #F5F7FA;
  border-radius: 6px;
  color: #22334C;
  padding: 12px 16px;
  margin-top: 12px;
}

.team-bios {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CTA SECTION -------------------------- */
.call-to-action {
  background: #22334C;
  color: #fff;
  border-radius: 12px;
  margin-bottom: 60px;
}
.call-to-action h2, .call-to-action p {
  color: #fff;
}
.call-to-action .cta.primary {
  margin-top: 12px;
  background: #C9510C;
  color: #fff;
}
.call-to-action .cta.primary:hover {
  background: #fff;
  color: #22334C;
}

/* TESTIMONIALS --------------------------- */
.testimonials {
  background: #fff;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  background: #F5F7FA;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(34,51,76,0.08);
  border-left: 4px solid #C9510C;
  max-width: 700px;
  color: #22334C;
  transition: box-shadow .17s, transform .17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(34,51,76,0.13);
  transform: scale(1.011);
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  color: #22334C;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #556;
  font-family: 'Roboto', Arial, sans-serif;
}

/* CARD CONTAINER, GRIDS --------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(34,51,76,0.07);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTACT PAGE SECTION ----------------- */
.contact-info, .map, .contact-confirmation {
  background: #fff;
}
.contact-info .text-section, .map .text-section, .contact-confirmation .text-section {
  gap: 12px;
}

/* FOOTER ------------------------------- */
footer {
  background: #F5F7FA;
  color: #22334C;
  border-top: 1px solid #e3e4e7;
  padding: 40px 0 20px 0;
  font-size: 0.96rem;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #22334C;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border .2s, color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C9510C;
  border-bottom: 2px solid #C9510C;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* BUTTONS DEFAULTS -------------------- */
button, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s, transform .14s;
  outline: none;
}

/* FORMS & INPUTS (if any in future) --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 5px;
  border: 1px solid #D6DBE2;
  background: #FAFBFC;
  color: #22334C;
  transition: border .18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #C9510C;
  outline: none;
}

/* COOKIE BANNER ----------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #fff;
  color: #22334C;
  box-shadow: 0 -2px 16px rgba(34,51,76,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: 24px;
  min-height: 64px;
  transition: transform 0.38s cubic-bezier(.72,.03,.62,.97), opacity .3s;
  opacity: 1;
}
.cookie-banner.hidden {
  transform: translateY(80px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 auto;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 5px;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 2px;
  transition: background .16s, color .16s, box-shadow .16s;
  border: 1.2px solid #F5F7FA;
  background: #F5F7FA;
  color: #22334C;
}
.cookie-btn.primary {
  background: #C9510C;
  color: #fff;
  border-color: transparent;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #22334C;
  color: #fff;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #e3e3e5;
}

/* COOKIE MODAL ----------------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,51,76,0.45);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: cookieFadeIn .25s cubic-bezier(.46,1,.5,1);
}
@keyframes cookieFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 42px rgba(34,51,76,0.15);
  color: #22334C;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2060;
}
.cookie-modal h3 {
  margin-top: 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-modal .category-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #e3e3e3;
  border-radius: 11px;
  outline: none;
  position: relative;
  transition: background .18s;
}
.cookie-modal .category-toggle:checked {
  background: #C9510C;
}
.cookie-modal .category-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 4px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: left .18s;
}
.cookie-modal .category-toggle:checked::before {
  left: 18px;
}
.cookie-modal .cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #22334C;
  cursor: pointer;
  padding: 2px 8px;
}
.cookie-modal .close-modal:hover { color: #C9510C; }

/* MICROINTERACTIONS AND TRANSITIONS -- */
.cta, .cta.primary, button, .service-card, .testimonial-card, .feature-grid li {
  transition: box-shadow .16s, background .17s, color .17s, border .16s, transform .16s;
}

/* RESPONSIVE --------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .service-card, .feature-grid li, .services-overview {
    min-width: 160px;
    flex: 1 1 180px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .main-nav, .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .features ul, .services-overview {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .hero {
    padding: 48px 0 32px 0;
  }
  .features, .call-to-action, .section, .about-short, .services, .testimonials, .contact-info, .map, .contact-confirmation, .legal {
    padding: 24px 8px;
    margin-bottom: 36px;
    border-radius: 0;
  }
  .testimonial-card, .service-card, .feature-grid li {
    padding: 18px 10px;
    margin-bottom: 16px;
    min-width: 0;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .call-to-action {
    border-radius: 10px;
  }
  .about, .team, .legal, .confirmation {
    padding: 20px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer {
    padding: 28px 0 10px 0;
  }
  .footer-nav {
    gap: 12px;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px 12px; font-size: 0.98rem; }
  .cookie-modal { padding: 19px 8px; min-width: 0; }
}

/* ACCESSIBILITY -- focus states -------- */
a:focus, button:focus, .cta.primary:focus, .cookie-btn:focus {
  outline: 2px solid #C9510C;
  outline-offset: 1px;
}

/* Z-INDEX LAYERS (mobile/cookie) ------ */
header,
.mobile-menu,
.cookie-modal-overlay,
.cookie-banner {
  z-index: 1000;
}
.mobile-menu {
  z-index: 1200;
}
.cookie-modal-overlay {
  z-index: 2050;
}
.cookie-banner {
  z-index: 2000;
}

/* PRINT --------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .container { padding: 0 !important; margin: 0 !important; }
}

/* END OF STYLE ------------------------ */
