/* =======================================================
   CSS 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #f9fafb;
  color: #23395d;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #23395d;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 1.6em;
}
ul ul, ol ol {
  margin-bottom: 0;
}
input, button, textarea, select {
  font: inherit;
}

/* =======================================================
   BRAND COLORS & LUXURY PALETTE
   ======================================================= */
:root {
  --primary: #23395d;
  --secondary: #e2492e;
  --accent: #e6e9ef;
  --background: #f9fafb;
  --surface: #fff;
  --luxury-gold: #be9b63;
  --dark: #1e283c;
  --mid-grey: #69738a;
  --header-shadow: rgba(35,57,93,0.06);
  --box-shadow: 0 6px 30px 0 rgba(35,57,93,0.13);
  --focus: #23395d44;
  --testimonial-bg: #fff;
}

/* =======================================================
   FONT FACE
   ======================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: var(--background);
  color: var(--dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
h1 { font-size: 2.75rem; line-height: 1.12; margin-bottom: 18px; letter-spacing: -0.02em; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 14px; }
h3 { font-size: 1.5rem; line-height: 1.18; }
h4 { font-size: 1.18rem; line-height: 1.2; }
h5 { font-size: 1rem; line-height: 1.2; }
h6 { font-size: 0.95rem; line-height: 1.2; }
p, ul, ol, li {
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: var(--primary);
}
hr {
  border: 0;
  border-top: 1px solid #e6e6e6;
  margin: 32px 0;
}

/* Luxury accents on titles */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--luxury-gold);
  border-radius: 1.5px;
  margin: 10px 0 0 0;
}

/* Remove underline except hover/focus */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s, text-decoration 0.18s;
}
a:hover, a:focus {
  color: var(--luxury-gold);
  text-decoration: underline;
  outline: none;
}

/* =======================================================
   CONTAINER, LAYOUT & FLEXBOX
   ======================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}

.feature {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(35,57,93,0.07);
  border: 1px solid #ececec;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 310px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.25s, transform 0.25s;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 8px;
}
.feature h3 {
  font-size: 1.18rem;
  color: var(--primary);
}
.feature p {
  font-size: 1rem;
  color: var(--mid-grey);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 7px 32px 0 rgba(35,57,93,0.20);
  transform: translateY(-3px) scale(1.015);
  z-index: 1;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(35,57,93,0.08);
  border: 1px solid #ececec;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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;
}

.teamübersicht {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.teamübersicht > div {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(35,57,93,0.07);
  padding: 22px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.card {
  margin-bottom: 20px;
  position: relative;
}

.testimonials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px;
  background: var(--testimonial-bg);
  border-radius: 16px;
  border: 1px solid #ececec;
  box-shadow: 0 2px 10px 0 rgba(35,57,93,0.08);
  min-width: 250px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.22s;
}
.testimonial-card p {
  color: var(--dark);
  font-size: 1.06rem;
  font-weight: 500;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-card span, .testimonial-card strong {
  color: var(--primary);
  font-size: 0.99rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 24px 0 rgba(190,155,99,0.14);
  transform: translateY(-2px) scale(1.01);
  z-index: 1;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.cta-section {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 3px 22px 0 rgba(35,57,93,0.09);
  margin-bottom: 0;
}

.cta-box, .thank-you-section {
  background: var(--accent);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 2px 16px 0 rgba(190,155,99,0.04);
  margin: 32px 0 0 0;
}

/* Flex spacing for .contact-details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =======================================================
   HEADER & NAVIGATION (DESKTOP)
   ======================================================= */
header {
  background: var(--surface);
  box-shadow: 0 2px 12px 0 var(--header-shadow);
  border-bottom: 1.5px solid #e6e9ef;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
header img {
  height: 42px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  position: relative;
  color: var(--primary);
  font-weight: 500;
  font-size: 1.06rem;
  padding: 6px 0 6px 0;
  transition: color 0.18s;
}
.main-nav a.cta.primary {
  background: var(--luxury-gold);
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  padding: 8px 22px;
  margin-left: 12px;
  box-shadow: 0 2px 14px 0 rgba(190,155,99,0.14);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.16s;
  letter-spacing: 0.01em;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #d3b16e;
  color: #fff;
  box-shadow: 0 6px 26px 0 rgba(190,155,99,0.25);
  text-decoration: none;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--luxury-gold);
}

