/* --- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F9F6F0;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #233746;
  line-height: 1.7;
  background: #F9F6F0;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  color: #233746;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
strong {
  font-weight: 700;
}

/* --- BRAND FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #233746;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 0 #efe6db;
  letter-spacing: 0.05em;
}
h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }
h2 { font-size: 2rem; font-weight: 800; margin-bottom: 18px; }
h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
h4 { font-size: 1.1rem; font-weight: 600; }

p, ul, ol, li, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  color: #3B2C22;
  margin-bottom: 18px;
}

blockquote {
  font-family: 'Montserrat', serif;
  font-size: 1.25rem;
  color: #7b5222;
  background: #fff8ec;
  border-left: 7px solid #8CA284;
  padding: 18px 30px 18px 24px;
  margin-bottom: 10px;
  border-radius: 8px 24px 24px 8px;
  position: relative;
}

/* --- VINTAGE RETRO COLORS --- */
:root {
  --primary: #233746;
  --secondary: #8CA284;
  --accent: #EFEFEF;
  --cream: #F9F6F0;
  --brown: #7b5222;
  --retro-orange: #EBA867;
  --retro-green: #a8af7a;
  --retro-red: #C9583D;
  --retro-blue: #53798C;
  --retro-shadow: rgba(90,67,40,0.09);
  --card-shadow: 0 8px 32px var(--retro-shadow), 0 1px 1px #dcc8b4;
  --focus-outline: #C9583D;
  --testi-bg: #fff8ec;
}

/* --- LAYOUT CONTAINERS & SECTIONS --- */
.container {
  max-width: 1160px;
  padding: 0 16px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  width: 100%;
  max-width: 790px;
  margin: 0 auto;
}

