/* 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;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
html { scroll-behavior: smooth; }
body { min-height: 100vh; }

/* BRAND COLORS AND FONTS */
:root {
  --color-primary: #374151;
  --color-secondary: #9AC49C;
  --color-accent: #F9E6CF;
  --color-bg: #fffefc;
  --color-footer-bg: #f3f6f3;
  --color-light: #ffffff;
  --color-dark: #22242a;
  --color-grey: #909090;
  --color-shadow: rgba(60,40,40,0.09);

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* BASE TYPOGRAPHY */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  background: var(--color-bg);
  color: var(--color-primary);
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.09;
}
h1 { font-size: 2.5rem; letter-spacing: -2px; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; letter-spacing: -0.5px; }
p, ul, ol { margin-bottom: 18px; font-size: 1rem; }
strong, b { color: var(--color-secondary); font-weight: 700; letter-spacing: 0.2px; }

/* SECTION SPACING & CONTAINER */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* HEADER + NAVIGATIONS */
header {
  width: 100%;
  background: var(--color-light);
  box-shadow: 0 2px 18px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 16px 24px;
}
header img[alt='FadedEssays Küche'] {
  width: 140px;
  height: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  transition: color .16s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-secondary);
  transition: width .3s cubic-bezier(.76,0,.24,1);
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-secondary);
  color: var(--color-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.3px;
  border-radius: 999px;
  padding: 12px 36px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px var(--color-shadow), 0 1px 0 #fff inset;
  transition: background .2s, color .15s, box-shadow .18s, transform .08s;
  margin-left: 8px;
}
.cta-button:hover, .cta-button:focus {
  background: #74ac7c;
  color: var(--color-light);
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 4px 24px rgba(100,140,99,0.13), 0 5px 20px var(--color-shadow);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: var(--color-dark);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: none;
  position: relative;
  cursor: pointer;
  z-index: 2001;
  transition: background .2s, box-shadow .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:active {
  background: var(--color-primary);
  color: var(--color-light);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,251,0.96);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.53,.01,.33,1);
  box-shadow: 2px 0 20px 0 rgba(58,65,51,0.04);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: var(--color-primary);
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 2101;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 100px 0 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.16px;
  color: var(--color-primary);
  padding: 14px 0 14px 0;
  border-radius: 6px;
  transition: background .18s, color .18s;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-dark);
}

/* HERO SECTION */
.hero {
  background: var(--color-accent);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 2px 32px 8px rgba(250,224,200,0.17);
  margin-bottom: 60px;
  padding: 56px 0 56px 0;
  position: relative;
  overflow: visible;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 680px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--color-primary);
}
.hero p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 18px;
}

/* FEATURES */
.features {
  background: var(--color-light);
  border-radius: 32px;
  box-shadow: 0 4px 16px var(--color-shadow);
  margin-bottom: 60px;
}
.features h2 {
  color: var(--color-secondary);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-accent);
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(110,180,120,0.12);
  padding: 32px 24px 24px 24px;
  min-width: 250px;
  max-width: 310px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow .23s, transform .17s;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 8px 32px 2px rgba(90,130,110,0.13);
  transform: translateY(-5px) scale(1.035);
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
}
.feature-item h3 {
  color: var(--color-primary);
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.feature-item p {
  color: var(--color-dark);
  font-size: 1rem;
  margin-bottom: 0;
}

/* TESTIMONIALS / CARDS */
.testimonials {
  background: var(--color-accent);
  border-radius: 32px;
  box-shadow: 0 4px 16px var(--color-shadow);
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-light);
  color: var(--color-primary);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(145,162,150,0.11);
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 380px;
  position: relative;
}
.testimonial-card p {
  font-size: 1.06rem;
  color: var(--color-dark);
  font-style: italic;
}
.testimonial-card strong {
  display: block;
  color: var(--color-secondary);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1px;
  margin-top: 8px;
}

/* SERVICE LISTS */
.services-list .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(80,100,91,0.06);
  padding: 22px 18px 22px 22px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .12s;
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 8px 24px 2px rgba(160,190,140,0.11);
  transform: scale(1.025);
}
.service-item img {
  width: 38px;
  height: 38px;
  margin-top: 3px;
}
.service-item h3 {
  color: var(--color-primary);
}
.service-item p {
  margin-bottom: 0;
}

/* CARDS, CARD CONTAINERS, CONTENT-GRID  */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-light);
  border-radius: 16px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 260px;
  min-width: 220px;
  transition: box-shadow .19s, transform .14s;
}
.card:hover {
  box-shadow: 0 8px 16px rgba(145,162,150,0.13);
  transform: scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ABOUT, CONTACT, LEGAL, CONFIRMATION SECTIONS */
.about-preview, .about-detail, .team, .contact-preview, .contact-section, .confirmation-section, .legal-section, .services-info {
  background: var(--color-light);
  border-radius: 28px;
  box-shadow: 0 2px 16px var(--color-shadow);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--color-footer-bg);
  border-radius: 24px 24px 0 0;
  margin-top: 60px;
  box-shadow: 0 -1px 16px var(--color-shadow);
  color: var(--color-dark);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  padding: 36px 24px;
}
footer img[alt='FadedEssays Küche'] {
  width: 68px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer-nav a {
  color: var(--color-primary);
  font-weight: 600;
  opacity: 0.7;
  font-size: 1.02rem;
  transition: opacity .16s, color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: var(--color-secondary);
}
.contact-short {
  font-size: 0.97rem;
  opacity: 0.7;
  margin-top: 8px;
}

/* BUTTONS AND LINKS */
button, .cta-button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .14s, color .14s, box-shadow .12s;
}
button:focus, .cta-button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-secondary);
}
a, a:visited {
  transition: color .17s, border .18s;
}
a:hover, a:focus {
  color: var(--color-secondary);
  text-decoration: underline dotted;
}

