/* -----------------------------------
  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, 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 {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3F4F6;
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
* {
  box-sizing: border-box;
}
a {
  color: #b05d04;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8a4700;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  border-radius: 8px;
  display: block;
}

/* -----------------------------------
  Typography & Headings
----------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
  font-weight: 700;
  color: #242f3a;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
.section p, .section li {
  color: #374151;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: #242f3a;
  margin: 0 0 16px 0;
  padding-left: 20px;
  border-left: 4px solid #ffd9b0;
}

/* -----------------------------------
  Layout Containers
----------------------------------- */
.container {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  justify-content: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 32px 0 rgba(208, 124, 29, 0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff7ef;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(208, 124, 29, 0.05);
  padding: 28px 22px;
  margin-bottom: 20px;
  flex: 1 0 280px;
  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;
  background: #FFF7F1;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(208, 124, 29, 0.08);
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card img {
  min-width: 48px;
  max-width: 56px;
  border-radius: 50%;
  background: #ffe6ca;
  padding: 8px;
}
.testimonial-card blockquote {
  color: #2e231c;
  font-size: 1.05rem;
}
.testimonial-card strong {
  color: #b05d04;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FAQ Accordion (minimal)
----------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 20px;
}
.faq-item {
  background: #fffaed;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(208,124,29,0.04);
  padding: 18px 22px;
}
.faq-item h3 {
  cursor: pointer;
  font-size: 1.15rem;
  color: #b05d04;
  margin-bottom: 8px;
}
.faq-content {
  color: #374151;
  font-size: 1rem;
}

/* -----------------------------------
  Header, Nav, Logo
----------------------------------- */
header {
  background: #fff;
  box-shadow: 0 0 10px 0 #e0c39929;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo img {
  max-height: 44px;
  border-radius: 10px;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #242f3a;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 0;
  border-radius: 8px;
  transition: background 0.18s;
  letter-spacing: 0.01em;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFF7EF;
  color: #b05d04;
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #b05d04;
  color: #fff;
  padding: 5px 30px;
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  font-size: 1.09rem;
  box-shadow: 0 3px 18px -2px rgba(176,93,4, 0.08);
  transition: background 0.2s, box-shadow 0.22s, color 0.1s;
  border: none;
  outline: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-left: 24px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #d97706;
  box-shadow: 0 8px 36px 0 rgba(208,124,29,0.15);
  color: #fffbe9;
}

/* -----------------------------------
  Mobile Navigation (Burger/Overlay)
----------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2rem;
  color: #b05d04;
  cursor: pointer;
  margin-left: 16px;
  border-radius: 10px;
  padding: 8px 12px;
  transition: background 0.18s;
  z-index: 21;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffedd5;
  color: #8a4700;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 380px;
  height: 100vh;
  background: #fffdfb;
  box-shadow: -6px 0 28px 0 rgba(208,124,29,0.16);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 18px 4px 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #b05d04;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 14px;
  transition: background 0.13s;
  z-index: 1210;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe6ca;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
  padding: 0 40px;
}
.mobile-nav a {
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #374151;
  padding: 13px 0;
  text-align: left;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s;
  font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFF7EF;
  color: #b05d04;
}

/* Hide main nav/show burger on mobile */
@media (max-width: 990px) {
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* -----------------------------------
  Footer
----------------------------------- */
footer {
  background: #FFFCF8;
  color: #222;
  padding-top: 28px;
  border-top: 1px solid #ececec;
  box-shadow: 0 -6px 24px 0 rgba(208,124,29, 0.03);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-bottom: 20px;
  justify-content: space-between;
  padding-bottom: 14px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #b05d04;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: 0.92;
  transition: color 0.18s, text-decoration 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #8a4700;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #ffe6ca;
  padding: 6px 7px;
  border-radius: 8px;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 1px 7px 0 rgba(208,124,29, 0.06);
}
.social-links a:hover {
  background: #ffd9b0;
  box-shadow: 0 4px 14px 0 rgba(208,124,29, 0.08);
}
.legal-disclaimer {
  font-size: 0.93rem;
  color: #92846d;
  text-align: center;
  padding-bottom: 18px;
}
.legal-disclaimer a {
  color: #b05d04;
  text-decoration: underline dotted;
}

/* -----------------------------------
  Buttons & Forms
----------------------------------- */
button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  padding: 12px 30px;
  background: #b05d04;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  outline: none;
  box-shadow: 0 3px 18px -2px rgba(176,93,4, 0.07);
  transition: background 0.2s, box-shadow 0.18s;
}
button:hover, button:focus, input[type="submit"]:hover {
  background: #d97706;
  color: #fffbe9;
  box-shadow: 0 8px 24px 0 rgba(208,124,29, 0.13);
}

/* -----------------------------------
  Cookie Consent Banner + Modal
----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffaef;
  box-shadow: 0 -4px 24px 0 rgba(208,124,29,0.09);
  border-top: 1px solid #ffe0b4;
  padding: 22px 16px 19px 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  z-index: 2001;
  transition: transform 0.3s ease, opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 2 1 320px;
  font-size: 1rem;
  color: #374151;
}

.cookie-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-btn, .cookie-settings {
  font-family: 'Montserrat',Arial,sans-serif;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 20px;
  box-shadow: 0 3px 10px -2px rgba(176,93,4, 0.08);
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-btn.accept { background: #b05d04; color: #fff; }
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #d97706; color: #fffbe9; }
.cookie-btn.reject {
  background: #fff;
  color: #b05d04;
  border: 1.5px solid #ffd9b0;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffedd5;
  color: #8a4700;
}
.cookie-settings {
  background: #ffedd5;
  color: #b05d04;
  border: none;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #ffd9b0;
  color: #8a4700;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,36,26,0.38);
  z-index: 3002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 24px;
  max-width: 400px;
  width: 96vw;
  box-shadow: 0 8px 48px 0 rgba(208,124,29,0.14);
  padding: 36px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3010;
  animation: fadeInModal 0.32s cubic-bezier(.61,1.24,.52,1.04);
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: scale(0.94); }
  100% { opacity: 1; transform: scale(1);  }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-cats {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff7ef;
  border-radius: 10px;
  padding: 9px 13px;
  font-size: 1.04rem;
  font-family: 'Open Sans',Arial,sans-serif;
}
.cookie-cat input[type="checkbox"] {
  accent-color: #b05d04;
  margin-right: 5px;
}
.cookie-cat.essential {
  font-weight: bold;
  color: #b05d04;
  background: #ffedd5;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #b05d04;
  cursor: pointer;
  border-radius: 8px;
  padding: 2px 10px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ffedd5;
}

/* -----------------------------------
  Cards, Features, Misc.
----------------------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.feature-grid > div {
  background: #fffdfa;
  border-radius: 16px;
  padding: 24px 18px;
  box-shadow: 0 2px 12px 0 rgba(208,124,29,0.06);
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(176,93,4,0.09);
  transform: translateY(-2px) scale(1.018);
}
.feature-grid img {
  background: #ffe6ca;
  padding: 8px;
  border-radius: 10px;
  width: 38px;
  height: 38px;
}

/* -----------------------------------
  Lists
----------------------------------- */
ul, ol {
  margin-left: 18px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  color: #444;
  font-size: 1rem;
  padding-left: 8px;
  position: relative;
}
ul li::before {
  content: '•';
  color: #b05d04;
  font-size: 1.1em;
  vertical-align: middle;
  margin-right: 9px;
}

/* -----------------------------------
  Responsive Adjustments
----------------------------------- */
@media (max-width: 1030px) {
  .container { max-width: 100vw; padding: 0 8px; }
}
@media (max-width: 900px) {
  .footer-top, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .main-nav { gap: 11px; }
}
@media (max-width: 768px) {
  .section { padding: 32px 8px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  .feature-grid > div { min-width: 140px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 12px; }
  .content-wrapper, .text-section {
    gap: 10px;
    padding: 0;
  }
  .card {
    padding: 18px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 13px 11px;
  }
  .feature-grid, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card-container {
    flex-direction: column;
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 550px) {
  .section { padding: 18px 0 11px 0; margin-bottom: 32px; }
  .container { padding: 0 3vw; }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 5vw 10px 5vw;
  }
  .cookie-actions { flex-direction: column; gap: 8px; }
  .cookie-banner p { font-size: 0.98rem; line-height: 1.47; }
}

/* -----------------------------------
  Micro-animations & Focus States
----------------------------------- */
.section, .card, .feature-grid > div, .testimonial-card, .footer-top, .card-content,
.button, .cta-primary, .cookie-btn, .cookie-settings, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: box-shadow 0.17s, background 0.17s, color 0.18s, border 0.14s, transform 0.18s;
}
:focus-visible {
  outline: 2px solid #b05d04;
  outline-offset: 3px;
}

/* -----------------------------------
  Miscellaneous Improvements
----------------------------------- */
::-webkit-input-placeholder { color: #b49c83; }
::-moz-placeholder { color: #b49c83; }
:-ms-input-placeholder { color: #b49c83; }
::placeholder { color: #b49c83; }
input, textarea, select {
  border-radius: 10px;
  border: 1px solid #f5e7ce;
  background: #fffdfa;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 16px;
  color: #374151;
  margin-bottom: 16px;
  transition: border 0.17s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #b05d04;
  background: #FFF7EF;
}
@media (max-width: 370px) {
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
}
