/* 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;
  background: #F6F2EB;
  color: #36322C;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #8BBF5A;
  outline-offset: 2px;
}

/* FONT IMPORTS (Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

/* ROOT VINTAGE COLOR PALETTE */
:root {
  --brand--primary: #22574D;
  --brand--secondary: #8BBF5A;
  --brand--accent: #F6F2EB;
  --brand--brown: #A57164;
  --brand--sand: #EADBC7;
  --brand--deep-yellow: #FFC857;
  --brand--red: #CF5245;
  --brand--cream: #F3E3C3;
  --brand--blue: #495285;
  --font--display: 'Roboto Slab', serif;
  --font--body: 'Open Sans', Arial, sans-serif;
}

body {
  font-family: var(--font--body);
  font-size: 16px;
  background: var(--brand--accent);
  color: #3D3733;
  letter-spacing: 0.01em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font--display);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--brand--primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  color: var(--brand--brown);
  margin-bottom: 14px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, ul, ol, address {
  font-size: 1.1rem;
  color: #433B32;
  margin-bottom: 14px;
}
a:hover, .footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand--secondary);
}

strong, b {
  font-weight: 700;
  color: var(--brand--primary);
}

.text-section ul {
  margin-bottom: 10px;
  padding-left: 0;
}
.text-section ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #4A4037;
}
.text-section ul li::before {
  content: '\2022';
  position: absolute;
  color: var(--brand--deep-yellow);
  left: 0;
  font-weight: bold;
  font-size: 1.1em;
  top: 0;
}
hr {
  border: 0;
  height: 1px;
  background: #EADBC7;
  margin: 24px 0;
}

/* BUTTONS & CTA */
.cta, .cta.primary, .cta.secondary {
  display: inline-block;
  font-family: var(--font--display);
  font-size: 1.13rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 32px;
  line-height: 1.3;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  box-shadow: 0 3px 12px 0 rgba(165,113,100,0.04);
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.cta.primary {
  background: var(--brand--primary);
  color: var(--brand--accent);
  border: 2px solid var(--brand--primary);
}
.cta.secondary {
  background: var(--brand--deep-yellow);
  color: var(--brand--primary);
  border: 2px solid var(--brand--deep-yellow);
}
.cta:hover, .cta.primary:hover, .cta.secondary:hover, .cta:focus, .cta.primary:focus, .cta.secondary:focus {
  background: var(--brand--secondary);
  color: #fff;
  border-color: var(--brand--secondary);
  box-shadow: 0 6px 20px 0 rgba(139,191,90,0.07);
  transform: translateY(-2px) scale(1.03);
}

/* HEADER & NAVIGATION */
header {
  background: var(--brand--primary);
  padding: 0;
  box-shadow: 0 7px 32px -10px rgba(61,55,51,0.10);
  position: sticky;
  top: 0;
  z-index: 98;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 14px;
}
.logo img {
  height: 52px;
  width: auto;
  mix-blend-mode: multiply;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
nav a {
  font-family: var(--font--body);
  font-size: 1.06rem;
  color: #FFF;
  font-weight: 600;
  letter-spacing: 0.025em;
  background: none;
  padding: 10px 12px;
  border-radius: 20px;
  transition: background .17s, color .18s;
}
nav a:hover, nav a:focus {
  background: var(--brand--secondary);
  color: #2B2B2B;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--brand--accent);
  font-size: 2rem;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background .17s, color .18s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand--secondary);
  color: var(--brand--primary);
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: var(--brand--accent);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.67,0,.24,1);
  box-shadow: -6px 0 24px 0 rgba(34, 87, 77, 0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: var(--brand--primary);
  background: none;
  border: none;
  align-self: flex-end;
  font-size: 2.4rem;
  margin: 32px 26px 0 0;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 50%;
  z-index: 10002;
  transition: background .18s, color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand--secondary);
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 68px 0 0 36px;
  width: 75vw;
  max-width: 350px;
}
.mobile-nav a {
  font-size: 1.28rem;
  color: var(--brand--primary);
  font-family: var(--font--display);
  font-weight: 900;
  background: none;
  padding: 11px 2px 11px 0;
  border-radius: 0;
  transition: color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand--secondary);
  text-decoration: underline;
}

@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu { display: none!important; }
}

