/*
  ModeImpuls Dortmund - Luxury Premium CSS
  Mobile-first | Flexbox-only | No Grid/Columns | Brand: #1B3151, #F5C652, #fff | Fonts: Montserrat (display), Roboto (body)
  Luxury premium = gold accents, sophisticated colors, premium fonts, refined spacing & shadow, micro-interaction
*/

/* CSS RESET & BASE TYPOGRAPHY */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F9F6F2;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1B3151;
  background: #F9F6F2;
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #1B3151;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5C652;
}
ul, ol {
  padding-left: 22px;
}


/* === BRAND FONT CLASSES === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1B3151;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.17;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

p, li, address {
  font-size: 1rem;
  color: #22334F;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
strong {
  font-weight: 700;
}
address {
  font-style: normal;
  display: inline;
}


/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin-bottom: 40px;
}
.text-section {
  max-width: 700px;
}


div.section,
section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (min-width: 992px) {
  div.section,
  section,
  .section {
    padding-left: 0;
    padding-right: 0;
  }
}


/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  padding: 0 0 0 0;
  background: #ffffffee;
  box-shadow: 0 4px 16px rgba(27,49,81,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 50;
}
.logo {
  display: flex;
  align-items: center;
  margin: 0 0 0 12px;
  height: 70px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(27,49,81,0.04));
}

/* desktop nav */
.main-nav {
  display: none;
}
.cta-primary {
  display: none;
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: #1B3151;
  padding: 10px 14px;
  margin-right: 8px;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  z-index: 105;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F5C65222;
  color: #C9A042;
}


@media (min-width: 1024px) {
  header {
    flex-direction: row;
    align-items: center;
    padding: 0 40px;
    min-height: 88px;
  }
  .logo {
    margin-left: 0;
  }
  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 32px;
    margin-left: 32px;
    flex-grow: 1;
    align-items: center;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 500;
  }
  .main-nav a {
    padding: 8px 0;
    position: relative;
    color: #1B3151;
    transition: color 0.16s;
  }
  .main-nav a:after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: #F5C652;
    transition: width 0.24s;
    margin-top: 3px;
    border-radius: 1px;
  }
  .main-nav a:hover,
  .main-nav a:focus {
    color: #F5C652;
  }
  .main-nav a:hover:after,
  .main-nav a:focus:after {
    width: 32px;
  }
  .cta-primary {
    display: inline-block;
    background: #1B3151;
    color: #FFFFFF;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 32px;
    padding: 14px 40px;
    margin-left: 32px;
    margin-right: 0;
    letter-spacing: 0.04em;
    border: none;
    box-shadow: 0 3px 14px rgba(27,49,81,0.06);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    border: 2px solid #F5C652;
    position: relative;
    overflow: hidden;
  }
  .cta-primary:hover,
  .cta-primary:focus {
    background: #F5C652;
    color: #1B3151;
    box-shadow: 0 8px 30px rgba(245,198,82,0.14);
  }
  .mobile-menu-toggle {
    display: none;
  }
}


/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,49,81,0.92);
  z-index: 110;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.81,.01,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 28px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.3rem;
  margin: 0 24px 32px 0;
  color: #F5C652;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
  z-index: 120;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #FFFFFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  width: 100%;
  margin-left: 48px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 600;
  padding: 8px 0 8px 4px;
  position: relative;
  letter-spacing: 0.03em;
  width: 100%;
  border-radius: 4px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F5C65233;
  color: #F5C652;
}
@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}


/* === HERO & FEATURE SECTIONS === */
.hero-section, .trend-hero-section, .wardrobe-hero-section, .thank-you-section {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 5px 32px rgba(27,49,81,0.07);
  margin-top: 28px;
  margin-bottom: 60px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-section h1, .trend-hero-section h1, .wardrobe-hero-section h1, .thank-you-section h1 {
  font-size: 2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1B3151;
  margin-bottom: 24px;
}
.hero-section p, .trend-hero-section p, .wardrobe-hero-section p, .thank-you-section p {
  font-size: 1.125rem;
  margin-bottom: 28px;
}
.hero-section .cta-primary,
.trend-hero-section .cta-primary,
.wardrobe-hero-section .cta-primary,
.thank-you-section .cta-primary {
  margin-top: 16px;
  font-size: 1.125rem;
}


.features-section,
.services-section,
.about-section,
.testimonials-section,
.outfit-tips-section,
.outfit-services-section,
.stilberatung-process-section,
.stilberatung-features-section,
.saisonale-trends-section,
.trends-overview-section,
.trend-service-section,
.organisation-tips-section,
.wardrobe-service-section,
.contact-info-section,
.contact-benefits-section,
.about-mission-section,
.about-features-section,
.about-testimonials-section,
.legal-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(27,49,81,0.06);
  margin-bottom: 60px;
}


