/* ==================================================
   Vintage Retro CSS for Starwave Poolpflege Website
   ================================================== */

/* === 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;
}
/* 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-color: #FDF5ED;
  color: #231E17;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
:focus {
  outline: 2px solid #3E2E23;
  outline-offset: 2px;
}

/* === Vintage Retro Color Palette (inspired by brand + retro tint) === */
:root {
  --primary: #22658A;
  --primary-dark: #16394D;
  --secondary: #B45438;
  --accent: #EEF5FA;
  --offwhite: #FDF5ED;
  --beige: #F8EACC;
  --brown: #3E2E23;
  --yellow: #FFC96C;
  --green: #89B070;
  --muted-blue: #98B6C8;
  --muted-gray: #E9E0D1;
  --shadow: rgba(36,32,26,0.16);
}

/* === Fonts - Retro/Vintage Choices === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Vast+Shadow&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--offwhite);
  color: var(--brown);
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Vast Shadow', Georgia, serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
  text-shadow: 2px 2px 0 #FFC96C, 0 2px var(--muted-blue);
}
h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 18px;
  text-shadow: 1px 2px 0 #F8EACC;
}
h3 {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 12px;
}
p, ul, ol, table, .text-section, .contact-short {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--brown);
}
strong {
  font-weight: 700;
}

/* Standard links & underlines with retro color */
a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--secondary);
  text-decoration: none;
}

/* === Layout Containers === */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  background: var(--beige);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--shadow);
  padding: 32px 24px;
  margin-bottom: 16px;
}

.text-section {
  background: var(--accent);
  border-left: 8px solid var(--yellow);
  border-radius: 12px;
  padding: 28px 20px;
  margin-bottom: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--beige);
  border: 2px solid var(--primary);
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--shadow);
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
}
.card:hover {
  transform: translateY(-4px) scale(1.02) rotate(-1deg);
  box-shadow: 0 4px 24px var(--shadow);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 16px;
}

/* === Features & Service Items (Flexbox only!) === */
/*.feature-grid, .service-list, .content-grid replaced by correct classes*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  border: 2px dashed var(--secondary);
  padding: 26px 20px 24px 20px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 300px;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  filter: sepia(50%) contrast(110%);
}
.feature-item h3 {
  font-family: 'Montserrat', 'Vast Shadow', Georgia, serif;
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.feature-item p {
  font-size: 0.97rem;
  color: var(--primary-dark);
}
.feature-item:hover {
  background: var(--yellow);
  box-shadow: 0 4px 20px var(--shadow);
  border-style: solid;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.service-item {
  background: var(--beige);
  border: 2px solid var(--primary);
  border-radius: 10px;
  flex: 1 1 240px;
  min-width: 225px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px;
  box-shadow: 0 2px 8px var(--shadow);
  gap: 10px;
}
.service-item h3 {
  color: var(--secondary);
  font-size: 1.1rem;
}
.price {
  font-family: 'Montserrat', 'Vast Shadow', Georgia, serif;
  font-size: 1.13rem;
  color: var(--green);
  background: var(--muted-gray);
  padding: 3px 10px;
  border-radius: 7px;
  letter-spacing: 1px;
  margin-top: 5px;
  box-shadow: 1px 1px 4px #eadab6;
}
.service-item:hover {
  background: var(--yellow);
  border-color: var(--secondary);
  box-shadow: 0 3px 14px var(--shadow);
}

/* === Testimonials Flex Layout === */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F8EACC;
  border: 2px solid var(--primary-dark);
  border-radius: 14px;
  box-shadow: 0 2px 16px var(--shadow);
  padding: 20px 24px;
  min-width: 260px;
  max-width: 350px;
  margin-bottom: 20px;
  color: #321D14;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.testimonial-card p {
  color: #382417;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.7;
}
.testimonial-card span {
  font-family: 'Montserrat', serif;
  font-size: 0.97rem;
  color: var(--secondary);
  letter-spacing: 0.3px;
}
.testimonial-card:hover {
  background: var(--yellow);
  transform: translateY(-2px) scale(1.02);
}

/* === Project Summaries (Referenzen/Projekte) === */
.project-summaries {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.project-item {
  background: var(--muted-blue);
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--shadow);
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 320px;
  padding: 22px 16px;
  color: var(--brown);
}
.project-item h3 {
  color: var(--primary-dark);
  font-size: 1.11rem;
  margin-bottom: 7px;
}

/* FAQ Accordion (no JS style, just retro blocks) */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.faq-item {
  background: var(--accent);
  border: 2px solid var(--primary-dark);
  border-radius: 10px;
  padding: 18px 16px;
  box-shadow: 0 1px 6px var(--shadow);
  transition: background 0.15s, box-shadow 0.15s;
}
.faq-item h3 {
  font-size: 1.06rem;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 0.98rem;
}
.faq-item:hover {
  background: var(--yellow);
  box-shadow: 0 3px 12px var(--shadow);
}

