/* ===== 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,
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;
}
article, aside, details, figcaption, figure,  
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FFF8F0;
  color: #3a220d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
a {
  color: #964B00;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #BB4B00;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin: 16px 0;
}
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
  border: 0;
}
button, .cta-primary {
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bree Serif', Georgia, serif;
  color: #6B3200;
  letter-spacing: 0.5px;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ===== TYPOGRAPHY SCALE ===== */
.text-section h2 {font-size:2rem; margin-bottom:14px;}
.text-section h3 {font-size:1.15rem; margin-bottom:8px;}
.text-section p, .text-section ul, .text-section li {
  font-size:1rem;
  line-height:1.55;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(34,21,5,0.04);
  position: relative;
  z-index: 12;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0 12px 0;
  font-size: 1.01rem;
  font-family: 'Bree Serif', Georgia, serif;
  flex-wrap: wrap;
}
.main-nav img {
  height: 40px; width: auto; margin-right:14px;
}
.main-nav a {
  padding: 4px 10px;
  border-radius: 6px;
  color: #6B3200;
  background: none;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.main-nav .cta-primary {
  background: #BB4B00;
  color: #fff;
  font-weight: bold;
  padding: 8px 22px;
  border-radius: 18px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px 0 rgba(185,110,38,0.08);
  transition: background 0.23s, box-shadow 0.18s, color 0.23s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #F97D32;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(249,125,50,0.11);
}
.main-nav a:hover:not(.cta-primary), .main-nav a:focus:not(.cta-primary) {
  background: #F3E7DB;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #964B00;
  border: none;
  font-size: 2rem;
  padding: 2px 14px;
  border-radius: 6px;
  margin-left: auto;
  z-index: 30;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F3E7DB;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #FFF8F0;
  box-shadow: 0 0 44px 0 rgba(34,21,5,0.13);
  z-index: 300;
  transition: transform 0.3s cubic-bezier(.77,0,.18,1), opacity 0.3s;
  opacity: 0;
  transform: translateX(100%);
  padding: 0;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #6B3200;
  border: none;
  font-size: 2.5rem;
  position: absolute;
  top: 18px;
  right: 16px;
  z-index: 310;
  padding: 6px 16px 8px 16px;
  border-radius: 10px;
  transition: background 0.16s;
}
.mobile-menu-close:hover {
  background: #f3e7db;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 95px;
  padding: 12px 32px;
}
.mobile-nav a {
  font-family: 'Bree Serif', Georgia, serif;
  font-size: 1.35rem;
  color: #6B3200;
  padding: 8px 0;
  border-bottom: 1px solid #e7d9cb;
  width: 100%;
  background: none;
  border-radius: 0;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #BB4B00;
  background: #F3E7DB;
}

/* ====== HERO SECTION ====== */
.hero {
  background: #FFF8F0;
  padding: 54px 0 30px 0;
  border-bottom: 1px solid #F3E7DB;
}
.hero .container .content-wrapper {
  align-items: flex-start;
  gap: 12px;
  max-width: 780px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #6B3200;
  margin-bottom: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}
.hero p {
  font-size: 1.2rem;
  color: #755037;
  margin-bottom: 16px;
}
.hero .cta-primary {
  margin-top: 12px;
}

/* ==== SECTION STYLES - ELEGANT CLASSIC === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  padding: 30px 24px;
  min-width: 210px;
  flex: 1 1 240px;
  box-shadow: 0 2px 18px 0 rgba(183,127,58,0.06);
  border: 1px solid #F3E7DB;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, border 0.13s, transform 0.19s;
  gap: 12px;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 36px 0 rgba(183,97,30,0.12);
  border: 1.5px solid #BB4B00;
  transform: translateY(-2px) scale(1.022);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  margin: 0 0 8px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== CARD & FLEX CONTAINERS BY SPEC ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 17px 0 rgba(60, 34, 0, 0.08);
  padding: 30px 20px 20px 20px;
  border: 1px solid #F3E7DB;
  transition: box-shadow 0.17s, border 0.13s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(185,75,0,0.11);
  border: 1.5px solid #BB4B00;
  transform: translateY(-2px) scale(1.015);
}
.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 CARDS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(230,184,151,0.11);
  border: 1.5px solid #F3E7DB;
  margin-bottom: 24px;
  position: relative;
  font-family: 'Bree Serif', Georgia, serif;
  color: #553011;
  min-width: 0;
  transition: box-shadow 0.15s, border 0.12s;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.08rem;
  color: #513010;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #964B00;
  margin-left:10px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px 0 rgba(155,100,65,0.12);
  border: 1.5px solid #BB4B00;
}

/* ==== BUTTONS ==== */
.cta-primary {
  background: #BB4B00;
  color: #fff;
  font-family: 'Bree Serif', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 10px 34px;
  border-radius: 36px;
  box-shadow: 0 4px 18px 0 rgba(180,100,40,0.08);
  display: inline-block;
  border: none;
  letter-spacing: 0.3px;
  margin: 0;
  margin-top: 8px;
  transition: background 0.19s, box-shadow 0.17s, color 0.18s, transform 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F97D32;
  color: #fff;
  box-shadow: 0 8px 30px 0 rgba(249,125,50,0.15);
  transform: translateY(-1px) scale(1.022);
}

button {
  background: #fff;
  color: #6B3200;
  border: 1px solid #E4D1BC;
  border-radius: 10px;
  padding: 8px 20px;
  margin: 0 4px;
  font-size: 1rem;
  transition: background 0.14s, border 0.11s, color 0.14s;
}
button:hover, button:focus {
  background: #F3E7DB;
  border: 1.5px solid #BB4B00;
  color: #BB4B00;
}

/* ==== FOOTER ==== */
footer {
  background: #fff;
  border-top: 1px solid #F3E7DB;
  padding: 26px 0 0 0;
  margin-top: 54px;
}
footer .container {
  padding: 0 18px 16px 18px;
}
.footer-contact-short {
  font-size: 0.97rem;
  color: #876548;
  margin-top: 18px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  font-family: 'Bree Serif', Georgia, serif;
  font-size: 1rem;
}
.footer-nav a, .legal-nav a {
  color: #6B3200;
  padding: 3px 10px;
  border-radius: 8px;
  transition: background 0.15s,color 0.17s;
}
.footer-nav a:hover, .legal-nav a:hover {
  background: #F3E7DB;
  color: #BB4B00;
}

/* ==== CONTACT SECTION ICONS ==== */
.text-section img {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: text-bottom;
  margin-right: 6px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fff8f0;
  border-top: 1.5px solid #F3E7DB;
  box-shadow: 0 -3px 22px 0 rgba(107,50,0,0.06);
  padding: 20px 22px 24px 22px;
  z-index: 5000;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  transition: transform 0.23s, opacity 0.18s;
  opacity: 1; transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button, .cookie-banner .cta-primary {
  font-size: 0.99rem;
  padding: 8px 22px;
  min-width: 120px;
}
.cookie-banner .cta-primary {
  background: #964B00;
  color: #fff;
  border-radius: 20px;
  border: none;
  font-family: 'Bree Serif', Georgia, serif;
  font-weight: 600;
}
.cookie-banner .cta-primary:hover, .cookie-banner .cta-primary:focus {
  background: #BB4B00;
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,21,5,0.34);
  z-index: 5050;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal .36s cubic-bezier(.77,0,.18,1) both;
}
.cookie-modal.open { display: flex; }
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #fff8f0;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(120,60,0,0.13);
  max-width: 420px;
  width: 94%;
  padding: 36px 30px 24px 30px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .cookie-modal-content h2 {
  font-size: 1.32rem;
  margin-bottom: 22px;
  color: #6B3200;
}
.cookie-modal .cookie-category {
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 1.08rem;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  accent-color: #BB4B00;
  accent-color: #BB4B00;
  margin-right: 4px;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 11px; right: 17px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #6B3200;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 10px;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #F3E7DB;
}
.cookie-modal .cookie-buttons {
  display: flex; gap: 10px; justify-content: flex-end;
  margin-top: 26px;
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 1020px) {
  .main-nav {
    gap: 12px;
    font-size: .97rem;
  }
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .feature-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .feature-grid > div, .card {
    min-width: unset;
    flex: 1 1 190px;
    padding: 22px 12px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 8px; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: flex-start;
  }
  section, .section {
    padding: 28px 6px;
  }
  .card {
    padding: 16px 10px 16px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    text-align: left;
    padding: 14px 10px;
  }
  footer .content-wrapper {
    gap: 8px;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .hero { padding: 32px 0 15px 0; }
  h1 { font-size: 2rem; }
  section, .section { padding: 16px 3px; }
}

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 2px solid #BB4B00;
  outline-offset: 2px;
}

/* ===== ELEGANT MINI EFFECTS ===== */
.card, .feature-grid > div, .testimonial-card, .cta-primary {
  transition: box-shadow 0.18s, border 0.13s, transform 0.18s, background 0.13s, color 0.18s;
}


/* ===== UTILITIES ===== */
.mt-2 { margin-top:8px; }
.mt-4 { margin-top:16px; }
.mt-6 { margin-top:24px; }
.mb-2 { margin-bottom:8px; }
.mb-4 { margin-bottom:16px; }
.mb-6 { margin-bottom:24px; }
.gap-2 { gap:8px; }
.gap-3 { gap:12px; }
.gap-4 { gap:16px; }
.gap-5 { gap:20px; }


/* ===== PRINT FRIENDLY ===== */
@media print {
  header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal { display:none !important; }
  section, .section { padding:0 !important; margin-bottom:25px!important; }
}


/* === END OF STYLE === */