/* Generic Card Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 260px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: 16px;
  padding: 32px 24px;
  transition: box-shadow 0.25s, transform 0.18s;
  position: relative;
  border: 1.5px solid #e6dbc8;
}
.card:hover {
  box-shadow: 0 8px 44px 6px rgba(124,93,55,0.14);
  transform: translateY(-4px) scale(1.025);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--testi-bg);
  border: 2px solid #e5c7b2;
  box-shadow: 0 4px 20px #ead6bc22;
  border-radius: 20px 50px 18px 28px;
  padding: 20px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card blockquote {
  margin-bottom: 8px;
  background: none;
  border-radius: 0;
  border: none;
  padding: 0;
}
.testimonial-card strong,
.testimonial-card p {
  font-size: 1rem;
  color: #233746;
}
.testimonial-card:hover {
  box-shadow: 0 10px 35px 4px rgba(124,93,55,0.18);
  border-color: var(--retro-orange);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  margin-top: 18px;
}
.features-grid > div {
  flex: 1 1 200px;
  background: #fff;
  border-radius: 18px 24px 24px 14px;
  box-shadow: 0 2px 12px #a8af7a22, 0 1px 0 #f7eedd;
  padding: 26px 18px 24px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: transform 0.17s, box-shadow 0.17s;
  border: 1.5px solid #e6dbc8;
  position: relative;
}
.features-grid > div:hover {
  box-shadow: 0 6px 32px 2px #cfa6712c;
  transform: translateY(-3px) scale(1.018);
}
.features-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
}
.features-grid h3,
.features-grid h2 {
  font-size: 1.1rem; color: var(--primary); margin-bottom: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.features-grid p {
  font-size: 0.99rem;
  color: #3B2C22;
  margin-bottom: 0;
}

/* --- BUTTONS & CTA --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg,#EBA867 66%,#8CA284 100%);
  color: #222824;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.07rem;
  padding: 13px 32px;
  border: none;
  border-radius: 44px 16px 32px 44px;
  box-shadow: 0 2px 12px #e2c29938;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  cursor: pointer;
  outline: none;
  transition: background 0.23s, color 0.21s, box-shadow 0.23s, transform 0.18s;
  position: relative;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg,#C9583D 70%,#a8af7a 100%);
  color: #FFF8EC;
  box-shadow: 0 6px 22px 3px #ceb08845;
  transform: translateY(-2px) scale(1.03);
}
.cta:active {
  background: #EBA867;
  color: #fff;
}

button, .mobile-menu-toggle, .mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 32px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-close:hover {
  background: #FBE7D6;
  color: #C9583D;
}

/* --- NAVIGATION --- */
header {
  background: #EFEFEF;
  border-bottom: 2.5px solid #EBA86755;
  box-shadow: 0 2px 20px rgba(233, 182, 110, 0.06);
  z-index: 40;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  padding: 6px 16px;
  border-radius: 38px;
  transition: background 0.18s, color 0.15s;
  letter-spacing: 0.04em;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FBE7D6;
  color: #C9583D;
}
.main-nav .cta {
  margin-left: 16px;
}
.main-nav img {
  height: 45px;
  margin-right: 15px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: #f9efe1;
  border: 2px solid #e6dbc8;
  color: #7b5222;
  position: absolute;
  top: 22px;
  right: 10px;
  z-index: 170;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F9F6F0;
  box-shadow: 3px 0 44px 10px #b591546b;
  z-index: 350;
  transform: translateX(-105%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.41s cubic-bezier(.72,.08,.34,1.03), opacity 0.33s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  align-self: flex-end;
  margin-top: 26px;
  margin-right: 18px;
  color: #C9583D;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 360;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 38px 0 0 45px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 34px;
  transition: background 0.18s, color 0.14s;
  letter-spacing: 0.07em;
  color: var(--primary);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #EFEFEF;
  color: #C9583D;
}

/* --- FOOTER --- */
footer {
  background: #EFEFEF;
  color: #233746;
  font-size: 1rem;
  padding: 36px 0 10px 0;
  border-top: 2.5px solid #EBA86788;
  box-shadow: 0 -2px 30px rgba(233, 182, 110, 0.07);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
footer nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #233746;
  padding: 5px 14px;
  border-radius: 28px;
  transition: background 0.13s, color 0.12s;
}
footer nav a:hover {
  background: #FBE7D6;
  color: #C9583D;
}
.footer-contact {
  font-size: 0.95rem;
  color: #6B5C49;
  margin-top: 9px;
}

/* --- CONTACT / SHORT CONTACT STRIPS --- */
.contact-short, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-short img, .contact-details img {
  width: 22px;
  height: 22px;
  margin-right: 7px;
  vertical-align: middle;
  display: inline;
}
.contact-short p, .contact-details p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.01rem;
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  background: #efe6db;
  border-radius: 24px;
  margin-top: 14px;
  font-size: 1rem;
  color: #795325;
  box-shadow: 0 3px 18px #ddc39516;
  padding: 24px;
  text-align: center;
}

/* --- TYPOGRAPHY & LISTS --- */
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  font-size: 1.01rem;
}
ul li:before {
  content: '\25E6';
  color: #EBA867;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.17em;
}
ol li {
  padding-left: 0;
}
ol {
  list-style-type: decimal;
  margin-left: 20px;
}
ul {
  list-style-type: none;
  margin-left: 0;
}

/* --- RETRO DECORATIVE LINES & PATTERNS --- */
h1, h2 {
  border-bottom: 5px dotted #8CA28444;
  display: inline-block;
  padding-bottom: 7px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, #EFEFEF 55%, #F9F6F0 100%);
  border-radius: 3px 6px 6px 3px;
}

hr {
  border: none;
  border-top: 2.5px dashed #EBA867;
  margin: 32px 0;
}

