/* ================================================== */
/* CSS RESET & NORMALIZE (MOBILE FIRST)               */
/* ================================================== */
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,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.7;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.4;
  outline: none;
}
button { background: none; border: none; cursor: pointer; text-align: left; }

/* =========================================== */
/*  CUSTOM LUXURY-PREMIUM VARIABLES & FONTS    */
/* =========================================== */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,600,400|Montserrat:400,500,600,700&display=swap');
:root {
  --color-primary: #22223B;
  --color-secondary: #F2E9E4;
  --color-accent: #9A8C98;
  --color-gold: #CBA135;
  --color-gold-dark: #AD870D;
  --color-white: #fff;
  --color-black: #18181c;
  --color-grey: #ECE6DD;
  --color-shadow: rgba(34,34,59,0.04);
  --color-section-bg: #f9f6f2;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --radius: 16px;
  --shadow: 0 4px 18px rgba(34,34,59,0.12);
  --shadow-lg: 0 8px 36px rgba(34,34,59,0.16);
  --transition: all 0.25s cubic-bezier(.42,0,.58,1);
}

/* ==================================== */
/*  BASE STYLES                        */
/* ==================================== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-secondary);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 { font-size: 2.25rem; font-weight: 700; letter-spacing: -1px; }
h2 { font-size: 1.5rem; font-weight: 600; }
h3 { font-size: 1.17rem; font-weight: 600; }
h4 { font-size: 1rem; }
@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
}
p, ul, ol, li {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
ul li, ol li {
  margin-bottom: 10px;
}
strong, b {
  color: var(--color-primary);
  font-weight: 700;
}
hr {
  border: none;
  border-top: 1px solid var(--color-accent);
  margin: 32px 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ============================================ */
/* SECTIONS & FLEXBOX LAYOUTS (MANDATORY RULES) */
/* ============================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
  background: var(--color-section-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  border: 1px solid var(--color-grey);
  transition: var(--transition);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-gold);
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-gold-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px;
  min-width: 220px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid var(--color-grey);
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 16px 20px 22px;
  min-width: 195px;
  margin-bottom: 20px;
  gap: 8px;
  transition: box-shadow 0.18s;
}
.features-grid > div:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}
.features-grid img {
  width: 40px; height: 40px; margin-bottom: 6px;
}
.features-grid h3 {
  margin-bottom: 3px;
  color: var(--color-gold-dark);
}

.text-section {
  background: var(--color-secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 22px;
  margin-bottom: 40px;
}

/* Responsive Flexbox (Mandatory) */
@media (max-width: 768px) {
  .container {
    padding-left: 10px; padding-right: 10px;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px !important; /* Mobile stack */
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .section { padding: 22px 8px; margin-bottom: 36px; }
}

/* ============================= */
/* BUTTONS, CTAs, LINKS          */
/* ============================= */
.cta, .cta:visited, button.cta {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  padding: 12px 34px;
  border: none;
  border-radius: 27px;
  box-shadow: 0 4px 24px rgba(203,161,53,0.08);
  letter-spacing: .05em;
  transition: var(--transition);
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 10px;
  outline: none;
  text-align: center;
  position: relative;
}
.cta:hover, .cta:focus, button.cta:hover, button.cta:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
  box-shadow: 0 6px 32px rgba(203,161,53,0.20);
  text-decoration: none;
}

button, .button {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  padding: 10px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-right: 8px;
  transition: var(--transition);
  cursor: pointer;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
  outline: none;
}
a { transition: color 0.18s; }
a:hover, a:focus {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

/* ========================= */
/* HEADER NAVIGATION BAR     */
/* ========================= */
header {
  background: var(--color-white);
  box-shadow: 0 2px 14px rgba(34,34,59,0.07);
  border-bottom: 1.5px solid var(--color-grey);
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  z-index: 100;
  height: 76px;
  min-height: 62px;
}
header nav a img {
  height: 44px;
  display: block;
  margin-right: 10px;
}
header nav ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav ul li {
  display: flex;
  align-items: center;
}
header nav ul li a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 7px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
header nav ul li a.cta {
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  padding: 9px 32px;
  margin-left: 8px;
  border-radius: 25px;
  border: 1px solid var(--color-gold-dark);
  transition: var(--transition);
}
header nav ul li a.cta:hover, header nav ul li a.cta:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
  border-color: var(--color-gold-dark);
}
header nav ul li a:hover, header nav ul li a:focus {
  background: var(--color-accent);
  color: var(--color-white);
}

/* Burger Menu (Mobile Only) */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--color-gold);
  color: var(--color-primary);
  font-size: 1.55em;
  margin-left: 12px;
  transition: background .15s, box-shadow .18s;
  box-shadow: 0 3px 18px rgba(203,161,53,0.14);
  z-index: 300;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
