/* ===== 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: #f5f7fa;
  color: #263158;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  background: none;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.55,0,.1,1);
}
img {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* ===== BRAND COLORS & VARIABLES ===== */
:root {
  --primary: #263158;
  --secondary: #E74D22;
  --accent: #FFFFFF;
  --background: #f5f7fa;
  --text: #263158;
  --muted: #b9bed4;
  --shadow: 0 4px 28px 0 rgba(38,49,88,0.09);
  --radius: 14px;
  --radius-small: 6px;
  --gap-big: 32px;
  --gap: 24px;
  --gap-small: 16px;
  --gap-mini: 8px;
  --transition-fast: 0.15s cubic-bezier(.55,0,.1,1);
  --transition-med: 0.32s cubic-bezier(.55,0,.1,1);
}

/* ===== TYPOGRAPHY ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: var(--gap-small);
}
h1 {
  font-size: 2.7rem;
  margin-bottom: var(--gap);
  text-transform: uppercase;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: var(--gap-small);
  line-height: 1.15;
}
h3 {
  font-size: 1.34rem;
  font-weight: 600;
  margin-bottom: var(--gap-mini);
  text-transform: uppercase;
}
h4 {
  font-size: 1.18rem;
  margin-bottom: var(--gap-mini);
}
p, ul, ol, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}
p:last-child, ul:last-child, ol:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 600;
}

/* ========== LAYOUT GENERAL ========== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

/* ====== NAVIGATION & HEADER ====== */
header {
  width: 100%;
  background: var(--accent);
  border-bottom: 2px solid var(--primary);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  height: 88px;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: var(--gap-small);
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: 0.02em;
  border-radius: var(--radius-small);
  transition: color var(--transition-fast), background var(--transition-fast);
  padding: 4px 12px;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: #fff;
}
nav .btn-primary {
  margin-left: var(--gap-mini);
}

/* ===== BUTTONS & INTERACTIVE ELEM ===== */
.btn-primary, .btn-primary:visited {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  border: none;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--secondary);
  color: #fff;
  transition: background var(--transition-med), color var(--transition-med), box-shadow var(--transition-med);
  box-shadow: 0 2px 8px 0 rgba(231,77,34,0.08);
  outline: 0;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #be3918;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(231,77,34,0.14);
}

/* ====== HERO SECTION ====== */
.hero {
  min-height: 420px;
  background: linear-gradient(120deg, #fff 90%, #2631580A 100%);
  display: flex;
  align-items: center;
  border-radius: 0 0 var(--radius) var(--radius);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 650px;
  background: #fff;
  border-radius: var(--radius);
  padding: 54px 32px;
  box-shadow: var(--shadow);
  align-items: center;
  gap: 32px;
}
.hero .btn-primary {
  margin-top: 8px;
}

/* ========== FEATURES & CARDS ========== */
.features ul,
.features ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
  flex-direction: row;
}
.features li {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-small);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 28px;
  margin-bottom: 0;
  flex: 1 1 230px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px 0 rgba(38,49,88,0.09);
  position: relative;
}
.features li::before {
  content: '';
  display: block;
  width: 36px;
  height: 6px;
  border-radius: 4px;
  background: var(--secondary);
  margin-bottom: 12px;
}

.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: space-between;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px 28px 24px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 220px;
  transition: box-shadow var(--transition-med), transform var(--transition-fast);
  margin-bottom: 20px;
  box-sizing: border-box;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(38,49,88,0.15);
  transform: translateY(-3px) scale(1.015);
}
.service-card h2, .service-card h3 {
  font-size: 1.28rem;
  margin-bottom: 8px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.service-card span, .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: #fff;
  border-radius: 5px;
  padding: 7px 17px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ====== TESTIMONIALS ====== */
.testimonials .container {
  margin-bottom: 0;
}
.testimonials .content-wrapper {
  gap: var(--gap-small);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  min-width: 220px;
  max-width: 570px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.09rem;
  margin-bottom: 8px;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

/* ===== SECTION SPACING/ALIGNMENT ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* ===== TRAINER PROFILES (trenerzy) ===== */
.trainer-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.trainer-profile {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  min-width: 200px;
  max-width: 320px;
}
.trainer-profile img {
  width: 63px;
  height: 63px;
  margin-bottom: 8px;
}
.trainer-profile h2 {
  margin: 0 0 8px 0;
  color: var(--secondary);
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* ===== SCHEDULE TABLE (grafik-zajec) ===== */
.schedule-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 20px 0 36px 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.schedule-table th,
.schedule-table td {
  text-align: left;
  padding: 14px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid #e5e7ed;
}
.schedule-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: var(--secondary);
  font-weight: 700;
  background: #f8f8fc;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}

/* ===== BLOG STYLES ===== */
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.post-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition-fast);
}
.post-item:hover {
  box-shadow: 0 4px 22px 0 rgba(38,49,88,0.15);
}
.post-meta {
  color: var(--secondary);
  font-size: 0.93rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 2px;
}
.featured-post {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 22px;
}
.featured-post h3 {
  color: #fff;
  margin-bottom: 7px;
}

/* ===== CTA SECTIONS ===== */
.cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 60px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta .btn-primary {
  margin-top: 10px;
  box-shadow: 0 2px 16px 0 rgba(231,77,34,0.3);
}

/* ===== CONTACT / MAP ===== */
.contact-details {
  margin-bottom: var(--gap);
}
.map {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  margin-top: 12px;
  min-width: 220px;
}
.map img {
  width: 64px;
  height: 64px;
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background: #263158;
  color: #fff;
  padding: 42px 0;
  margin-top: 50px;
  border-radius: var(--radius) var(--radius) 0 0;
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--gap-big);
}
footer img {
  height: 44px;
  margin-bottom: 18px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 0;
  background: none;
}
footer nav a:hover {
  text-decoration: underline;
  color: var(--secondary);
}
footer address {
  color: #e5e7ed;
  font-size: 1rem;
  line-height: 1.6;
  font-style: normal;
  max-width: 350px;
}