/* HERO SECTION */
.hero {
  background: url('../assets/vintage-stripes.png'), var(--brand--accent);
  background-repeat: repeat-x, no-repeat;
  background-size: auto 90px, cover;
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 310px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  background: rgba(248,243,231,0.96);
  border-radius: 34px;
  box-shadow: 0 8px 40px 0 rgba(165,113,100,0.09);
  padding: 42px 28px 42px 28px;
  max-width: 750px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 {
  color: var(--brand--brown);
  text-shadow: 1px 3px 0px var(--brand--deep-yellow), 0 2px 2px rgba(34, 87, 77, 0.10);
  font-size: 2.2rem;
  font-family: var(--font--display);
  font-weight: 900;
}
.hero p {
  color: #6d5e4b;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

/* SECTIONS, CARDS, FLEX LAYOUTS */
.section,
.features,
.services,
.about,
.about-team,
.contact,
.testimonials,
.legal,
.danke {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand--cream);
  border-radius: 32px;
  box-shadow: 0 4px 20px 0 rgba(165,113,100,0.07);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff7eb;
  border-radius: 26px;
  box-shadow: 0 4px 16px 0 rgba(165,113,100,0.08);
  padding: 28px 24px;
  position: relative;
}
.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;
  background: #fff;
  border-left: 5px solid var(--brand--brown);
  gap: 20px;
  padding: 20px 28px 22px 24px;
  border-radius: 22px;
  margin-bottom: 24px;
  max-width: 580px;
  font-size: 1.1rem;
  box-shadow: 0 2px 14px 0 rgba(34,87,77,0.07);
}
.testimonial-card p {
  color: #312823;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-card strong {
  color: var(--brand--primary);
  font-weight: bold;
  font-family: var(--font--display);
  font-size: 1rem;
}

.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border: 2px solid var(--brand--sand);
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(139,191,90,0.07);
  padding: 24px 18px 28px 18px;
  min-width: 240px;
  max-width: 310px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .17s;
}
.feature-item img {
  height: 48px;
  width: 48px;
  margin-bottom: 12px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 5px 27px 0 rgba(205,82,69,0.13);
  transform: translateY(-2px) scale(1.025);
  border-color: var(--brand--brown);
}

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    max-width: 100%;
    min-width: 0;
  }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.contact-details div {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 9px;
  color: #4A4037;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.map {
  margin: 14px 0 22px 0;
}
.map img {
  width: 100%;
  max-width: 325px;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(34,87,77,0.10);
}
.directions h3 {
  font-size: 1.03rem;
  color: var(--brand--primary);
  margin-bottom: 10px;
}
.directions ul {
  padding-left: 0;
  margin-bottom: 10px;
}
.directions ul li {
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
  color: #4A4037;
  font-size: 0.98rem;
}
.directions ul li::before {
  content: '\25E6';
  color: var(--brand--secondary);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

/* FOOTER */
footer {
  background: var(--brand--primary);
  color: #e1d2b8;
  padding: 48px 0 20px 0;
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #EADBC7;
  font-size: 1.03rem;
  font-family: var(--font--display);
  font-weight: 700;
  letter-spacing: .02em;
  transition: color .18s, background .15s;
  padding: 6px 10px;
  border-radius: 12px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--brand--secondary);
  color: #22574D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 23px;
  vertical-align: middle;
  margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  background: #EADBC7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .16s, box-shadow .2s;
  box-shadow: 0 2px 8px 0 rgba(41,82,133,0.09);
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--brand--secondary);
  box-shadow: 0 3px 13px 0 rgba(205,82,69,0.16);
}

/* LEGAL, DANKE, PLAIN CONTENT PAGES */
.legal h1, .danke h1 {
  color: var(--brand--brown);
  font-size: 2.1rem;
  margin-bottom: 20px;
}
.legal .content-wrapper, .danke .content-wrapper {
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(34,87,77,0.06);
  padding: 38px 24px;
  margin-top: 10px;
  margin-bottom: 22px;
}
.legal .content-wrapper h2, .danke .content-wrapper h2 {
  color: var(--brand--primary);
  font-family: var(--font--display);
  font-size: 1.31rem;
  margin-top: 15px;
}
.legal .content-wrapper ul, .danke .content-wrapper ul {
  padding-left: 12px;
  margin-bottom: 6px;
}
.legal .content-wrapper li, .danke .content-wrapper li {
  font-size: 1.01rem;
  margin-bottom: 8px;
  color: #3D3733;
}

/* SPACING AND SECTIONING */
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section,
  .features,
  .services,
  .about,
  .about-team,
  .contact,
  .testimonials,
  .legal,
  .danke {
    padding: 28px 6px 28px 6px;
    margin-bottom: 36px;
    border-radius: 19px;
  }
  .feature-item {
    min-width: 0;
    max-width: 100%;
    border-radius: 14px;
    padding: 20px 10px 22px 10px;
  }
  .hero .content-wrapper {
    padding: 20px 5px 24px 5px;
    border-radius: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
  }
  .footer-contact {
    font-size: 0.98rem;
    gap: 5px;
  }
  .footer-social {
    gap: 11px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 15px 14px 16px 13px;
    border-radius: 14px;
  }
  .map img {
    max-width: 100%;
    min-width: 0;
    border-radius: 8px;
  }
}

