/* ================================================================
   Quantum Flair – Sophisticated Monochrome CSS Theme
   Author: Quantum Flair UI Team
====================================================================
   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, 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; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }
body {
  line-height: 1.45;
  background: #fff;
  color: #18191A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
  padding-left: 16px;
}
li {
  margin-bottom: 6px;
}
a {
  color: #18191A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #354657;
}

/* ================================================================
   FONT & COLOR VARIABLES (with fallbacks)
==================================================================== */
:root {
  --color-bg: #fff;
  --color-bg-dark: #18191A;
  --color-primary: #354657;
  --color-accent: #fff;
  --color-secondary: #eaeaea;
  --color-highlight: #F2E205;
  --color-shadow: rgba(36,36,36,0.08);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ================================================================
   LAYOUT: CONTAINER STYLES
==================================================================== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section,
  section {
    padding: 28px 6px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* ================================================================
   TYPOGRAPHY
==================================================================== */
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: #18191A;
  line-height: 1.14;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  color: #18191A;
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: #232323;
  margin-bottom: 6px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #232323;
  margin-bottom: 3px;
}
p, .text-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
strong, b {
  font-weight: 700;
  color: #18191A;
}
em, i {
  font-style: italic;
  color: #444;
}
.text-section ul,
.text-section ol {
  margin-top: 6px;
  margin-bottom: 14px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Font sizes for smaller screens */
@media (max-width: 600px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  h3, .h3 { font-size: 1.06rem; }
  p, .text-section p { font-size: 0.97rem; }
}

/* ================================================================
   NAVIGATION
==================================================================== */
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px -8px var(--color-shadow);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}
.main-nav a {
  text-decoration: none;
  color: #18191A;
  background: none;
  border-radius: 5px;
  padding: 8px 14px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus:not(.btn-primary) {
  background: #e5e8ea;
  color: var(--color-primary);
}
.main-nav a.btn-primary {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  border-radius: 6px;
  margin-left: auto; /* Push right on wide screens */
  box-shadow: 0 3px 16px -6px var(--color-shadow);
  transition: background 0.18s, box-shadow 0.18s;
}
.main-nav a.btn-primary:hover, .main-nav a.btn-primary:focus {
  background: #232c37;
  color: #fff;
  box-shadow: 0 2px 12px 0 #232c37cc;
}
.main-nav img {
  height: 38px;
  margin-right: 20px;
}
@media (max-width: 1000px) {
  .main-nav {
    gap: 14px;
    font-size: 0.96rem;
  }
  .main-nav img {
    margin-right: 10px;
  }
  .main-nav a.btn-primary {
    margin-left: 0;
  }
}

/* =============== MOBILE BURGER MENU =============== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #232323;
  cursor: pointer;
  z-index: 120;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  color: var(--color-primary);
  outline: 2px solid var(--color-primary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 92vw;
  max-width: 350px;
  background: #fff;
  box-shadow: 7px 0 28px 0 rgba(30,30,30,0.15);
  z-index: 2000;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.86,0,.07,1);
  padding: 32px 20px 20px 20px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #18191A;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #18191A;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 4px;
  text-decoration: none;
  background: none;
  transition: background 0.14s, color 0.14s;
  min-width: 120px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e5e8ea;
  color: var(--color-primary);
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* dark overlay when mobile menu open */
body.mobile-menu-open::before {
  content: "";
  display: block;
  position: fixed;
  z-index: 1500;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(54, 70, 87,0.38);
  transition: background 0.34s;
  pointer-events: all;
}

/* ================================================================
   BUTTONS & LINKS
==================================================================== */
.btn-primary, a.btn-primary, button.btn-primary {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  padding: 12px 30px;
  border-radius: 7px;
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 1.08rem;
  box-shadow: 0 2px 12px -6px var(--color-shadow);
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 14px;
  margin-bottom: 8px;
  transition: background 0.17s, box-shadow 0.17s, transform 0.13s;
  text-decoration: none;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #232c37;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px -2px #232c37cc;
}
button, .button {
  font-family: var(--font-display);
  font-size: 1rem;
}

/* ================================================================
   HERO + SECTION LAYOUTS (INDEX & OTHER PAGES)
==================================================================== */
.hero,
.workshops-hero,
.coaching-hero,
.contact-hero {
  background: #18191A;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
  margin-bottom: 60px;
}
.hero h1, .workshops-hero h1, .coaching-hero h1, .contact-hero h1 {
  color: #fff;
  font-size: 2.75rem;
  letter-spacing: -2px;
  margin-bottom: 12px;
}
.hero p, .workshops-hero p, .coaching-hero p, .contact-hero p {
  color: #ececec;
  font-size: 1.18rem;
}
.hero .btn-primary, .workshops-hero .btn-primary,
.coaching-hero .btn-primary, .contact-hero .btn-primary {
  background: #fff;
  color: #232c37;
  box-shadow: 0 6px 30px -6px var(--color-primary);
}
.hero .btn-primary:hover, .workshops-hero .btn-primary:hover,
.coaching-hero .btn-primary:hover, .contact-hero .btn-primary:hover {
  background: var(--color-highlight);
  color: #18191A;
}
@media (max-width: 768px) {
  .hero, .workshops-hero, .coaching-hero, .contact-hero {
    padding-top: 42px;
    padding-bottom: 38px;
    margin-bottom: 32px;
  }
  .hero h1, .workshops-hero h1, .coaching-hero h1, .contact-hero h1 {
    font-size: 1.36rem;
  }
}

/* FEATURES GRID (INDEX, ETC) */
.features-grid, .service-cards, .service-list, .testimonial-slider, .testimonial-grid, .client-quotes, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div, .service-cards > div, .service-list > div {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 5px 32px -10px var(--color-shadow);
  padding: 32px 26px 26px 22px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 calc(45% - 24px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1.3px solid #e7e7e7;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.13s;
}
.features-grid > div:hover, .service-cards > div:hover, .service-list > div:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 42px -14px rgba(54, 70, 87,0.16);
  transform: translateY(-3px) scale(1.015);
}
.features-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
}
.features-grid h3, .service-cards h3, .service-list h2 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.features-grid p, .service-cards p, .service-list p {
  color: #232323;
  font-family: var(--font-body);
  font-size: 0.99rem;
}

@media (max-width: 960px) {
  .features-grid > div, .service-cards > div, .service-list > div {
    min-width: 180px;
    max-width: 98vw;
    flex-basis: 100%;
  }
}

/* PRICING TABLE (courses.html) */
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 16px -12px #1111;
  border-radius: 8px;
  margin-bottom: 24px;
  overflow: hidden;
}
thead tr {
  background: #18191A;
  color: #fff;
}
th, td {
  font-size: 1rem;
  padding: 14px 10px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}
