/* =====================
   LUXURY PREMIUM CSS: TRANQUIL VISTA
   ===================== */

/* CSS RESET & NORMALIZE (modern, for max browser compatibility) */
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,
main, 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F6F9F1;
  color: #1a2016;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  position: relative;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, li {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  color: #2C4031;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; line-height: 1.15; }
h2 { font-size: 1.6rem;  margin-top: 8px; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size: 1rem; font-weight: 700; color: #355C42; }

/* =====================
   LUXURY PREMIUM COLOR PALETTE
   ===================== */
:root {
  --color-primary: #355C42;
  --color-primary-dark: #263f2d;
  --color-secondary: #F6F9F1;
  --color-background: #FCFCFA;
  --color-neutral: #E8E4DA;
  --color-accent: #B89C60;
  --color-gold: #B89C60;
  --color-gold-dark: #8B7B52;
  --color-text: #22281b;
  --color-text-dark: #10140b;
  --color-text-contrast: #fff;
  --color-error: #b82727;
  --color-shadow: rgba(30,34,23,0.07);
}

body {
  background: var(--color-secondary);
  color: var(--color-text);
}

.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-background);
  border-radius: 24px;
  box-shadow: 0 4px 18px var(--color-shadow);
}

main > section.hero {
  background: var(--color-primary);
  color: var(--color-text-contrast);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 32px 0 var(--color-shadow);
}
main > section.hero * {
  color: var(--color-text-contrast);
}

/* =====================
   TYPOGRAPHY / FONT SCALE
   ===================== */
body, input, select, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
}
.display, h1 {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -1px;
}
h2, .subheadline {
  font-size: 1.5rem;
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  color: var(--color-primary-dark);
}
h3 {
  font-size: 1.18rem;
  color: var(--color-primary);
}
p {
  font-size: 1rem;
  color: var(--color-text);
  margin: 0 0 16px 0;
}
strong { color: var(--color-primary-dark); font-weight: 700; }

li, ul {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--color-text);
}

ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
ul li {
  list-style-type: disc;
  margin-left: 18px;
  margin-bottom: 7px;
}

.subheadline {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 12px !important;
}

/* =====================
   CONTAINER & SPACING
   ===================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.card-container, .consultant-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px var(--color-shadow);
  border: 1.5px solid var(--color-neutral);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.2s;
}
.card:hover, .consultant-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 10px 28px var(--color-shadow), 0 0 0 2px var(--color-gold);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

.section:not(.hero) {
  background: var(--color-background);
  border: 1px solid var(--color-neutral);
}

/* CARD TYPE: CONSULTANT */
.consultant-card {
  background: #fff;
  box-shadow: 0 2px 14px var(--color-shadow);
  border: 1px solid var(--color-neutral);
  border-radius: 16px;
  padding: 32px 28px 16px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.2s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
  flex: 1 1 300px;
}
/* For multiple consultant-cards next to each other */
.consultant-cards {
  gap: 24px;
  width: 100%;
}

.consultant-card > h3 {
  color: var(--color-primary);
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-size: 1.17rem;
  margin-bottom: 7px;
}

.consultant-card .testimonial, .consultant-card blockquote {
  background: var(--color-secondary);
  border-left: 4px solid var(--color-gold);
  padding: 14px 18px 11px 18px;
  font-style: italic;
  color: var(--color-primary-dark);
  border-radius: 8px;
  font-size: 1rem;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 0;
  margin-top: 8px;
  transition: background 0.17s;
}

/* BLOCKQUOTE STYLE (konsultanci.html) */
blockquote.testimonial-card {
  background: #fff;
  font-style: italic;
  color: var(--color-primary-dark);
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  margin: 8px 0 0 0;
  padding: 15px 22px 10px 18px;
  font-size: 1rem;
  min-width: 180px;
}
blockquote.testimonial-card span {
  display: block;
  color: var(--color-gold-dark);
  font-size: 0.98rem;
  margin-top: 7px;
  font-style: normal;
}

/************************************
 * BUTTONS & CTA STYLES
 ************************************/
.cta-main, .cta-secondary, .cta-main:visited, .cta-secondary:visited {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.15;
  border-radius: 30px;
  padding: 15px 34px;
  color: var(--color-text-contrast);
  background: var(--color-gold);
  box-shadow: 0 2px 6px var(--color-shadow);
  border: none;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.18s;
  letter-spacing: 0.01em;
  outline: none;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}
.cta-main:hover, .cta-main:focus, .cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-primary);
  color: var(--color-gold);
  box-shadow: 0 8px 20px var(--color-shadow), 0 0 0 2px var(--color-gold);
  transform: translateY(-2px) scale(1.03);
}
/* Secondary button accent */
.cta-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
  margin-left: 2px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-gold);
  color: var(--color-text-contrast);
}

/*************************************
 * HEADER, NAVIGATION, & DESKTOP MENU
 *************************************/