/* FLEX WRAP/COLUMNS ON MOBILE */
.text-image-section,
.content-grid,
.card-container,
.features .feature-grid {
  flex-direction: column;
}

/* VINTAGE PATTERNS & DECORATIONS */
.section, .features, .about, .about-team, .services, .contact, .testimonials, .legal, .danke {
  background: repeating-linear-gradient(45deg, #EADBC7, #EADBC7 22px, #F6F2EB 22px, #F6F2EB 44px);
  border: 3px double var(--brand--brown);
}
.hero {
  background: linear-gradient(180deg, #EADBC7 0%, #F6F2EB 66%);
}

/* Micro-interactions */
.feature-item, .testimonial-card, .card {
  transition: box-shadow .18s cubic-bezier(.36,1.39,.44,.94), transform .15s cubic-bezier(.3,1.01,.52,.96);
}
.feature-item:active, .card:active, .testimonial-card:active {
  transform: scale(0.99);
}

.cta:active {
  transform: scale(0.97);
}

/****** COOKIE BANNER & MODAL ******/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99990;
  background: #FFFBEA;
  border-top: 4px solid var(--brand--brown);
  box-shadow: 0 -2px 24px 0 rgba(165,113,100,0.14);
  width: 100vw;
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px 24px 24px;
  font-size: 1.13rem;
  font-family: var(--font--body);
}
.cookie-banner .btn-group {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: var(--font--display);
  font-size: 0.98rem;
  border-radius: 32px;
  font-weight: 700;
  padding: 9px 20px;
  border: 2px solid var(--brand--brown);
  background: #fff;
  color: var(--brand--brown);
  transition: background .11s, color .13s;
}
.cookie-banner button.accept {
  background: var(--brand--secondary);
  color: #FFF;
  border-color: var(--brand--secondary);
}
.cookie-banner button.reject {
  background: var(--brand--deep-yellow);
  color: #564321;
  border-color: var(--brand--deep-yellow);
}
.cookie-banner button.settings {
  background: #fff;
  color: var(--brand--brown);
  border-color: var(--brand--brown);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--brand--primary);
  color: #FFF;
  border-color: var(--brand--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: 1rem;
    padding: 18px 8px 16px 8px;
  }
  .cookie-banner .btn-group {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0; top:0; right:0; bottom:0;
  background: rgba(50,46,38,0.35);
  z-index: 100001;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #F9F7F0;
  border-radius: 28px;
  padding: 38px 32px 28px 32px;
  box-shadow: 0 7px 40px 0 rgba(34,87,77,0.2);
  max-width: 350px;
  width: 96vw;
  font-size: 1.07rem;
  font-family: var(--font--body);
  color: #39332E;
  animation: cookieModalShow .45s cubic-bezier(.07,1.27,.29,.86);
}
@keyframes cookieModalShow {
  0% { opacity: 0; transform: translateY(30px) scale(0.96); }
  70% { opacity: .98; transform: translateY(-15px) scale(1.08); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-family: var(--font--display);
  color: var(--brand--primary);
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.cookie-options {
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFF;
  border-radius: 13px;
  padding: 13px 12px;
  border: 1.5px solid var(--brand--secondary);
}
.cookie-option label {
  font-size: 1.01rem;
  color: #3B322C;
  user-select: none;
  font-family: var(--font--body);
}
.cookie-option input[type="checkbox"] {
  accent-color: var(--brand--secondary);
  width: 21px;
  height: 21px;
}
.cookie-option input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal .btn-group {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.63rem;
  color: var(--brand--primary);
  border-radius: 50%;
  padding: 2px 8px;
  z-index: 100003;
  transition: background .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand--secondary);
  color: #FFF;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 16px 6px 13px 11px;
    border-radius: 17px;
  }
}

/****** MISC & ACCESSIBILITY ******/
::-webkit-input-placeholder { color: #B89C7A; }
::-moz-placeholder { color: #B89C7A; }
:-ms-input-placeholder { color: #B89C7A; }
::placeholder { color: #B89C7A; }

/***** UTILITIES *****/
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }

/***** FORM FIELDS (IF NEEDED) *****/
input, textarea, select {
  font-family: var(--font--body);
  border-radius: 12px;
  border: 2px solid var(--brand--sand);
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  background: #fff;
  transition: border-color .18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand--secondary);
}

/***** END *****/