/* =========================
   PignoFesti Vintage Retro CSS
   ========================= */

/* 1. Vintage Retro Color Palette (brand + retro)
   - Primary: #1B7B6D (brand green)
   - Secondary: #FFC857 (brand yellow)
   - Accent: #F9F9F9 (brand light)
   - Retro Red: #D7263D
   - Retro Blue: #3B5D76
   - Retro Cream: #F6E7CB
   - Retro Brown: #7C5E3C
   - Retro Orange: #F4972E
*/
:root {
  --primary: #1B7B6D;
  --secondary: #FFC857;
  --accent: #F9F9F9;
  --retro-red: #D7263D;
  --retro-blue: #3B5D76;
  --retro-cream: #F6E7CB;
  --retro-brown: #7C5E3C;
  --retro-orange: #F4972E;
  --text-dark: #3B2C1A;
  --text-light: #fff;
  --shadow: 0 4px 24px rgba(60, 40, 10, 0.08);
  --border-radius: 18px;
  --border-radius-sm: 8px;
  --pattern-url: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="%23F6E7CB"/><circle cx="20" cy="20" r="2" fill="%23FFC857"/><circle cx="0" cy="0" r="2" fill="%23FFC857"/><circle cx="40" cy="40" r="2" fill="%23FFC857"/></svg>');
}

/* 2. Vintage Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap'); /* For retro headings */

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--retro-cream);
  margin: 0;
  padding: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Pacifico', Arial, sans-serif;
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}
h1 {
  font-size: 2.5rem;
  font-family: 'Pacifico', 'Montserrat', Arial, sans-serif;
  color: var(--retro-red);
  text-shadow: 1px 2px 0 var(--secondary), 2px 4px 0 var(--retro-orange);
}
h2 {
  font-size: 2rem;
  color: var(--retro-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 1px 1px 0 var(--secondary);
}
h3 {
  font-size: 1.3rem;
  color: var(--retro-brown);
  font-family: 'Montserrat', Arial, sans-serif;
}

p, li, small {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-dark);
}

strong {
  color: var(--retro-red);
  font-weight: 700;
}

/* 3. Layout Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 4. Section Spacing & Patterns */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pattern-url), var(--accent);
  background-repeat: repeat;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
}
section.hero {
  background: linear-gradient(120deg, var(--secondary) 0%, var(--retro-cream) 100%);
  box-shadow: none;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  margin-bottom: 40px;
}

/* 5. Header & Navigation */
header {
  background: var(--retro-blue);
  box-shadow: 0 2px 12px rgba(60,40,10,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 18px 18px 0;
}
header img {
  height: 48px;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.08rem;
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--retro-blue);
}
.cta-btn {
  background: var(--retro-red);
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: var(--border-radius);
  border: none;
  box-shadow: 0 2px 8px rgba(215,38,61,0.08);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-left: 18px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--retro-orange);
  color: var(--retro-brown);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(244,151,46,0.13);
}

/* 6. Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--retro-blue);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 120;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--retro-orange);
  color: var(--text-light);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-blue);
  box-shadow: 0 0 0 100vw rgba(60,40,10,0.25);
  z-index: 200;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--retro-red);
  color: var(--text-light);
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 18px 0 0 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--retro-orange);
  color: var(--retro-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px dotted var(--secondary);
  transition: color 0.2s, border-color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-orange);
  border-color: var(--retro-orange);
}

/* 7. Main Content Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(27,123,109,0.13);
  transform: translateY(-2px) scale(1.02);
}
.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;
  padding: 20px;
  background: var(--retro-cream);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 12px rgba(60,40,10,0.07);
  margin-bottom: 20px;
  border: 2px dashed var(--secondary);
  max-width: 420px;
  min-width: 220px;
  color: var(--text-dark);
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--retro-brown);
}
.testimonial-card div {
  color: var(--retro-orange);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.testimonial-card small {
  color: var(--retro-blue);
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* 8. Feature Grids & Cards */
.feature-grid, .team-grid, .gallery, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div, .team-grid > div, .blog-teaser {
  background: var(--accent);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid var(--secondary);
}
.feature-grid > div:hover, .team-grid > div:hover, .blog-teaser:hover {
  box-shadow: 0 8px 32px rgba(27,123,109,0.13);
  transform: translateY(-2px) scale(1.03);
  border-color: var(--retro-orange);
}
.feature-grid img, .team-grid img {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 2px 8px rgba(255,200,87,0.13);
}