/* === FEATURE GRID (FLEXBOX) === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-card {
  background: #FAFAFA;
  flex: 1 1 240px;
  border-radius: 14px;
  padding: 32px 24px 24px 24px;
  min-width: 250px;
  box-shadow: 0 2px 10px rgba(27,49,81,0.05), 0 1.5px 0 rgba(245,198,82,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1.5px solid #F5C65233;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.19s, transform 0.23s;
  margin-bottom: 20px;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 28px rgba(245,198,82,0.12), 0 2px 10px rgba(27,49,81,0.08);
  border-color: #F5C65299;
  transform: translateY(-4px) scale(1.01);
}
.feature-card img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  margin-bottom: 18px;
  filter: drop-shadow(0 2px 4px rgba(27,49,81,0.04));
}
.feature-card h3 {
  color: #1B3151;
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.feature-card p {
  font-size: 1rem;
  color: #22334F;
}


/* === BUTTONS & CALL-TO-ACTIONS === */
.cta-primary {
  background: #1B3151;
  color: #fff;
  border-radius: 32px;
  padding: 13px 36px;
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  border: 2px solid #F5C652;
  box-shadow: 0 3px 12px rgba(51,51,51,0.05);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #F5C652;
  color: #1B3151;
  box-shadow: 0 8px 30px rgba(245,198,82,0.14);
}

.cta-secondary {
  background: transparent;
  color: #1B3151;
  border: 2px solid #F5C652;
  border-radius: 32px;
  padding: 12px 32px;
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 16px;
  box-shadow: 0 1px 6px rgba(27,49,81,0.04);
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.16s;
  cursor: pointer;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #F5C652;
  border-color: #1B3151;
  color: #1B3151;
  box-shadow: 0 7px 18px rgba(245,198,82,0.10);
}

button,
input[type="button"],
input[type="submit"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: inherit;
}


/* === PRICE INFO === */
.price-info {
  font-size: 1.25rem;
  color: #1B3151;
  background: #FAF6ED;
  border-left: 5px solid #F5C652;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(27,49,81,0.04);
  margin: 24px 0 0 0;
  display: inline-block;
}


/* === TESTIMONIAL CARDS === */
.testimonials-section h2,
.about-testimonials-section h2 {
  margin-bottom: 24px;
}
.testimonial-card {
  background: #F3F6FE;
  color: #1B3151;
  border-radius: 14px;
  box-shadow: 0 1.5px 13px #1b31511a,0 2px 10px #f5c65215;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #233042;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: #806b2a;
  letter-spacing: 0.01em;
  font-weight: 500;
  margin-left: 2px;
}

/* Ensure contrast for testimonials */
.testimonial-card,
.testimonial-card p {
  background: #F3F6FE;
  color: #1B3151;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .testimonial-card p {
    margin-bottom: 0;
  }
}


/* === FOOTER === */
footer {
  background: #1B3151;
  color: #fff;
  width: 100%;
  padding: 52px 0 18px 0;
  margin-top: 40px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  box-shadow: 0 -3px 17px rgba(27,49,81,0.09);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
  justify-content: center;
  align-items: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F5C652;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  margin-bottom: 0;
  transition: color 0.13s;
  position: relative;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFF;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-contact img {
  height: 30px;
  margin-right: 12px;
}
.footer-contact address, .footer-contact a {
  color: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin: 0 6px;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #F5C652;
  text-decoration: underline;
}
.footer-copy {
  text-align: center;
  color: #FFF4DB;
  font-size: 0.96rem;
}


/* === FLEXBOX UTILITY PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px rgba(27,49,81,0.07);
  margin-bottom: 20px;
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}


/* === SECTION & CARD SPACING === */
section, .section, .about-mission-section, .about-features-section,
  .about-testimonials-section, .wardrobe-hero-section, .contact-info-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature-card, .testimonial-card {
  margin-bottom: 20px;
}

/* === MOBILE TYPOGRAPHY & PADDING === */
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.03rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  section, .section { padding: 32px 5px; }
  .card, .feature-card, .testimonial-card { padding: 12px 10px; }
}


/* === ACCENT/GOLD DETAILS === */
h1, h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  background: #F5C652;
  border-radius: 2px;
  margin-top: 6px;
  margin-bottom: 10px;
}


/* === FORM/INPUTS (in contact, cookie etc) === */
input, textarea, select {
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid #D1D4DC;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  box-shadow: 0 1px 2px #1b315114;
  transition: border 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #F5C652;
  box-shadow: 0 1px 8px #F5C65244;
}


