/* === CSS RESET & BASE STYLES === */
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,
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;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  color: #2B4649;
  background-color: #FFF9F2;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #2B4649;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #E3B377;
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ======= TYPOGRAPHY ======= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #32494b;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.13; }
h2 { font-size: 2rem; line-height: 1.15; }
h3 { font-size: 1.5rem; line-height: 1.18; }
h4 { font-size: 1.2rem; }

p, li, span, .service-price, .tagline {
  font-size: 1rem;
  color: #304644;
}
p, ul {
  margin-bottom: 18px;
}
ul, ol {
  padding-left: 24px;
}
strong {
  font-weight: 600;
  color: #2B4649;
}
.tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #827159;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  p, li, .service-price, .tagline { font-size: 0.98rem; }
}

/* ====== ORGANIC LAYOUT PATTERNS ====== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 4px 16px 0 rgba(73, 93, 88, 0.08);
  position: relative;
}
.content-wrapper {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  margin-bottom: 20px;
  background: #F7F3EA;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(73, 93, 88, 0.11);
  flex-direction: column;
  text-align: left;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Additional Spacing Rules Across Pages */
.content-wrapper>*:not(:last-child) {
  margin-bottom: 16px;
}
ul li {
  margin-bottom: 12px;
}
/* ===== BUTTONS & CTAs ===== */
.cta-button {
  display: inline-block;
  background: #2B4649;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  font-size: 1.08rem;
  border-radius: 36px 36px 32px 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(44,78,66, 0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s, transform 0.18s;
  margin-top: 10px;
}
.cta-button:hover, .cta-button:focus {
  background: #E3B377;
  color: #253735;
  box-shadow: 0 6px 24px 0 rgba(44,78,66,0.17);
  transform: translateY(-3px) scale(1.04);
}
.simple-link {
  color: #2B4649;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}
.simple-link:hover, .simple-link:focus {
  color: #E3B377;
}
.sort-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #EFF3ED;
  border-radius: 15px;
  padding: 14px 18px;
  margin: 18px 0 0 0;
}
.sort-filter-bar button {
  background: none;
  border: 2px solid #D5C6A2;
  color: #2B4649;
  border-radius: 22px;
  padding: 6px 22px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.15s, border-color 0.18s;
  margin-bottom: 0;
}
.sort-filter-bar button:hover, .sort-filter-bar button:focus {
  background: #E3B377;
  border-color: #E3B377;
}

/* ===== ORGANIC-CARD & LIST STYLES ===== */
.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 0;
}
.category-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.02rem;
  background: #F6F5F0;
  border-radius: 13px 18px 15px 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 10px 0 rgba(180,160,124,0.04);
  margin-bottom: 4px;
}
.category-list img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  justify-content: flex-start;
}
.service-card {
  background: #F4F0E6;
  border-radius: 17px 24px 20px 13px;
  box-shadow: 0 2px 12px 0 rgba(73, 93, 88, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 272px;
  min-height: 240px;
  padding: 22px 18px 16px 18px;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.17s;
  margin-bottom: 20px;
  border: 1px solid #e2d2b3;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 4px 24px 0 rgba(71,116,78, 0.15);
  transform: translateY(-2px) scale(1.03);
  border-color: #e3b377;
}
.service-card img {
  width: 38px; height: 38px; margin-bottom: 5px;
}
.service-card h3 { font-size: 1.15rem; color: #254A32; margin-bottom: 7px; }
.service-price {
  margin-top: auto;
  background: #E3B377;
  color: #2B4649;
  border-radius: 15px;
  padding: 2px 18px;
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
}

/* ===== SPECIALS: TESTIMONIALS ===== */
.testimonial-card {
  max-width: 560px;
  margin: 0 0 24px 0;
  border: 1px solid #E3B377;
  background: #fff8e0;
  color: #2B4649;
  box-shadow: 0 4px 16px rgba(224, 204, 155, 0.09);
  font-size: 1.1rem;
}
.testimonial-stars {
  color: #E3B377;
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-author {
  font-size: 1rem;
  font-weight: 600;
  color: #574E36;
  margin-top: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ===== MAP, SOCIALS, ICONS STATIC EMBED ===== */
.map-embed-static {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #EEF5F1;
  padding: 12px 15px;
  border-radius: 13px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}
.social-links a {
  background: #e9e6db;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  transition: background 0.15s, transform 0.13s;
}
.social-links a:hover, .social-links a:focus {
  background: #E3B377;
  transform: scale(1.08);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  width: 100%;
  background: #f7f2e4;
  border-bottom: 2px solid #e3b37755;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 16px;
}
.logo-link img {
  height: 49px;
  width: auto;
  display: block;
  transition: filter 0.15s;
  filter: drop-shadow(0 1px 2px rgba(187, 150, 76, 0.11));
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  margin-left: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.main-nav a {
  color: #2B4649;
  padding: 5px 9px;
  border-radius: 7px;
  transition: background 0.13s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E3B377;
  color: #17552F;
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  background: #2B4649;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 9px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.15s, transform 0.11s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #E3B377;
  color: #2B4649;
  transform: scale(1.05);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(236,233,219,0.97);
  z-index: 1004;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.6,.08,.41,.99); /* smooth slide-in */
  box-shadow: -8px 0 20px 0 rgba(80,80,70,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #2B4649;
  font-size: 2.2rem;
  font-weight: 700;
  align-self: flex-end;
  margin: 18px 28px 10px 0;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1006;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E3B377;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px 30px 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  color: #2B4649;
  padding: 10px 0 6px 0;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E3B377;
  color: #17552F;
}
.mobile-menu {
  display: flex;
}

@media (max-width: 1024px) {
  header .main-nav { gap: 16px; }
}
@media (max-width: 850px) {
  header .main-nav {
    gap: 10px;
    font-size: 0.99rem;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    padding-top: 9px;
    padding-bottom: 7px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== FOOTER ===== */
footer {
  width: 100%;
  background: #27423F;
  color: #fff;
  padding: 38px 0 16px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  color: #fffef6;
  font-size: 1.08rem;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-menu a {
  color: #E3B377;
  font-size: 1.03rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.14s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-contact {
  flex: 1 1 260px;
  color: #ebe5d7;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact a {
  color: #E3B377;
  word-break: break-all;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #2B4649;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 10000;
  padding: 21px 22px 21px 22px;
  box-shadow: 0 0 16px 5px rgba(80,70,44,0.13);
  font-size: 1.03rem;
  transition: transform 0.34s cubic-bezier(.6,.08,.41,.99), opacity 0.23s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 1 1 250px;
  color: #fffde8;
  margin-right: 24px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 18px;
  padding: 7px 24px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-banner .accept {
  background: #E3B377;
  color: #2B4649;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fff;
  color: #27423F;
}
.cookie-banner .reject {
  background: #F7F3EA;
  color: #2B4649;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E3B377;
  color: #fff;
}
.cookie-banner .settings {
  background: #294335;
  color: #fffbe2;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #E3B377;
  color: #294335;
}

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px 0;
    padding: 18px 10px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    font-size: 0.97rem;
  }
}

/* ======= COOKIE MODAL PREFERENCES ======= */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 60px;
  transform: translate(-50%, 40px) scale(0.93);
  background: #fff;
  color: #2B4649;
  border-radius: 22px;
  box-shadow: 0 5px 28px 0 rgba(59,71,35,0.17);
  z-index: 11000;
  min-width: 330px;
  width: 94vw;
  max-width: 430px;
  padding: 30px 28px 24px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.3s cubic-bezier(.6,.08,.41,.99);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.cookie-modal h3 {
  margin-bottom: 5px;
  font-size: 1.25rem;
  color: #2B4649;
}
.cookie-modal ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal label {
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #E3B377;
  width: 21px; height: 21px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.cookie-modal .modal-save {
  background: #E3B377;
  color: #2B4649;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  padding: 7px 26px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal .modal-save:hover, .cookie-modal .modal-save:focus {
  background: #fff8e0;
  color: #27423F;
}
.cookie-modal .modal-cancel {
  background: #F7F3EA;
  color: #2B4649;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  padding: 7px 18px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .modal-cancel:hover, .cookie-modal .modal-cancel:focus {
  background: #E3B377;
  color: #fff;
}

/* ===== ORGANIC DECORATIVE TOUCHES ===== */
section {
  position: relative;
  overflow: visible;
}
section:before {
  content: '';
  display: block;
  position: absolute;
  top: -32px;
  right: -32px;
  width: 93px; height: 61px;
  background: url('../assets/deco-leaf.svg') no-repeat center/contain;
  opacity: 0.059;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 850px) {
  section:before {
    display: none;
  }
}

/* ===== RESPONSIVE LAYOUTS & FLEX ===== */
@media (max-width: 1100px) {
  .services-grid {
    gap: 16px;
  }
  .service-card { width: 45vw; min-width: 210px; }
}
@media (max-width: 800px) {
  .services-grid { justify-content: center; }
  .service-card { width: 92vw; max-width: 350px; }
  .footer-brand, .footer-contact { font-size: 0.98rem; }
}
@media (max-width: 768px) {
  .section { padding: 24px 7px; margin-bottom: 28px; }
  .content-wrapper { gap: 12px; }
  .content-grid { flex-direction: column; gap: 10px; }
  .category-list li { flex-direction: column; gap: 8px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .testimonial-card { align-items: flex-start; gap: 9px; padding: 13px; font-size: 1rem; }
  .card-container, .services-grid { flex-direction: column; gap: 15px; }
  footer .container { flex-direction: column; gap: 21px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.26rem; }
  .footer-brand img { height: 30px; }
  .service-card {
    width: 94vw;
    min-width: 0;
    max-width: 97vw;
    padding: 16px 7px 13px 13px;
  }
}

/* Small helper tweaks */
input, button, select, textarea {
  font-family: inherit;
  outline: none;
}
button:active {
  transform: scale(0.99);
}

/* --- 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;
}

/* === MISC === */
::-webkit-scrollbar {
  width: 10px;
  background: #e5e2d6;
}
::-webkit-scrollbar-thumb {
  background: #e3b377cc;
  border-radius: 7px;
}
