/* -------------------------------------------------------
   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,
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 { height: 100%; font-size: 16px; }
body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, optgroup, select, textarea {
  font-family: inherit; font-size: 100%; line-height: 1.15; margin: 0;
}
input, button, textarea, select { outline: none; }
a { text-decoration: none; color: inherit; cursor: pointer; }
[hidden] { display: none !important; }

/* -------------------------------------------------------
   BRAND COLORS & TYPOGRAPHY (MONOCHROME + BRAND TWEAK)
------------------------------------------------------- */
:root {
  --color-bg: #fff;
  --color-text: #16181b;
  --color-headline: #040507;
  --color-muted: #888;
  --color-primary: #16181b; /* Monochrome black */
  --color-highlight: #30363B; /* deep gray for highlights */
  --color-secondary: #EBC06D; /* subtle gold for laser highlights, not core bg */
  --color-accent: #F7F6F1; /* soft off-white accent */
  --color-card: #F6F6F6;
  --shadow-s: 0 2px 6px rgba(30,33,37,0.08);
  --shadow-m: 0 4px 18px rgba(20,20,25,0.08);
  --shadow-elevated: 0 6px 40px rgba(30,32,35,0.18);
  --radius-m: 16px;
  --radius-s: 8px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  font-size: 1rem;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', 'Open Sans', Arial, sans-serif;
  color: var(--color-headline);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 { font-size: 2.2rem; margin-bottom: 18px; }
h2 { font-size: 1.7rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
p, ul, ol, li {
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.6;
}
strong, b { font-weight: 600; color: var(--color-headline); }
.subheadline {
  font-size: 1.18rem;
  color: var(--color-muted);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Typography Hierarchy Responsiveness */
@media (min-width: 768px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.36rem; }
  .subheadline { font-size: 1.25rem; }
}
@media (min-width: 1200px) {
  h1 { font-size: 3.8rem; }
  h2 { font-size: 2.5rem; }
  .subheadline { font-size: 1.4rem; }
}


/* -------------------------------------------------------
   LAYOUT SPACING & FLEXBOX CONTAINERS
------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 28px 28px 24px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 280px;
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #181818;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-m);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 260px;
  border: 1px solid #ebebeb;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-card);
  padding: 22px 18px 18px 18px;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  min-width: 200px;
  flex: 1 1 230px;
  transition: box-shadow .22s;
}
.feature-item:hover, .service-item:hover, .team-member:hover, .faq-item:hover {
  box-shadow: var(--shadow-elevated);
  z-index: 2;
}

/* -------------------------------------------------------
   ACCENT BACKGROUND (for accent-bg sections)
------------------------------------------------------- */
.accent-bg, .section.accent-bg, section.accent-bg {
  background: var(--color-accent);
}


/* -------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.logo img { height: 36px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-left: auto;
}

.main-nav a {
  font-family: "Raleway", Arial, sans-serif;
  font-weight: 500;
  color: var(--color-headline);
  font-size: 1rem;
  padding: 8px 0px;
  border-radius: var(--radius-s);
  transition: color 0.15s, background 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-primary);
  background: #eaeaea;
}
.cta-btn {
  font-family: "Raleway", Arial, sans-serif;
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-s);
  padding: 9px 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  box-shadow: 0 2px 8px rgba(34,34,34,0.04);
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(44,44,44,0.11);
  text-decoration: none;
}
.cta-btn.small {
  padding: 6px 14px;
  font-size: 0.97rem;
}

/* Responsive Nav: Hide .main-nav and show hamburger on mobile */
.mobile-menu-toggle {
  display: none;
  background: none; border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  padding: 4px 8px;
  margin-left: 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.18s;
  z-index: 1201;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ececec;
}

/* -------------------------------------------------------
   MOBILE MENU OVERLAY
------------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,29,35, 0.992);
  transition: transform 0.35s cubic-bezier(0.77,0.17,0.16,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
  transform: translateX(-100%);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  background: none; border: none;
  color: #fff; font-size: 2.3rem;
  position: absolute;
  top: 24px; right: 28px;
  z-index: 10;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { background: #222; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 100px;
  width: 100%;
  gap: 16px;
}
.mobile-nav a {
  font-family: "Open Sans", Arial, sans-serif;
  color: #fff;
  font-size: 1.2rem;
  padding: 14px 32px;
  border-radius: var(--radius-m);
  font-weight: 500;
  transition: background 0.14s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #27292c;
  color: var(--color-secondary);
}

@media (max-width: 1023px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
  .main-nav { display: flex; }
}

/* -------------------------------------------------------
   HERO SECTION
------------------------------------------------------- */
.hero, .hero-blog {
  display: flex;
  align-items: center;
  background: #fff;
  min-height: 280px;
  padding: 54px 0 30px 0;
}
.hero .container, .hero-blog .container {
  justify-content: center;
}
.hero .content-wrapper, .hero-blog .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
}

/* -------------------------------------------------------
   SECTIONS: FEATURES, ABOUT, SERVICES, TESTIMONIALS, CTA
------------------------------------------------------- */
.features .feature-grid, .features .content-grid,
.about-preview .text-section, .services .service-list,
.workshops .workshop-list, .team .team-list, .blog-list .featured-posts, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list, .team-list, .workshop-list, .faq-list, .testimonial-slider, .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item, .workshop-item, .team-member, .faq-item {
  background: var(--color-card);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 26px 22px 21px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-width: 230px;
  flex: 1 1 240px;
  position: relative;
  border: 1px solid #ededed;
  transition: box-shadow .18s;
}
.service-price, .workshop-price {
  font-weight: 600;
  font-size: 1.01rem;
  color: var(--color-primary);
  margin-top: 6px;
}

.about-preview .text-section, .about .text-section, .legal .text-section, .contact-block, .map-block {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq-list .faq-item {
  flex: 1 1 300px;
}

/* Testimonial Cards with Readability!*/
.testimonials .testimonial-card, .testimonial-cards .testimonial-card {
  background: #fff;
  color: #222325;
  border: 1.5px solid #ebebeb;
  box-shadow: var(--shadow-m);
  min-width: 220px; max-width: 360px; flex: 1 1 260px;
}
.star-rating {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.cta {
  background: #fff;
  border-radius: var(--radius-m) var(--radius-m) 0 0;
  margin-top: 48px;
  padding: 40px 0 48px 0;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  align-items: center;
}
.newsletter-form input[type="email"] {
  min-width: 210px;
  padding: 10px 16px;
  border-radius: var(--radius-s);
  border: 1.5px solid #bbb;
  background: #fff;
  font-size: 1rem;
  transition: border .16s;
}
.newsletter-form input[type="email"]:focus {
  border: 1.5px solid var(--color-primary);
}

/* -------------------------------------------------------
   BLOG LIST & FILTERS
------------------------------------------------------- */
.blog-list {
  background: #fff;
  padding: 48px 0 64px 0;
}
.blog-list .blog-filters {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.blog-list select, .blog-list input[type="search"] {
  padding: 7px 14px;
  border-radius: var(--radius-s);
  border: 1.2px solid #d8d8d8;
  background: #f9f9f9;
  font-family: inherit;
  font-size: 1rem;
}
.blog-list select:focus, .blog-list input[type="search"]:focus {
  border-color: var(--color-primary);
}
.blog-post {
  background: var(--color-card);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 260px;
  margin-bottom: 20px;
  flex: 1 1 280px;
}
.post-link {
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 2px;
  border-bottom: 1.5px solid var(--color-primary);
  transition: color 0.2s, border-color 0.2s;
}
.post-link:hover, .post-link:focus {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

/* -------------------------------------------------------
   LEGAL PAGES
------------------------------------------------------- */
.legal {
  background: #fff;
  padding: 44px 0 64px 0;
}
.legal .container, .legal .content-wrapper, .legal .text-section {
  gap: 20px;
}
.legal .text-section h2 { margin-top: 19px; font-size: 1.2rem; margin-bottom: 10px; }
.legal .text-section ul { margin-bottom: 18px; padding-left: 22px; list-style: disc; }

/* -------------------------------------------------------
   CONTACT PAGE
------------------------------------------------------- */
.contact-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.contact-block, .map-block {
  flex: 1 1 220px;
  background: var(--color-card);
  padding: 22px 18px;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-s);
  min-width: 220px;
}
.hours ul {
  padding-left: 20px;
  margin-bottom: 8px;
}
.hours ul li {
  margin-bottom: 5px;
  list-style: disc;
}

/* -------------------------------------------------------
   FAQ SECTION
------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.faq-item h3 { font-size: 1.1rem; }

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
footer {
  background: #181B1F;
  color: #fff;
  padding: 45px 20px 27px 20px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 60px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Raleway", Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  color: #fff;
}
.footer-brand img {
  height: 30px;
  width: auto;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 4px 0;
}
.footer-menu a {
  color: #fff;
  font-size: 0.96rem;
  opacity: 0.9;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.17s, color 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  border-bottom: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}
.footer-contact {
  font-size: 0.97rem;
  color: #e7e7e7;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-contact a { color: var(--color-secondary); }

/* -------------------------------------------------------
   COOKIE CONSENT BANNER
------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #141416;
  color: #fff;
  box-shadow: 0 -2px 14px rgba(0,0,0,0.11);
  z-index: 2201;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 14px;
  gap: 18px;
  font-size: 1rem;
  transition: transform .31s cubic-bezier(0.7,0.25,0.18,1);
  transform: translateY(0);
}
.cookie-banner.hide { transform: translateY(140%); pointer-events: none; opacity: 0; }
.cookie-message {
  max-width: 370px;
  margin-right: 18px;
  line-height: 1.45;
}
.cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-btn {
  font-family: "Raleway", Arial, sans-serif;
  padding: 7px 18px;
  font-size: 1rem;
  border-radius: 7px;
  border: 2px solid #282828;
  background: #fff;
  color: #222;
  font-weight: 700;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-btn.accept {
  background: #11141C;
  color: #fff;
  border-color: #282828;
}
.cookie-btn.reject {
  background: #fff;
  color: #161616;
  border-color: #282828;
}
.cookie-btn.settings {
  background: #F7F6F1;
  color: #19191a;
  border-color: #282828;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #222; }
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #eee;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus { background: #e8e8e8; }

/* Cookie Modal (uses .cookie-modal, .cookie-modal-content) */
.cookie-modal {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(16,16,18, 0.91);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
}
.cookie-modal.hide { display: none; opacity: 0; }
.cookie-modal-content {
  background: #fff;
  color: #19191a;
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-elevated);
  padding: 38px 34px 30px 34px;
  max-width: 430px;
  width: 93vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 { font-size: 1.37rem; }
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none; border: none;
  color: #11141C;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-cat {
  font-weight: 700;
  color: #222;
  margin-bottom: 3px;
}
.cookie-toggle {
  margin-right: 7px;
  accent-color: var(--color-primary);
}
.cookie-modal-actions { display: flex; gap: 13px; margin-top: 6px; }

/* -------------------------------------------------------
   UTILITY: GAP, SPACING, FLEX HELPERS
------------------------------------------------------- */
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }

/* -------------------------------------------------------
   BUTTONS & INTERACTIVITY
------------------------------------------------------- */
button, .cta-btn, .cookie-btn, .newsletter-form button {
  transition: background .16s, color .16s, box-shadow .19s, border .17s;
}
button:active, .cta-btn:active, .cookie-btn:active { transform: scale(0.98); }

/* -------------------------------------------------------
   ANIMATIONS
------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .content-wrapper, .hero-blog .content-wrapper, .cta .content-wrapper, .section, .card {
  animation: fadeInUp .6s cubic-bezier(0.88,0.02,0.34,1.01) 0s 1 normal both;
}

/* -------------------------------------------------------
   MEDIA QUERIES & RESPONSIVE FLEX DIRECTION
------------------------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
  .feature-item, .service-item, .workshop-item, .team-member, .faq-item, .testimonial-card, .blog-post { min-width: 200px; }
}
@media (max-width: 993px) {
  .feature-item, .service-item, .workshop-item, .team-member, .faq-item, .testimonial-card, .blog-post { flex: 1 1 270px; }
  .content-wrapper, .card-container, .content-grid, .feature-grid, .service-list, .team-list, .workshop-list, .faq-list, .testimonial-slider, .testimonial-cards {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding-left: 8px; padding-right: 8px; }
  .content-wrapper { gap: 18px; }
  .card-container, .content-grid, .feature-grid, .service-list, .team-list, .workshop-list, .faq-list, .testimonial-slider, .testimonial-cards {
    flex-direction: column;
    gap: 16px;
  }
  .section { padding: 26px 6px; margin-bottom: 36px; }
  .hero, .hero-blog { padding: 34px 0 16px 0; }
  .footer-menu { gap: 12px; flex-direction: column; }
  .footer-brand { font-size: 1rem; gap: 9px; }
  footer { padding: 29px 8px 17px 8px; gap: 24px; margin-top: 30px; }
  .cta { padding: 24px 0 32px 0; margin-top: 26px; }
  .newsletter-form { gap: 9px; }
  .blog-list .blog-filters { flex-direction: column; gap: 8px; }
  .contact-flex { flex-direction: column; gap: 14px; }
  .contact-block, .map-block { padding: 14px 8px; }
}
@media (max-width: 480px) {
  .footer-brand img { height: 23px; }
  .footer-menu { font-size: 0.9rem; }
}

/* -------------------------------------------------------
   MISC & OVERRIDES
------------------------------------------------------- */
::-webkit-input-placeholder { color: #8B8C90; opacity: 1; }
::-moz-placeholder { color: #8B8C90; opacity: 1; }
:-ms-input-placeholder { color: #8B8C90; opacity: 1; }
::placeholder { color: #8B8C90; opacity: 1; }

input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; height: 16px; width: 16px; background: url('data:image/svg+xml;utf8,<svg fill="%23636678" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path d="M4.81 7l-3-3A1 1 0 0 1 3 .81l3 3 3-3A1 1 0 0 1 12.19 4L9.19 7l3 3A1 1 0 0 1 11.19 12.19l-3-3-3 3A1 1 0 0 1 1.81 10.19l3-3z"></path></svg>') no-repeat center center; }

/* Hide unnecessary scrollbars */
body, html { scrollbar-width: thin; scrollbar-color: #bbb #fff; }
::-webkit-scrollbar { width: 8px; background: #f6f6f6; }
::-webkit-scrollbar-thumb { background: #ccc; border-radius: 6px; }

/* Form Accessibility */
label { font-weight: 600; margin-right: 8px; color: var(--color-primary); }
select, input, button { outline: none; }

/* Focus States */
:focus-visible { outline: 2px solid var(--color-secondary) !important; outline-offset: 1px; }

/* For more dramatic contrast & modernism, add borders/shadow to all cards */
.card, .feature-item, .service-item, .testimonial-card, .workshop-item, .team-member, .faq-item, .blog-post {
  border: 1px solid #ebebeb;
  box-shadow: var(--shadow-s);
  background: #fff;
}

/* Monochrome Sophistication: grayscale images/icons */
img, .feature-item img, .team-member img {
  filter: grayscale(84%) contrast(1.08);
  transition: filter .25s;
}
img:hover, .feature-item img:hover, .team-member img:hover {
  filter: grayscale(15%) contrast(1.04);
}


/* -------------------------------------------------------
   PRINT OVERRIDES
------------------------------------------------------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