/* Hide nav on mobile */
@media (max-width: 900px) {
  header nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* ============== MOBILE MENU OVERLAY ============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,59,0.95);
  z-index: 2200;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 32px 22px 20px 0;
  padding: 0;
  font-size: 2.2rem;
  color: var(--color-gold);
  background: none;
  border: none;
  border-radius: 50%;
  transition: color .23s;
  width: 48px; height: 48px;
  display: flex;
  align-items: center; justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-white);
  background: rgba(155,140,152,0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 0 34px;
  margin-top: 22px;
  gap: 20px;
}
.mobile-nav a {
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 1.18rem;
  font-weight: 500;
  background: none;
  border-radius: 14px;
  padding: 10px 8px;
  width: 100%;
  transition: background .15s, color .18s;
  margin-bottom: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-white);
  background: rgba(155,140,152,0.10);
  text-decoration: none;
}
@media (max-width:450px) {
  .mobile-nav { padding: 0 12px; }
}

/* ========================== */
/* HERO SECTION              */
/* ========================== */
.hero {
  background: linear-gradient(120deg, var(--color-primary) 73%, var(--color-gold) 170%);
  color: var(--color-secondary);
  padding: 72px 0 44px 0;
  position: relative;
  box-shadow: 0 8px 32px rgba(34,34,59,0.10);
}
.hero .container { position: relative; }
.hero .content-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 18px 38px 18px;
  background: rgba(242,233,228,0.04);
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(34,34,59,0.10);
}
.hero h1,
.hero h2,
.hero p {
  color: var(--color-secondary);
  text-shadow: 0 2px 12px rgba(34,34,59,0.17);
}
.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.17rem;
  margin-bottom: 24px;
  color: #efe8df;
}
@media (min-width: 800px) {
  .hero h1 { font-size: 3rem; }
  .hero .content-wrapper { padding: 56px 42px 60px 62px; }
}

/* ===================================== */
/* FOOTER STYLES                        */
/* ===================================== */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 0;
  font-size: 1rem;
}
footer section {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
footer .container {
  padding: 0 18px;
  max-width: 1200px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 0 28px 0;
}
footer .content-wrapper > div {
  flex: 1 1 170px;
  min-width: 160px;
  margin-bottom: 8px;
}
footer img {
  margin-bottom: 12px;
}
footer h3 {
  color: var(--color-gold);
  font-size: 1.13rem;
  margin-bottom: 9px;
  line-height: 1.1;
  font-family: var(--font-display);
}
footer a,
footer a:visited {
  color: var(--color-gold);
  transition: color 0.15s;
  font-size: 0.99rem;
}
footer a:hover,
footer a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}
footer address {
  font-style: normal;
  font-size: 0.97rem;
  color: var(--color-secondary);
  letter-spacing: 0.01em;
  margin-bottom: 0;
}
footer address div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
footer address img {
  height: 18px; width: 18px;
  display: inline-block;
  margin-bottom: 0 !important;
}
footer ul {
  margin-bottom: 0;
}
footer ul li {
  margin-bottom: 8px;
}
footer .content-wrapper > div:last-child a img {
  height: 26px;
  width: 26px;
  margin-right: 11px;
  display: inline-block;
}
footer .content-wrapper > div:last-child a:last-child img {
  margin-right: 0;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
}

/* ============================ */
/* TESTIMONIALS                 */
/* ============================ */
.testimonial-card {
  margin-bottom: 20px;
  background: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
  box-shadow: 0 3px 13px rgba(155,140,152,.04);
  border-left: 6px solid var(--color-gold);
  transition: box-shadow 0.19s, border-color 0.19s;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1.08rem;
  line-height: 1.6;
}
.testimonial-card div {
  font-size: 0.98rem;
  color: var(--color-accent);
  margin-top: 8px;
}

/* Force readable text in reviews */
.testimonial-card, .testimonial-card * {
  color: var(--color-primary) !important;
  background: var(--color-white) !important;
}
strong {
  color: var(--color-gold-dark) !important;
}