/* --- TABLES (if used) --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #fff;
}
th, td {
  border: 1.7px solid #f2e9da;
  padding: 13px 16px;
  font-size: 1rem;
  color: #684c2d;
}
th {
  background: #EFEFEF;
  color: #795325;
  font-weight: bold;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .features-grid > div, .card {
    min-width: 160px;
    flex-basis: 210px;
  }
}
@media (max-width: 900px) {
  .features-grid, .card-container, .content-grid {
    gap: 18px;
  }
  .features-grid > div, .card {
    min-width: 140px;
    flex-basis: 170px;
  }
}
@media (max-width: 768px) {
  .main-nav a:not(:first-child) { font-size: 1rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 175;
  }
  .container {
    padding: 0 7px;
  }
  .content-wrapper, .text-section, .section {
    padding: 19px 2px !important;
    gap: 12px;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div, .card {
    min-width: unset;
    width: 100%;
    margin-bottom: 12px;
    padding: 18px 14px 14px 14px;
  }
  .testimonial-card {
    padding: 16px 10px;
    border-radius: 18px 24px 16px 18px;
  }
  .footer-contact, footer nav {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .mobile-menu {
    padding: 0;
  }
}
@media (max-width: 540px) {
  .features-grid img {
    width: 33px; height: 33px;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  .footer-contact {
    font-size: 0.94rem;
  }
  .cta { font-size: 0.97rem; padding: 10px 20px; }
}
@media (max-width: 420px) {
  .map-placeholder { font-size: 0.91rem; padding: 12px; }
}

/* --- RETRO MICRO-ANIMATIONS & ACCENTS --- */
.cta, .features-grid > div, .card, .testimonial-card {
  transition: box-shadow 0.23s, background 0.2s, border-color 0.16s, transform 0.18s;
}
.cta:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid var(--focus-outline);
  outline-offset: 2.5px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #efd9bb;
  box-shadow: 0 -2px 48px #d7c59c55;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
  padding: 24px 32px;
  min-height: 80px;
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-top: 3px solid #EBA867;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #70491F;
  max-width: 680px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
}
.cookie-banner button {
  background: #FFF8EC;
  color: #795325;
  border: 1.5px solid #EBA867;
  border-radius: 24px 10px 18px 24px;
  padding: 9px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.19s, color 0.17s, box-shadow 0.22s;
  outline: none;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #EBA867;
  color: #fff;
  box-shadow: 0 4px 15px #e2c29944;
}
@media (max-width: 845px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px;
    font-size: 1rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -53%) scale(0.98);
  background: #fff8ec;
  border-radius: 18px 38px 28px 18px;
  box-shadow: 0 8px 38px #d7c59c66;
  z-index: 20000;
  padding: 42px 32px 32px 32px;
  width: 94%;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s, transform 0.38s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1.02);
}
.cookie-modal h2 {
  font-size: 1.19rem;
  color: #7b5222;
  border: none;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal .category input[type='checkbox'] {
  accent-color: #8CA284;
  width: 19px;
  height: 19px;
}
.cookie-modal .category.essential label {
  color: #b67229;
  font-weight: 700;
}
.cookie-modal .category.essential input[type='checkbox'] {
  accent-color: #EBA867;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #FBE7D6;
  color: #795325;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px 10px 18px 24px;
  border: 1.5px solid #EBA867;
  padding: 8px 19px;
  cursor: pointer;
  outline: none;
  transition: background 0.17s, color 0.14s;
}
.cookie-modal button:hover {
  background: #EBA867;
  color: #fff;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px; right: 15px;
  background: none;
  border: none;
  color: #C9583D;
  font-size: 1.5rem;
}

@media (max-width: 540px) {
  .cookie-modal {
    padding: 20px 8px 16px 8px;
    min-width: 90vw;
    max-width: 98vw;
  }
}

/* --- ACCESSIBILITY: FOCUS/OUTLINE --- */
a:focus, button:focus, input:focus, .cta:focus {
  outline: 2px dotted #C9583D;
  outline-offset: 1.5px;
  background: #FBF6E3;
}

/* --- UTILITY & DECORATIVE (NOSTALGIC ELEMENTS) --- */
::-webkit-scrollbar {
  width: 11px;
  background: #EFEFEF;
}
::-webkit-scrollbar-thumb {
  background: #EBA867;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C9583D;
}

/* --- PRINTABLE CLASSES IF NEEDED --- */
@media print {
  nav, .mobile-menu, .cookie-banner, .cookie-modal, .cta, button, footer {
    display: none !important;
  }
}

/* --- END --- */
