/* ===================================================
   CSS RESET & NORMALIZATION
   =================================================== */
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.6;
  background: #fbfbfc;
  color: #23415C;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  transition: color .22s;
}
img {
  border-style: none;
  display: block;
  max-width: 100%;
  height: auto;
}
*, *:before, *:after {
  box-sizing: inherit;
}
:root {
  --brand-primary: #23415C;
  --brand-secondary: #FFFFFF;
  --brand-accent: #B9D4E2;
  --brand-accent2: #FDE9F1;
  --brand-vibrant1: #E867A5;
  --brand-vibrant2: #FFB254;
  --brand-vibrant3: #59C1FF;
  --shadow-soft: 0 2px 20px 0 rgba(35,65,92,0.08), 0 1.5px 8px 0 rgba(233,103,165, 0.11);
  --radius-l: 32px;
  --radius-m: 20px;
  --radius-s: 10px;
  --shadow-card: 0 7px 38px -7px rgba(35, 65, 92, 0.08), 0 2px 12px 0 rgba(185, 212, 226, 0.09);
  --transition: .22s cubic-bezier(.77,.06,.64,1);

  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
}

@media screen and (max-width: 520px){
  html { font-size: 90%; }
}

/* ===================================================
   BASE TYPOGRAPHY
   =================================================== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: #23415C;
  background: #fbfbfc;
  letter-spacing: 0.01em;
}
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--brand-primary);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 18px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.07rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
p, li, ul, ol {
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 12px;
}
strong {
  font-weight: bold;
  color: var(--brand-vibrant1);
}
em {
  font-style: italic;
  color: var(--brand-vibrant2);
}

/* Rich links & creative hovers */
a:focus, a:hover {
  color: var(--brand-vibrant1);
  outline: none;
}

/* Creative artistic headings */
h1, h2 {
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 8px;
  background: var(--brand-vibrant3);
  border-radius: var(--radius-s) var(--radius-s) 0 0;
  margin-top: 14px;
  margin-left: 0;
  opacity: .7;
}
h1 {
  margin-top: 0;
}

@media (max-width: 600px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
}

/* ===================================================
   GENERAL LAYOUT
   =================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 22px 8px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container { gap: 24px; }
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-secondary);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 28px 18px;
  transition: box-shadow var(--transition), transform var(--transition);
  z-index: 1;
}
.card:hover {
  box-shadow: 0 8px 36px -2px rgba(35, 65, 92, 0.14), 0 3px 20px 2px rgba(232,103,165,0.12);
  transform: translateY(-5px) scale(1.017);
}

@media (max-width: 900px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

/* ====== Creative/Artistic Features section grid ====== */
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--brand-secondary);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 24px 16px 20px 16px;
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 300px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-item img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 4px 20px rgba(35, 65, 92, .11));
}
.feature-item:hover {
  box-shadow:0 12px 32px -2px rgba(233, 103, 165, 0.16);
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
}

@media (max-width: 1100px) {
  .feature-grid { flex-wrap: wrap; }
  .feature-item { max-width: 47%; min-width: 220px; }
}
@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 16px; }
  .feature-item { max-width: 100%; }
}

/* ===================================================
   BUTTONS & CTA
   =================================================== */
