/* 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;
}
article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: linear-gradient(135deg, #FDF6ED 0%, #FFFFFF 60%, #E8EFF7 100%);
  color: #133B5C;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 8px;
}
a {
  color: #133B5C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #C1581B;
  outline: none;
}
ul, ol {
  margin-left: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #133B5C;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.25rem; line-height: 1.15; margin-bottom: 18px; }
h2 { font-size: 1.75rem; line-height: 1.18; margin-bottom: 14px; }
h3 { font-size: 1.25rem; line-height: 1.2; margin-bottom: 8px; }

/* TYPOGRAPHY SCALE */
p, li, th, td { font-size: 1rem; line-height: 1.7; color: #204060; }
.subheadline { font-size: 1.125rem; color: #3E5772; margin-bottom: 16px; }
small, .notes small { font-size: .875rem; color: #6B7E99; }

/* LAYOUT CONTAINER */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section, section {
    margin-bottom: 34px;
    padding: 32px 8px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* HEADER */
header {
  background: #ffffffcc;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 16px 0 rgba(19, 59, 92, 0.07);
  z-index: 1002;
  position: sticky;
  top: 0;
  width: 100%;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 12px;
}
header img[alt="Fellglanz Atelier"] {
  height: 44px;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
header nav a.cta {
  background: linear-gradient(90deg, #E58042 0%, #C1581B 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 25px;
  padding: 8px 22px;
  margin-left: 8px;
  box-shadow: 0 2px 10px 0 rgba(225, 128, 66, 0.07);
  transition: background 0.2s;
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: #133B5C;
  color: #fff;
}
header nav a:hover,
header nav a:focus {
  background: #FDF6ED;
  color: #C1581B;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #133B5C;
  cursor: pointer;
  margin-left: 8px;
  z-index: 1004;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FDF6ED;
}

@media (max-width: 1024px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,59,92,0.97);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.87,-0.18,.51,1.19);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 18px 18px 8px 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 2001;
  padding: 1px 12px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E58042;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  margin-left: 28px;
  margin-top: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 20px 10px 0;
  min-width: 110px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #E58042;
  color: #fff;
}

/* MAIN HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FDF6ED 0%, #FFA359 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 48px 0 rgba(225,128,66,0.13);
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  font-size: 2.6rem;
  background: linear-gradient(90deg, #133B5C 80%, #C1581B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p.subheadline {
  color: #604738;
}
.hero .cta {
  margin-top: 12px;
  font-size: 1.135rem;
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.44rem; }
}


/* CTA & BUTTONS */
.cta, a.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  background: linear-gradient(90deg, #E58042 0%, #C1581B 100%);
  color: #fff !important;
  border: none;
  padding: 10px 32px;
  border-radius: 30px;
  box-shadow: 0 3px 18px 0 rgba(225, 128, 66, 0.10);
  margin-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background 0.22s cubic-bezier(.55,.03,.71,.78), box-shadow 0.15s;
  text-align: center;
}
.cta:hover, .cta:focus, a.cta:hover, a.cta:focus {
  background: linear-gradient(90deg, #133B5C 50%, #E58042 100%);
  color: #fff !important;
  box-shadow: 0 5px 24px 0 rgba(19, 59, 92, 0.07);
}

/* FLEX SPACING & PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 250px;
  min-width: 240px;
  max-width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(19,59,92,0.07);
  padding: 24px 20px;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(19,59,92,0.15);
  z-index: 2;
}
.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;
  margin-bottom: 20px;
  background: #fffefb;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(19,59,92,0.06);
  max-width: 500px;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(225, 128, 66, 0.13);
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #133B5C;
  font-size: 1rem;
  font-weight: 600;
}

.feature_grid, .features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  margin-bottom: 10px;
  list-style: none;
  align-items: stretch;
}
.feature_grid li, .features ul li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(19,59,92,0.06);
  padding: 18px 18px 18px 18px;
  min-width: 180px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.18s;
}
.feature_grid li:hover,
.features ul li:hover {
  box-shadow: 0 7px 26px 0 rgba(225, 128, 66, 0.11);
  transform: translateY(-4px) scale(1.03);
}
.feature_grid img,
.features ul img {
  width: 40px;
  height: 40px;
}
.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}
.benefit-list li {
  background: #FAE5D2;
  color: #C1581B;
  border-radius: 8px;
  padding: 7px 16px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 12px;
}

/* TABLES (PRICING) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 16px 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(19,59,92,0.05);
}
th, td {
  padding: 14px 10px;
  color: #204060;
  font-size: 1rem;
  text-align: left;
  border-bottom: 1px solid #F2E8DF;
}
th {
  background: #FDF6ED;
  color: #133B5C;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}
@media (max-width: 700px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead tr { display: none; }
  td {
    padding-left: 40%;
    position: relative;
    min-height: 38px;
  }
  td:before {
    position: absolute;
    left: 12px;
    width: 38%;
    white-space: nowrap;
    font-weight: bold;
    color: #3E5772;
    content: attr(data-label);
  }
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #133B5C 70%, #E58042 100%);
  color: #fff;
  margin-top: 60px;
  padding-top: 26px;
}
footer > .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 8px;
  opacity: 0.86;
  transition: color 0.2s, opacity 0.2s;
  border-radius: 6px;
}
footer nav a:hover, footer nav a:focus {
  color: #E58042;
  opacity: 1;
  background: #fff1e3;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: .98rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-contact p {
  color: #fff;
}

@media (max-width: 990px) {
  footer > .container {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding-bottom: 16px;
  }
}

/* TESTIMONIALS */
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .testimonials .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .feature_grid, .features ul, .benefit-list {
    flex-direction: column;
    gap: 14px;
  }
}

.testimonials h2 {
  color: #E58042;
  font-size: 2rem;
  text-shadow: 0 2px 8px #fff7;
}
.testimonial-card p {
  color: #133B5C;
  font-size: 1.10rem;
  font-style: italic;
}
.testimonial-info {
  color: #133B5C;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.testimonial-info img {
  width: 19px;
  height: 19px;
  filter: drop-shadow(0px 1px 3px #e580422d);
}

/* TEXT SECTION, BENEFITS, LISTS */
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.text-section ul, .text-section ol {
  margin-bottom: 8px;
}
.notes ul, .next-steps-info ul {
  list-style: disc;
  margin-left: 18px;
  gap: 8px;
}

/* LEGAL, CONFIRMATION, THANK YOU, MAP */
.legal, .confirmation, .location {
  background: linear-gradient(135deg, #FDF6ED 0%, #FFFFFF 90%);
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(19,59,92,0.05);
}
.map-embed-placeholder {
  background: #FDF6ED;
  border-radius: 12px;
  text-align: center;
  padding: 22px;
  margin-top: 18px;
  color: #8c856d;
  font-size: 1.05rem;
}

.thank-you-message {
  color: #133B5C;
  background: #FBF6F1;
  border-left: 4px solid #E58042;
  padding: 18px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.next-steps-info ul li {
  margin-bottom: 8px;
  color: #E58042;
}

/* FORMS & INPUTS DEFAULTS (should there be) */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  color: #133B5C;
  border-radius: 7px;
  border: 1px solid #c1c6d2;
  background: #fff;
  padding: 9px 14px;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: border 0.2s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E58042;
  outline: none;
  box-shadow: 0 2px 8px #E5804222;
}
button {
  cursor: pointer;
}

/* MEDIA QUERIES RESPONSIVE LAYOUTS */
@media (max-width: 1100px) {
  .content-grid, .features ul, .feature_grid {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .card-container, .content-grid, .feature_grid, .features ul {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.50rem; }
  h2 { font-size: 1.18rem; }
  .testimonial-card {
    max-width: 100%;
    padding: 13px 6px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2002;
  background: linear-gradient(90deg, #fff 80%, #FDF6ED 100%);
  box-shadow: 0 -1px 32px 0 rgba(19,59,92,0.10);
  color: #133B5C;
  padding: 24px 20px 24px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.48,.12,.6,.9), opacity 0.4s;
}
.cookie-banner.hide {
  transform: translateY(125%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  flex: 1 1 300px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 18px;
  border: none;
  background: #133B5C;
  color: #fff;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.18s, color 0.12s;
}
.cookie-btn.accept { background: #E58042; color: #fff; }
.cookie-btn.settings { background: #FDF6ED; color: #133B5C; border: 1px solid #C1581B; }
.cookie-btn.reject { background: #133B5C; color: #fff; border: 1px solid #E58042; }
.cookie-btn:hover, .cookie-btn:focus {
  background: #C1581B;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #133B5C; color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 24px 8px;
    gap: 18px;
    font-size: .95rem;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(19,59,92,0.56);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s, visibility 0.22s;
  opacity: 1;
  visibility: visible;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal__box {
  background: #fff;
  border-radius: 18px;
  min-width: 288px;
  max-width: 98vw;
  padding: 32px 28px 28px 32px;
  box-shadow: 0 8px 40px 0 rgba(19,59,92,.16);
  color: #133B5C;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #133B5C;
  font-size: 1.85rem;
  font-weight: 700;
  position: absolute;
  top: 8px;
  right: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s;
  z-index: 2503;
  padding: 2px 12px;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #E58042;
  color: #fff;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #E58042;
  margin-bottom: 10px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-weight: 500;
}
.cookie-cat input[type=checkbox] {
  accent-color: #E58042;
  width: 21px; height: 21px;
  margin-right: 4px;
}
.cookie-cat--essential input[type=checkbox] {
  accent-color: #E58042;
  pointer-events: none;
  opacity: 0.7;
}
.cookie-cat--essential label {
  color: #6B7E99;
  font-weight: 700;
}
.cookie-modal__buttons {
  display: flex; gap: 14px; margin-top: 10px;
}
.cookie-modal__buttons .cookie-btn {
  min-width: 72px;
}

/* MICRO-ANIMATIONS */
.cta, a.cta, .card, .testimonial-card, .feature_grid li, .features ul li, .cookie-btn {
  transition: box-shadow 0.18s, background 0.22s, color 0.15s, transform 0.18s;
}

/* ACCESSIBILITY/FOCUS RING */
a:focus-visible, .cta:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #C1581B;
  outline-offset: 2px;
}

/* CUSTOM UTILITY: hide visually but remain accessible (for cookie banner/modal) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* GENERAL SPACING ENFORCEMENT */
main > section, .section {
  margin-bottom: 60px;
}
.card, .feature_grid li, .features ul li, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .content-grid, .feature_grid, .features ul, .testimonials .testimonial-slider {
  gap: 20px;
}

/* END */