/* ========================================================================
   RESET + NORMALIZE (mobile-first, for modern browsers)
   ======================================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #222;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
ul, ol {
  list-style: inside disc;
  margin-left: 1.2em;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1d2f29;
  margin-bottom: 0.7em;
  line-height: 1.2;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

/* ========================================================================
   BRAND COLORS & LUXURY PREMIUM REFINEMENT (for easy reference)
   ======================================================================== */
:root {
  --color-primary: #24534B;
  --color-secondary: #AFCA88;
  --color-accent: #F3F8EE;
  --color-dark: #1a2321;
  --color-light: #fff;
  --color-grey: #dbe3da;
  --color-gold: #C9B274;
  --color-gold-rich: #A39161;
  --shadow-card: 0 7px 20px 0 rgba(36,83,75,.10);
  --shadow-card-hover: 0 12px 26px 0 rgba(36,83,75,.15);
  --border-radius: 16px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

body {
  background: var(--color-accent);
  color: var(--color-dark);
}

/* ========================================================================
   LAYOUT CONTAINERS
   ======================================================================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================================================
   HEADER & NAVBAR
   ======================================================================== */
header {
  background: var(--color-light);
  border-bottom: 1.5px solid var(--color-grey);
  box-shadow: 0 3px 12px 0 rgba(36,83,75,0.03);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold-rich);
}
header .cta-btn {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 8px;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s;
  z-index: 102;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: var(--color-gold-rich);
}
@media (min-width: 990px) {
  .mobile-menu-toggle { display: none; }
}

/* ========================================================================
   MOBILE MENU SLIDE-IN
   ======================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(36,83,75,0.92);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.77,.2,.13,1), opacity .28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  appearance: none;
  margin: 26px 30px 10px 0;
  padding: 0 11px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--color-light);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-end;
  margin: 30px 40px;
}
.mobile-nav a {
  color: var(--color-light);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  padding: 6px 0;
  transition: color .18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-gold);
}

@media (min-width: 990px) {
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex;
  }
}
@media (max-width: 989px) {
  .main-nav {
    display: none !important;
  }
  header .cta-btn {
    display: none;
  }
}

/* ========================================================================
   HERO SECTIONS
   ======================================================================== */
.hero {
  background: linear-gradient(120deg, var(--color-light) 90%, var(--color-accent) 122%);
  padding: 60px 0 64px 0;
  margin-bottom: 42px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero h1, .hero h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: var(--color-dark);
  font-family: var(--font-body);
  margin-bottom: 0;
}
.hero .cta-btn {
  margin-top: 20px;
}
.hero.cta {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 48px 0 50px 0;
}
.hero.cta .content-wrapper h2,
.hero.cta .content-wrapper h1 {
  color: var(--color-light);
}
.hero.cta .cta-btn {
  background: var(--color-gold);
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .hero {
    padding: 38px 0 34px 0;
  }
  .hero .content-wrapper h1, .hero .content-wrapper h2 {
    font-size: 2rem;
  }
  .hero .container {
    padding: 0 6vw;
  }
}

/* ========================================================================
   BUTTONS & CALL-TO-ACTIONS
   ======================================================================== */
.cta-btn,
button.cta-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  padding: 12px 34px;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 3px 10px 0 rgba(36,83,75,0.08);
  transition: background .19s, color .19s, box-shadow .2s;
  letter-spacing: 0.03em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-gold-rich);
  color: var(--color-light);
  box-shadow: 0 5px 20px 0 rgba(36,83,75,.15);
  text-decoration: none;
}
.cta-btn.primary {
  background: var(--color-primary);
  color: var(--color-gold);
  box-shadow: 0 6px 20px -4px rgba(36,83,75,0.15);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

.service-cta-btn {
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--color-primary);
  color: var(--color-gold);
  border-radius: 40px;
  padding: 9px 28px;
  margin-top: 10px;
  border: none;
  transition: background .2s, color .2s;
}
.service-cta-btn:hover,
.service-cta-btn:focus {
  background: var(--color-gold-rich);
  color: var(--color-light);
}