.cta-primary {
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 36px;
  background: var(--brand-vibrant1);
  color: #fff;
  border: none;
  border-radius: var(--radius-l);
  font-size: 1.125rem;
  box-shadow: var(--shadow-soft);
  display: inline-block;
  margin-top: 6px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  letter-spacing: .038em;
  position: relative;
  z-index: 1;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--brand-vibrant2);
  color: var(--brand-primary);
  transform: scale(1.035);
  box-shadow:0 8px 32px -2px rgba(89,193,255,0.08);
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 18px;
}
.quick-links a {
  color: var(--brand-primary);
  font-family: var(--font-body);
  padding: 8px 22px;
  background: var(--brand-accent);
  border-radius: var(--radius-s);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.quick-links a:hover,
.quick-links a:focus {
  background: var(--brand-vibrant1);
  color: #fff;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
header {
  background: linear-gradient(85deg, #FFF 74%, var(--brand-accent) 100%);
  box-shadow: 0 2px 14px -6px #59C1FF33;
  width: 100%;
  z-index: 90;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
}
header img[alt='Flair Hochzeit Bremen'] {
  height: 53px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 500;
}
nav.main-nav a {
  color: var(--brand-primary);
  padding: 7px 12px;
  border-radius: var(--radius-s);
  transition: color var(--transition), background var(--transition);
  position: relative;
  z-index: 1;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: var(--brand-vibrant1);
  color: #fff;
  text-shadow: 0 1px 1px var(--brand-primary);
}

@media (max-width: 980px) {
  nav.main-nav, .cta-primary { display: none; }
  header .container { justify-content: flex-start; }
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-vibrant1);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 8px 16px;
  border-radius: var(--radius-s);
  margin-right: 8px;
  cursor: pointer;
  z-index: 111;
  transition: background .14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: #fff;
  box-shadow: 0 11px 44px -11px #23415C40;
  z-index: 110;
  transform: translateX(-110vw);
  transition: transform .39s cubic-bezier(.77,.06,.44,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 35px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 17px;
  background: transparent;
  color: var(--brand-primary);
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 120;
  transition: color .22s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-vibrant1);
}

nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin: 60px 0 0 33px;
}
nav.mobile-nav a {
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: 1.23rem;
  padding: 10px 14px 10px 2px;
  border-radius: var(--radius-s);
  transition: background var(--transition), color var(--transition);
  font-weight: 600;
}
nav.mobile-nav a:hover, nav.mobile-nav a:focus {
  background: var(--brand-vibrant3);
  color:#174770;
}

@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 18px;
    top: 17px;
  }
  .cta-primary { display: none; }
  header .container { padding-right: 55px; }
}
@media (max-width: 600px) {
  header .container { padding: 9px 7px 9px 7px; }
  header img[alt='Flair Hochzeit Bremen'] { height: 44px; }
}

/* ===================================================
   HERO-BLOCK AND ARTISTIC EFFECTS
   =================================================== */
.hero, .gallery-inspiration, .about-section, .services-overview, .thank-you-section {
  background: linear-gradient(114deg, var(--brand-secondary) 80%, var(--brand-accent) 100%);
  border-radius: 0 0 var(--radius-l) var(--radius-l);
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero {
  padding: 64px 0 70px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero .cta-primary {
  margin-top: 20px;
}

.hero::before {
  content: '';
  position: absolute;
  right: -115px;
  bottom: -120px;
  width: 380px;
  height: 320px;
  background: var(--brand-vibrant1);
  opacity: .13;
  border-radius: 48% 52% 43% 57% / 68% 29% 71% 32%;
  z-index: 0;
}

@media (max-width: 600px) {
  .hero {
    padding: 28px 0 26px 0;
    margin-bottom: 38px;
  }
  .hero::before { display: none; }
}

/* ===================================================
   CARD COMPONENTS, SERVICES, ARTISTIC SHADOWS
   =================================================== */
.service-cards, .service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 350px;
  background: var(--brand-secondary);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 30px 22px 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 12px 36px -2px rgba(185,212,226,.17), 0 3px 24px 2px rgba(89, 193, 255, 0.10);
  transform: scale(1.025) rotate(1.6deg);
}

@media (max-width: 850px) {
  .service-cards { flex-direction: column; gap: 16px; }
  .service-card { max-width:100%; min-width: 0; }
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials .content-wrapper,
.testimonial-highlights .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--brand-accent2);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 20px;
  min-width: 220px;
  max-width: 390px;
  color: #174770;
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card p {
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #23415C;
  font-style: italic;
}
.testimonial-card span {
  color: var(--brand-vibrant1);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px -1px #E867A545, 0 5px 22px 3px #23415C22;
  transform: scale(1.015) translateY(-4px);
}
@media (max-width: 850px) {
  .testimonial-card { max-width: 100%; }
  .testimonials .content-wrapper,
  .testimonial-highlights .content-wrapper { flex-direction: column; gap:18px; }
}

/* ===================================================
   CONTACT / LOCATION / FOOTER
   =================================================== */
.contact-info,
.opening-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  align-items: flex-start;
}
.contact-info > div,
.opening-hours {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--brand-accent2);
  border-radius: var(--radius-s);
  padding: 9px 17px 9px 12px;
  font-size: 1rem;
  color: var(--brand-primary);
}
.contact-info img, .opening-hours img {
  width: 25px;
  height: 25px;
  opacity: .88;
}

