/* ====================================================== */
/* RESET & CSS NORMALIZE                                 */
/* ====================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, dl, dd {
  margin: 0;
  padding: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
input, textarea, select {
  font: inherit;
}
:root {
  --primary: #3A4E48;
  --primary-dark: #273632;
  --secondary: #F4E2D8;
  --background: #fff;
  --accent: #A87348;
  --accent-dark: #B06C2C;
  --gray-light: #f6f5f3;
  --gray: #dad7d3;
  --gray-dark: #979797;
  --black: #212121;
  --white: #ffffff;
  --shadow-lg: 0 8px 24px 0 rgba(58,78,72,0.13), 0 1.5px 5px 0 rgba(168,115,72,0.10);
  --shadow-md: 0 2px 8px 0 rgba(58,78,72,0.08);
}
/* Artistic & Vibrant Color Accents */
body {
  background: var(--background);
  color: var(--primary-dark);
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ====================================================== */
/* TYPOGRAPHY                                             */
/* ====================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.01em;
  color: var(--primary);
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 20px;
  color: var(--accent);
  text-shadow: 2px 4px 0 var(--secondary);
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--primary-dark);
  text-shadow: 1px 3px 0 var(--secondary);
}
h3 {
  font-size: 1.34rem;
  margin-bottom: 15px;
  color: var(--accent-dark);
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary-dark);
  line-height: 1.7;
}
strong {
  color: var(--accent);
  font-weight: 700;
}
em {
  color: var(--accent-dark);
  font-style: normal;
}
.text-section p {
  margin-bottom: 10px;
}

/* Artistic Display Typography */
h1, h2 {
  font-family: 'Montserrat', cursive, sans-serif;
  letter-spacing: 1px;
}

/* ====================================================== */
/* GLOBAL CONTAINERS & LAYOUT                             */
/* ====================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--gray-light);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 26px 10px;
    border-radius: 18px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  width: 100%;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: box-shadow 0.28s cubic-bezier(.7,.4,.09,1);
  position: relative;
  min-width: 260px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}
.card:hover {
  box-shadow: 0 14px 32px 0 rgba(58,78,72,0.25),0 2px 10px 0 rgba(176,108,44,0.16);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 28px 24px;
}
.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;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--secondary);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(42, 32, 17, 0.09);
  min-height: 90px;
  color: var(--primary-dark);
  transition: box-shadow 0.3s cubic-bezier(.79,.21,.06,1);
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px rgba(176,108,44,0.19);
}
.testimonial-card p {
  font-style: italic;
  font-family: 'Montserrat', serif;
  color: var(--primary-dark);
  letter-spacing: 0.01em;
  font-size: 1.06rem;
}
.testimonial-card strong {
  color: var(--accent-dark);
  font-family: 'Montserrat', cursive;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 8px;
}

.map-embed a {
  background: var(--accent);
  color: var(--white);
  font-weight: 500;
  border-radius: 36px;
  padding: 9px 24px;
  display: inline-block;
  transition: background 0.25s;
  font-family: 'Montserrat', sans-serif;
}
.map-embed a:hover {
  background: var(--primary);
  color: var(--secondary);
}

/* General spacing for lists in content */
ul, ol {
  margin: 0 0 16px 22px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ====================================================== */
/* HEADER, NAVIGATION & MOBILE MENU                       */
/* ====================================================== */
header {
  background: var(--secondary);
  border-bottom: 2px solid var(--accent);
  box-shadow: 0 2px 12px rgba(168,115,72,0.08);
  position: sticky;
  top: 0;
  z-index: 32;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
}
header img {
  max-height: 54px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.09rem;
  color: var(--primary-dark);
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.12s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width .22s cubic-bezier(.84,.01,.09,.99);
  border-radius: 5px;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--accent);
  background: var(--secondary);
}
.main-nav a:hover:after, .main-nav a.active:after {
  width: 80%;
}

.cta-primary, .cta-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 99px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s, color 0.15s, box-shadow 0.28s;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(58,78,72,0.11);
}
.cta-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 6px 26px rgba(58,78,72,0.19);
}
.cta-secondary {
  background: var(--secondary);
  color: var(--primary-dark);
  border: 2px solid var(--accent);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 5px 18px rgba(176,108,44,0.16);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  header .container img {
    max-height: 44px;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    min-height: 58px;
  }
  .main-nav {
    font-size: 0.99rem;
    gap: 10px;
  }
  .cta-primary {
    padding: 9px 18px;
    font-size: 1rem;
  }
}

