/* ============================================================================
   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, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #FFFFFF;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A3327;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #C34800;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #C34800;
  outline-offset: 2px;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font: inherit;
  margin: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  padding: 14px 10px;
  text-align: left;
}

/* ============================================================================
   BRANDING COLORS AND TYPOGRAPHY
============================================================================ */
:root {
  --primary: #1A3327;
  --primary-dark: #274F3C;
  --secondary: #FFFFFF;
  --accent: #C34800;
  --accent-light: #F4EBD0;
  --neutral-100: #F9F9F7;
  --neutral-900: #333;
  --shadow: 0 2px 10px rgba(30,40,40,0.07);
  --radius: 12px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.subheadline {
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

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

/* ============================================================================
   HEADER & NAVIGATION
============================================================================ */
header {
  background: var(--secondary);
  box-shadow: 0 2px 12px rgba(30,40,40,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 24px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.main-nav a {
  color: var(--primary);
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}
.cta-btn {
  background: var(--accent);
  color: #FFF;
  border: none;
  padding: 10px 30px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: var(--radius);
  margin-left: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E76A26;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(195,72,0,0.12);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-left: 22px;
  display: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus {
  background: var(--accent-light);
}

/* ============================================================================
   MOBILE MENU OVERLAY
============================================================================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,51,39,0.96);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.7,.2,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  align-self: flex-end;
  margin: 28px 26px 10px 0;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 40px 0 0 42px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  padding: 6px 0;
}
.mobile-nav a:hover {
  color: var(--accent);
}

/* ============================================================================
   HERO SECTIONS
============================================================================ */
.hero {
  background: var(--accent-light);
  padding: 56px 0 52px 0;
  margin-bottom: 60px;
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 600px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  color: var(--primary);
}

/* ============================================================================
   FLEXBOX LAYOUT PATTERNS
============================================================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 28px 22px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(26,51,39,.14);
  transform: translateY(-2px) scale(1.01);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #FFF;
  padding: 20px 26px;
  border-radius: var(--radius);
  box-shadow: 0 3px 16px rgba(26,51,39,0.07);
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
  min-width: 200px;
}
.feature-item img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  margin-bottom: 8px;
}

/* ============================================================================
   FEATURE GRIDS, SERVICE LISTS, TEAM, ETC.
============================================================================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 24px 0 10px 0;
}
.services-overview .feature-grid,
.features-detail .feature-grid,
.team-strengths .feature-grid {
  gap: 30px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0 18px 0;
}
.service-item {
  background: var(--neutral-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 22px 18px 22px;
  min-width: 240px;
  flex: 1 1 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-item:hover {
  box-shadow: 0 6px 24px rgba(26,51,39,.11);
  transform: scale(1.01);
}
.team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 22px;
}
.team-member {
  flex: 1 1 320px;
  background: var(--neutral-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 24px 14px 24px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-member:hover {
  box-shadow: 0 6px 24px rgba(26,51,39,.10);
  transform: scale(1.01);
}
.qualifications-list, .unique-expertise, .benefits-list, .quick-facts, .feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 0 0;
  color: var(--primary-dark);
  font-size: 1.025rem;
}

/* ============================================================================
   TESTIMONIALS & SLIDERS
============================================================================ */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 26px;
  justify-content: flex-start;
}
.testimonial-card {
  flex: 1 1 330px;
  min-width: 240px;
  background: #FFF;
  color: #1A3327;
  box-shadow: 0 3px 20px rgba(26,51,39,0.10);
  border-radius: var(--radius);
  padding: 20px 26px;
  margin-right: 0;
  position: relative;
  font-size: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 12px 34px rgba(30,40,40,0.14);
  transform: scale(1.01);
}
.testimonial-author {
  color: var(--primary-dark);
  font-size: 0.97rem;
  font-weight: 500;
  margin-top: 7px;
  opacity: 0.80;
}

/* ============================================================================
   TABLES & PRICING
============================================================================ */
.service-prices-table {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #FFF;
  margin: 32px 0 16px 0;
  overflow: hidden;
  font-family: 'Roboto', Arial, sans-serif;
}
.service-prices-table th {
  background: var(--accent-light);
  color: var(--primary);
  font-size: 1.07rem;
  font-weight: 700;
}
.service-prices-table td {
  background: #FFF;
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 400;
}
.service-prices-table tr {
  border-bottom: 1px solid #F1E7D6;
}
.service-prices-table tr:last-child {
  border-bottom: none;
}

.explanatory-notes ul {
  gap: 8px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ============================================================================
   FAQ & ACCORDIONS
============================================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-item {
  background: var(--neutral-100);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 20px 24px 16px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.faq-item:hover {
  box-shadow: 0 6px 24px rgba(26,51,39,.12);
  transform: scale(1.01);
}

/* ============================================================================
   CONTACT & INFO BLOCKS
============================================================================ */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 26px 0 14px 0;
}
.address, .email, .opening-hours, .public-transport, .parking-info {
  min-width: 200px;
}

.kontakt-details .cta-btn {
  margin-top: 22px;
  align-self: flex-start;
}

/* ============================================================================
   GALLERY, HIGHLIGHTS, THANK YOU
============================================================================ */
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 30px;
}
.highlight-item {
  flex: 1 1 220px;
  background: var(--neutral-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.highlight-item:hover {
  box-shadow: 0 8px 24px rgba(26,51,39,0.10);
  transform: translateY(-2px) scale(1.01);
}
.next-steps ul {
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
}

/* ============================================================================
   FOOTER
============================================================================ */
footer {
  background: var(--primary);
  color: #FFF;
  padding: 40px 0 20px 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer .logo {
  height: 42px;
}
footer .logo img {
  height: 38px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #FFF;
  font-weight: 500;
  font-size: 1rem;
  opacity: .92;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-contact, .footer-hours {
  font-size: 0.98rem;
  opacity: .92;
}
.footer-contact a {
  color: var(--accent);
}

/* ============================================================================
   COOKIE CONSENT BANNER
============================================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.99);
  color: var(--primary-dark);
  box-shadow: 0 -2px 16px rgba(30,40,40,0.13);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 999;
  padding: 18px 20px;
  font-size: 1rem;
  animation: cookieFadeUp 0.5s ease;
}
@keyframes cookieFadeUp {
  from { opacity:0; transform: translateY(35px); }
  to   { opacity:1; transform: translateY(0);}
}
.cookie-banner button {
  margin-left: 10px;
}
.cookie-btn, .cookie-settings-btn {
  border: none;
  background: var(--accent);
  color: #FFF;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 8px 22px;
  cursor: pointer;
  margin-right: 8px;
  transition: background var(--transition), box-shadow var(--transition);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #E76A26;
}
.cookie-reject-btn {
  background: #FFF;
  color: var(--accent);
  border: 1px solid var(--accent);
  transition: background var(--transition), color var(--transition);
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: var(--accent-light);
  color: var(--primary);
}
.cookie-settings-btn {
  background: var(--primary-dark);
  color: #fff;
  border: none;
  padding: 8px 22px;
}
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #385e44;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(30,51,39,0.48);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  animation: cookieFadeIn 0.22s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #FFF;
  color: var(--primary-dark);
  padding: 34px 28px 30px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 95vw;
  animation: slideDownModal 0.32s cubic-bezier(.7,.2,.2,1);
}
@keyframes slideDownModal {
  from { opacity:0; transform: translateY(-24px) scale(0.97); }
  to { opacity:1; transform: translateY(0) scale(1); }
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.5rem;
  position: absolute;
  top: 22px; right: 24px;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal-close:hover {
  color: var(--accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-category label {
  font-weight: 500;
  margin-left: 8px;
}
.cookie-toggle {
  margin-left: 16px;
  accent-color: var(--accent);
}
.cookie-note {
  font-size: 0.99rem;
  font-style: italic;
  color: #757575;
}

/* ============================================================================
   RESPONSIVE DESIGN (MOBILE FIRST)
============================================================================ */
@media (max-width: 1120px) {
  .container { max-width: 960px; }
  .feature-grid, .service-list, .service-highlights, .content-grid, .testimonial-slider {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .main-nav {
    gap: 18px;
    font-size: 0.99rem;
  }
  .footer-nav {
    gap: 11px;
    font-size: 0.97rem;
  }
  .content-wrapper {
    gap: 18px;
  }
  .service-highlights, .feature-grid, .service-list { gap: 13px; }
}
@media (max-width: 800px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 32px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 46px;
  }
  .card, .team-member, .faq-item, .service-item, .highlight-item {
    padding: 18px 10px 14px 10px;
  }
}
@media (max-width: 768px) {
  html, body { font-size: 15px; }

  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 12px;
    min-height: 58px;
    gap: 16px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 8px;
  }
  .content-wrapper, .feature-grid, .service-list, .team-members, .testimonial-slider, .card-container, .service-highlights {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .team-member, .service-item, .highlight-item, .testimonial-card {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }

  .container { padding-left: 7px; padding-right: 7px; }
  .hero, .section {
    padding-left: 2px;
    padding-right: 2px;
  }
  .content-wrapper { gap: 13px; }
  .team-member, .card, .highlight-item, .service-item, .faq-item {
    padding: 10px 5px 10px 8px;
    font-size: 0.97rem;
  }
  .testimonial-card {
    padding: 13px 7px;
    font-size: 0.95rem;
  }
  .service-prices-table, th, td { font-size: 0.99rem; }
  .cookie-modal-content {
    padding: 20px 6px 18px 11px;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 15px 0 18px 0;
    margin-bottom: 33px;
  }
  .content-wrapper {
    gap: 9px;
  }
  .section {
    padding: 18px 1px;
    margin-bottom: 28px;
  }
}

/* Responsive for text-image (always column on mobile) */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .contact-info {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 6px;
  }
}

/* ============================================================================
   MICRO-INTERACTIONS & TRANSITIONS
============================================================================ */
a, .cta-btn, .main-nav a, .footer-nav a,
.button, .cookie-btn, .mobile-menu-toggle,
.service-item, .team-member, .highlight-item,
.card, .testimonial-card, .faq-item {
  transition: all var(--transition);
}

::-webkit-selection { background: #F4EBD0; color: #C34800; }
::selection { background: #F4EBD0; color: #C34800; }

/* ============================================================================
   MISC UTILITY CLASSES
============================================================================ */
.mt-2  { margin-top: 2px; }
.mt-10 { margin-top: 10px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom:8px; }
.mb-18 { margin-bottom:18px; }
.mb-30 { margin-bottom:30px; }
.align-center { align-items: center; justify-content: center; }
.text-center  { text-align: center; }
.bold { font-weight:600; }

/* Ensure no element overlaps due to spacing */
.card, .team-member, .feature-item, .testimonial-card, .service-item, .faq-item, .highlight-item {
  margin-bottom: 20px;
  margin-right: 0;
}

/* Hide [hidden] elements */
[hidden] {
  display: none !important;
}
