/* ============================== */
/* 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F5F3EE;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #285A43;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #E07C00;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.4em;
}
strong, b {
  font-weight: 700;
}

/* ========== BRAND COLORS & FONTS ============= */
:root {
  --primary: #285A43;
  --secondary: #FFFFFF;
  --neutral: #F5F3EE;
  --accent: #E07C00;
  --gold: #BFA063;
  --dark: #1B2D23;
  --display-font: 'Montserrat', Arial, Helvetica, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =========== CORE LAYOUT ============== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 22px;
  box-shadow: 0 6px 24px rgba(34,34,34,0.10);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 8px;
  }
}

/* =========== TYPOGRAPHY ============== */
h1, .hero-section h1 {
  font-family: var(--display-font);
  font-size: 2.6rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}
h2 {
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
h3 {
  font-family: var(--display-font);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
h4, h5, h6 {
  font-family: var(--display-font);
  color: var(--primary);
}
p, li {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #222;
  margin-bottom: 10px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
.text-section {
  font-size: 1.06rem;
  color: #323232;
  line-height: 1.75;
}
@media (max-width: 600px) {
  h1, .hero-section h1 { font-size: 2rem; }
  h2 { font-size: 1.37rem; }
}

/* ============ HEADER & NAV ============ */
header {
  background: var(--secondary);
  box-shadow: 0 2px 12px rgba(34,34,34,0.042);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  padding-right: 24px;
}
.logo img {
  max-height: 49px;
  width: auto;
  margin-right: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--display-font);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.01em;
  padding: 12px 0;
  position: relative;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--gold) 38%, var(--accent) 87%);
  color: #fff;
  font-family: var(--display-font);
  font-size: 1.08rem;
  font-weight: 700;
  padding: 13px 30px;
  border: none;
  border-radius: 38px;
  box-shadow: 0 2px 14px rgba(190, 143, 36, 0.08);
  text-shadow: 0 2px 7px rgba(171,139,40,0.09);
  margin-left: 36px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.21s;
  letter-spacing: 0.02em;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #98731f 25%, #FFA000 85%);
  box-shadow: 0 4px 22px rgba(190, 143, 36, 0.17);
  outline: none;
  color: #fff;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--primary);
  font-family: var(--display-font);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--primary);
  border-radius: 36px;
  padding: 11px 26px;
  margin-top: 10px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.18s, background 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff7eb;
  outline: none;
}

/* =========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  cursor: pointer;
  padding: 13px 16px 13px 0;
  margin-left: 12px;
  z-index: 1301;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--accent);
  outline: none;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 10px 32px rgba(40,90,67,0.22);
  z-index: 1300;
  transform: translateX(-105vw);
  transition: transform 0.29s cubic-bezier(.8,.02,.19,.96);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 0 16px 24px;
  font-size: 2rem;
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.16s;
  z-index: 1302;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  padding: 14px 32px 0 34px;
}
.mobile-nav a {
  font-family: var(--display-font);
  font-size: 1.18rem;
  color: var(--primary);
  font-weight: 650;
  padding: 11px 0;
  transition: color 0.22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
}
@media (max-width:1200px) {
  .container { max-width: 100%; }
}
@media (max-width: 1000px) {
  .main-nav a,
  .btn-primary {
    font-size: 0.97rem;
    padding: 9px 13px;
    margin-left: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
  }
  .logo img {
    max-height: 36px;
  }
}
@media (max-width: 820px) {
  .main-nav,
  .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 480px) {
  .logo img {
    max-height: 27px;
  }
  .mobile-nav { padding-left:20px; padding-right:20px; }
  .mobile-menu-close { margin-left: 14px; }
}

/* ============ HERO SECTIONS ============= */
.hero-section {
  background: linear-gradient(87deg, #F5F3EE 50%, #fff 100%);
  min-height: 380px;
  padding: 78px 0 62px 0;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 36px rgba(40,90,67,0.07);
  margin-bottom: 45px;
}
.hero-section .container {
  justify-content: center;
}
.hero-section .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  gap: 30px;
}
.hero-section h1 {
  color: var(--primary);
  margin-bottom: 11px;
}
.hero-section p {
  font-size: 1.18rem;
  color: #222;
  margin-bottom: 14px;
}
.hero-section .btn-primary {
  margin-left: 0;
}
@media (max-width: 820px) {
  .hero-section { padding: 52px 0 38px 0; }
  .hero-section .content-wrapper { gap: 14px; }
}