/* ============= MOBILE NAVIGATION ================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 70;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border-radius: 99px;
  border: none;
  box-shadow: 0 2px 10px rgba(58,78,72,0.14);
  font-size: 2rem;
  transition: background 0.2s, color 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary-dark);
  color: var(--accent);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 94vw;
  background: var(--secondary);
  box-shadow: -2px 0 32px rgba(58,78,72,0.17);
  transform: translateX(110%);
  transition: transform 0.36s cubic-bezier(.81,.07,.09,.99);
  z-index: 98;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 12px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: var(--primary-dark);
  background: var(--gray-light);
  border-radius: 99px;
  border: 2px solid var(--accent);
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  transition: background 0.18s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 10px 2px;
  font-size: 1.12rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary-dark);
  border-radius: 8px;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav, header .cta-primary {
    display: none !important;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Menu blur overlay */
body.menu-open::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(56, 46, 29, 0.22);
  z-index: 97;
  pointer-events: auto;
  transition: opacity 0.2s;
  opacity: 1;
}
body:not(.menu-open)::after {
  display: none;
}

/* ====================================================== */
/* SECTION, HERO/ACTIONS, ARTISTIC ELEMENTS               */
/* ====================================================== */
main {
  margin-bottom: 50px;
}
.section {
  position: relative;
  overflow: visible;
}
.section:nth-child(odd) {
  background: #fff6ef;
}

.section .cta-primary, .section .cta-secondary {
  margin-top: 14px;
}

.content-wrapper > ul, .content-wrapper > ol {
  margin-left: 16px;
}

/* Decorative Artistic Splashes */
.section:before {
  content: '';
  position: absolute;
  top: -18px;
  left: -18px;
  width: 68px;
  height: 36px;
  background: var(--accent);
  opacity: 0.13;
  filter: blur(3px);
  border-radius: 24px 8px 34px 16px/24px 26px 14px 38px;
  z-index: 0;
}
.section:after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -24px;
  width: 104px;
  height: 44px;
  background: var(--primary-dark);
  opacity: 0.07;
  filter: blur(4px);
  border-radius: 64px 44px 14px 22px;
  z-index: 0;
}
@media (max-width: 768px) {
  .section:before, .section:after {
    width: 38px;
    height: 18px;
    display: none;
  }
}

/* ====================================================== */
/* FOOTER                                                */
/* ====================================================== */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 40px 0 18px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  opacity: 0.86;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover {
  color: var(--accent);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.97rem;
  opacity: 0.92;
  margin-top: 6px;
}
footer img {
  max-width: 56px;
  margin-bottom: 6px;
}
footer small {
  margin-top: 16px;
  display: block;
  color: var(--gray);
  font-size: 0.88rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 10px;
  }
}

/* ====================================================== */
/* BUTTONS, LINKS, INTERACTIVE & ARTISTIC PROPS           */
/* ====================================================== */
a, button {
  outline: none;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

/* ARTSY VIBES */
.cta-primary, .cta-secondary {
  box-shadow: 0 2px 12px rgba(168,115,72,0.15);
  letter-spacing: .04em;
  border-width: 2px;
}

/* Hover effect for all buttons and links */
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.98);
}

/* ================= TABLES (if any are used) ============= */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  border: 1px solid var(--gray);
  padding: 12px 8px;
  text-align: left;
}
th {
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
}

