/* ==== 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;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background: #F9F6F1;
  color: #243249;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  padding-bottom: 70px; /* space for cookie banner */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #243249;
  text-decoration: none;
  transition: color 0.2s;
}

a:focus,
a:hover {
  color: #E26A2C;
  outline: none;
  text-underline-offset: 2px;
  text-decoration: underline;
}

ul, ol {
  padding-left: 1.5em;
}

strong {
  font-weight: 600;
}

/* Typography Hierarchy */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #243249;
}

h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #243249;
  letter-spacing: -0.2px;
}

h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #243249;
}

p, .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #243249;
  margin-bottom: 16px;
}

.subheadline {
  font-size: 1.15rem;
  font-weight: 400;
  color: #494f5a;
  margin-bottom: 28px;
}

blockquote, .inspirational-quote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  background: #f3efe8;
  color: #243249;
  border-left: 3px solid #E26A2C;
  padding: 18px 24px;
  margin: 24px 0;
  border-radius: 8px;
}

/* ====== Layout Utilities ====== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(36,50,73,0.03);
  padding: 28px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.16s;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(36,50,73,0.07);
  transform: translateY(-4px) 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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,50,73,0.06);
  min-width: 260px;
  max-width: 400px;
  margin-bottom: 24px;
  transition: box-shadow 0.24s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(36,50,73,0.08);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-author {
  font-size: 0.98rem;
  font-weight: 500;
  color: #243249;
  opacity: 0.7;
  margin-top: -6px;
}

div.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====== Header ======= */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e7e5df;
  padding: 0;
  z-index: 1050;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 18px;
}
header img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #243249;
  font-weight: 500;
  transition: color 0.17s;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}
.main-nav a.active,
.main-nav a:hover,
.main-nav a:focus {
  color: #E26A2C;
  border-bottom: 2px solid #E26A2C;
}

.cta.primary {
  background: #E26A2C;
  color: #fff !important;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(226,106,44,0.13);
  transition: background 0.18s, box-shadow 0.2s, transform 0.16s;
  display: inline-block;
  margin-left: 10px;
  text-align: center;
}
.cta.primary:hover, .cta.primary:focus {
  background: #c44d11;
  color: #fff;
  box-shadow: 0 8px 24px rgba(226,106,44,0.19);
  transform: translateY(-2px) scale(1.01);
  outline: none;
}

button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #243249;
  border: 1px solid #e7e5df;
  padding: 9px 24px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #F9F6F1;
  color: #E26A2C;
  border-color: #E26A2C;
  outline: none;
}

/* ========== Hamburger / Mobile Menu ========== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #243249;
  display: none;
  margin-left: 16px;
  cursor: pointer;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background 0.12s;
  z-index: 1201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #eee9e1;
  color: #E26A2C;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.77,.2,.05,1.0);
  box-shadow: 0 12px 32px rgba(36,50,73,0.06);
  padding-top: 18px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #243249;
  margin: 10px 18px 10px 0;
  cursor: pointer;
  border-radius: 5px;
  width: 44px;
  height: 44px;
  transition: background 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #eee9e1;
  color: #E26A2C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 18px 28px 10px 34px;
}
.mobile-nav a {
  color: #243249;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  padding: 8px 0;
  border-bottom: 1px solid #F9F6F1;
  transition: color 0.14s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #E26A2C;
  background: #F9F6F1;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta.primary {
    font-size: 0.96rem;
    padding: 9px 14px;
  }
  header .container {
    gap: 6px;
  }
}

/* ========== Hero & Content Sections ========== */
.hero, .gallery-hero, .about-hero {
  padding: 60px 0 45px 0;
  margin-bottom: 0;
  background: #F9F6F1;
  border-bottom: 1px solid #ece6e1;
}
.hero .container, .gallery-hero .container, .about-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper,
.gallery-hero .content-wrapper,
.about-hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-top: 12px;
}

.services, .services-details, .workshops-list, .features, .about-short, .about-atelier, .about-usp, .project-highlights, .team-section, .contact-info, .contact-form-section, .route-features, .legal, .thank-you, .contact-cta, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.features .content-wrapper,
.project-highlights .content-wrapper,
.team-section .content-wrapper {
  gap: 24px;
}

/* USP, feature, services lists */
.feature-grid, .feature-list, .usp-list, .project-highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  list-style: none;
}

.feature-grid li, .feature-list li, .usp-list li, .project-highlights-list li {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 330px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(36,50,73,0.03);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.17s, transform 0.12s;
}
.feature-grid li:hover, .feature-list li:hover, .usp-list li:hover, .project-highlights-list li:hover {
  box-shadow: 0 8px 28px rgba(226,106,44,0.07);
  transform: translateY(-3px) scale(1.012);
}

.feature-grid img, .project-highlights-list img, .usp-list img, .feature-list img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}

.services-list, .detailed-services-list, .workshop-items, .team-list, .qualifications, .team-profiles, .quick-facts, .contact-list, .navigation-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
  list-style: none;
}
.team-list li,
.qualifications li,
.team-profiles li,
.quick-facts li,
.contact-list li, 
.navigation-list li {
  font-size: 1rem;
  color: #2d3c57;
  display: flex;
  align-items: center;
  gap: 12px;
}
.team-list strong, .team-profiles strong {
  color: #243249;
}
.services-list li, .detailed-services-list li, .workshop-items li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(36,50,73,0.03);
  padding: 22px 20px 18px 20px;
  margin-bottom: 15px;
}
.service-price {
  color: #E26A2C;
  font-weight: 700;
  font-size: 1.2rem;
}

