/* ---------------------------
   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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #21243a;
  min-height: 100vh;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #b3a475;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #21243a;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 700;
  color: #21243a;
  line-height: 1.12;
}

/* ---------------------------
   BRAND/COLOR VARIABLES
--------------------------- */
:root {
  --primary: #21243a;
  --secondary: #b3a475;
  --accent: #ffeec0;
  --bg-light: #fff;
  --bg-alt: #f6f7fa;
  --brand-gradient: #ffeec0;
  --border-radius: 18px;
  --shadow-md: 0 4px 22px 0 rgba(33, 36, 58, 0.08);
  --transition-fast: 0.18s cubic-bezier(0.5,0.1,0.7,1);
  --transition-modal: 0.3s cubic-bezier(0.5,0.1,0.7,1);
}

/* ---------------------------
   TYPOGRAPHY
--------------------------- */
h1 {
  font-size: 2.4rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-transform: none;
  line-height: 1.08;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  letter-spacing: -0.6px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.subheadline {
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.15px;
  color: var(--secondary);
  margin-bottom: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.text-section p, .content-wrapper p, .feature-item p {
  font-size: 1rem;
  font-weight: 500;
  color: #21243a;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
}
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  border-left: 5px solid var(--secondary);
  padding-left: 18px;
  margin-bottom: 12px;
  background: var(--accent);
  border-radius: 0 var(--border-radius) var(--border-radius) 0 / 0 20px 20px 0;
  box-shadow: 0 2px 6px 0 rgba(33,36,58,0.07);
}

/* ---------------------------
   LAYOUT CONTAINERS
--------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 24px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  max-width: 340px;
}
.card:hover {
  box-shadow: 0 6px 42px 0 rgba(33,36,58,0.18);
  transform: translateY(-4px) scale(1.015);
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* ----------
   NAVIGATION
------------- */
header {
  width: 100%;
  background: #fff;
  position: relative;
  box-shadow: 0 4px 14px 0 rgba(33,36,58,.05);
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  min-height: 70px;
}
header img {
  height: 44px;
  width: auto;
}
.desktop-nav {
  display: flex;
  gap: 22px;
  margin-left: 34px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.1px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.15s;
  padding: 5px 2px;
}
.desktop-nav a:after {
  content: '';
  display: inline-block;
  width: 0%;
  height: 3px;
  background: var(--secondary);
  border-radius: 8px;
  position: absolute;
  left: 0; bottom: 0;
  transition: width 0.22s cubic-bezier(.8,.3,.55,1);
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: var(--secondary);
}
.desktop-nav a:hover:after, .desktop-nav a:focus:after {
  width: 90%;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--border-radius);
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform 0.16s;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 3px 16px 0 rgba(33,36,58,0.09);
  font-size: 1.1rem;
  letter-spacing: 0.1px;
  border: none;
  outline: none;
  min-width: 140px;
  padding: 12px 28px;
}
.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 25px 0 rgba(179,164,117,.23);
}
.btn-secondary {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px 0 rgba(179,164,117,.11);
  transform: translateY(-1.5px) scale(1.03);
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  font-size: 2.05rem;
  background: transparent;
  color: var(--primary);
  padding: 8px;
  margin-left: auto;
  border: none;
  border-radius: 7px;
  transition: background 0.15s;
  z-index: 201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,36,58, 0.96);
  color: #fff;
  transform: translateX(-100%);
  transition: transform var(--transition-modal);
  z-index: 300;
  padding: 0 0 0 0;
  box-shadow: 0 6px 36px 0 rgba(33,36,58,.27);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: transparent;
  color: #fff;
  padding: 16px 28px 16px 0;
  border: none;
  opacity: 0.86;
  z-index: 401;
  transition: color 0.18s, opacity 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--secondary);
  opacity: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 38px;
  padding-right: 18px;
  margin-top: 14px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.17rem;
  padding: 10px 2px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 1020px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
  }
  header .container {
    gap: 12px;
    min-height: 56px;
  }
  .desktop-nav {
    gap: 16px;
    margin-left: 14px;
  }
}
@media (max-width: 900px) {
  .footer-contact, .footer-tagline { font-size: 15px; }
}
@media (max-width: 820px) {
  h1 { font-size: 2rem; }
}
@media (max-width: 700px) {
  .desktop-nav, .btn-primary {
    font-size: 0.96rem;
  }
}