/* ========================================================================
   FEATURES & CARDS (Index/Leistungen/Workshops/Preise)
   ======================================================================== */
.features, .feature-grid, .feature-item, .services-list, .service-item, .workshop-list, .workshop-item {
  width: 100%;
}
.features .container,
.services .container,
.pricing .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.features .content-wrapper,
.services .content-wrapper,
.pricing .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Feature grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 12px;
}
@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 28px 26px 23px 26px;
  border: 1.2px solid var(--color-grey);
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 0px;
  transition: box-shadow 0.22s, border-color 0.18s;
  position: relative;
}
.feature-item img {
  width: 44px;
  height: 44px;
  display: block;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: var(--color-primary);
  font-size: 1.22rem;
  margin-bottom: 7px;
}
.feature-item p {
  color: var(--color-dark);
  font-size: 1rem;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: var(--shadow-card-hover);
  border-color: var(--color-gold-rich);
  z-index: 2;
}

/* Service/Workshop lists */
.services-list,
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: space-between;
}
.service-item, .workshop-item {
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  border: 1.2px solid var(--color-grey);
  padding: 23px 23px 19px 23px;
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 0px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  transition: box-shadow 0.20s, border-color 0.18s;
}
.service-item h3, .workshop-item h3 {
  color: var(--color-primary);
  font-size: 1.16rem;
}
.service-item .service-price {
  color: var(--color-gold-rich);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.13rem;
  margin-top: 8px;
  margin-bottom: 2px;
  display: inline-block;
}
.workshop-level {
  color: var(--color-secondary);
  font-style: italic;
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.service-item:hover, .service-item:focus,
.workshop-item:hover, .workshop-item:focus {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-card-hover);
}

@media (max-width: 900px) {
  .feature-grid, .services-list, .workshop-list {
    flex-direction: column;
    gap: 24px 0;
  }
}

/* ========================================================================
   TEXT & LIST SECTIONS + FAQ
   ======================================================================== */
.text-section {
  padding: 40px 20px;
  margin-bottom: 40px;
}
.text-section .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section h2, .faq h2 {
  color: var(--color-primary);
  font-size: 2.1rem;
}
.text-section ul, .faq ul {
  margin-bottom: 14px;
}

.faq .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq h2 {
  font-size: 2rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  margin-bottom: 0.6em;
}
.faq h3 {
  font-size: 1.05rem;
  color: var(--color-gold-rich);
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.faq p {
  font-size: 1rem;
  color: var(--color-dark);
}

/* About preview (Index About Preview Section) */
.about-preview .content-wrapper, .about .content-wrapper {
  gap: 16px !important;
}
.about-preview ul {
  margin-top: 12px;
  margin-bottom: 0;
  padding-left: 1.1em;
}

/* Address/hours/email blocks (Kontakt) */
.address-block, .email-block, .hours-block {
  margin-bottom: 20px;
}
.address-block h3, .email-block h3, .hours-block h3 {
  font-size: 1.04rem;
  color: var(--color-primary);
  margin-bottom: 0.18em;
}
.address-block p, .email-block p, .hours-block p {
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.7;
}

/* ========================================================================
   TESTIMONIALS
   ======================================================================== */
.testimonials {
  padding: 0 0 38px 0;
  margin-bottom: 40px;
}
.testimonials .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonials h2 {
  color: var(--color-primary);
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 20px 30px;
  background: #f7f7f5;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 18px 0 rgba(36,83,75,0.12);
  min-width: 260px;
  max-width: 425px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-gold);
  transition: box-shadow .18s, border-color .16s;
  position: relative;
}
.testimonial-card blockquote {
  color: #25312d;
  font-size: 1.07rem;
  font-style: italic;
  font-family: var(--font-body);
  line-height: 1.52;
  margin: 0 0 0.5em 0;
}
.testimonial-meta {
  font-size: 0.98rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 0.3em;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 28px 0 rgba(201,178,116,0.18);
  border-color: var(--color-gold-rich);
  z-index: 2;
}