.price-table {
  width: 100%;
  margin-top: 34px;
  border-collapse: collapse;
  font-size: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,50,73,0.03);
  overflow: hidden;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 13px 20px;
  border-bottom: 1px solid #f0ece5;
}
.price-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f5f1;
  font-weight: 600;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/* CTA Section */
.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  background: #fff5ee;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(226,106,44,0.07);
  padding-top: 36px;
  padding-bottom: 36px;
}

.contact-cta {
  background: linear-gradient(180deg, #fff8f4 60%, #F9F6F1 100%);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(36,50,73,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  min-height: 200px;
}

/* ========== Footer ========== */
footer {
  background: #fff;
  border-top: 1px solid #ece6e1;
  padding: 34px 0 18px 0;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #494f5a;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #E26A2C;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  align-items: center;
  font-size: 0.98rem;
  color: #8d949c;
  margin-top: 8px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}

/* ========== Legal / Modal / Text Section ========= */
.legal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(36,50,73,0.03);
}
.legal .content-wrapper {
  gap: 18px;
}
.text-section {
  color: #2a3243;
  font-size: 1rem;
  line-height: 1.65;
  margin-top: 6px;
}
.text-section h2 {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 18px 0 10px 0;
}
.text-section ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.privacy-hint {
  font-size: 0.95rem;
  color: #78705c;
  margin-top: 10px;
}

/* ========== Thank You ========= */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.thank-you ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 16px auto 20px auto;
  max-width: 420px;
}

/* ========== Cookie Consent Banner & Modal ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #E26A2C;
  box-shadow: 0 -2px 18px rgba(36,50,73,0.05);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 18px;
  z-index: 9998;
  font-size: 1rem;
  gap: 16px;
  animation: banner-fadein 0.7s cubic-bezier(.18,.47,.6,1.12);
}
@keyframes banner-fadein {
  from { opacity: 0; transform: translateY(60px) scale(.98); }
  to { opacity: 1; transform: none; }
}
.cookie-consent-banner p {
  margin-bottom: 0;
  color: #243249;
  font-size: 1rem;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  background: #fff;
  color: #243249;
  border: 1px solid #e7e5df;
  padding: 9px 22px;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border 0.12s;
}
.cookie-btn.accept {
  background: #E26A2C;
  color: #fff;
  border: none;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #c44d11;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: #243249;
  border: 1.5px solid #E26A2C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F9F6F1;
  color: #E26A2C;
}
.cookie-settings-btn {
  background: #fff5ee;
  color: #E26A2C;
  border: none;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #ffe2d0;
}

/* Cookie Modal Popup */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10040;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,50,73,0.14);
  align-items: center;
  justify-content: center;
  animation: modal-fadein 0.35s cubic-bezier(.18,.67,.6,1.1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 42px rgba(36,50,73,0.13);
  padding: 40px 26px;
  width: 98%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: modal-popup 0.38s cubic-bezier(.16,.7,.5,1.17);
}
@keyframes modal-popup {
  from { transform: scale(0.96) translateY(40px); }
  to { transform: none; }
}
.cookie-modal h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
  color: #243249;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  background: #F9F6F1;
  border-radius: 8px;
  padding: 11px 16px;
}
.cookie-category label {
  font-size: 1rem;
  color: #243249;
  flex: 1 1 auto;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.cookie-category.essential label {
  color: #8d949c;
  font-style: italic;
}

.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}

.close-cookie-modal {
  background: none;
  border: none;
  color: #243249;
  font-size: 1.1rem;
  margin-left: auto;
  align-self: flex-end;
  cursor: pointer;
}
.close-cookie-modal:hover,
.close-cookie-modal:focus {
  color: #E26A2C;
  background: none;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container {
    height: 64px;
  }
  .hero, .gallery-hero, .about-hero, .section, .services, .services-details, .workshops-list, .features, .about-short, .about-atelier, .about-usp, .project-highlights, .team-section, .contact-info, .contact-form-section, .route-features, .legal, .thank-you, .contact-cta, .cta {
    padding: 28px 6px 36px 6px;
    margin-bottom: 36px;
  }
  .feature-grid, .feature-list, .usp-list, .project-highlights-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .card-container, .content-grid, .testimonial-list, .footer-contact {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .team-list, .qualifications, .team-profiles, .quick-facts, .contact-list, .navigation-list {
    gap: 12px;
  }
  .text-image-section { flex-direction: column; gap: 20px; }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .testimonials .content-wrapper > h2 {
    margin-bottom: 12px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

@media (max-width: 500px) {
  h1, .hero h1 {
    font-size: 1.33rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .testimonial-card {
    padding: 13px 8px;
  }
  .cookie-consent-banner p {
    font-size: 0.98rem;
  }
}

/* Utility: Hide visually only but keep available for screen readers */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* ====== End CSS ====== */
