/* RESET & BASELINE --------------------- */
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-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #FDF6F0;
  color: #293042;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-size: 16px;
  background-color: #FDF6F0;
  color: #293042;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
a {
  color: #BA7126;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #de983b;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #293042;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
p {
  margin-bottom: 18px;
}
img {
  display: inline-block;
  max-width: 100%;
  border-radius: 10px;
}

/* LAYOUT & CONTAINERS ------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
}

/* HEADER & NAVIGATION ------------------- */
header {
  background: #fff6ec;
  border-bottom: 1px solid #f3dcc1;
  box-shadow: 0 4px 22px -8px rgba(186,113,38,0.06);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
}
header img {
  height: 48px;
  max-width: 200px;
  border-radius: 11px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #293042;
  background: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #ffe4bc;
  color: #BA7126;
  text-decoration: none;
}
header .cta.primary {
  margin-left: 14px;
}
/* BURGER MENU --------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #FFF9F1;
  border: none;
  font-size: 2rem;
  color: #BA7126;
  border-radius: 10px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  z-index: 201;
  box-shadow: 0 2px 8px rgba(186,113,38,0.045);
}
.mobile-menu-toggle:focus {
  background: #ffe4bc;
  color: #BB5D15;
  outline: 2px solid #BA7126;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  max-width: 360px;
  background: #fff6ec;
  box-shadow: -5px 0 28px -8px rgba(186, 113, 38, 0.14);
  z-index: 500;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 35px 28px 28px 28px;
  gap: 22px;
  border-radius: 18px 0 0 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #BA7126;
  align-self: flex-end;
  padding: 4px 12px;
  margin-bottom: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #ffe4bc;
  color: #BB5D15;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #293042;
  padding: 12px 10px;
  border-radius: 7px;
  transition: background .2s, color .2s;
  background: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #ffe4bc;
  color: #BA7126;
}

/* HIDE ON DESKTOP, SHOW ON MOBILE */
@media (max-width: 1070px) {
  .main-nav {
    display: none;
  }
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1070px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION -------------------------- */
.hero {
  background: #ffe4bc;
  border-radius: 28px;
  margin-bottom: 50px;
  padding: 40px 0 44px 0;
  box-shadow: 0 6px 32px -15px #f3dcc1;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 28px;
  max-width: 730px;
}
.hero h1 {
  color: #BA7126;
}
.hero p {
  font-size: 1.35rem;
  color: #293042;
}

/* FLEX CONTENT GRIDS ---------------------- */
.features-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.features-grid {
  justify-content: flex-start;
  align-items: stretch;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px -8px rgba(243,204,153,0.22);
  padding: 28px 18px 24px 18px;
  min-width: 230px;
  flex: 1 1 220px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .25s, transform .22s;
  margin-bottom: 20px;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  background: #fff6ec;
}
.feature h3 {
  color: #BA7126;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 12px 44px -14px rgba(186, 113, 38, 0.21);
  transform: translateY(-3px) scale(1.025);
}

.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px -10px #ecd2a1;
  padding: 26px 18px 22px 18px;
  min-width: 200px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .23s, transform .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 44px -12px rgba(186, 113, 38, 0.22);
  transform: translateY(-2px) scale(1.022);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* TEXT-IMAGE/SECTION LAYOUTS ------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.text-section {
  background: #fff9f2;
  border-radius: 16px;
  box-shadow: 0 2px 12px -8px #ecd2a1;
  padding: 24px 18px 20px 18px;
  margin-bottom: 15px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* TESTIMONIALS --------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px -6px #e2c7c0;
  padding: 28px 24px 22px 24px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .2s;
  border-left: 7px solid #BA7126;
  color: #293042;
  max-width: 670px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 34px -14px #b48b55;
  transform: translateY(-2px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #293042;
  margin-bottom: 8px;
}
.testimonial-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #856237;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #8a5026;
}

/* LIST & FEATURE ITEM LAYOUTS ------------ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.faq-item {
  background: #fff9f2;
  border-radius: 14px;
  box-shadow: 0 2px 10px -6px #ecd2a1;
  padding: 20px 16px 16px 16px;
  margin-bottom: 12px;
}

/* BUTTONS & CTAs ---------------------------- */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 28px;
  box-shadow: 0 3px 18px -7px #ecb39146;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background .22s, color .2s, transform .16s, box-shadow .24s;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 12px;
}
.cta.primary {
  background: #BA7126;
  color: #ffffff;
}
.cta.primary:hover, .cta.primary:focus {
  background: #de983b;
  color: #fff6ec;
  transform: translateY(-1px) scale(1.03);
}
.cta.secondary {
  background: #fff9f2;
  color: #BA7126;
  border: 1.5px solid #BA7126;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #ffe4bc;
  color: #BB5D15;
  border-color: #BA7126;
  transform: translateY(-1px) scale(1.03);
}

button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

/* TABLES & FORMS ------------------------------ */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px -8px #ecd2a1;
}
thead tr {
  background: #FFD6A2;
}
th, td {
  padding: 15px 12px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #ffe4bc;
}
th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #BA7126;
}
tr:last-child td {
  border-bottom: none;
}