th {
  font-weight: 800;
  font-family: var(--font-display);
}
tbody tr:hover {
  background: #f9f9fa;
}
tbody tr:last-child td {
  border-bottom: 0;
}
@media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  thead {
    display: none;
  }
  tr {
    margin-bottom: 18px;
    box-shadow: 0 2px 10px -8px #2221;
    border-radius: 7px;
  }
  td {
    padding: 10px 7px;
    font-size: 0.95rem;
    border: none;
  }
  td:before {
    content: attr(data-label);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
    color: #232;
  }
}

/* FAQ ACCORDION (basic open style) */
.faq-accordion > div {
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 2px 8px -6px #2224;
  padding: 18px 18px 10px 20px;
  margin-bottom: 16px;
  border-left: 6px solid #232c37;
  transition: box-shadow 0.2s, border-left-color 0.14s;
}
.faq-accordion > div:hover {
  box-shadow: 0 5px 20px -8px #232c3750;
  border-left-color: var(--color-highlight);
}
.faq-accordion h3 {
  margin-bottom: 5px;
}

/* ==================== TESTIMONIAL STYLES ==================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  padding: 28px 26px 20px 26px;
  margin-bottom: 20px;
  border-radius: 11px;
  border: 1.2px solid #e8e8e8;
  box-shadow: 0 4px 22px -10px var(--color-shadow);
  font-size: 1.025rem;
  color: #232323;
  transition: box-shadow 0.18s, border-color 0.13s, transform 0.13s;
  min-width: 260px;
  max-width: 480px;
}
.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 36px -12px var(--color-primary);
  transform: translateY(-2px) scale(1.025);
}
.testimonial-card p {
  font-style: italic;
  color: #18191A;
  font-size: 1.06rem;
  font-family: var(--font-body);
}
.testimonial-card span, .testimonial-card strong {
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.01em;
}
.testimonial-slider, .testimonial-grid, .client-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.star-rating {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-highlight);
  font-size: 1.35em;
  letter-spacing: 1px;
  margin-bottom: 4px;
  margin-right: 7px;
}
@media (max-width: 850px) {
  .testimonial-slider, .testimonial-grid, .client-quotes {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 98vw;
    margin-right: 0;
  }
}

/* ==================== CARDS, FEATURES, SCHEDULE ==================== */
.schedule-snippet {
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  margin: 14px 0 0 0;
  font-size: 0.96rem;
  font-family: var(--font-body);
}
.schedule-snippet ul {
  color: #fff;
  margin-bottom: 0;
}
.pricing-info {
  background: #232c37;
  color: #fff;
  border-radius: 10px;
  padding: 22px 18px;
  margin-bottom: 12px;
  box-shadow: 0 2px 20px -8px #232c37aa;
}
.pricing-info h3 {
  color: #fff;
  margin-bottom: 8px;
}
.pricing-info ul li {
  color: #efefef;
}

