/* === 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,
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;
  font-size: 16px;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #161616;
  line-height: 1.7;
  min-height: 100vh;
  font-weight: 400;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #161616;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7B1534;
  text-underline-offset: 2px;
  text-decoration: underline;
}
button, .cta-btn {
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  border: none;
  outline: none;
  background: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #191919;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 0.6em;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.2rem; font-weight: 700; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p, ul, ol, address { font-size: 1rem; margin-bottom: 0.7em; }
strong { font-weight: 700; }
blockquote {
  font-family: 'Playfair Display', serif;
  color: #222;
  font-size: 1.15rem;
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 0.5em 0;
}
::-webkit-input-placeholder { color: #7e7e7e; }
:-ms-input-placeholder { color: #7e7e7e; }
::placeholder { color: #7e7e7e; }

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(25,25,25,0.07), 0 1.5px 6px rgba(123,21,52,0.04);
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  border-bottom: 1.5px solid #E0E0E0;
  box-shadow: 0 2px 6px rgba(25,25,25,0.04);
  z-index: 101;
  position: sticky;
  top: 0;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 20px 12px 20px;
  min-height: 67px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #414141;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #7B1534;
}
.cta-btn {
  background: #191919;
  color: #fff;
  border-radius: 26px;
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 12px 32px;
  box-shadow: 0 2px 8px rgba(25,25,25,0.08);
  margin-left: 20px;
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
  border: 1.5px solid #222;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #7B1534;
  border-color: #7B1534;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 16px rgba(25,25,25,0.16);
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 50%;
  padding: 10px 14px;
  font-size: 2rem;
  color: #191919;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1.5px 4.5px rgba(25,25,25,0.08);
  margin-left: 20px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #191919;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.89,-0.07,.23,1.04);
  box-shadow: -10px 0 24px 0 rgba(30,30,30,0.10);
  padding: 24px 24px 48px 24px;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0); 
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: #222;
  align-self: flex-end;
  margin-bottom: 24px;
  border: none;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #7B1534;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.12rem;
  font-weight: 500;
  color: #222;
  padding: 13px 0 13px 0;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #eee;
  transition: color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #7B1534;
}

/* === HERO SECTION === */
.hero {
  background: #fff;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  padding: 0;
}
.hero .container {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 0 20px;
}
.hero .content-wrapper {
  gap: 20px;
  align-items: flex-start;
  max-width: 600px;
  margin: 0 auto;
  padding: 70px 0 40px 0;
}
.hero h1 {
  font-size: 2.6rem;
  color: #191919;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.1em;
}
.hero .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #3f3f3f;
  margin-bottom: 0.2em;
  font-weight: 400;
}