input[type="text"], input[type="email"], textarea {
  border-radius: 10px;
  border: 1.5px solid #FFD6A2;
  padding: 12px 12px;
  outline: none;
  margin-bottom: 18px;
  width: 100%;
  font-size: 1rem;
  background: #fff9f2;
  transition: border .2s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 1.5px solid #BA7126;
}

label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}

/* FOOTER ------------------------------------ */
footer {
  background-color: #ffe4bc;
  color: #293042;
  margin-top: 60px;
  padding: 44px 0 0 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 8px -3px #f3dcc1;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #8a5026;
  font-size: 0.97rem;
  border-radius: 7px;
  padding: 6px 8px;
  transition: background .17s, color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff6ec;
  color: #BA7126;
  text-decoration: none;
}
.contact-footer {
  font-size: 0.97rem;
  color: #856237;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
}


/* COOKIE BANNER & MODAL -------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: #e7c597;
  color: #293042;
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -2px 14px -4px #95662c2c;
  font-size: 1.04rem;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  animation: banner-in .38s cubic-bezier(.77,0,.18,1) both;
}
@keyframes banner-in {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 23px;
  border-radius: 22px;
  box-shadow: 0 1px 8px -5px #c4975e5e;
  border: none;
  cursor: pointer;
  margin: 0 5px;
  outline: none;
  transition: background .16s, color .13s, box-shadow .2s;
}
.cookie-banner .accept {
  background: #BA7126;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #de983b;
}
.cookie-banner .reject {
  background: #fff;
  color: #BA7126;
  border: 1.5px solid #BA7126;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #ffd7be;
}
.cookie-banner .settings {
  background: #ffe4bc;
  color: #8a5026;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff9f2;
  color: #BA7126;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(41, 48, 66, 0.35);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .21s cubic-bezier(.77,0,.18,1) both;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fffdf7;
  border-radius: 20px;
  width: 95vw;
  max-width: 440px;
  padding: 34px 28px 26px 28px;
  box-shadow: 0 8px 42px -10px #b48b5514;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalin .29s cubic-bezier(.77,0,.18,1) both;
}
@keyframes modalin {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: #BA7126;
  font-size: 1.19rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 13px 0 8px 0;
}
.cookie-modal label {
  font-size: 1.05rem;
}
.cookie-modal input[type="checkbox"] {
  margin-right: 6px;
  width: 19px;
  height: 19px;
  accent-color: #BA7126;
}
.cookie-modal .category-desc {
  font-size: 0.97rem;
  color: #6e6863;
}
.cookie-modal .cookie-modal-btn-row {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
}
.cookie-modal .close-btn {
  background: none;
  border: none;
  color: #b48b55;
  font-size: 1.7rem;
  align-self: flex-end;
  margin-top: -25px;
  margin-bottom: 3px;
  cursor: pointer;
  border-radius: 10px;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  color: #BA7126;
  background: #fff9f2;
}

/* RESPONSIVE DESIGN ------------------------------- */
@media (max-width: 980px) {
  .features-grid, .card-container, .content-grid {
    gap: 18px;
  }
  .container {
    padding: 0 9px;
  }
  .section {
    padding: 32px 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 4px;
  }
  .hero {
    padding: 24px 0 24px 0;
    border-radius: 19px;
  }
  .section {
    padding: 18px 2px;
    margin-bottom: 38px;
    border-radius: 13px;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
  .feature, .card {
    min-width: 0;
    width: 100%;
    margin-bottom: 11px;
  }
  .testimonial-card {
    padding: 17px 10px 13px 10px;
    margin-bottom: 12px;
  }
  footer {
    border-radius: 17px 17px 0 0;
    padding: 27px 0 0 0;
  }
  .footer-nav {
    gap: 12px;
  }
  .text-section {
    padding: 13px 4px 10px 6px;
    border-radius: 9px;
  }
  .faq-item {
    padding: 11px 6px 8px 8px;
    border-radius: 7px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1 {
    font-size: 1.36rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .hero .content-wrapper {
    gap: 17px;
  }
}

/* VISUAL HIERARCHY AND UTILITY --------- */
.mt-0 { margin-top: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-12 { margin-bottom: 12px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-48 { margin-bottom: 48px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-32 { gap: 32px !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

/* ACCESSIBILITY FOCUS --------------------- */
a:focus, button:focus, .cta:focus {
  outline: 2px solid #BA7126;
  outline-offset: 2px;
  z-index: 2;
}

/* DECORATIVE & MICRO INTERACTIONS --------- */
.card, .feature, .testimonial-card {
  transition: box-shadow .22s, transform .25s;
}
.card:hover, .feature:hover, .testimonial-card:hover {
  box-shadow: 0 10px 38px -12px #e3b57e59;
  transform: translateY(-2px) scale(1.018);
}

/* OVERRIDE: NO GRID ALLOWED --------------- */
/* (intentionally left empty; use only flexbox) */

/* CUSTOM SCROLLBAR (friendly look) --------- */
::-webkit-scrollbar {
  width: 9px;
  background: #ffe4bc;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb {
  background: #ffd7be;
  border-radius: 9px;
}

/* PRINT RESTRICTIONS --------------------- */
@media print {
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal-backdrop { display: none !important; }
}

/* END OF STYLE.CSS */