.mobile-menu-toggle {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2.3rem;
  cursor: pointer;
  padding: 8px 14px;
  display: none;
  margin-left: 14px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-toggle:focus {
  background: var(--focus);
  outline: none;
}

/* =======================================================
   MOBILE MENU / HAMBURGER NAVIGATION
   ======================================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(35, 41, 58, 0.94);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transition: transform 0.36s cubic-bezier(0.6,0.1,0,1), opacity 0.16s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--luxury-gold);
  color: #fff;
  border: none;
  font-size: 2.1rem;
  cursor: pointer;
  margin: 32px 32px 16px 0;
  padding: 8px 18px;
  border-radius: 30px;
  transition: background 0.18s;
  align-self: flex-end;
  z-index: 10;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #d3b16e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
  margin-top: 50px;
  padding: 0 48px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 0;
  width: 100%;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--luxury-gold);
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
}
@media (max-width:840px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width:841px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================================================
   HERO & PROMO STYLES
   ======================================================= */
.hero-section {
  background: linear-gradient(130deg, #fff 60%, var(--accent) 100%);
  padding: 68px 0 52px 0;
  margin-bottom: 32px;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.6rem;
  margin-bottom: 8px;
}
.hero-section p {
  color: var(--mid-grey);
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.hero-section .cta.primary {
  margin-top: 18px;
}

/* =======================================================
   BUTTONS & INTERACTIVES
   ======================================================= */
.cta, .cta.primary {
  display: inline-block;
  background: var(--luxury-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 30px;
  padding: 12px 34px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 18px 0 rgba(190,155,99,0.16);
  text-align: center;
  margin: 6px 0 0 0;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.cta.primary:hover, .cta.primary:focus,
.cta:hover, .cta:focus {
  background: #d3b16e;
  color: #fff;
  box-shadow: 0 7px 28px 0 rgba(190,155,99,0.23);
  transform: translateY(-2px) scale(1.025);
  text-decoration: none;
}

/* Subtle effect for secondary and ghost buttons */
.button-secondary {
  background: var(--surface);
  color: var(--luxury-gold);
  border: 1.5px solid var(--luxury-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 30px;
  padding: 10px 30px;
  box-shadow: none;
  transition: background 0.18s, color 0.18s;
}
.button-secondary:hover,
.button-secondary:focus {
  background: var(--luxury-gold);
  color: #fff;
}

/* =======================================================
   FOOTER & SOCIAL
   ======================================================= */
footer {
  background: var(--primary);
  color: #fff;
  border-top: 4px solid var(--luxury-gold);
  margin-top: 64px;
  font-size: 1rem;
}
footer .container {
  padding: 0 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  padding: 44px 0 16px 0;
}
.footer-main > a img {
  height: 48px;
  margin-bottom: 14px;
}
.footer-nav,
.social-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--luxury-gold);
}
.kontaktinfos h4 {
  font-size: 1.08rem;
  color: var(--luxury-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}
.kontaktinfos ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.kontaktinfos ul li {
  font-size: 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  word-break: break-word;
}
.kontaktinfos a {
  color: var(--luxury-gold);
  font-size: 1rem;
}
.social-media {
  flex-direction: row;
  gap: 16px;
  margin-top: 24px;
}
.social-media a img {
  height: 28px;
  width: 28px;
  filter: grayscale(30%) brightness(1);
  transition: filter 0.18s, transform 0.16s;
}
.social-media a:hover img, .social-media a:focus img {
  filter: none;
  transform: scale(1.15);
}
.footer-bottom {
  border-top: 1px solid #33497b;
  padding: 18px 0 22px 0;
  text-align: center;
  color: #dde3ee;
  font-size: 0.99rem;
}

/* =======================================================
   SERVICES-LIST, SPECIAL CARDS, MAP
   ======================================================= */
.services-list, .ernaehrung-services, .firmenfitness-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 0 10px 0;
}
.services-list li, .ernaehrung-services li, .firmenfitness-list li {
  background: #fff;
  padding: 16px 14px;
  border-radius: 13px;
  box-shadow: 0 1.2px 7px 0 rgba(190,155,99,0.07);
  color: var(--primary);
  font-size: 1.06rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.services-list li span {
  color: var(--luxury-gold);
  font-weight: 600;
  margin-top: 3px;
}

.thank-you-section {
  background: var(--luxury-gold);
  color: #fff;
  border-radius: 16px;
  padding: 50px 26px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(190,155,99,0.16);
}
.thank-you-section a.cta.primary {
  margin-top: 22px;
  background: #fff;
  color: var(--luxury-gold);
}
.thank-you-section a.cta.primary:hover,
.thank-you-section a.cta.primary:focus {
  background: #ffede1;
  color: var(--luxury-gold);
}

/* Map styling for Kontakt */
#contact-info > .container > .content-wrapper > div:last-child {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  font-size: 1.08rem;
  color: var(--primary);
}

/* =======================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--surface);
  box-shadow: 0 -3px 22px 0 rgba(35,57,93,0.12);
  border-top: 3.5px solid var(--luxury-gold);
  z-index: 3000;
  padding: 24px 20px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: cookieSlideUp 0.6s cubic-bezier(0.6,0.1,0,1);
}
@keyframes cookieSlideUp {
  from {
    transform: translateY(120%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 10px;
  max-width: 500px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 22px;
  padding: 8px 26px;
  font-weight: 600;
  font-size: 1.06rem;
  margin: 3px 0;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(190,155,99,0.08);
  outline: none;
  transition: background 0.18s, color 0.17s, box-shadow 0.16s;
}
.cookie-accept {
  background: var(--luxury-gold);
  color: #fff;
  margin-right: 5px;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #d3b16e;
}
.cookie-reject {
  background: #e9ecef;
  color: var(--luxury-gold);
  border: 1px solid var(--luxury-gold);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--luxury-gold);
  color: #fff;
}
.cookie-settings {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--luxury-gold);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--luxury-gold);
  color: #fff;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(35,41,58,0.74);
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-dialog {
  background: var(--surface);
  border-radius: 22px;
  max-width: 410px;
  padding: 36px 32px 32px 32px;
  box-shadow: 0 9px 38px 0 rgba(35,57,93,0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-dialog h3 {
  color: var(--luxury-gold);
  font-size: 1.28rem;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-toggle label {
  color: var(--primary);
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: var(--luxury-gold);
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  border: none;
  font-size: 1.55rem;
  color: var(--luxury-gold);
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #a8823b;
}
.cookie-dialog .cookie-buttons {
  margin-top: 14px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Essential always enabled */
.cookie-toggle input[disabled] {
  opacity: 0.57;
  cursor: not-allowed;
}
.cookie-toggle .essential-label {
  color: var(--mid-grey);
  font-style: italic;
}

/* =======================================================
   MEDIA QUERIES (RESPONSIVE / MOBILE FIRST)
   ======================================================= */
@media (max-width: 950px) {
  .container {
    padding: 0 10px;
    max-width: 98vw;
  }
  .footer-main {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}
@media (max-width: 820px) {
  .features-grid,.testimonials-row,.teamübersicht,.card-container,.content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-main {
    gap: 28px;
  }
  .cta-section {
    padding: 28px 8px;
  }
  .thank-you-section {
    padding: 22px 10px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 38px 0 27px 0;
  }
  .section, section {
    margin-bottom: 46px;
    padding: 26px 6px;
  }
  .content-wrapper {
    gap: 16px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .feature {
    min-width: unset;
    max-width: 100%;
    padding: 18px 10px;
  }
  .testimonial-card {
    min-width: unset;
    padding: 18px 12px;
  }
  .teamübersicht > div {
    padding: 15px 6px;
  }
  .cta-section {
    border-radius: 12px;
    padding: 20px 5px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 22px 8px;
  }
  .cookie-banner p {
    max-width: 95vw;
    font-size: 1rem;
  }
  .cookie-dialog {
    padding: 22px 8px 18px 8px;
    width: calc(100vw - 38px);
    min-width: 0;
    max-width: 96vw;
    border-radius: 14px;
  }
  .mobile-nav {
    padding: 0 20px;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 4px;
  }
  .footer-main {
    gap: 20px;
  }
  .content-wrapper {
    gap: 12px;
  }
  h1, h2, h3, h4 {
    margin-bottom: 9px;
  }
}

/* =======================================================
   SCROLLBAR STYLING
   ======================================================= */
::-webkit-scrollbar {
  width: 8px;
  background: #e6e9ef;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: var(--luxury-gold);
  border-radius: 4px;
}

/* =======================================================
   UTILITIES
   ======================================================= */
.hide { display: none; }
.flex { display: flex !important; }
.align-center { align-items: center !important; }

/* =======================================================
   FOCUS & ACCESSIBILITY
   ======================================================= */
:focus-visible {
  outline: 2px solid var(--luxury-gold);
  outline-offset: 2px;
}

/* =======================================================
   ANIMATION MICRO-INTERACTION
   ======================================================= */
.button-secondary, .cta, .cta.primary, .main-nav a, .footer-nav a {
  transition: background 0.18s, color 0.19s, box-shadow 0.17s, transform 0.14s;
}
.feature, .card, .testimonial-card {
  transition: box-shadow 0.21s, transform 0.15s;
}

/* =======================================================
   END
   ======================================================= */