/* Footer */
footer {
  background: linear-gradient(92deg, #23415c05 0%, #B9D4E2 100%);
  padding: 38px 0 12px 0;
  margin-top: 56px;
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  box-shadow: 0 -3px 24px -7px #B9D4E275;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: 1.02rem;
  padding: 6px 12px;
  background: #fff;
  border-radius: var(--radius-s);
  transition: background var(--transition), color var(--transition);
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--brand-vibrant1);
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 7px;
  color: var(--brand-primary);
  font-size: 1rem;
  align-items: center;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 3px;
}
.footer-social a {
  display: flex;
  padding: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow:0 1px 6px 0 #23415c11;
  transition: background var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--brand-vibrant3);
  transform: scale(1.13);
}
.footer-social img {
  width: 23px; height: 23px;
}
.footer-copyright {
  font-size: .96rem;
  color: #23415C;
  font-family: var(--font-body);
  opacity: .72;
  margin-top: 10px;
}
@media (max-width:640px){
  footer .container { gap: 10px; }
  .footer-contact { flex-direction: column; gap: 11px; }
  .footer-nav { flex-direction: column; gap: 8px; }
}

/* ===================================================
  SECTIONS: FAQ, VALUES, TIMELINE, TIPS, ETC.
 =================================================== */
.faq-section .content-wrapper,
.values-section .content-wrapper,
.location-section .content-wrapper,
.service-benefits .content-wrapper,
.process-summary .content-wrapper,
.timeline-overview .content-wrapper,
.planning-tips .content-wrapper,
.privacy-policy .content-wrapper,
.gdpr-section .content-wrapper,
.cookie-policy .content-wrapper,
.terms-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.07rem;
}
ul, ol {
  margin-bottom: 12px;
  padding-left: 25px;
}
ul li::before {
  content: '\2022'; /* bullet */
  color: var(--brand-vibrant1);
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-left: -1.2em;
  font-size: 1.5em;
  vertical-align: middle;
}
ol li {
  margin-bottom: 7px;
}
.faq-item {
  background: var(--brand-secondary);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 21px 16px 18px 16px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .faq-item, .feature-item, .testimonial-card, .card, .service-card {
    padding: 11px 6px 14px 10px;
  }
}

/* ===================================================
   CTA-SECTION
   =================================================== */
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta-section h2 { margin-bottom: 22px; }