.contact-short, .contact-info {
  background: var(--muted-gray);
  border-radius: 10px;
  padding: 18px 12px;
  margin-top: 18px;
}
.contact-short h3, .contact-info h2 {
  color: var(--secondary);
  margin-bottom: 10px;
}
.contact-short ul, .contact-info ul {
  padding-left: 16px;
  margin-bottom: 6px;
}
.contact-short li, .contact-info li {
  margin-bottom: 7px;
}

.included-services {
  background: var(--accent);
  border-radius: 10px;
  padding: 16px 14px 8px 18px;
  border: 2px dashed var(--yellow);
  margin-top: 18px;
}

.pricing-table {
  width: 100%;
  background: var(--beige);
  border-radius: 10px;
  box-shadow: 0 1px 10px var(--shadow);
  margin-bottom: 24px;
  font-size: 1.03rem;
}
.pricing-table th, .pricing-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--muted-blue);
  text-align: left;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  font-family: 'Montserrat', serif;
  font-size: 1.03rem;
  letter-spacing: 0.8px;
}
.pricing-table td {
  color: var(--brown);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* =================== CTA Styles =================== */
.cta-main, .cta-nav, .contact-prompt a {
  display: inline-block;
  font-family: 'Montserrat', 'Vast Shadow', serif;
  font-weight: 700;
  letter-spacing: 1.1px;
  font-size: 1.14rem;
  background: var(--secondary);
  color: #fff;
  padding: 13px 30px;
  border-radius: 30px;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.18s, transform 0.16s, box-shadow 0.16s;
  margin-top: 14px;
  border: 3px solid var(--primary);
  cursor: pointer;
  text-align: center;
}
.cta-main:hover, .cta-main:focus, .cta-nav:hover, .cta-nav:focus, .contact-prompt a:hover, .contact-prompt a:focus {
  background: var(--yellow);
  color: var(--secondary);
  transform: scale(1.06) rotate(-1deg);
  border-color: var(--secondary);
}
.cta-nav {
  padding: 8px 17px;
  font-size: 1rem;
  border-radius: 18px;
  margin-left: 18px;
  margin-top: 0;
}
/* mobile nav cta on own line: will adjust in responsive */

/* =================== Main Navigation =================== */
header {
  background: var(--primary);
  box-shadow: 0 2px 12px var(--shadow);
  position: relative;
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  padding: 14px 0;
  width: 100%;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Vast Shadow', serif;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 7px 12px;
  border-radius: 13px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--yellow);
  color: var(--brown);
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 12px;
  filter: drop-shadow(2px 2px 0 #ffcf85);
}

/* Hamburger menu btn (mobile) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 41;
  background: var(--yellow);
  color: var(--secondary);
  border-radius: 8px;
  font-size: 2.0rem;
  padding: 6px 12px;
  border: 3px solid var(--primary-dark);
  cursor: pointer;
  box-shadow: 1px 2px 10px var(--shadow);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active {
  background: var(--secondary);
  color: #fff;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--offwhite);
  box-shadow: 0 0 30px #47392986;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 300px;
  max-width: 90vw;
  padding: 36px 25px 20px 24px;
  z-index: 1002;
  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.8,0,.73,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.7rem;
  color: var(--secondary);
  background: var(--yellow);
  border-radius: 10px;
  padding: 5px 10px;
  border: 3px solid var(--primary-dark);
  z-index: 1200;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:active {
  background: var(--secondary);
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  margin-top: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Vast Shadow', serif;
  font-size: 1.1rem;
  color: var(--primary-dark);
  background: transparent;
  padding: 11px 0 11px 4px;
  border-radius: 10px;
  border-left: 4px solid var(--yellow);
  transition: background 0.18s, color 0.19s, border 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--yellow);
  color: var(--secondary);
  border-left: 4px solid var(--primary-dark);
}

/* Overlay for mobile menu (optional) */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #0007;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.mobile-menu.open ~ .mobile-menu-backdrop {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* =================== Footer =================== */
footer {
  background: var(--secondary);
  color: #fff;
  text-align: center;
  padding: 32px 16px 20px 16px;
  position: relative;
  z-index: 3;
  border-top: 8px dotted #EEE2D2;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.03rem;
  background: transparent;
  padding: 6px 9px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--yellow);
  color: var(--secondary);
}
.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.footer-logo img {
  width: 40px;
  height: 40px;
  filter: sepia(40%) contrast(110%);
}
footer p {
  font-size: 0.99rem;
  color: #F9F5EC;
  margin-top: 12px;
}