header {
  width: 100%;
  border-bottom: 1.5px solid var(--color-neutral);
  background: #fff;
  box-shadow: 0 2px 10px var(--color-shadow);
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 14px;
  height: 42px;
}
.logo img { height: 38px; width: auto; }

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 10px 4px;
  border-radius: 9px;
  transition: color 0.18s, background 0.18s;
}
nav a:hover, nav a:focus {
  background: var(--color-secondary);
  color: var(--color-accent);
}

/****** MOBILE BURGER MENU ******/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 50%;
  margin-left: 24px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover { background: var(--color-neutral); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(42, 53, 40, 0.94);
  z-index: 2000;
  transform: translateX(-101vw);
  transition: transform 0.42s cubic-bezier(.71,.04,.21,.94);
  will-change: transform;
  padding: 32px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 23px;
  top: 20px;
  background: var(--color-gold);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  box-shadow: 0 2px 10px var(--color-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-gold-dark);
}
.mobile-nav {
  margin-top: 78px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  color: var(--color-text-contrast);
  font-size: 1.15rem;
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 16px 0;
  width: 100%;
  display: block;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(255,255,255,0.04);
}

/*******************************
 * HERO, GRIDS & FLEX SECTIONS *
 *******************************/
.hero .container, .thank-you .container {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
.hero .content-wrapper, .thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
  width: 100%;
  padding: 0;
}

.card-container, .consultant-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.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;
  background: var(--color-secondary);
  border-radius: 10px;
  box-shadow: 0 3px 15px var(--color-shadow);
  border-left: 6px solid var(--color-gold);
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.06rem;
  margin-bottom: 16px;
  min-width: 180px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/****************************
 * SERVICE LIST & PRICING TABLE
 ****************************/
.service-list {
  margin-top: 10px;
  width: 100%;
  align-items: stretch;
}
.service-item {
  background: #fff;
  border-radius: 14px;
  padding: 26px 22px 20px 22px;
  border: 1.2px solid var(--color-accent);
  box-shadow: 0 4px 14px var(--color-shadow);
  margin-bottom: 20px;
  flex: 1 1 310px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.2s, transform 0.16s;
}
.service-item:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 28px var(--color-shadow), 0 0 0 2px var(--color-gold);
  transform: translateY(-2px) scale(1.025);
  z-index: 2;
}
.service-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 10px 0 0;
}

/*********************************
 * PRICING TABLE (CENNIK.HTML)  *
 *********************************/