/* ================= Cookie Consent Banner ============== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 95vw;
  max-width: 485px;
  z-index: 1010;
  background: #fff;
  color: var(--brand-primary);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  box-shadow: 0 -7px 26px 0 #23415c24, 0 4px 12px 0 #E867A529;
  padding: 28px 20px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: transform .46s cubic-bezier(.67,.1,.39,.97), opacity .25s;
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  margin-bottom: 12px;
  color: var(--brand-primary);
}
.cookie-banner .cookie-btn-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-body);
  padding: 8px 23px;
  border-radius: var(--radius-s);
  border: none;
  font-weight: 600;
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-size: 1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
  margin-top: 0;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px 0 #b9d4e29a;
}
.cookie-btn.accept {
  background: var(--brand-vibrant1);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--brand-vibrant3);
  color: var(--brand-primary);
}
.cookie-btn.settings {
  background: var(--brand-accent2);
  color: var(--brand-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-vibrant2);
  color: var(--brand-primary);
  transform: scale(1.03);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 37vh;
  transform: translate(-50%, -30vh) scale(.93);
  z-index: 1022;
  min-width: 340px;
  max-width: 98vw;
  background: #fff;
  border-radius: var(--radius-l);
  box-shadow: 0 14px 44px -6px #23415c3A, 0 3px 22px 0 #E867A536;
  padding: 37px 32px 25px 32px;
  opacity:0;
  pointer-events:none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap:22px;
  transition: opacity .3s, transform .38s cubic-bezier(.67,.1,.39,.97);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -5vh) scale(1);
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size:1.3rem;
}
.cookie-modal .cookie-modal-close {
  position:absolute;
  right:28px; top:19px;
  font-size:1.8rem;
  background: none;
  border: none;
  color: var(--brand-primary);
  cursor:pointer;
  transition: color .22s;
}
.cookie-modal .cookie-modal-close:hover { color: var(--brand-vibrant1); }
.cookie-modal .cookie-category-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size:1.07rem;
}
.cookie-modal .cookie-category {
  display: flex;
  gap: 15px;
  align-items: center;
}
.cookie-toggle {
  width: 43px;
  height: 25px;
  background: var(--brand-accent);
  border-radius: 20px;
  position: relative;
  border: none;
  transition: background .2s;
  cursor: pointer;
}
.cookie-toggle[aria-checked='true'],
.cookie-toggle.checked {
  background: var(--brand-vibrant3);
}
.cookie-toggle .cookie-toggle-knob {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px #23415c22;
  transition: left .23s cubic-bezier(.77,.06,.64,1), background .22s;
}
.cookie-toggle[aria-checked='true'] .cookie-toggle-knob,
.cookie-toggle.checked .cookie-toggle-knob {
  left: 22px;
  background: #fff;
}

.cookie-modal .cookie-category-desc {
  color: #23415C;
  font-size: 1rem;
  opacity: .86;
  margin-left: 4px;
}
.cookie-modal .cookie-toggle[disabled] {
  opacity: .52;
  pointer-events: none;
}

.cookie-modal-btn-row {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  width: 100%;
  margin-top:20px;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
}
@media (max-width: 480px){
  .cookie-modal { padding: 18px 6px; min-width:0; }
  .cookie-banner { padding: 10px 4px 12px 7px; }
}

/* =================== THANK YOU / SUCCESS =============== */
.thank-you-section .content-wrapper {
  align-items: center;
  text-align: center;
}
.thank-you-section h1 { color: var(--brand-vibrant1); }

/* ==================== RESPONSIVE ===================== */
@media (max-width: 950px) {
  .container { padding: 0 8px; }
}
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container, .service-cards, .features .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .service-card, .card, .feature-item, .testimonial-card {
    min-width: 0; width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 510px) {
  nav.mobile-nav a { font-size:1.07rem; }
}

/* =============== Misc Visual Accents =============== */
div[role="separator"] {
  border-bottom: 1.5px dashed var(--brand-vibrant1);
  margin: 15px 0 19px 0;
}
hr {
  border:0;
  border-bottom:2px solid var(--brand-accent);
  margin: 28px 0;
}

/* =============== Forms (useful for future/hidden forms) ============== */
input, textarea {
  border: 1.5px solid var(--brand-accent);
  background: #fff;
  border-radius: var(--radius-s);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 9px 13px;
  width: 100%;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  margin-bottom: 17px;
}
input:focus, textarea:focus {
  border-color: var(--brand-vibrant3);
  box-shadow: 0 0 0 2px #B9D4E273;
}
label { font-weight: 600; color: var(--brand-primary); }
button { font-family: var(--font-body); }


/* ==================== END OF MAIN.CSS ==================== */