/* ========== Cookie Consent Banner & Modal =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6000;
  background: var(--brown);
  color: #fff;
  box-shadow: 0 -8px 22px #41280F30;
  padding: 22px 16px 20px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  border-top: 7px solid var(--yellow);
  animation: bannerIn 0.55s cubic-bezier(.67,.06,0,1);
}
@keyframes bannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner .cookie-btn {
  font-family: 'Montserrat', 'Vast Shadow', serif;
  font-weight: 700;
  padding: 8px 19px;
  margin: 0 6px;
  border-radius: 18px;
  font-size: 1.02rem;
  cursor: pointer;
  border: 3px solid var(--yellow);
  background: var(--yellow);
  color: var(--secondary);
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.16s, color 0.15s, transform 0.15s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--green);
  color: #fff;
  border-color: var(--primary-dark);
}
.cookie-banner .cookie-btn.reject {
  background: #fff3e0;
  color: var(--brown);
  border-color: var(--secondary);
}
.cookie-banner .cookie-btn:active {
  background: var(--secondary);
  color: #fff;
  transform: scale(0.96);
}

.cookie-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: #22130588;
  z-index: 7000;
}
.cookie-modal.open + .cookie-modal-backdrop {
  display: block;
}
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  margin: auto;
  z-index: 7100;
  background: var(--beige);
  color: var(--brown);
  border-radius: 13px;
  box-shadow: 0 26px 100px #38210a55, 0 2px 12px var(--shadow);
  max-width: 370px;
  width: 93vw;
  min-height: 320px;
  padding: 38px 24px 28px 24px;
  animation: modalIn 0.44s cubic-bezier(.71,.03,0,1);
}
@keyframes modalIn {
  from { transform: scale(0.84) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal.open {
  display: block;
}
.cookie-modal h2 {
  margin-top: 0;
  color: var(--secondary);
  margin-bottom: 10px;
  text-shadow: none;
}
.cookie-category {
  margin: 13px 0 10px 0;
  font-size: 1rem;
}
.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}
.cookie-toggle input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  border-radius: 6px;
}
.cookie-modal .modal-btn-row {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 7px 16px;
}
/* Modal close btn */
.cookie-modal .cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.38rem;
  color: var(--secondary);
  background: var(--yellow);
  border-radius: 7px;
  padding: 2px 9px 3px 9px;
  border: 2px solid var(--primary-dark);
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  background: var(--secondary);
  color: #fff;
}

/* =================== Utilities =================== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px !important; }
.hidden { display: none !important; }

/* ====================== Responsive Styles ======================= */
@media (max-width: 1200px) {
  .container { max-width: 99vw; }
  .feature-item, .service-item, .project-item, .testimonial-card {
    min-width: 200px;
    max-width: 99vw;
  }
}

@media (max-width: 900px) {
  header { min-height: 84px; }
  .main-nav {
    gap: 9px;
    font-size: 0.99rem;
    padding: 12px 0;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  /* Adjust page paddings */
  .section {
    padding: 24px 8px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    padding: 20px 8px;
  }
  .text-section {
    padding: 20px 10px;
  }
  .feature-grid, .service-list, .testimonial-grid, .project-summaries, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .service-item, .project-item, .testimonial-card {
    max-width: 98vw;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer {
    font-size: 0.97rem;
    padding: 24px 6px 12px 6px;
  }
}
@media (max-width: 480px) {
  html { font-size: 15px; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .cookie-modal {
    padding: 20px 6px 12px 8px;
    max-width: 99vw;
  }
}

/* ====== Prevent Overlap / Spacing Fixes ====== */
section, .section, .feature-grid, .testimonial-grid, .contact-info, .content-wrapper, .card-container, .service-list, .faq-list, .project-summaries {
  margin-bottom: 32px;
}
section:last-child,
.section:last-child {
  margin-bottom: 0 !important;
}
section + section, .section + .section {
  margin-top: 18px;
}

.card-container > *:not(:last-child),
.feature-grid > *:not(:last-child),
.service-list > *:not(:last-child),
.testimonial-grid > *:not(:last-child),
.project-summaries > *:not(:last-child) {
  margin-right: 0;
  margin-bottom: 0;
}

/* ========== OL/UL Numbering, Retro Bullets ========== */
ul {
  list-style: disc inside;
  margin-bottom: 16px;
}
ol {
  list-style: decimal inside;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-left: 18px;
  margin-bottom: 8px;
  font-size: 1rem;
}
ul li::marker {
  color: var(--secondary);
}
ol li::marker {
  color: var(--primary);
}

/* ========== INPUTS & FORMS ========== */
input[type=text], input[type=email], textarea {
  display: block;
  width: 100%;
  background: #fff;
  border: 2px solid var(--muted-blue);
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  transition: border 0.17s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: var(--secondary);
}

button:not(.cookie-btn):not(.mobile-menu-toggle):not(.mobile-menu-close),
input[type=submit] {
  font-family: 'Montserrat', 'Vast Shadow', serif;
  background: var(--yellow);
  color: var(--secondary);
  border-radius: 16px;
  font-size: 1.06rem;
  font-weight: bold;
  border: 2px solid var(--primary-dark);
  padding: 10px 24px;
  cursor: pointer;
  box-shadow: 1px 2px 10px var(--shadow);
  margin-top: 10px;
  transition: background 0.14s, color 0.2s, transform 0.16s;
}
button:hover, button:focus, input[type=submit]:hover {
  background: var(--secondary);
  color: #fff;
  transform: scale(1.04) rotate(-1deg);
}

/* Hide visual decorations on print */
@media print {
  header, nav, footer, .cta-main, .cta-nav, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .container { max-width: none; }
  section, .section { padding: 0 !important; }
}