/* ============= FEATURE / SERVICE GRIDS ============= */
.feature-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 8px 0;
  list-style: none;
}
.feature-grid li, .service-grid li {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(40,90,67,0.07);
  font-family: var(--body-font);
  font-size: 1rem;
  color: #2B2B2B;
  padding: 22px 24px 20px 20px;
  min-width: 230px;
  min-height: 84px;
  flex: 1 1 280px;
  gap: 17px;
  position: relative;
  border: 1.5px solid #f2e6cf;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.feature-grid li img, .service-list li img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-right: 6px;
  filter: drop-shadow(0 1.5px 6px rgba(224,124,0,0.09));
}
.feature-grid li:hover, .service-grid li:hover {
  box-shadow: 0 5px 26px rgba(224,124,0,0.12), 0 2px 12px rgba(40,90,67,0.062);
  z-index: 2;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  list-style: none;
}
.service-list li {
  flex: 1 1 310px;
  background: #fff;
  border-radius: 19px;
  border: 1.3px solid #e3dfcb;
  box-shadow: 0 2px 10px rgba(40,90,67,0.046);
  padding: 22px 22px 18px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  min-height: 140px;
  transition: box-shadow 0.18s;
}
.service-list li:hover {
  box-shadow: 0 6px 24px rgba(191,160,99,0.12);
  border-color: var(--gold);
}
.price {
  display: inline-block;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 11px;
  letter-spacing: 0.02em;
}

@media (max-width: 840px) {
  .feature-grid, .service-list, .service-grid {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid li, .service-list li, .service-grid li {
    min-width: 0;
    width: 100%;
    max-width: none;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(187, 174, 122, 0.085);
  padding: 44px 0;
  margin-bottom: 60px;
}
.testimonials-section .container {
  gap: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #F7F6F3;
  border-radius: 18px;
  padding: 24px 28px;
  margin-bottom: 22px;
  box-shadow: 0 1px 7px rgba(40,90,67,0.04);
  max-width: 710px;
  border: 1.5px solid #E8E1CF;
  transition: box-shadow 0.16s, border-color .13s;
}
.testimonial-card p {
  color: #23231f;
  font-size: 1.11rem;
  font-style: italic;
  margin-bottom: 2px;
}
.testimonial-card span {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #85753e;
  font-weight: 500;
}
.testimonial-card strong {
  color: var(--primary);
}
.testimonial-card:hover {
  box-shadow: 0 7px 30px rgba(224,124,0,0.11), 0 1px 8px rgba(22,22,22,.03);
  border-color: var(--gold);
}
.rating-summary {
  font-family: var(--display-font);
  color: var(--gold);
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 12px;
  background: #fff5e6;
  border-radius: 15px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 0.5px 3px rgba(224,124,0,0.08);
}

@media (max-width:640px) {
  .testimonials-section { padding: 18px 0; }
  .testimonial-card { max-width: 100%; padding: 13px 10px; }
  .rating-summary { padding: 7px 11px; }
}

/* ========== FAQ LIST ============= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.faq-list h3 {
  font-family: var(--display-font);
  font-weight: 700;
  font-size: 1.11rem;
  margin-bottom: 4px;
  color: var(--primary);
}
.faq-list p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 6px;
}

/* ========== UNIQUE BULLET LISTS ============ */
.values-list, .unique-points-list, .contact-highlights ul, .contact-details ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 17px;
  padding-left: 0;
}
.values-list li:before, .unique-points-list li:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-right: 9px;
  background: var(--gold);
  vertical-align: middle;
  box-shadow: 0 2.5px 6px 0 rgba(191,160,99,0.11);
}
.contact-highlights ul li, .contact-details ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.contact-highlights ul img, .contact-details ul img {
  width: 25px;
  height: 25px;
}
.address-block address {
  font-style: normal;
  color: #333;
  font-family: var(--body-font);
  font-size: 1rem;
  margin-bottom: 13px;
}