.pricing-table {
  width: 100%;
  margin-top: 16px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 12px var(--color-shadow);
  overflow: hidden;
  color: var(--color-primary-dark);
}
.pricing-table th, .pricing-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid var(--color-neutral);
}
.pricing-table th {
  background: var(--color-primary);
  color: #fff;
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.pricing-table tr:nth-child(even) td {
  background: var(--color-secondary);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/*********************************
 * FOOTER
 *********************************/
footer {
  width: 100%;
  background: var(--color-primary-dark);
  color: #f8f8f7;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 36px 0 0 0;
  box-shadow: 0 -2px 18px var(--color-shadow);
  margin-top: 60px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
}
.footer-columns > div > img {
  margin-bottom: 15px;
  max-height: 38px;
}
.footer-columns p {
  color: #e0ecd3;
  font-size: 0.99rem;
  margin-bottom: 8px;
}
.footer-columns nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-columns nav a {
  color: var(--color-accent);
  font-weight: 500;
  font-size: 1.05rem;
  transition: color 0.14s;
}
.footer-columns nav a:hover, .footer-columns nav a:focus {
  color: #fff;
  text-decoration: underline;
}

/* Extra Footer Styling */
footer img[alt="tel"], footer img[alt="mail"] {
  margin-right: 7px;
  vertical-align: middle;
}

/*************************************
 * COOKIE CONSENT BANNER & MODAL
 *************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffdf6;
  color: var(--color-primary-dark);
  box-shadow: 0 -2px 24px 3px var(--color-shadow);
  border-top: 2.4px solid var(--color-gold);
  padding: 26px 20px 22px 20px;
  z-index: 3500;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  font-size: 1.05rem;
  animation: cookieBannerIn 0.66s cubic-bezier(.61,.03,.28,.99);
  max-width: 98vw;
}
@keyframes cookieBannerIn {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  padding: 10px 30px;
  cursor: pointer;
  margin-top: 0;
  font-family: 'Lato', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 1px 6px var(--color-shadow);
}
.cookie-banner .accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .accept:hover { background: var(--color-gold-dark); }
.cookie-banner .reject {
  background: #fff;
  color: var(--color-primary-dark);
  border: 1.3px solid var(--color-gold);
}
.cookie-banner .reject:hover {
  background: #F4EAD7;
}
.cookie-banner .settings {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1.2px solid var(--color-gold);
}
.cookie-banner .settings:hover {
  background: var(--color-neutral);
}

/* Cookie modal overlay */
.cookie-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0; bottom: 0;
  background: rgba(30, 34, 23, 0.64);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
  animation: cookieModalFadeIn 0.4s;
}
@keyframes cookieModalFadeIn { from { opacity: 0;} to {opacity: 1;} }

.cookie-modal {
  background: #fff;
  padding: 42px 26px 28px 26px;
  border-radius: 16px;
  box-shadow: 0 4px 36px var(--color-shadow);
  max-width: 99vw;
  min-width: 280px;
  max-width: 400px;
  color: var(--color-primary-dark);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  margin: 10px 0 0 0;
}
.cookie-modal label {
  font-weight: 500;
  color: var(--color-primary-dark);
}
.cookie-modal .cookie-toggle {
  width: 45px;
  height: 26px;
  border-radius: 13px;
  background: var(--color-neutral);
  border: none;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .cookie-toggle.active {
  background: var(--color-gold);
}
.cookie-modal .cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  left: 4px; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.16s;
}
.cookie-modal .cookie-toggle.active::after {
  left: 23px;
  background: #fffaf3;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 16px;
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--color-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 9px;
  width: 100%;
}
.cookie-modal-footer button {
  padding: 11px 26px;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  font-weight: 600;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.18s;
}
.cookie-modal-footer button.secondary {
  background: #fff;
  color: var(--color-primary-dark);
  border: 1.2px solid var(--color-gold);
}
.cookie-modal-footer button.secondary:hover {
  background: #FAF6EC;
}
.cookie-modal-footer button:hover {
  background: var(--color-gold);
  color: #fff;
}

/*************************************
 * MISC / EXTRAS (Thank you, spacing)
 *************************************/
.thank-you .content-wrapper {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 14px var(--color-shadow);
  padding: 48px 18px;
  gap: 22px;
  align-items: center;
  margin: 0 auto;
  max-width: 540px;
}

/*****************************
 * RESPONSIVE DESIGN
 *****************************/
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding: 0 14px;
  }
  .card, .consultant-card, .service-item, .consultant-cards > .consultant-card {
    min-width: 220px;
    flex-basis: 280px;
    padding-left: 17px;
    padding-right: 17px;
  }
  .footer-columns {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer-columns {
    flex-direction: column;
    gap: 32px;
  }
  .card-container, .consultant-cards, .service-list {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.11rem; }
  .container {
    max-width: 98vw;
    padding: 0 6px;
  }
  .content-wrapper {
    gap: 16px;
    padding-left: 1px;
    padding-right: 1px;
  }
  .section, main section {
    margin-bottom: 44px;
    padding: 25px 6px;
    border-radius: 17px;
  }
  .hero .container, .thank-you .container {
    min-height: 170px;
    padding: 18px 4px 22px 4px;
  }
  .card-container, .consultant-cards, .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .card, .consultant-card, .service-item{
    min-width: 0;
    padding: 18px 7px 16px 9px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 10px;
  }
  .footer-columns nav a {
    font-size: 1rem;
  }
  .content-grid { gap: 10px; }
  .testimonial-card, blockquote.testimonial-card { padding: 13px 11px 8px 11px; font-size: .99rem; }
  .cookie-banner { padding: 15px 4px 12px 4px; font-size: .96rem; }
}
@media (max-width: 610px) {
  .logo img { height: 29px; }
  header .container {
    height: 60px;
    padding: 0 5px;
    gap: 11px;
  }
  .cookie-modal { padding: 22px 5px 14px 8px; font-size: .96rem; }
}

/* ————— HIDE desktop nav and show burger on mobile ————— */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-main {
    display: none;
  }
}
@media (max-width: 480px) {
  body {
    font-size: .97rem;
  }
  h1 { font-size: 1rem; }
}

/***************************
 * ACCESSIBILITY & FOCUS
 ***************************/
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
a, button { -webkit-tap-highlight-color: rgba(184,156,96,0.15); }
::-webkit-input-placeholder { color: #b3b99f; }
::-moz-placeholder { color: #b3b99f; }
:-ms-input-placeholder { color: #b3b99f; }
::placeholder { color: #b3b99f; }

/**********************************
 * MICRO-INTERACTIONS / TRANSITIONS
 **********************************/
.card, .consultant-card, .service-item {
  will-change: transform, box-shadow;
}
.cta-main, .cta-secondary, .cookie-banner button, .cookie-modal-footer button {
  transition: background 0.18s, color 0.17s, box-shadow 0.19s, transform 0.12s;
}
.mobile-menu, .mobile-menu-toggle {
  transition: background 0.18s, box-shadow 0.18s;
}
button, a {
  transition: background 0.161s, color 0.13s;
}

/***************
 * MISC UTILS  *
 ***************/
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/***************
 * PRINT FIXES *
 ***************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {display: none !important;}
  section, main section {box-shadow: none !important; border: none !important;}
}

/* EOF Luxury Premium CSS (Flexbox only, accessible, responsive, consistent luxury brand UI) */