/* ========================= */
/*  FORMS (if any appear)    */
/* ========================= */
input, textarea, select {
  padding: 11px 14px;
  border: 1.5px solid var(--color-accent);
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color .19s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-gold);
}
label {
  font-size: 1.01rem;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

/* ================================ */
/*  COOKIE CONSENT BANNER & MODAL   */
/* ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  padding: 22px 16px 20px 16px;
  background: var(--color-white);
  border-top: 2.5px solid var(--color-gold);
  box-shadow: 0 -3px 16px rgba(34,34,59,0.18);
  z-index: 2900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  animation: cookieSlideIn 0.55s cubic-bezier(.42,0,.58,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 0 7px 0;
  color: var(--color-primary);
  font-size: 1.06rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 24px;
  font-size: 0.98rem;
  border-radius: 20px;
  border: 1.7px solid var(--color-gold);
  background: var(--color-gold);
  color: var(--color-primary);
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  transition: var(--transition);
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.cookie-banner button.cookie-settings {
  background: var(--color-white);
  color: var(--color-gold-dark);
  border: 1.7px solid var(--color-gold-dark);
}
.cookie-banner button.cookie-settings:focus, .cookie-banner button.cookie-settings:hover {
  background: var(--color-gold);
  color: var(--color-primary);
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,34,59,0.42);
  z-index: 2910;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn .33s;
}
.cookie-modal-backdrop.active { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-white);
  padding: 34px 24px 28px 24px;
  border-radius: 18px;
  box-shadow: 0 7px 40px rgba(34,34,59,0.23);
  max-width: 400px;
  width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalUp .37s cubic-bezier(.42,0,.58,1);
}
@keyframes modalUp {
  from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: var(--color-primary);
  margin: 0 0 8px 0;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.01rem;
  font-family: var(--font-body);
}
.cookie-modal .cookie-category input[type=checkbox] {
  margin-right: 4px;
  accent-color: var(--color-gold);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 16px;
  border: none;
  background: none;
  color: var(--color-gold);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--color-gold-dark);
}

/* ========================== */
/* SPACING & TYPOGRAPHY RULES */
/* ========================== */
.section, .content-wrapper, .features-grid > div, .feature-item,
.card, .testimonial-card, .card-container > *,
.content-grid > *, .text-image-section > *, footer .content-wrapper > div {
  margin-bottom: 20px;
}
.section, .content-wrapper, .features-grid, .card-container, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  gap: 20px;
}
@media (min-width: 1150px) {
  .features-grid > div, .card {
    min-width: 255px;
  }
}

/* ========================== */
/* UTILITY & ADDITIONAL HYGIENE */
/* ========================== */
::-webkit-scrollbar {
  width: 9px;
  background: var(--color-grey);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 8px;
}
@media (max-width: 500px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.13rem; }
  .hero .content-wrapper h1 { font-size: 1.32rem; }
}

@media (max-width: 500px) {
  .cookie-modal { max-width: 96vw; padding: 13px 5px; }
  .cookie-banner { padding: 11px 2px 13px 2px; }
}

@media (max-width: 370px) {
  .cookie-modal { max-width: 100vw; padding: 5px 1px; }
}

/* =========================== */
/*  ELEGANT SHADOWS AND DETAILS */
/* =========================== */
.card, .testimonial-card, .features-grid > div, .feature-item {
  box-shadow: var(--shadow);
}
.card:hover, .features-grid > div:hover, .feature-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

/* =========================== */
/*  Z-INDEX HYGIENE            */
/* =========================== */
header { z-index: 1000; position: relative; }
.mobile-menu { z-index: 2200; }
.cookie-banner { z-index: 2900; }
.cookie-modal-backdrop { z-index: 2910; }

/* ========================= */
/*  LUXURY / GOLD ACCENTS    */
/* ========================= */
h2, h3, strong {
  color: var(--color-gold-dark);
}
.cta, .cta:visited, button.cta {
  background: linear-gradient(95deg, var(--color-gold), #e4c96d 80%);
  color: var(--color-primary);
}
section, .section {
  border-top: 2.5px solid var(--color-gold);
  border-radius: var(--radius);
}

/* Cards decoration: subtle gold lines on hover */
.card::before, .features-grid > div::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 2.5px; height: 100%;
  background: var(--color-gold);
  border-radius: 2.5px;
  opacity: 0.22;
  transition: opacity 0.17s;
  display: block;
  z-index: 0;
}
.card:hover::before, .features-grid > div:hover::before {
  opacity: 0.6;
}

/* Subtle gold underline for section titles */
h2 {
  border-bottom: 2.5px solid var(--color-gold);
  padding-bottom: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

/* ========================= */
/*  VISUAL HIERARCHY         */
/* ========================= */
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.5px; }
h3, h4 { font-family: var(--font-display); font-weight: 500; }
p, li, address, div, ul, ol { font-family: var(--font-body); font-weight: 400; }

/* ========================= */
/* HIDE/SHOW ELEMENTS ON MOBILE */
/* ========================= */
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 900px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block !important; }
}

/* ========================= */
/* ANIMATIONS & MICROINTERACTIONS */
/* ========================= */
button, .cta, .card, .feature-item, .testimonial-card, .features-grid > div, .mobile-nav a {
  transition: var(--transition);
}
.card:active, .cta:active, button:active {
  transform: translateY(2px) scale(0.98);
}

/* ========================= */
/* ACCESSIBILITY COLOR CONTRASTS  */
/* ========================= */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: var(--color-primary)!important;
  background: var(--color-white)!important;
}

/* End Luxury Premium CSS */