/* =========== CARDS (GENERIC) ============ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 3px 14px rgba(224,124,0,0.07);
  padding: 28px 24px 22px 24px;
  min-width: 260px;
  transition: box-shadow 0.16s, border-color .10s;
  border: 1.2px solid #ECD7AC;
}
.card:hover {
  box-shadow: 0 8px 25px rgba(224,124,0,0.12);
  border-color: var(--gold);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
@media (max-width:650px) {
  .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .card {
    min-width: 0;
    padding: 17px 11px;
  }
}

/* ========== FLEX LAYOUT UTILITIES =========== */
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== CONTACT & MAP =========== */
.contact-section {
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 4px 20px rgba(40,90,67,.08);
  margin-bottom: 55px;
}
.contact-cta a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
}
.opening-hours {
  color: var(--primary);
  font-family: var(--display-font);
  margin-bottom: 14px;
}
.map {
  background: #F3F3F3;
  border-radius: 18px;
  padding: 24px;
  color: #858585;
  font-style: italic;
  text-align: center;
  margin-top: 12px;
  font-size: 1rem;
}

/* ========== FOOTER =============== */
footer {
  background: var(--primary);
  padding: 36px 0 24px 0;
  color: #fff;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -6px 22px rgba(40,90,67,0.06);
  margin-top: 65px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  font-family: var(--display-font);
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  transition: color 0.2s;
  opacity: 0.88;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
  opacity: 1;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.footer-branding img {
  height: 39px;
  margin-bottom: 4px;
}
.footer-branding span {
  color: #f7e0b7;
  font-family: var(--body-font);
  font-size: 0.98rem;
}
@media (max-width: 650px) {
  footer { border-radius: 20px 20px 0 0; margin-top:32px; }
  .footer-nav { gap: 13px; font-size: .98rem; }
  .footer-branding img { height:25px; }
}

/*===== SCROLLBAR FOR AESTHETICS =====*/
::-webkit-scrollbar {
  width: 8px;
  background: #f9f6ed;
}
::-webkit-scrollbar-thumb {
  background: #d6c39e;
  border-radius: 25px;
  box-shadow: 0 1px 3px rgba(40,90,67,.04);
}

/* ======= COOKIE BANNER ======== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(171,139,40,0.14);
  padding: 22px 21px 22px 21px;
  z-index: 2300;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
  animation: cookieBannerIn .42s cubic-bezier(.32,.13,.22,1);
  border-top: 3px solid var(--gold);
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  font-family: var(--body-font);
  font-size: 1rem;
  color: var(--primary);
  max-width: 680px;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: var(--display-font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 28px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  transition: background 0.17s, color 0.15s;
}
.cookie-btn.accept {
  background: linear-gradient(90deg, var(--gold) 40%, var(--accent) 90%);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: linear-gradient(90deg, #98731f 16%, #FFA000 93%);
}
.cookie-btn.reject {
  background: #fff8ec;
  color: var(--primary);
  border: 1.7px solid var(--gold);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff0d6;
  color: var(--accent);
}
.cookie-btn.settings {
  background: transparent;
  color: var(--primary);
  border: 1px solid #d9d2be;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f8f3e6;
}
@media (max-width: 768px) {
  .cookie-banner { 
    flex-direction: column;
    gap: 17px; 
    padding: 17px 4px; 
    align-items: flex-start;
  }
  .cookie-banner__text { font-size: .97rem; }
}

/** COOKIE MODAL **/
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(49,44,24,.36);
  z-index: 2400;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn .32s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal__box {
  background: #fff;
  border-radius: 19px;
  padding: 38px 29px 29px 29px;
  min-width: 320px;
  max-width: 99vw;
  box-shadow: 0 8px 28px rgba(187,166,99,0.19);
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookieModalIn .35s cubic-bezier(.19,0,.32,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translateY(55px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-modal__title {
  font-family: var(--display-font);
  font-size: 1.36rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
.cookie-modal__groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 11px;
}
.cookie-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  font-family: var(--body-font);
}
.cookie-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}
.cookie-group input[type="checkbox"] {
  width: 26px;
  height: 26px;
  margin-right: 0;
  accent-color: var(--gold);
  outline: var(--accent) solid 1px;
}
.cookie-group input[type="checkbox"]:disabled {
  opacity: .62;
}
.cookie-modal__actions {
  margin-top: 14px;
  display: flex;
  gap: 13px;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width: 480px) {
  .cookie-modal__box { padding: 19px 8px 15px 8px; }
}

/* ==== ANIMATIONS ==== */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.19s, box-shadow 0.19s, color 0.16s, border-color 0.16s;
}

/* ======= MISC/UTIL ======= */
.next-steps p, .contact-cta p {
  margin-bottom: 2px;
  font-size: 1rem;
}
::-moz-selection   { background: #E7C25E; color:#253B2B; }
::selection        { background: #E7C25E; color:#253B2B; }

/* ======================== */
/*    END OF STYLE.CSS      */
/* ======================== */