/* 9. Blog List & Categories */
.blog-list {
  gap: 24px;
}
.blog-teaser {
  background: var(--retro-cream);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 260px;
  max-width: 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid var(--retro-orange);
}
.blog-teaser h3 {
  color: var(--retro-red);
  font-size: 1.2rem;
}
.blog-teaser a {
  color: var(--retro-blue);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.blog-teaser a:hover, .blog-teaser a:focus {
  color: var(--retro-orange);
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}
.blog-categories span {
  font-weight: 700;
  color: var(--retro-brown);
}
.blog-categories a {
  background: var(--secondary);
  color: var(--retro-blue);
  border-radius: var(--border-radius-sm);
  padding: 4px 14px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: var(--retro-orange);
  color: var(--text-light);
}

/* 10. Gallery */
.gallery {
  gap: 20px;
  justify-content: flex-start;
}
.gallery img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 8px rgba(60,40,10,0.10);
  border: 2px solid var(--secondary);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.gallery img:hover {
  box-shadow: 0 8px 24px rgba(27,123,109,0.13);
  border-color: var(--retro-orange);
}

/* 11. FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  color: var(--retro-blue);
  margin-bottom: 6px;
  cursor: pointer;
  position: relative;
}
.faq-accordion h3::after {
  content: '+';
  color: var(--retro-orange);
  font-weight: 900;
  margin-left: 8px;
}
.faq-accordion div.open h3::after {
  content: '-';
}
.faq-accordion p {
  margin: 0 0 0 10px;
  color: var(--retro-brown);
  font-size: 1rem;
  display: block;
}

/* 12. Footer */
footer {
  background: var(--retro-blue);
  color: var(--secondary);
  padding: 36px 0 18px 0;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 -2px 12px rgba(60,40,10,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--retro-orange);
}
.footer-contact {
  font-size: 0.98rem;
  color: var(--secondary);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 13. Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--retro-brown);
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -4px 24px rgba(60,40,10,0.13);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  animation: slideUp 0.7s cubic-bezier(.77,0,.18,1);
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  color: var(--secondary);
  font-size: 1.05rem;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 10px 22px;
  margin: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--retro-blue);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--retro-orange);
  color: var(--text-light);
}
.cookie-banner .reject {
  background: var(--retro-red);
  color: var(--text-light);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--retro-orange);
  color: var(--retro-brown);
}
.cookie-banner .settings {
  background: var(--retro-blue);
  color: var(--secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--retro-orange);
  color: var(--text-light);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(60,40,10,0.45);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: var(--retro-cream);
  color: var(--retro-brown);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px rgba(60,40,10,0.18);
  padding: 36px 28px 28px 28px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeIn 0.5s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--retro-red);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-weight: 700;
  color: var(--retro-brown);
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: var(--retro-orange);
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-category input[disabled] {
  accent-color: var(--retro-blue);
  opacity: 0.7;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--border-radius-sm);
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal .save {
  background: var(--secondary);
  color: var(--retro-blue);
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--retro-orange);
  color: var(--text-light);
}
.cookie-modal .cancel {
  background: var(--retro-red);
  color: var(--text-light);
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: var(--retro-orange);
  color: var(--retro-brown);
}

/* 14. Forms & Inputs */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--secondary);
  padding: 10px 14px;
  margin-bottom: 18px;
  background: var(--accent);
  color: var(--retro-brown);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--retro-orange);
  outline: none;
  box-shadow: 0 2px 8px rgba(244,151,46,0.13);
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* 15. Utility Classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mb-2 { margin-bottom: 2px !important; }
.mt-4 { margin-top: 4px !important; }
.mb-4 { margin-bottom: 4px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* 16. Responsive Design (Mobile First) */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .feature-grid > div, .team-grid > div, .blog-teaser {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 180px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 4px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .team-grid, .gallery, .blog-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .team-grid, .gallery, .blog-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .cookie-modal .modal-content {
    min-width: 90vw;
    padding: 18px 8px 18px 8px;
  }
}
@media (max-width: 480px) {
  header img {
    height: 36px;
  }
  .testimonial-card, .feature-grid > div, .team-grid > div, .blog-teaser {
    padding: 14px 8px;
    min-width: 120px;
  }
  .gallery img {
    width: 98vw;
    height: 80px;
  }
}

/* 17. Micro-interactions & Transitions */
a, button, .cta-btn, .blog-teaser, .feature-grid > div, .team-grid > div, .testimonial-card, .cookie-banner button, .cookie-modal button {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

/* 18. Miscellaneous */
ul, ol {
  padding-left: 22px;
  margin-top: 0;
  margin-bottom: 18px;
}
ul.team-values {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: square inside;
  color: var(--retro-orange);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}
.weiter-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 12px;
}
.weiter-links h2 {
  margin-bottom: 8px;
  color: var(--retro-blue);
  font-size: 1.1rem;
}

/* 19. Accessibility & Focus */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dashed var(--retro-orange);
  outline-offset: 2px;
  background: var(--secondary);
  color: var(--retro-blue);
}

/* 20. Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* 21. Decorative Retro Elements */
section::before {
  content: '';
  display: block;
  position: absolute;
  left: 18px;
  top: 18px;
  width: 48px;
  height: 48px;
  background: var(--secondary);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
}
section.hero::before {
  display: none;
}

/* 22. Prevent Overlapping */
section, .card, .testimonial-card, .feature-grid > div, .team-grid > div, .blog-teaser {
  box-sizing: border-box;
  margin-bottom: 20px;
}

/* 23. Prevent absolute for content cards (only for decorative) */

/* 24. Custom Scrollbar for retro feel */
::-webkit-scrollbar {
  width: 10px;
  background: var(--retro-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}

/* 25. Z-index stacking for overlays */
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 9999; }
.cookie-modal { z-index: 10000; }

/* 26. Misc Fixes */
.map img {
  width: 100%;
  max-width: 420px;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 8px rgba(60,40,10,0.10);
  border: 2px solid var(--secondary);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

/* 27. Slider for testimonials (if needed) */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}

/* 28. Hide mobile menu by default on desktop */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
  header nav, .cta-btn { display: flex !important; }
}