/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff6db;
  color: #1B3151;
  border-top: 3px solid #F5C652;
  padding: 22px 18px 20px 18px;
  box-shadow: 0 -4px 34px #1b315118;
  z-index: 3500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  transition: transform 0.32s cubic-bezier(.81,.01,.2,1), opacity 0.19s;
}
.cookie-banner.closed {
  opacity: 0;
  transform: translateY(150%);
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 4px;
  font-size: 1.05rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 10px 24px;
  margin-right: 0;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
}
.cookie-btn.accept {
  background: #1B3151;
  color: #fff;
  border: 2px solid #F5C652;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #F5C652;
  color: #1B3151;
}
.cookie-btn.reject {
  background: none;
  border: 2px solid #F5C652;
  color: #1B3151;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #F5C652;
  color: #1B3151;
}
.cookie-btn.settings {
  background: #F5C652;
  color: #1B3151;
  border: none;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #E0B443;
  color: #fff;
}


/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3600;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,49,81,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px 26px 26px 26px;
  max-width: 370px;
  min-width: 0;
  box-shadow: 0 7px 44px #1b31512b, 0 2px 10px #f5c65224;
  color: #1B3151;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 16px;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #1B3151;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-option {
  padding: 12px 0;
  border-bottom: 1px solid #F5C65244;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
}
.cookie-option:last-child {
  border-bottom: none;
}
.cookie-option label {
  font-weight: 500;
  color: #1B3151;
}
.cookie-toggle {
  position: relative;
  width: 44px;
  height: 22px;
  background: #dedeef;
  border-radius: 16px;
  transition: background 0.14s;
  cursor: pointer;
  box-shadow: 0 1px 5px #1b31511a;
}
.cookie-toggle input{
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.1px 3.5px #1B315133;
  transition: left 0.17s, background 0.14s;
}
.cookie-toggle input:checked ~ .cookie-toggle-slider {
  left: 24px;
  background: #F5C652;
}
.cookie-toggle input:checked ~ .cookie-toggle-bar {
  background: #F5C65289;
}
.cookie-options .cookie-option.disabled label {
  color: #ACADB1;
  font-style: italic;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  color: #1B3151;
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.66;
  transition: color 0.14s, opacity 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #F5C652;
  opacity: 1;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* Responsive tune - cookie banner and modal */
@media (max-width: 600px) {
  .cookie-banner {
    padding: 16px 7px 15px 10px;
    font-size: 0.97rem;
    gap: 13px;
  }
  .cookie-modal {
    padding: 24px 7px 13px 14px;
  }
}


/* === UTILITY === */
.nowrap { white-space: nowrap; }

/* Decorative gold accent borders */
.gold-accent {
  border-left: 5px solid #F5C652;
  background: #fffbe8;
  padding-left: 18px;
  border-radius: 0 8px 8px 0;
}


/* HIDE default browser focus ring, use custom (for a11y) */
:focus { outline: none; }
a:focus-visible, button:focus-visible,
input:focus-visible, .cta-primary:focus-visible,
.cta-secondary:focus-visible {
  outline: 2.5px solid #F5C652;
  outline-offset: 2px;
}

/* Misc */
hr {
  border: none; border-top: 1px solid #F5C65277;
  margin: 32px 0;
}


/* SECTIONS/CONTENT FINE-TUNING */
.about-section, .about-mission-section, .about-features-section, .about-testimonials-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 0.5px 12px #1b315106;
}
.text-section {
  max-width: 720px;
}
.legal-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2.5px 14px #1b315113;
}
.legal-section h1, .legal-section h2 {
  color: #1B3151;
}


/* QUOTE STYLE (for testimonials) */
.testimonial-card p:before, .testimonial-card p:after {
  color: #F5C652;
  font-size: 1.6rem;
  vertical-align: middle;
}
.testimonial-card p:before { content: '“'; margin-right: 2px; }
.testimonial-card p:after { content: '”'; margin-left: 2px; }


/* ICONS IN CONTACT SECTION */
.contact-info-section img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 7px;
  vertical-align: sub;
  filter: drop-shadow(0 1.5px 5px #1b31511f);
}


/* SMOOTH TRANSITIONS FOR MICRO-INTERACTIONS */
.feature-card,
.card, .testimonial-card, .cta-primary, .cta-secondary,
input, textarea, .cookie-btn {
  transition: box-shadow 0.15s, border-color 0.11s, background 0.13s, color 0.14s, transform 0.16s;
}


/* =============================
      LUXURY-REFINED DETAILS
   ============================= */
.section, section {
  border-radius: 22px;
  border: 1.5px solid #F5C65212;
  box-shadow: 0 3px 15px #1b31510d;
  background: #fff;
}
.card {
  border: 1.5px solid #F5C65213;
  box-shadow: 0 1.5px 10px #1b315110;
  border-radius: 16px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

/* Highlighted gold accent for prices and special titles */
.gold-text { color: #F5C652; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 600; }


/* ========== RESPONSIVE GENERAL =========== */
@media (max-width: 1000px) {
  .main-nav { gap: 18px; }
  .cta-primary { padding: 14px 21px; }
  .container { max-width: 94vw; }
}
@media (max-width: 800px) {
  .footer-nav, .footer-contact { gap: 7.5px; }
}
@media (max-width: 540px) {
  .footer-copy { font-size: 0.88rem; }
}
