/* =============================================================
   CSS RESET & NORMALIZATION
   ============================================================= */
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,
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;
}

html {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F2F2F2;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22263A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #E67A37;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #b65c22;
}
ul, ol {
  list-style: none;
  margin-left: 0;
  padding: 0;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: none;
}

/* =============================================================
   FONTS (Retro/Vintage style)
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 900;
  color: #332700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  text-shadow: 0 2px 0 #f8e5ba;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8rem;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.15rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #6c5523;
  margin-bottom: 24px;
  letter-spacing: 0.8px;
}

p, li, address {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #53401A;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/* =============================================================
   COLOR PALETTE (Retro/Vintage)
   ============================================================= */
:root {
  --primary: #22263A;
  --secondary: #F2F2F2;
  --accent: #E67A37;
  --retro-green: #A2B29F;
  --retro-yellow: #F8E5BA;
  --retro-brown: #B7854B;
  --retro-cream: #FFF9E2;
  --retro-blue: #5F7487;
  --retro-red: #CB4130;
  --card-bg: #FFF9E2;
  --paper-shadow: 0 8px 20px rgba(190,143,81,0.13);
}

/* =============================================================
   SPACING & LAYOUT (FLEXBOX ONLY)
   ============================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--retro-cream);
  border-radius: 18px;
  box-shadow: var(--paper-shadow);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  align-items: center;
}

.card-container, .card-grid, .feature-grid, .course-list, .course-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .course-card {
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(34,38,58,0.08);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid var(--retro-yellow);
  min-width: 260px;
  flex: 1 1 310px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover, .course-card:hover {
  transform: translateY(-7px) scale(1.03) rotate(-1deg);
  box-shadow: 0 6px 28px 3px rgba(230,122,55,0.12), var(--paper-shadow);
  border-color: var(--accent);
  z-index: 5;
}

/* Course List on index and grid on corsi.html */
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.course-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.course-card {
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  border-left: 6px solid var(--accent);
}
.course-price {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 8px;
  background: var(--retro-yellow);
  border-radius: 7px;
  padding: 5px 18px;
  box-shadow: 0 2px 9px rgba(230,122,55,0.06);
}

/* Testimonials slider */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  min-width: 260px;
  background: #fff9e2;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(141,97,32,0.10);
  margin-bottom: 20px;
  border-left: 6px solid var(--accent);
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #382b19;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #664A23;
  display: block;
  margin-top: 11px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