/* === FEATURE GRID & GENERIC FLEX WRAPPERS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 36px 0 0 0;
}
.feature-grid li {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.08rem;
  color: #191919;
  background: #f8f8f8;
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: 0 2px 8px rgba(30,30,30,0.04);
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  min-width: 190px;
}
.feature-grid img {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1.5px solid #E6E6E6;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(35,35,35,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(30,30,30,0.13);
  transform: translateY(-4px) scale(1.01);
  border-color: #7B1534;
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.03rem;
  color: #222;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1.5px solid #DDDDDD;
  border-radius: 8px;
  background: #fafafa;
  font-size: 0.97rem;
  margin-top: 6px;
}

/* === SERVICE LIST === */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 24px 0 14px 0;
}
.service-list li {
  padding: 18px 22px;
  background: #fafafa;
  border-radius: 10px;
  border: 1.2px solid #e5e5e5;
  font-size: 1.07rem;
  color: #292929;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  box-shadow: 0 2px 6px rgba(32,32,32,0.03);
  transition: border 0.17s, background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-list li strong {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #191919;
  font-size: 1.09rem;
  margin-bottom: 4px;
}
.service-list li > div > span {
  font-weight: 600;
  color: #7B1534;
  font-size: 0.98rem;
  padding-left: 5px;
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #ededed;
  box-shadow: 0 4px 18px rgba(120,120,120,0.07);
  position: relative;
  transition: box-shadow 0.2s, border 0.19s;
  max-width: 760px;
}
.testimonial-card blockquote {
  color: #252525;
  font-size: 1.08rem;
  font-style: italic;
  flex: 1 1 auto;
  line-height: 1.5;
  margin-right: 18px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #505050;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  min-width: 140px;
  text-align: right;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 36px rgba(123,21,52,0.09);
  border-color: #7B1534;
}

/* === FOOTER === */
footer {
  background: #1d1d1d;
  color: #fff;
  padding: 38px 0 0 0;
  margin-top: 60px;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 40px 24px;
}
.footer-wrapper img {
  width: 60px; height: 60px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav a {
  color: #fafafa;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #7B1534;
}
.address-block {
  font-size: 0.98rem;
  color: #f2e9dc;
  margin-top: 6px;
  font-family: 'Roboto', Arial, sans-serif;
}
.address-block a {
  color: #FFF;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.16s;
}
.address-block a:hover {
  color: #7B1534;
}

/* === SOCIAL & NEWSLETTER === */
.social-media {
  display: flex;
  gap: 18px;
  margin: 22px 0 8px 0;
}
.social-media img {
  width: 32px; height: 32px;
  filter: grayscale(95%);
  opacity: 0.82;
  transition: opacity 0.14s, filter 0.14s;
}
.social-media a:hover img, .social-media a:focus img {
  filter: none;
  opacity: 1;
}
.newsletter-signup {
  margin-top: 12px;
  font-size: 1rem;
  color: #262626;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}

/* === COOKIES BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #191919;
  box-shadow: 0 -3px 32px rgba(30,30,30,0.13);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 8px 24px 8px;
  min-height: 64px;
  border-top: 1.5px solid #edeaea;
  transition: transform 0.33s;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner.hide {
  transform: translateY(100px);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner p {
  font-size: 0.99rem;
  color: #1d1d1d;
  margin: 0 0 0 0;
  max-width: 500px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 22px;
  border: 1.2px solid #b8b8b8;
  background: #f9f9f9;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #111;
  font-weight: 600;
  transition: background 0.13s, color 0.13s, border 0.13s, transform 0.13s;
  min-width: 110px;
  box-shadow: 0 2px 8px rgba(25,25,30,0.06);
}
.cookie-btn.accept {
  background: #7B1534;
  color: #fff;
  border-color: #7B1534;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #7B1534;
  border-color: #7B1534;
  transform: translateY(-2px) scale(1.06);
}
.cookie-btn.reject {
  background: #fff;
  color: #222;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #222;
  color: #fff;
  border-color: #252525;
}
.cookie-btn.settings {
  background: #fff;
  color: #7B1534;
  border-color: #7B1534;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #7B1534;
  color: #fff;
  border-color: #7B1534;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1400;
  inset: 0;
  background: rgba(0,0,0,0.46);
  display: none;
  align-items: flex-end;
  justify-content: center;
  transition: background 0.2s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  min-width: 320px;
  max-width: 98vw;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -6px 28px rgba(30,30,30,0.16);
  padding: 36px 24px 22px 24px;
  margin-bottom: 0;
  position: relative;
  animation: cookie-slide-in 0.5s cubic-bezier(.87,0,.13,1);
}
@keyframes cookie-slide-in {
  from { transform: translateY(100px); }
  to { transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  color: #191919;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}
.cookie-category label {
  font-size: 1rem;
  color: #262626;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height: 22px;
  margin-right: 7px;
  accent-color: #7B1534;
}
.cookie-category .always-on {
  font-size: 0.95rem;
  color: #111;
  margin-top: 3px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 24px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover {
  color: #7B1534;
}

/* === MISC CONTENT ELEMENTS === */
dt, dd {
  display: block;
  margin-bottom: 7px;
}
hr {
  border: 0;
  border-bottom: 1px solid #f3f3f3;
  margin: 32px 0 24px 0;
}

address {
  font-style: normal;
  color: #1b1b1b;
  font-size: 1rem;
}

/* === SPECIAL FLEX CLASSES === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1110px) {
  .footer-wrapper, .header-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 940px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 16px 48px 16px;
  }
  .header-wrapper {
    flex-wrap: wrap;
    gap: 17px;
  }
}
@media (max-width: 820px) {
  .content-wrapper,
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-wrapper {
    padding-bottom: 30px;
  }
  .footer-wrapper img {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    padding: 10px 18px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero .content-wrapper {
    padding: 40px 0 30px 0;
    max-width: 95vw;
  }
  .container {
    padding: 0 7px;
  }
  .footer-wrapper {
    gap: 12px;
    padding: 0 7px 18px 7px;
  }
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 14px 16px 14px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .hero .content-wrapper h1 {
    font-size: 1.55rem;
  }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 0.98rem; }
  .service-list li, .card {
    padding: 12px 10px;
  }
  .section {
    padding: 22px 4px;
    margin-bottom: 38px;
  }
  .cookie-banner {
    padding: 12px 2px 14px 2px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* === ANIMATIONS & MICRO-INTERACTIONS === */
.cta-btn, .cookie-btn, .card, .testimonial-card {
  transition: background 0.18s, color 0.18s, border 0.16s, box-shadow 0.18s, transform 0.16s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
}

/* --- UTILITIES --- */
.hide { display: none!important; }
.flex-row { display: flex; flex-direction: row; gap: 20px; }
.flex-column { display: flex; flex-direction: column; gap: 20px; }

/* --- PRINTER FRIENDLY --- */
@media print {
  .cookie-banner, .mobile-menu, .main-nav, .footer-nav, .mobile-menu-toggle, .cta-btn { 
    display: none !important; 
  }
  .section, .card, .service-list li, .testimonial-card {
    box-shadow: none !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  html, body { background: #fff !important; color: #111 !important; }
}
section {
  padding: 20px 0;
}