/* --- CSS RESET & NORMALIZE --- */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
  display: block;
  height: auto;
}
ul, ol {
  list-style-type: disc;
  margin-left: 1.2em;
  margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bree Serif', 'Times New Roman', serif;
  font-weight: 400;
  margin-bottom: 0.5em;
  color: #1B3E2B;
}
h1 {
  font-size: 2.3rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
p {
  margin-bottom: 14px;
}
a {
  color: #8A1F28;
  text-decoration: none;
  transition: color 0.18s;
}
a:focus, a:hover {
  color: #1B3E2B;
  text-decoration: underline;
}
strong, b {
  font-weight: 600;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 0;
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
header img {
  height: 44px;
  margin-right: 10px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 24px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Bree Serif', serif;
  font-size: 1rem;
  color: #1B3E2B;
  padding: 5px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #8A1F28;
  border-bottom: 2px solid #8A1F28;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bree Serif', serif;
  background: #8A1F28;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.025rem;
  font-weight: 500;
  padding: 11px 30px;
  box-shadow: 0 2px 7px rgba(138, 31, 40, 0.08);
  cursor: pointer;
  margin-left: 24px;
  letter-spacing: 0.02em;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.15s;
}
.cta-button:hover, .cta-button:focus {
  background: #1B3E2B;
  color: #F2E7C9;
  box-shadow: 0 4px 14px rgba(27, 62, 43, 0.14);
  transform: translateY(-2px) scale(1.035);
}
@media (max-width: 1020px) {
  .cta-button {
    margin-left: 10px;
    padding: 10px 20px;
  }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 1202;
  width: 38px;
  height: 38px;
  background: #F2E7C9;
  color: #8A1F28;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(27, 62, 43, 0.07);
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #8A1F28;
  color: #fff;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(248, 248, 245, 0.94);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 6px 32px rgba(27, 62, 43, 0.15);
}
.mobile-menu-close {
  background: #fff;
  color: #1B3E2B;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin: 22px 18px 18px auto;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(138, 31, 40,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #8A1F28;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  margin-top: 10px;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Bree Serif', serif;
  font-size: 1.13rem;
  color: #1B3E2B;
  padding: 12px 4px 8px 0px;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-color 0.17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #8A1F28;
  border-bottom: 2px solid #8A1F28;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN HERO SECTION */
.hero {
  background: #F2E7C9;
  box-shadow: 0 1px 12px 0 rgba(138, 31, 40, 0.038);
}
.hero .container {
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding-top: 46px;
  padding-bottom: 46px;
}
.hero .content-wrapper {
  text-align: left;
  gap: 15px;
  align-items: flex-start;
}
.hero h1 {
  color: #8A1F28;
}
.hero p {
  font-size: 1.125rem;
}
.hero .cta-button {
  margin-top: 10px;
}

/* --- SPACING & SECTION PATTERNS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(27,62,43,0.032);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(27, 62, 43,0.06);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 32px rgba(138,31,40,.12);
  transform: translateY(-2px) scale(1.012);
}
.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;
  background: #fff;
  color: #1B3E2B;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(27,62,43,0.1);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 200px;
  max-width: 540px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 36px 0 rgba(138, 31, 40, 0.14);
  transform: translateY(-3px) scale(1.025);
}
.testimonial-card p {
  font-size: 1.06rem;
  font-style: italic;
  margin-bottom: 6px;
  color: #8A1F28;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-family: 'Roboto', sans-serif;
  color: #222;
  opacity: 0.85;
}
.testimonial-card div {
  color: #E1B200;
  font-size: 1.13rem;
  margin-top: 4px;
  letter-spacing: 2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* UL custom */
.features ul, .services ul, .about ul, .contact ul, .features .content-wrapper ul {
  margin-left: 0;
  padding-left: 1.2em;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.features ul li, .services ul li, .about ul li, .contact ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #222;
}
.features strong, .services strong, .about strong, .contact strong {
  color: #8A1F28;
  font-weight: 600;
  font-family: 'Bree Serif', serif;
  font-size: 1.028em;
}

/* --- SERVICES / PRICES --- */
.services span {
  color: #1B3E2B;
  font-weight: 500;
  margin-left: 7px;
  font-size: 1rem;
  background: #F2E7C9;
  border-radius: 4px;
  padding: 2px 8px;
}

/* --- ABOUT & CONTACT --- */
.about, .contact {
  background: #fff;
}
.about .content-wrapper, .contact .content-wrapper {
  gap: 14px;
}
address {
  font-style: normal;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

/* --- FOOTER --- */
footer {
  background: #F2E7C9;
  border-top: 1px solid #e2dac0;
  font-size: 0.98rem;
  color: #1B3E2B;
  margin-top: 45px;
}
footer section {
  padding: 36px 0 16px 0;
}
footer .container {
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}
footer .content-wrapper {
  flex: 1;
  flex-direction: column;
  gap: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.footer-nav a {
  color: #8A1F28;
  font-family: 'Bree Serif', serif;
  font-weight: 400;
  font-size: 1rem;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.14s, color 0.14s;
  opacity: 0.88;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 1px solid #1B3E2B;
  color: #1B3E2B;
  opacity: 1;
}
footer a {
  color: #1B3E2B;
}
footer a:hover, footer a:focus {
  color: #8A1F28;
}

/* --- GENERAL CARD STYLES --- */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px 0 rgba(27,62,43,0.06);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  max-width: 400px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* --- BUTTONS --- */
button, .button, input[type="submit"], input[type="button"] {
  font-family: 'Bree Serif', serif;
  font-size: 1rem;
  background: #8A1F28;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(138, 31, 40, 0.06);
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
}
button:hover, button:focus, .button:hover, .button:focus, input[type="submit"]:hover, input[type="submit"]:focus {
  background: #1B3E2B;
  color: #F2E7C9;
  box-shadow: 0 6px 18px rgba(27,62,43,0.13);
}

/* --- COOKIE CONSENT --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  width: 100%;
  background: #fff;
  color: #222;
  box-shadow: 0 -2px 20px rgba(27, 62, 43, 0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 36px;
  padding: 20px 18px;
  font-size: 1rem;
  animation: cookieSlideIn 0.5s cubic-bezier(0.8,0,0.1,1);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(180px); opacity: 0; }
  90% { opacity: 1; transform: translateY(-6px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-consent-banner button {
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 5px;
  margin: 0 0 0 0;
  border: none;
  background: #8A1F28;
  color: #fff;
  transition: background 0.15s, color 0.15s;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #1B3E2B;
  color: #F2E7C9;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #F2E7C9;
  color: #8A1F28;
  border: 1px solid #e2dac0;
}
.cookie-consent-banner .cookie-settings-btn:hover, .cookie-consent-banner .cookie-settings-btn:focus {
  background: #1B3E2B;
  color: #fff;
  border-color: #1B3E2B;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.99rem;
    padding: 16px 8px;
  }
  .cookie-consent-banner .cookie-buttons {
    gap: 10px;
  }
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 2002;
  inset: 0;
  background: rgba(20, 28, 30, 0.32);
  animation: fadeCookieOverlay 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadeCookieOverlay {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1B3E2B;
  padding: 28px 26px 22px 26px;
  border-radius: 12px;
  min-width: 290px;
  max-width: 90vw;
  box-shadow: 0 8px 48px 0 rgba(27,62,43,0.17);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeInCookieModal 0.33s cubic-bezier(0.8,0,0.1,1);
  position: relative;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; transform: scale(0.95) translateY(30px); }
  95% { opacity: 1; transform: scale(1.02) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #8A1F28;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
}
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #ddd;
  border-radius: 14px;
  position: relative;
  margin-right: 8px;
  outline: none;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #8A1F28;
}
.cookie-switch:before {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(27,62,43,0.13);
  top: 2px; left: 2px;
  transition: left 0.18s;
}
.cookie-switch:checked:before {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  border: none;
  background: none;
  color: #8A1F28;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.74;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1B3E2B;
  opacity:1;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 15px 6vw 15px 6vw;
  }
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1060px) {
  .container {
    max-width: 96vw;
  }
  header .container, footer .container {
    max-width: 99vw;
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media (max-width: 820px) {
  .section {
    padding: 29px 10px;
    margin-bottom: 40px;
  }
  .hero .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .container, .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .main-nav {
    flex-direction: column;
    gap: 13px;
    margin-left: 0;
    padding-left: 0;
  }
  .hero .container {
    min-height: 130px;
  }
}
@media (max-width: 610px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  .hero .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 700px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 10vw;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  background: #FAFAFA;
  color: #222;
  transition: border 0.15s;
  margin-bottom: 13px;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #8A1F28;
  outline: none;
}
::placeholder {
  color: #bbb;
  opacity: 1;
}

/* --- MICRO-INTERACTIONS --- */
.cta-button, button, .cookie-consent-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.14s;
}
.cta-button:active, button:active, .cookie-consent-banner button:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px 0 rgba(138,31,40,0.03);
}

/* --- MISC --- */
hr {
  border: none;
  border-top: 1px solid #EBEBEB;
  margin: 28px 0;
}

/* --- SPECIAL ELEMENTS/OVERRIDES --- */
.hero .container {
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 18px 0 rgba(138, 31, 40, 0.035);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.newsletter {
  margin-top: 20px;
  margin-bottom: 18px;
}
.newsletter a {
  color: #8A1F28;
  font-family: 'Bree Serif', serif;
  font-weight: 500;
  border-bottom: 1px dashed #8A1F28;
  transition: border-bottom 0.13s, color 0.13s;
}
.newsletter a:hover, .newsletter a:focus {
  border-bottom: 1px solid #1B3E2B;
  color: #1B3E2B;
}

/* --- TYPOGRAPHY SCALE --- */
@media (min-width: 1280px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.18rem; }
  p, li { font-size: 1.06rem; }
}

/* --- PRINT STYLES (MINIMAL) --- */
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, footer { display: none !important; }
  .container { max-width: 100vw; }
  main, .section { box-shadow: none !important; background: #fff !important; }
}