.testimonial-card span {
  color: #CB4130;
  font-weight: normal;
  font-size: 0.91rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 2px rgba(200,81,35,0.16), var(--paper-shadow);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid > li, .feature-grid > div {
  flex: 1 1 210px;
  min-width: 200px;
  background: #fcf7e9;
  border-radius: 11px;
  box-shadow: 0 1px 7px 0 rgba(213,175,83,0.09);
  padding: 18px;
  margin-bottom: 20px;
  border-left: 5px solid var(--retro-brown);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.feature-grid > li:hover, .feature-grid > div:hover {
  border-left: 5px solid var(--accent);
  box-shadow: 0 6px 20px rgba(167,130,76,0.14);
}
.feature-grid img {
  width: 38px;
  margin-bottom: 13px;
  filter: sepia(0.6) hue-rotate(-12deg) contrast(1.15);
}

/* Reusable Section Layouts */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================
   NAVIGATION & HEADER
   ========================= */
header {
  background: var(--primary);
  box-shadow: 0 3px 22px 0 rgba(54,30,10,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
.main-nav {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
}
.main-nav > a img {
  max-height: 45px;
  filter: drop-shadow(1px 1px 0 #b7854b);
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 26px;
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
}
.main-nav ul li a {
  color: var(--retro-yellow);
  font-weight: 700;
  letter-spacing: 1.1px;
  padding: 5px 14px;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
  font-size: 1.04rem;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--accent);
  color: var(--retro-cream);
  text-shadow: 0 1px 0 #b7854b;
}
.main-nav .cta-button {
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-weight: bold;
  padding: 10px 26px;
  border-radius: 10px 20px 16px 7px;
  box-shadow: 0 2px 10px 0 rgba(230,122,55,0.06);
  font-size: 1.10rem;
  letter-spacing: 0.8px;
  margin-left: 12px;
  transition: background 0.18s, transform 0.16s, box-shadow 0.16s;
  cursor: pointer;
  text-shadow: 0 1px 0 #b7854b;
}
.main-nav .cta-button:hover, .main-nav .cta-button:focus {
  background: #c77132;
  transform: scale(1.055) rotate(-2deg);
  box-shadow: 0 6px 24px 1px rgba(230,122,55,0.15);
}

/* Hamburger menu button (mobile) */
.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  background: var(--accent);
  color: #fff9e2;
  padding: 7px 14px;
  font-size: 2.2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px #e8cc95;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.12s, transform 0.12s;
  z-index: 999;
  position: relative;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: #c77132;
  color: #fff;
  transform: scale(1.08);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(230,122,55,0.98);
  box-shadow: 0 0 15px #b7854b88;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  transform: translateX(-103vw);
  opacity: 0;
  pointer-events: none;
  z-index: 1002;
  transition: transform 0.38s cubic-bezier(.64,-0.01,.41,1.01), opacity 0.16s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff9e2;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  margin: 30px 24px 12px 0;
  transition: color 0.16s, transform 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFE49E;
  transform: scale(1.16) rotate(4deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff9e2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: bold;
  padding: 7px 0;
  letter-spacing: 1.2px;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent);
  background: #FFF9E2;
  padding-left: 12px;
}

@media (max-width: 1030px) {
  .main-nav ul {
    gap: 11px;
    margin: 0 8px;
  }
  .main-nav .cta-button { padding: 10px 14px; }
}
@media (max-width: 880px) {
  .main-nav ul { gap: 7px; }
  .main-nav { padding: 10px 6px; }
  .container { padding-left: 3vw; padding-right: 3vw; }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta-button {
    display: none !important;
  }
  .main-nav {
    flex-wrap: wrap;
    padding: 10px 4vw;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =========================
   BUTTONS & INTERACTIVES
   ========================= */
.cta-button, .cookie-banner-button, .cookie-preference-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 10px 32px;
  border-radius: 9px 20px 20px 7px;
  text-decoration: none;
  font-size: 1.07rem;
  letter-spacing: 0.6px;
  box-shadow: 0 3px 13px -1px #ffbe9555;
  margin: 16px 0 0 0;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform .15s;
}
.cta-button:hover, .cta-button:focus, .cookie-banner-button:hover, .cookie-banner-button:focus, .cookie-preference-btn:hover, .cookie-preference-btn:focus {
  background: #a75821;
  color: #fff9e2;
  transform: rotate(-2deg) scale(1.059);
}

/* =========================
   FORMS & INPUTS
   ========================= */
input[type="text"], input[type="email"], textarea, select {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border-radius: 7px;
  background: #fff9e2;
  border: 1px solid #eedbab;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(224,196,119,0.10);
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #452909;
  margin-bottom: 7px;
}

/* =========================
   SECTIONS/CONTENT/SUPPORT
   ========================= */
dt, dd {
  margin-bottom: 12px;
}
ul li, ol li { margin-bottom: 8px; }
ul li:last-child, ol li:last-child { margin-bottom: 0; }

address {
  font-size: 0.98rem;
  color: #6a5521;
  font-style: normal;
  margin-top: 8px;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--primary);
  color: #fff9e2;
  padding: 30px 0 24px 0;
  box-shadow: 0 -2px 19px 0 rgba(54,30,10,0.06);
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 0;
}
.footer-wrapper img {
  max-width: 65px;
  margin-bottom: 0;
  filter: sepia(0.4) contrast(1.2);
  border-radius: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a {
  color: #fff9e2;
  transition: color .13s;
  font-size: 1.04rem;
  opacity: 0.95;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #F8E5BA;
}
footer address {
  color: #eee2be;
  font-size: 0.97rem;
  letter-spacing: 0.2px;
}

/* =========================
   COOKIE BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 2000;
  background: #fff9e2;
  border-top: 4px solid var(--accent);
  box-shadow: 0 -2px 20px 0 #c1965a21;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 8px 20px 8px;
  gap: 38px;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.26s, transform 0.42s cubic-bezier(.64,-0.01,.41,1.01);
}
.cookie-banner.closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-message {
  max-width: 500px;
  color: #332700;
  font-size: 1rem;
  margin-right: 10px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner-button {
  font-size: 1.04rem;
  padding: 8px 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px 15px 13px 6px;
  border: none;
  outline: none;
  box-shadow: 0 1px 5px #e6bb4855;
  cursor: pointer;
}
.cookie-banner-button.settings {
  background: #ddd2a7;
  color: #855206;
  font-weight: bold;
  transition: background 0.15s, color 0.12s;
}
.cookie-banner-button.settings:hover,
.cookie-banner-button.settings:focus {
  background: #b7924f;
  color: #fff9e2;
}

/* ===== Cookie Preferences Modal ===== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: rgba(34,38,58,0.39);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff9e2;
  border-radius: 20px;
  box-shadow: 0 9px 50px 6px #e67a3755, 0 1px 4px #b7854b22;
  padding: 36px 34px 30px 34px;
  max-width: 420px;
  width: 93vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  z-index: 3000;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  right: 23px;
  top: 17px;
  font-size: 1.7rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.13s, transform 0.12s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #CB4130;
  transform: scale(1.11) rotate(5deg);
}
.cookie-modal h2 {
  color: #664A23;
  margin-bottom: 1rem;
}
.cookie-modal-category {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #55422d;
  font-weight: 600;
}
.cookie-modal-category .toggle-switch {
  width: 50px;
  height: 28px;
  border-radius: 21px;
  background: #f8e5ba;
  border: 2px solid #ccae7a;
  position: relative;
  transition: background 0.2s;
  margin-left: 12px;
  flex-shrink: 0;
}
.toggle-switch input {
  display: none;
}
.toggle-switch span {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 3px;
  top: 1.5px;
  transition: left 0.19s cubic-bezier(.75,-0.01,.55,.96);
}
.toggle-switch input:checked + span {
  left: 23px;
  background: #cb4130;
}
.cookie-modal-actions {
  display: flex;
  gap: 19px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-preference-btn {
  font-size: 1.07rem;
  padding: 9px 22px;
  border-radius: 7px 15px 12px 7px;
  background: var(--accent);
  color: #fff9e2;
  font-weight: bold;
  border: none;
  transition: background 0.15s, color 0.14s, transform 0.12s;
}
.cookie-preference-btn.secondary {
  background: #ddd2a7;
  color: #754400;
}
.cookie-preference-btn.secondary:hover,
.cookie-preference-btn.secondary:focus {
  background: #b7854b;
  color: #fff9e2;
}

/* ================
   RETRO/NOSTALGIC DECORATIVE ELEMENTS
   ================ */
.section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  position: absolute;
  left: 16px;
  bottom: 13px;
  width: 36px;
  height: 7px;
  border-radius: 7px;
  background: var(--accent);
  opacity: 0.18;
  z-index: 0;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  right: 22px;
  top: 18px;
  width: 23px;
  height: 23px;
  border-radius: 70% 70% 60% 89%;
  background: #f8e5ba;
  opacity: 0.26;
  z-index: 0;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 25px 7px 28px 7px;
  }
  .card, .course-card {
    min-width: 0;
    max-width: 100vw;
    padding: 19px 12px;
    border-radius: 11px;
  }
  .feature-grid, .card-container, .course-list, .card-grid {
    gap: 13px;
    flex-direction: column;
  }
  .testimonial-slider {
    gap: 13px;
    flex-direction: column;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 21px;
    padding: 0 7vw;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 2vw 18px 2vw;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-banner-message {
    margin-right: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

@media (max-width: 440px) {
  html { font-size: 15px; }
  .container { padding-left: 1vw; padding-right: 1vw; }
  .cookie-modal { padding: 18px 6px 19px 12px; width: 97vw; }
}

/* =========================
   MICRO-INTERACTIONS
   ========================= */
.card, .course-card, .testimonial-card, .feature-grid > *, .feature-item {
  transition: transform .14s, box-shadow .15s, border-color .17s;
  will-change: transform, box-shadow;
}
.card:hover, .course-card:hover, .testimonial-card:hover, .feature-grid > *:hover {
  transform: translateY(-4px) scale(1.025) rotate(-1.5deg);
  box-shadow: 0 10px 24px 1px #e67a371f, 0 3px 15px #664a2337;
  border-color: var(--accent);
  z-index: 2;
}

.cta-button:active, .cookie-banner-button:active, .cookie-preference-btn:active {
  transform: scale(1.01) rotate(0.5deg) translateY(1px);
}

/* =========================
   TYPOGRAPHY RESPONSIVE
   ========================= */
@media (max-width: 880px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1rem; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 0.97rem; }
  .subtitle, p { font-size: 0.98rem; }
}

/* =========================
   RETRO DETAIL PATTERNS
   ========================= */
.card, .course-card, .testimonial-card, .feature-grid > *, .section {
  border-style: solid;
  border-width: 2px;
  border-color: #e5d2a7;
  background-image: repeating-linear-gradient(-45deg, #fff9e200, #fff9e200 11px, #f8e5ba1c 13px, #fff9e200 21px);
}

/* Retro pattern underline for primary headings */
h1:after, h2:after {
  content: '';
  display: block;
  width: 72px;
  height: 5px;
  background: var(--accent);
  border-radius: 4px;
  margin-top: 9px;
  opacity: 0.22;
}

/* =========================
   MISC/ACCESSIBILITY
   ========================= */
:focus {
  outline: 2px dashed #e67a37;
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #c1a972; }
:-ms-input-placeholder { color: #c1a972; }
::placeholder { color: #c1a972; }

/* Hide native number input arrows (for retro look) */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* =========================
   PRINT SUPPORT
   ========================= */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .main-content { padding: 0; margin: 0 !important; }
}
