/*--- 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,*:before,*:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #131313;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img, picture {
  max-width: 100%;
  display: block;
}
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button,input,select,textarea { font-family: inherit; }

/*--- TYPOGRAPHY ---*/
h1, h2, h3, h4, h5, h6 {
  color: #101010;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, li, ul, ol, blockquote {
  font-size: 1rem;
  color: #272727;
}
strong {
  font-weight: 700;
  color: #161616;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 18px;
  padding-left: 16px;
}

/*--- BRAND COLORS (RESTRICTED MONOCHROME) ---*/
:root {
  --color-bg: #fff;
  --color-fg: #101015;
  --color-grey-900: #22242A;
  --color-grey-700: #43434a;
  --color-grey-400: #8e8e95;
  --color-grey-100: #F8F9FA;
  --color-primary: #101015; /* dark for monochrome */
  --color-secondary: #43434a;
  --color-accent: #F2EDE7; /* subtle accent as off-white */
  --color-black: #000;
  --color-white: #fff;
  --color-border: #E6E7EB;
  --shadow: 0 3px 16px 0 rgba(40,40,42,0.07);
}

body {
  background: var(--color-bg);
  color: var(--color-fg);
}

/*--- CONTAINER + LAYOUT ---*/
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: var(--color-bg);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg);
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin-bottom: 12px;
}

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

.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.22s;
}
.feature-grid > div:hover {
  box-shadow: 0 5px 32px 0 rgba(34,34,40,0.14);
}

.card-container {
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  border: 1px solid var(--color-border);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.topic-cards, .article-list, .usp-list {
  margin-top: 18px;
}
.topic-cards ul, .article-list ul, .usp-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 0;
}
.topic-cards li, .article-list li, .usp-list li {
  background: var(--color-grey-100);
  border-radius: 10px;
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  color: var(--color-grey-700);
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.method-box, .faq-box, .info-box, .address-box, .opening-hours, .fact-box {
  background: var(--color-grey-100);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*--- BUTTONS & LINKS ---*/
.cta, .newsletter input[type=submit], .cookie-btn, .cookie-settings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-grey-900);
  color: var(--color-white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 7px;
  padding: 13px 32px;
  cursor: pointer;
  letter-spacing: 0.04em;
  margin-top: 8px;
  box-shadow: 0 2px 8px 0 rgba(40,40,42,0.13);
  transition: background 0.18s, color 0.22s, box-shadow 0.18s;
}
.cta:hover, .newsletter input[type=submit]:hover, .cookie-btn:hover, .cookie-settings-btn:hover {
  background: #000;
  color: #fff;
  box-shadow: 0 4px 28px 0 rgba(34,34,34,0.23);
}
.main-nav .cta {
  margin-left: 20px;
}

.main-nav a, .footer-nav a, .mobile-nav a {
  color: var(--color-grey-900);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 9px;
  transition: color 0.18s;
}
.main-nav a:hover, .footer-nav a:hover, .mobile-nav a:hover {
  color: #000;
}
.footer-nav a {
  font-size: .95rem;
}

/*--- HEADER & NAVIGATION ---*/
header {
  background: #232324;
  color: #fff;
  box-shadow: 0 1px 6px 0 rgba(0,0,0,0.13);
  padding-top: 0px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 8px;
}
.logo {
  display: flex;
  align-items: center;
  height: 64px;
}
.logo img {
  height: 44px;
  width: auto;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav a {
  color: #fff;
  opacity: 0.91;
}
.main-nav .cta {
  background: #fff;
  color: #232324;
  border-radius: 7px;
  margin-left: 18px;
  font-weight: 700;
  border: 1.5px solid #fff;
  transition: background 0.18s, color 0.18s, box-shadow 0.14s, border-color 0.14s;
}
.main-nav .cta:hover {
  background: #232324;
  color: #fff;
  border-color: #fff;
}

/*--- MOBILE NAV ---*/
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 2.1rem;
  color: #fff;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  z-index: 1101;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  color: #aaa;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,30,31,0.97);
  z-index: 1699;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.51,.03,.52,1.07);
  width: 100vw;
  height: 100vh;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 20px 25px;
  cursor: pointer;
  z-index: 1700;
  align-self: flex-end;
  margin-top: 8px;
  transition: color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #adb5bd;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  align-items: flex-start;
  margin-top: 30px;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  padding: 7px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.18s, color 0.16s;
}
.mobile-nav a:hover {
  background: #fff2;
  color: #fff;
}
.mobile-nav a.cta {
  background: #fff;
  color: #232324;
  font-weight: 700;
  padding: 10px 30px;
  margin-top: 28px;
  font-size: 1.1rem;
  border-radius: 6px;
  transition: background .18s, color .16s;
}
.mobile-nav a.cta:hover {
  background: #232324;
  color: #fff;
  border: 1px solid #fff;
}

/*--- MAIN & SECTION SPACING ---*/
main {
  background: var(--color-bg);
  padding-bottom: 60px;
}
section:last-child { margin-bottom: 0; }

/*--- TESTIMONIALS ---*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  font-style: italic;
  box-shadow: 0 2px 10px 0 rgba(25,25,28,0.07);
}
.testimonial-card p {
  color: #191919;
  font-size: 1.08rem;
  margin-bottom: 2px;
}
.testimonial-card span {
  color: #5a5a60;
  font-size: .96rem;
  font-style: normal;
  font-family: 'Montserrat';
}

/* visual separator for cards */
.testimonial-card:not(:last-child) {
  margin-bottom: 24px;
}