/* ==================== CLIENT LOGOS ==================== */
.client-logos {
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: flex-start;
  margin-top: 34px;
}
.client-logos img {
  height: 58px;
  filter: grayscale(100%) contrast(1.2);
  opacity: 0.63;
}
@media (max-width: 600px) {
  .client-logos {
    gap: 11px;
    margin-top: 16px;
  }
  .client-logos img {
    height: 36px;
  }
}

/* ==================== STATIC MAP (contact page) ==================== */
.static-map {
  min-height: 120px;
  max-width: 480px;
  background: #ededed;
  border-radius: 8px;
  font-size: 1.24rem;
  margin: 12px 0 14px 0;
  flex: 1 1 220px;
  text-align: center;
  box-shadow: 0 3px 16px -10px var(--color-shadow);
}

/* ==================== FOOTER ==================== */
footer {
  background: #18191A;
  color: #fff;
  padding: 34px 0 22px 0;
  margin-top: 54px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.99rem;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  opacity: 0.8;
  text-decoration: underline;
  transition: color 0.16s;
  font-family: var(--font-display);
  font-weight: 500;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-highlight);
  opacity: 1;
}
.footer-info {
  text-align: center;
  font-size: 0.92rem;
  color: #cecece;
  margin-top: 4px;
}
@media (max-width: 650px) {
  footer { padding: 24px 0 12px 0; }
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2500;
  background: #18191A;
  color: #fff;
  padding: 22px 12px 17px 22px;
  box-shadow: 0 -2px 16px 0 #1118;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  animation: cookie-fade-in 0.6s;
}
@keyframes cookie-fade-in {
  from { opacity:0; transform: translateY(40px); }
  to { opacity:1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  font-size: 0.99rem;
  line-height: 1.5;
}
.cookie-banner .cookie-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  margin-left: -1px;
}
.cookie-banner button,
.cookie-banner .btn {
  background: var(--color-highlight);
  color: #18191A;
  border: none;
  padding: 9px 26px;
  border-radius: 5px;
  margin: 0 7px 0 0;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.11s, color 0.11s, transform 0.11s;
  box-shadow: 0 2px 6px -3px #18191A88;
}
.cookie-banner button.cookie-btn-secondary {
  background: #232c37;
  color: #fff;
  border: 1.1px solid #eaeaea;
}
.cookie-banner button.cookie-btn-secondary:hover,
.cookie-banner button.cookie-btn-secondary:focus {
  background: #fff;
  color: #18191A;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  transform: translateY(-1px) scale(1.025);
  background: #F4E960;
}
@media (max-width: 768px) {
  .cookie-banner {
    align-items: stretch;
    gap: 10px;
    padding: 18px 4px 12px 9px;
  }
  .cookie-banner .cookie-btns {
    flex-direction: column;
    gap: 9px;
    margin-left: 0;
  }
  .cookie-banner button {
    width: 100%;
    min-width: 0;
  }
}