/* MOBILE MENU BREAKPOINT */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto !important;
  }
  header .container {
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 53px;
  }
  .mobile-menu {
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 0;
  }
}
@media (max-width: 500px) {
  .mobile-nav {
    font-size: 1.05rem;
    padding-left: 23px;
    gap: 18px;
  }
  .mobile-menu-close {
    padding-right: 10px;
  }
}

/* ---------------------------
   HERO SECTION
--------------------------- */
.hero {
  background: var(--accent);
  border-radius: 0 0 48px 7px / 0 0 88px 7px;
  box-shadow: 0 12px 42px 0 rgba(33,36,58,0.04);
  margin-bottom: 50px;
  padding: 54px 0 42px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 15px;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 1.5px 0px 0px var(--secondary), 0px 2px 10px #ffeec0aa;
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.hero .subheadline {
  color: var(--primary);
  opacity: 0.85;
  font-weight: 600;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 0 26px 0;
    margin-bottom: 24px;
    border-radius: 0 0 28px 4px / 0 0 48px 4px;
  }
  .hero h1 {
    font-size: 1.6rem;
    margin-bottom: 7px;
  }
  .hero .subheadline {
    font-size: 1rem;
    margin-bottom: 8px;
  }
}

/* ---------------------------
   FEATURE/CARD GRIDS & LISTS
--------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-alt);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  padding: 22px 22px 18px 22px;
  gap: 15px;
  flex: 1 1 240px;
  min-width: 180px;
  max-width: 330px;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
  margin-bottom: 20px;
}
.feature-item img {
  width: 42px;
  height: 42px;
}
.feature-item h3 {
  color: var(--secondary);
  font-size: 1.13rem;
}
.feature-item:hover {
  box-shadow: 0 10px 25px 0 rgba(33,36,58,0.16);
  transform: translateY(-3px) scale(1.018);
  background: #fffbe1;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 22px 18px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-item h3 {
  color: var(--primary);
  margin-bottom: 6px;
}
.service-price {
  font-weight: 700;
  font-size: 1.07rem;
  margin-top: 6px;
  color: var(--secondary);
}
.service-item .btn-secondary {
  margin-top: 14px;
  align-self: stretch;
  text-align: center;
}

@media (max-width: 900px) {
  .feature-grid, .service-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .service-item {
    max-width: 99vw;
    width: 100%;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.guide-list li {
  padding: 22px 18px;
  border-radius: var(--border-radius);
  background: var(--bg-alt);
  box-shadow: 0 2px 9px 0 rgba(33,36,58,0.08);
  position: relative;
}
.guide-list h3 {
  color: var(--secondary);
  font-size: 1.16rem;
}
.guide-list p {
  color: var(--primary);
  font-weight: 500;
}

/* ---------------------------
     ZODIAC GRID (for horoscopes)
--------------------------- */
.zodiac-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 30px 0;
  justify-content: flex-start;
}
.zodiac-item {
  background: var(--bg-light);
  border-radius: 12px;
  border: 2px solid var(--secondary);
  padding: 18px 14px 10px 14px;
  box-shadow: 0 1px 8px 0 rgba(33,36,58,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  min-width: 90px;
  max-width: 120px;
  transition: box-shadow 0.16s, border 0.15s, transform 0.16s;
  cursor: pointer;
  margin-bottom: 12px;
}
.zodiac-item img {
  margin-bottom: 8px;
  width: 36px;
  height: 36px;
}
.zodiac-item:hover, .zodiac-item:focus {
  box-shadow: 0 3px 16px 0 rgba(179,164,117,0.17);
  border-color: var(--primary);
  transform: translateY(-4px) scale(1.04);
  background: #fffef3;
}

.horoscope-switcher {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 25px;
  margin-bottom: -3px;
}
.horoscope-switcher .btn-secondary {
  min-width: 93px;
  text-align: center;
  border-width: 1.5px;
  font-size: 1rem;
  letter-spacing: 0.07px;
}

@media (max-width: 700px) {
  .zodiac-grid {
    gap: 10px;
    justify-content: stretch;
  }
  .zodiac-item {
    min-width: 70px;
    font-size: 0.97rem;
    padding: 13px 7px 7px 7px;
    margin-bottom: 9px;
  }
}

/* ---------------------------
   TESTIMONIAL CARDS
--------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
  transition: box-shadow 0.18s, background 0.22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #fffbe1;
  box-shadow: 0 7px 28px 0 rgba(33,36,58,0.18);
}
.testimonial-card blockquote {
  margin: 0;
  border: none;
  background: none;
  font-size: 1.07rem;
  color: var(--primary);
  font-style: italic;
  padding-left: 0;
  box-shadow: none;
}
.testimonial-info {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.testimonial-name {
  font-weight: 700;
  color: var(--secondary);
}
.star-rating {
  color: gold;
  font-size: 1.15em;
  margin-left: 2px;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
}

/* ---------------------------
   FOOTER
--------------------------- */
footer {
  background: #21243a;
  color: #fff;
  padding: 42px 0 16px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  justify-content: flex-start;
}
.footer-logo {
  margin-right: 28px;
}
.footer-logo img {
  width: 60px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-right: 36px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.07em;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  margin-right: 28px;
}
.footer-contact a {
  color: var(--secondary);
  font-weight: 600;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  color: var(--secondary);
  font-size: 1.22rem;
  margin-top: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 7px #123, 0px 2px 10px #ffeec044;
}
@media (max-width: 920px) {
  footer .container {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 21px;
  }
  .footer-logo, .footer-nav, .footer-contact {
    margin-right: 0;
  }
}

/* -------------------
   COOKIE CONSENT BANNER
---------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #21243a;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 22px 32px;
  box-shadow: 0 -4px 16px 0 rgba(33,36,58,.11);
  z-index: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: transform 0.28s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 0%;
  margin: 0;
  color: #fff;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  min-width: 120px;
  font-size: 0.96rem;
  padding: 8px 18px;
  border-radius: 9px;
  box-shadow: none;
}
.cookie-banner .btn-secondary {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 18px 12px;
    font-size: 0.98rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-btns {
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,36,58, 0.9);
  z-index: 701;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #21243a;
  border-radius: 18px;
  max-width: 450px;
  width: 96vw;
  padding: 36px 24px 20px 24px;
  box-shadow: 0 10px 36px 0 rgba(33,36,58,0.22);
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.18rem;
  color: var(--primary);
  margin-bottom: 13px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 25px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  font-size: 1.01rem;
}
.cookie-category label {
  flex: 1 1 0%;
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
  margin-right: 0;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
}
.cookie-modal-close {
  position: absolute;
  right: 10px; top: 10px;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 1.6rem;
  opacity: 0.75;
  cursor: pointer;
  padding: 0 7px;
  z-index: 900;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--secondary);
  opacity: 1;
}
@media (max-width: 470px) {
  .cookie-modal {
    padding: 18px 6vw 12px 6vw;
  }
}

/* ---------------------------
   RESPONSIVENESS
--------------------------- */
@media (max-width: 768px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .section {
    margin-bottom: 35px;
    padding: 20px 6px;
  }
  .content-wrapper {
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-list, .guide-list {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ---------------------------
   UTILITY CLASSES
--------------------------- */
.hide { display: none !important; }
.visible { display: block !important; }
.center { text-align: center; }

/* -------------
   MISC
-------------- */
::-webkit-input-placeholder { color: #b3a475cc; opacity: 1; }
::-moz-placeholder { color: #b3a475cc; opacity: 1; }
:-ms-input-placeholder { color: #b3a475cc; opacity: 1; }
::placeholder { color: #b3a475cc; opacity: 1; }

input:focus, textarea:focus {
  outline: 2px solid var(--secondary);
}

hr {
  border: none;
  border-top: 1.5px solid #eee8cc;
  margin: 30px 0;
}

/* Card and shadow accents */
.card, .feature-item, .service-item {
  will-change: transform, box-shadow;
}

/* ---------------------------
   MICRO-ANIMATIONS
--------------------------- */
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.17s, background 0.19s, transform 0.14s;
}
.card:hover, .feature-item:hover, .service-item:hover {
  box-shadow: 0 8px 32px 0 rgba(33,36,58,0.18);
  transform: translateY(-2.5px) scale(1.011);
}

.btn-primary, .btn-secondary {
  transition: background 0.2s, color 0.13s, box-shadow 0.19s, transform 0.14s;
}

a:active, .btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}

@media (hover: none) {
  a:hover, a:focus, .btn-primary:hover, .btn-secondary:hover {
    filter: none;
  }
}
/* 
END OF MODERN BOLD CSS - No grid, only flexbox used for layout, proper spacing, hamburger mobile nav, and cookie consent banner/modal.
*/