@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 23px 0;
    align-items: stretch;
  }
}

/* ========================================================================
   PRICING TABLE (Preise.html)
   ======================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  margin: 0 auto 30px auto;
  font-family: var(--font-body);
}
.pricing-table th, .pricing-table td {
  padding: 15px 12px;
  border-bottom: 1.1px solid var(--color-grey);
  text-align: left;
}
.pricing-table th {
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.04rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td a.service-cta-btn {
  margin: 0;
  padding: 7px 19px;
  font-size: 0.99rem;
}

@media (max-width: 600px) {
  .pricing-table th, .pricing-table td {
    padding: 12px 7px;
    font-size: 0.97rem;
  }
}

/* ========================================================================
   FOOTER
   ======================================================================== */
footer {
  background: #222720;
  color: #f5f5ea;
  padding: 38px 0;
  margin-top: 55px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 46px;
  display: block;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.footer-nav a {
  color: var(--color-gold);
  font-weight: 600;
  transition: color .17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-light);
}
.footer-contact {
  font-size: 0.98rem;
  line-height: 1.6;
}
.footer-contact a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-contact a:hover {
  color: var(--color-light);
}

@media (max-width: 770px) {
  footer .container {
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
  }
}

/* ========================================================================
   COOKIE BANNER - CONSENT + MODAL
   ======================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-light);
  box-shadow: 0 -3px 22px 0 rgba(36,83,75,0.09);
  border-top: 1.7px solid var(--color-gold);
  z-index: 1350;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 16px 18px 16px;
  animation: fadeInCookie .62s;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(44px);} to { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: center;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.cookie-banner__actions button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 22px;
  border: none;
  margin: 0 3px;
  box-shadow: none;
  background: var(--color-primary);
  color: var(--color-gold);
  transition: background .17s, color .18s, box-shadow .19s;
  cursor: pointer;
}
.cookie-banner__actions .cookie-accept-all {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-banner__actions .cookie-accept-all:hover,
.cookie-banner__actions .cookie-accept-all:focus {
  background: var(--color-gold-rich);
  color: var(--color-light);
}
.cookie-banner__actions .cookie-reject-all {
  background: #e0ddd1;
  color: var(--color-primary);
}
.cookie-banner__actions .cookie-reject-all:hover,
.cookie-banner__actions .cookie-reject-all:focus {
  background: #e5e0cb;
}
.cookie-banner__actions .cookie-settings {
  background: var(--color-light);
  color: var(--color-primary);
  border: 1.2px solid var(--color-gold);
}
.cookie-banner__actions .cookie-settings:hover,
.cookie-banner__actions .cookie-settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

.cookie-modal {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  background: rgba(36,83,75,0.67);
  z-index: 1352;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .36s;
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal__content {
  background: var(--color-light);
  border-radius: var(--border-radius);
  padding: 32px 24px 28px 24px;
  box-shadow: 0 8px 52px 0 rgba(36,83,75,0.17);
  max-width: 97vw;
  width: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideDownModal .33s;
}
@keyframes slideDownModal {
  from { transform: translateY(-48px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal__header {
  font-family: var(--font-display);
  font-size: 1.37rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5em;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal__category > span {
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: var(--color-dark);
}
.cookie-modal__toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-modal__toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal__toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #dbe4da;
  transition: background 0.18s;
  border-radius: 24px;
}
.cookie-modal__toggle .slider:before {
  position: absolute;
  content: "";
  height: 20px; width: 20px;
  left: 2px; bottom: 2px;
  background: var(--color-gold);
  transition: transform 0.18s;
  border-radius: 50%;
}
.cookie-modal__toggle input[type="checkbox"]:checked + .slider {
  background: var(--color-secondary);
}
.cookie-modal__toggle input[type="checkbox"]:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal__category--essential .cookie-modal__toggle {
  pointer-events: none; opacity: .54;
}
.cookie-modal__footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal__footer button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 22px;
  border: none;
  padding: 8px 22px;
  background: var(--color-gold);
  color: var(--color-primary);
  cursor: pointer;
  transition: background .18s, color .13s;
}
.cookie-modal__footer button:hover,
.cookie-modal__footer button:focus {
  background: var(--color-gold-rich);
  color: var(--color-light);
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 18px;
  font-size: 1.38rem;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  transition: color .19s;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: var(--color-primary);
}

/* Hide modal and banner when not open */
.cookie-banner,
.cookie-modal {
  display: none;
}
.cookie-banner.active {
  display: flex;
}
.cookie-modal.active {
  display: flex;
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */
@media (max-width: 990px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .footer-logo img, .logo img {
    height: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6vw;
  }
  .section {
    padding: 24px 4px;
    margin-bottom: 40px;
  }
  .hero, .hero.cta {
    padding: 30px 0 32px 0;
  }
  .services-list, .feature-grid, .workshop-list {
    flex-direction: column;
    gap: 24px;
  }
  .testimonials .content-wrapper {
    gap: 18px;
    align-items: stretch;
    flex-direction: column;
  }
  .feature-item, .service-item, .workshop-item {
    min-width: unset;
    padding: 18px 11px 10px 13px;
  }
  .testimonials, .features, .about-preview, .about, .pricing, .faq, .contact, .text-section {
    padding: 0 !important;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.1rem; }
  .hero .content-wrapper h1, .hero .content-wrapper h2 {
    font-size: 1.3rem;
  }
  .footer-logo img, .logo img {
    height: 22px;
  }
  .cta-btn, .cta-btn.primary, .service-cta-btn {
    padding: 8px 12px;
    font-size: 0.99rem;
  }
  .container { padding: 0 2vw; }
}

/* ========================================================================
   FLEXBOX ONLY: CONTENT-GRID + TEXT-IMAGE-SECTION + CARD-CONTAINER
   ======================================================================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* ========================================================================
   MISC: FORMS, TABLES, CODE
   ======================================================================== */
input, select, textarea, button {
  font-family: var(--font-body);
  outline-color: var(--color-gold);
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* ========================================================================
   UTILITIES & OVERRIDES
   ======================================================================== */
.mt-0   { margin-top: 0   !important; }
.mt-8   { margin-top: 8px !important; }
.mb-0   { margin-bottom: 0 !important; }
.mb-8   { margin-bottom: 8px !important; }
.mb-20  { margin-bottom: 20px !important; }
.justify-center { justify-content: center !important; }
.align-center   { align-items: center !important; }
.text-center    { text-align: center !important; }

/* ========================================================================
   LUXURY GOLDEN DETAILS - AESTHETIC
   ======================================================================== */
.section h2, .features h2, .services h2, .pricing h2 {
  position: relative;
  padding-bottom: 12px;
  font-size: 2rem;
}
.section h2::after, .features h2::after, .services h2::after, .pricing h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 54px;
  margin: 0.38em 0 0 0;
  background: linear-gradient(90deg, var(--color-gold) 60%, var(--color-gold-rich) 100%);
  border-radius: 3px;
}

/* Subtle highlight on hoverable cards */
.card:hover, .feature-item:hover, .service-item:hover,
.workshop-item:hover, .testimonial-card:hover {
  outline: 2px solid var(--color-gold-rich);
  outline-offset: 1.5px;
}

/* ========================================================================
   TRANSITIONS & MICRO-INTERACTIONS
   ======================================================================== */
.feature-item, .service-item, .workshop-item, .testimonial-card, .card {
  transition: box-shadow 0.22s, border-color 0.18s, outline 0.19s;
}
.cta-btn, .service-cta-btn, .cookie-banner__actions button, .cookie-modal__footer button {
  transition: background .17s, color .15s, box-shadow .15s;
}

/* ----------------- END ---------------- */