/* === Cookie Settings Modal === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,25,25,0.48);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modal-fade-in 0.4s;
}
@keyframes modal-fade-in {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #18191A;
  border-radius: 13px;
  box-shadow: 0 8px 60px 0 #232c3790;
  max-width: 450px;
  width: 96vw;
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-pop-in 0.4s;
}
@keyframes modal-pop-in {
  0% { transform: scale(0.96) translateY(38px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.29rem;
  margin-bottom: 9px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  font-size: 1.03rem;
  font-family: var(--font-display);
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--color-primary);
  width: 19px;
  height: 19px;
  border-radius: 4px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .btn {
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-family: var(--font-display);
  border: none;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.12s, color 0.13s;
  cursor: pointer;
}
.cookie-modal .btn:hover, .cookie-modal .btn:focus {
  background: #232c37;
}
.cookie-modal .btn-outline {
  border: 1.2px solid var(--color-primary);
  background: #fff;
  color: var(--color-primary);
}
.cookie-modal .btn-outline:hover, .cookie-modal .btn-outline:focus {
  background: var(--color-highlight);
  color: #18191A;
}

/* ================================================================
   FLEXBOX PATTERNS & SPACING
==================================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 14px -7px #232c3740;
  margin-bottom: 20px;
  position: relative;
  padding: 22px 18px;
  min-width: 240px;
  max-width: 390px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 34px -10px #35465777;
  transform: translateY(-3px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensuring NO overlapping, consistent vertical spacing */
section,
.section {
  box-sizing: border-box;
  min-width: 0;
}

/* ================================================================
   ANIMATIONS & MICRO-INTERACTIONS
==================================================================== */
a, .btn-primary, button, .card, .features-grid > div, .service-cards > div, .service-list > div, .testimonial-card, .cookie-banner, .cookie-modal, .mobile-menu, .faq-accordion > div {
  transition: all 0.13s cubic-bezier(.83,0,.16,1);
}

/* ================================================================
   SCROLLBAR MODERNIZATION (light touch)
==================================================================== */
::-webkit-scrollbar {
  width: 9px;
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #d7d7da;
  border-radius: 8px;
}

/* ================================================================
   MISC UTILITY CLASSES
==================================================================== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 2px !important; }
.mb-4 { margin-bottom: 4px !important; }
.mb-8 { margin-bottom: 8px !important; }

/* ================================================================
   FIELDSET/FORM ELEMENTS (for contact/feedback forms)
==================================================================== */
input[type="text"], input[type="email"], textarea {
  font-family: var(--font-body);
  font-size: 1.03rem;
  padding: 10px 12px;
  border-radius: 5px;
  outline: none;
  border: 1.1px solid #999;
  margin-bottom: 10px;
  width: 100%;
  background: #fafafc;
  color: #191b1c;
  transition: border-color 0.13s, box-shadow 0.13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 1px 6px -2px var(--color-primary);
}
label { font-family: var(--font-display); font-weight: 600; }

/* ================================================================
   PRINT STYLES
==================================================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  * { background: #fff !important; color: #000 !important; }
}