/* =========== MOBILE BURGER MENU =========== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 110;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2.1rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px 0 rgba(231,77,34,0.06);
  transition: background var(--transition-fast);
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #be3918;
}
/* mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #263158ee;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.55,0,.1,1);
  display: flex;
  flex-direction: column;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 34px 0 0;
  font-size: 2.1rem;
  background: none;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition-fast);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 56px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: #fff;
  padding: 9px 0;
  border-radius: 8px;
  min-width: 180px;
  text-align: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -2px 18px 0 rgba(38,49,88,0.11);
  border-top: 2px solid var(--primary);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 16px 18px 16px;
  gap: 18px;
  animation: cookieSlideIn 0.36s cubic-bezier(.55,0,.1,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 3px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.cookie-btn {
  border-radius: 11px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 23px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  background: var(--primary);
  color: #fff;
  margin: 0 4px;
  transition: background var(--transition-fast);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-btn.settings {
  background: var(--secondary);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 0 44px 0 rgba(38,49,88,0.25);
  z-index: 3000;
  min-width: 340px;
  max-width: 94vw;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  animation: cookieModalIn 0.27s cubic-bezier(.55,0,.1,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%,calc(-60%)) scale(0.97); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--secondary);
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal .cookie-actions {
  margin-top: 11px;
  gap: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 22px;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
/* Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(38,49,88,0.38);
  z-index: 2999;
  animation: cookieOverlayIn 0.2s cubic-bezier(.55,0,.1,1);
}
@keyframes cookieOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =========== MEDIA QUERIES (RESPONSIVE) =========== */
@media (max-width: 1120px) {
  .service-cards, .service-list, .card-container, .post-list, .features ul {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .hero .content-wrapper {
    padding: 38px 16px;
  }
  .features li {
    font-size: 0.97rem;
    padding: 16px 16px;
  }
}
@media (max-width: 768px) {
  /* Nav & menu adjustments */
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  /* Section gap, layout condense */
  .section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 19px;
  }
  .hero {
    padding-top: 16px;
    padding-bottom: 18px;
    min-height: 280px;
  }
  /* Flex containers -> column */
  .service-cards, .service-list, .card-container, .post-list {
    flex-direction: column;
    gap: 18px;
  }
  .features ul {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .map {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    min-width: unset;
    max-width: 100%;
    gap: 14px;
  }
  .trainer-profiles {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer .container, footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .section, .cta {
    padding: 15px 3px;
  }
  .service-card, .post-item, .featured-post {
    padding: 13px 7px;
  }
  .testimonial-card {
    padding: 9px;
  }
  footer {
    padding: 19px 0;
    font-size: 0.95rem;
  }
  .mobile-menu-close {
    margin: 8px 12px 0 0;
    font-size: 1.5rem;
    width: 38px;
    height: 38px;
  }
  .mobile-menu {
    padding-left: 0;
    padding-right: 0;
  }
  .cookie-modal {
    min-width: unset;
    padding: 21px 7px 18px 7px;
  }
}

/* =========== GEOMETRIC / STRUCTURED EFFECTS =========== */
.section, .card, .service-card, .post-item, .featured-post, .testimonial-card, .trainer-profile {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid #e8eaf3;
}
h1, h2, h3, h4, nav a, .btn-primary, .service-card h2, .service-card h3, .features li, .featured-post h3, .post-item h3, .mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
/* Angular edge on accent cards */
.service-card {
  border-bottom-left-radius: 0;
  border-top-right-radius: 36px;
  border-top-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  border: 2px solid var(--secondary);
}
.features li {
  border-bottom-right-radius: 22px;
  border-top-left-radius: 22px;
}
.cta, .featured-post {
  border-top-right-radius: 44px;
  border-bottom-left-radius: 32px;
}
.hero .content-wrapper {
  border-bottom-right-radius: 28px;
  border-top-left-radius: 32px;
}

/* Subtle geometric patterns (SVG or background shapes) could be applied via background images for a stronger design if given, here omitted for CSS brevity */

/* =========== MICRO-INTERACTIONS =========== */
.btn-primary, .cookie-btn {
  transition: background var(--transition-med), color var(--transition-med), box-shadow var(--transition-fast), transform var(--transition-fast);
}
.btn-primary:active, .cookie-btn:active {
  transform: scale(0.98);
}
.service-card:hover, .service-card:focus-within,
.card:hover, .post-item:hover, .featured-post:hover {
  box-shadow: 0 12px 40px 0 rgba(38,49,88,0.15);
  transform: translateY(-3px) scale(1.02);
}
.section {
  transition: box-shadow 0.17s cubic-bezier(.55,0,.1,1);
}
.section:hover {
  box-shadow: 0 6px 18px 0 rgba(38,49,88,.15);
}

/* ========== FORMS (for Kontakt page etc.) ========== */
input[type='text'], input[type='email'], textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border-radius: var(--radius-small);
  border: 1.5px solid #b9bed4;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #fafafc;
  color: var(--text);
  transition: border 0.16s;
}
input:focus, textarea:focus {
  border-color: var(--secondary);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  display: inline-block;
}

/* ========== PRINT/BROWSER FALLBACKS ========== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  body { background: #fff; }
}