/* UL, OL, CUSTOM LISTS */
ul, ol {
  margin-left: 18px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}
ul li::marker, ol li::marker {
  color: var(--color-secondary);
}

/* MICRO-ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.section, .hero, .features, .testimonial-card, .feature-item, .service-item {
  animation: fadeInUp 0.6s cubic-bezier(.44,.99,.48,1) both;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 4000;
  background: var(--color-accent);
  box-shadow: 0 -2px 12px rgba(80,100,91,0.08);
  color: var(--color-dark);
  padding: 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-radius: 20px 20px 0 0;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0%);
  transition: opacity .4s, transform .45s cubic-bezier(.72,0,.32,1);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  margin: 0;
  font-size: 1.01rem;
  color: var(--color-primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(110,140,130,0.06);
  transition: background .18s, color .14s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: var(--color-light);
}
.cookie-banner .cookie-settings {
  background: var(--color-accent);
  color: var(--color-primary);
  border: 1px solid var(--color-secondary);
  font-weight: 700;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 5000;
  background: rgba(60,60,45,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  opacity: 1;
  transition: opacity .38s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.06);
}
.cookie-modal .cookie-modal-content {
  background: var(--color-light);
  color: var(--color-primary);
  padding: 32px 28px 28px 28px;
  border-radius: 14px;
  box-shadow: 0 12px 36px 4px rgba(90,110,100,0.21);
  min-width: 344px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp 0.6s;
}
.cookie-modal h2 {
  font-size: 1.36rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 9px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--color-primary);
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--color-secondary);
  width: 20px;
  height: 20px;
}
.cookie-modal .category-essential {
  opacity: 0.8;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 14px;
}
.cookie-modal button {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 6px;
  font-weight: 600;
  padding: 9px 22px;
  font-size: 1rem;
}
.cookie-modal button:hover {
  background: var(--color-primary);
  color: var(--color-light);
}

/* RESPONSIVE DESIGN (MOBILE FIRST) */
@media (max-width: 1024px) {
  .container {
    max-width: 990px;
    padding: 0 14px;
  }
  .hero .container, .features .container, .testimonials .container, .about-preview .container, .services-list .container,
  .contact-preview .container, .legal-section .container, .services-info .container, .confirmation-section .container {
    padding-left: 0;
    padding-right: 0;
  }
  .feature-grid, .content-grid, .card-container, .footer .container {
    gap: 18px;
  }
  footer .container {
    gap: 22px;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 14px;
  }
  .main-nav { gap: 12px; }
}
@media (max-width: 768px) {
  html { font-size: 93%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero, .section, section {
    padding: 26px 0 26px 0;
    margin-bottom: 38px;
  }
  header .container {
    padding: 10px 10px;
    min-height: 54px;
  }
  footer .container {
    padding: 22px 10px;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .main-nav, .footer-nav {
    display: none !important;
  }
  .cta-button {
    font-size: 0.99rem;
    padding: 10px 18px;
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 3000;
  }
  .mobile-menu {
    display: flex;
    width: 100vw;
    min-height: 100vh;
    padding: 0 0;
  }
  .mobile-nav a {
    font-size: 1.07rem;
    min-width: unset;
    padding: 10px 0 10px 0;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
  }
  .features {
    padding: 28px 10px;
    border-radius: 16px;
  }
  .feature-item {
    max-width: 100%;
    min-width: unset;
    border-radius: 12px;
    padding: 18px 12px 16px 12px;
  }
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: unset;
    border-radius: 10px;
    padding: 16px 8px 16px 8px;
  }
  .testimonials, .about-preview, .contact-preview, .services-info, .services-list, .team, .confirmation-section {
    padding: 14px 4px;
    border-radius: 10px;
  }
  .service-item {
    flex-direction: column;
    gap: 14px;
    border-radius: 9px;
    padding: 12px 8px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .section, section {
    margin-bottom: 30px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.98rem;
    border-radius: 8px 8px 0 0;
    padding: 14px 8px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 18px 3vw 12px;
    min-width: 92vw;
    border-radius: 6px;
  }
}
@media (max-width: 540px) {
  html { font-size: 89%; }
  .container {
    padding: 0 2vw;
  }
}

/* ARTISTIC/CREATIVE DECORATIVE ELEMENTS */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  width: 120px;
  height: 120px;
  background: #ffe9d5;
  border-radius: 50%;
  top: -42px;
  left: -44px;
  opacity: 0.7;
  filter: blur(0px);
}
.hero::after {
  width: 74px;
  height: 74px;
  background: #b2e9b4;
  border-radius: 50%;
  bottom: -28px;
  right: -26px;
  opacity: 0.31;
  filter: blur(0px);
}
@media (max-width:768px) {
.hero::before { width:66px; height:66px; top:-22px; left:-22px; }
.hero::after { width: 42px; height:42px; bottom:-12px; right:-11px; }
}

/* ARTISTIC HEADLINE EFFECTS */
h1, h2 {
  background: linear-gradient(92deg, #374151 80%, #9AC49C 120%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  background: linear-gradient(92deg, #9AC49C 20%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #9ac49c 50%, #fff0e3 99%);
  border-radius: 7px;
}

/* ACCESSIBILITY: SELECTION AND FOCUS */
::selection {
  background: #fde9cb;
  color: var(--color-primary);
}
:focus-visible {
  outline: 2.5px dashed var(--color-secondary) !important;
  outline-offset: 2.5px;
}

/* END */