/*--- CARDS ---*/
.card {
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

/*--- FORM ELEMENTS ---*/
input, textarea, select {
  background: #fff;
  border: 1.1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1rem;
  color: #232324;
  margin-bottom: 14px;
  margin-top: 4px;
  box-shadow: 0 1px 4px 0 rgba(20,20,22,0.04);
  outline: none;
  transition: border-color 0.14s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #232324;
  box-shadow: 0 2px 12px 0 rgba(44,44,44,0.12);
}

/* Newsletter */
.newsletter input[type=email] {
  margin-right: 16px;
  min-width: 230px;
}
.newsletter input[type=submit] {
  background: #22242A;
  color: #fff;
  border-radius: 8px;
  border: none;
}

/*--- FOOTER ---*/
footer {
  background: #fff;
  color: #232324;
  font-size: 1rem;
  padding: 32px 0;
  position: relative;
}
footer .container {
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.footer-nav {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #232324;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-nav a {
  color: #232324;
  padding: 0 3px;
  text-decoration: underline dotted;
}
.footer-nav a:hover {
  color: #232324;
}
.legal-info {
  color: #232324;
  font-size: .96rem;
}
.newsletter {
  margin-top: 4px;
}


/*--- Cookie Consent Banner ---*/
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1722;
  width: 100vw;
  background: #fff;
  color: #fff;
  box-shadow: 0 -2px 18px 0 rgba(30,30,31,0.18);
  padding: 22px 16px 26px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.35s;
}
.cookie-consent.hide {
  transform: translateY(120%);
}
.cookie-content {
  max-width: 750px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #fff;
}
.cookie-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  min-width: 140px;
  min-height: 45px;
  font-size: 1.05rem;
}
.cookie-btn.accept {
  background: #fff;
  color: #181818;
  border: 1px solid #fff;
}
.cookie-btn.accept:hover { background: #101015; color: #fff; border-color: #fff; }
.cookie-btn.reject {
  background: transparent;
  border: 1.5px solid #fff;
  color: #181818;
}
.cookie-btn.reject:hover { background: #fff; color: #101015; }
.cookie-settings-btn {
  background: #232323;
  color: #fff;
  border: 1.5px solid #fff;
  font-weight: 500;
}
.cookie-settings-btn:hover {
  color: #191919;
  background: #fff;
}

/* Cookie Modal (Preferences) */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1800;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,32,32,0.68);
  justify-content: center;
  align-items: center;
  width: 100vw; height: 100vh;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn .36s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #1a1a1e;
  border-radius: 16px;
  box-shadow: 0 7px 38px 0 rgba(0,0,0,0.19);
  min-width: 320px;
  max-width: 98vw;
  padding: 38px 38px 28px;
}
.cookie-modal-content h3 { color: #24242A; font-size: 1.3rem; margin-bottom: 10px; }
.cookie-modal-list {
  margin: 15px 0;
}
.cookie-modal-list label {
  font-size: 1rem;
  color: #232324;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}

/* Essential always enabled */
.cookie-modal-list input[type="checkbox"]:disabled + span {
  color: #bababa;
  text-decoration: underline dotted;
}

/*--- MICRO-INTERACTIONS & TRANSITIONS ---*/
a, button, input, .cta, .main-nav a, .mobile-nav a, .cookie-btn, .cookie-settings-btn {
  transition: color 0.17s, background 0.18s, border-color 0.16s;
}

/*--- RESPONSIVE DESIGN ---*/
@media (max-width: 1050px) {
  .container { max-width: 99vw; }
}
@media (max-width: 900px) {
  .feature-grid > div { min-width: 150px; padding: 18px; }
  .container { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.5rem; }
  section, .section {
    padding: 30px 0;
    margin-bottom: 40px;
  }
  .container { max-width: 100vw; padding-left: 5vw; padding-right: 5vw; }
  .content-wrapper { gap: 16px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
}
@media (max-width: 650px) {
  .feature-grid, .card-container, .content-grid, .topic-cards ul, .article-list ul, .usp-list ul {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper { gap: 12px; }
  .text-image-section { flex-direction: column; gap: 16px; }
  .newsletter input[type=email] { min-width: 170px; }
  .cookie-modal-content { padding: 25px 7vw 16px; }
}
@media (max-width: 460px) {
  .logo img { height: 32px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  .footer-nav { font-size: 0.92rem; }
  .cookie-content { max-width: 98vw; }
  .cookie-modal-content { min-width: 95vw; padding: 18px 6vw; }
}

/*--- COLORED ICONS ADAPTATION IN MONOCHROME STYLE ---*/
.feature-grid img, .text-section img, .topic-cards img, .article-list img, .address-box img, .opening-hours img {
  filter: grayscale(1) brightness(0.22) contrast(1.35);
  max-height: 34px;
  margin-bottom: 10px;
}

/* Separators & List Styles (Monochrome) */
h2:not(:first-child) { border-top: 1.5px solid var(--color-border); padding-top: 19px; margin-top: 12px; }

/*--- SHADOWS & EFFECTS FOR MONOCHROME SOHPHISTICATED AESTHETIC ---*/
.feature-grid > div, .card, .testimonial-card, .method-box, .faq-box, .info-box {
  box-shadow: 0 2px 16px 0 rgba(30,30,30,0.10);
}

/*--- UTILS ---*/
.no-scroll { overflow: hidden !important; }

/*--- Hide visually but keep accessible ---*/
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