/* ========================================== */
/* COOKIE CONSENT BANNER & MODAL (bottom fixed) */
/* ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--accent);
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 120;
  padding: 18px 26px;
  box-shadow: 0 -2px 18px rgba(176,108,44,0.16);
  font-size: 1rem;
  gap: 32px;
  transition: transform 0.4s cubic-bezier(.85,.08,.17,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__msg {
  font-family: 'Montserrat', sans-serif;
  margin-right: 12px;
  letter-spacing: 0.01em;
}
.cookie-banner__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  border-radius: 28px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: var(--white);
  color: var(--accent);
  border: 2px solid var(--accent);
  margin-right: 2px;
  transition: background 0.18s, color 0.13s, transform 0.18s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
}
.cookie-btn--settings {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  color: var(--accent);
  background: var(--white);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 8px;
    font-size: .97rem;
  }
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(33,30,16,.16);
  z-index: 122;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.cookie-modal {
  background: var(--background);
  border-radius: 22px;
  box-shadow: 0 6px 38px rgba(176,108,44,0.21);
  max-width: 398px;
  width: 90vw;
  padding: 32px 24px 22px 24px;
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalFadeIn 0.45s cubic-bezier(.9,.03,.1,1);
}
@keyframes cookieModalFadeIn {
  from { transform: scale(0.93) translateY(16px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--accent-dark);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-pref {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary);
  border-radius: 14px;
  padding: 11px 16px;
  margin-bottom: 2px;
  font-size: 1.05rem;
}
.cookie-modal .cookie-category .switch {
  position: relative;
  width: 36px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.cookie-modal .switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--gray);
  border-radius: 11px;
  transition: background 0.19s;
}
.cookie-modal .switch input:checked + .slider {
  background-color: var(--accent);
}
.cookie-modal .switch .slider:before {
  content: '';
  position: absolute;
  height: 15px;
  width: 15px;
  left: 3px;
  bottom: 2.5px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-modal .cookie-category .status {
  font-size: 0.84em;
  color: var(--gray-dark);
  font-weight: 400;
  padding-left: 8px;
}
.cookie-modal .cookie-category[data-essential="true"] .switch {
  opacity: 0.7;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}
.cookie-modal .cookie-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.2rem;
  background: none;
  color: var(--gray-dark);
}
.cookie-modal .cookie-close-btn:hover {
  color: var(--accent-dark);
}

/* ====================================================== */
/* RESPONSIVE ADJUSTMENTS                                 */
/* ====================================================== */
@media (max-width: 700px) {
  .container {
    padding: 0 9px;
  }
  footer .container {
    padding: 0 9px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
}
@media (max-width: 500px) {
  .card-container { gap: 9px; }
  .card { min-width: 180px; }
  .section { padding: 16px 2px; }
}

/* =========================================== */
/* ARTISTIC UNIQUE ELEMENTS/DETAILS            */
/* =========================================== */
/* Artistic underline for titles */
h2:after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 6px;
  margin-top: 8px;
  margin-left: 2px;
}
@media (max-width: 768px) {
  h2:after {
    width: 33px;
    height: 3px;
    margin-top: 6px;
  }
}

/* Accent dot (creative flair) for lists */
ul > li:before {
  content: '\2022';
  color: var(--accent);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-size: 1.12em;
  font-family: 'Montserrat', serif;
  vertical-align: middle;
}

/* Text Section Accent Bar */
.text-section {
  border-left: 7px solid var(--accent);
  padding-left: 16px;
  background: rgba(244,225,216,0.16);
  border-radius: 9px;
  margin-bottom: 14px;
}
@media (max-width: 700px) {
  .text-section {
    border-left: 4px solid var(--accent);
    padding-left: 7px;
  }
}

/* Artistic hover background on card links */
.card-content a:not(.cta-primary):not(.cta-secondary) {
  padding: 3px 8px;
  border-radius: 5px;
  background: rgba(168,115,72,0.085);
  color: var(--accent);
  transition: background 0.19s;
}
.card-content a:not(.cta-primary):not(.cta-secondary):hover {
  background: var(--accent);
  color: var(--white);
}

/* Icons in lists */
.content-wrapper ul li img {
  width: 23px;
  height: 23px;
  vertical-align: middle;
  margin-right: 5px;
}

/* Disabled select (demo for artistic inputs) */
input[disabled], select[disabled] {
  background: var(--gray-light);
  color: var(--gray);
  opacity: .5;
}

/* Success/Info feedback banner (e.g. thank-you) */
.info-banner {
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  border-radius: 18px;
  padding: 19px 22px;
  margin: 20px 0;
  box-shadow: 0 3px 14px rgba(168,115,72,0.12);
  letter-spacing: 0.03em;
  font-size: 1.11rem;
  text-align: center;
}

/* ================================================ */
/* Utility Classes (for layout and spacing quirks)  */
/* ================================================ */
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-20 { gap: 20px !important; }
.d-flex { display: flex !important; }
.flex-center { align-items: center; justify-content: center; }

/* ================================================ */
/* Print & Accessibility (high contrast, etc)       */
/* ================================================ */
@media (print) {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .section {
    box-shadow: none;
    border-radius: 0;
    background: white !important;
  }
}

/* ================================================ */
/* End of CSS                                      */
/* ================================================ */
