/* === 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: linear-gradient(135deg, #E6E1D8 0%, #fff 100%);
  color: #1B1B1F;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  font-weight: 400;
}

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* === GLOBAL CLASSES / HELPERS === */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.center {
  align-items: center;
  text-align: center;
}
ul, ol {
  margin-bottom: 24px;
  margin-left: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  list-style-position: outside;
}
a {
  color: #C49A6C;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.4,0,.2,1), text-decoration 0.3s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #A67E56;
  text-decoration: underline;
}

/* === HEADINGS & TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B1B1F;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #2E2D2D;
  letter-spacing: 0.01em;
}
.subheadline {
  font-size: 1.1rem;
  color: #7C7263;
  margin-bottom: 28px;
  font-weight: 500;
  font-family: 'Roboto', Arial, sans-serif;
}
blockquote {
  margin: 24px 0 24px 0;
  padding: 18px 24px;
  color: #1B1B1F;
  background: #F6F3ED;
  border-left: 4px solid #C49A6C;
  font-style: italic;
  border-radius: 10px 0 0 10px;
}
strong, b {
  font-weight: 700;
  color: #1B1B1F;
}

.text-section {
  margin-bottom: 40px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px rgba(44,36,28,0.03);
  z-index: 10;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
  min-height: 70px;
}
header img {
  height: 38px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #1B1B1F;
  letter-spacing: 0.01em;
  padding: 6px 13px;
  border-radius: 8px;
  transition: color 0.22s, background 0.2s;
}
header nav a:hover, header nav a.active {
  background-color: #C49A6C;
  color: #fff;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: flex;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1B1B1F;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 8px;
  transition: background 0.18s, color 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ECE6DE;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  padding-top: 20px;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.65,.05,.36,1);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #C49A6C;
  cursor: pointer;
  align-self: flex-end;
  margin: 6px 20px 8px 0;
  transition: color 0.22s;
  z-index: 2010;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #1B1B1F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 30px 12px 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #1B1B1F;
  padding: 10px 0 10px 0;
  width: 100%;
  border-radius: 7px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #C49A6C;
  color: #fff;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}


/* === MAIN SPACING === */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
  margin-top: 24px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === FLEXBOX LAYOUT CLASSES === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  box-shadow: 0 2px 12px rgba(36,27,16,0.07);
  border-radius: 18px;
  flex-basis: calc(50% - 24px);
  flex-grow: 1;
  padding: 30px 28px 27px 28px;
  min-width: 222px;
  max-width: 320px;
  gap: 15px;
  position: relative;
  min-height: 238px;
  margin-bottom: 20px;
  transition: box-shadow 0.27s cubic-bezier(.4,0,.2,1), transform 0.24s cubic-bezier(.4,0,.2,1);
}
.feature img {
  height: 40px;
  width: 40px;
  margin-bottom: 14px;
}
.feature h3 {
  font-size: 1.08rem;
  color: #C49A6C;
}
.feature p {
  color: #35322C;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 24px 0 rgba(27,27,31,0.13), 0 0 0 2px #C49A6C38;
  transform: translateY(-4px) scale(1.02);
  z-index: 4;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.content-wrapper.center {
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* === TESTIMONIALS === */
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 13px rgba(82,60,29,0.10);
  min-width: 270px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s cubic-bezier(.4,0,.2,1);
  border: 1px solid #ECE6DE;
  position: relative;
}
.stars {
  color: #C49A6C;
  font-size: 1.35rem;
}
.testimonial-card p {
  color: #1B1B1F;
  font-size: 1rem;
  margin-bottom: 9px;
}
.testimonial-card .testimonial-author {
  color: #7C7263;
  font-size: 0.98em;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(196,154,108,0.16), 0 0 0 2px #C49A6C14;
}


/* === CTA BUTTONS === */
.cta-button, button.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #C49A6C 0%, #E6E1D8 100%);
  color: #fff;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 2px 10px rgba(194,154,108,0.08);
  margin-top: 10px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.32s, color 0.19s, box-shadow 0.18s, transform 0.16s;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #1B1B1F 0%, #C49A6C 100%);
  color: #fff;
  box-shadow: 0 6px 26px 0 rgba(27,27,31,0.13);
  transform: translateY(-2px) scale(1.022);
  text-decoration: none;
}

button,
input[type="submit"],
input[type="button"] {
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: #1B1B1F;
  color: #fff;
  padding: 42px 0 24px 0;
  letter-spacing: 0.01em;
  box-shadow: 0 -5px 30px 0 rgba(25,23,21,0.05);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 8px;
  align-items: center;
}
footer nav a {
  color: #C49A6C;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: color 0.2s;
  padding: 3px 7px;
}
footer nav a:hover {
  color: #fff;
}
footer p {
  margin-bottom: 3px;
  font-size: 0.98rem;
  color: #fff;
}


/* === MISC CARDS AND FLEX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(44,36,28,0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
  .features-grid,
  .testimonials-wrapper,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 24px !important;
  }
  .feature, .testimonial-card {
    max-width: 100%;
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 11px;
  }
  main,
  section {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .features-grid, .card-container, .content-grid, .testimonials-wrapper, .content-wrapper, .feature-item {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .feature, .testimonial-card, .card {
    padding: 22px 14px;
    margin-bottom: 20px;
  }
  section {
    padding: 30px 7px;
    margin-bottom: 40px;
  }
  .content-wrapper, .content-wrapper.center {
    gap: 18px;
    min-width: 0;
    align-items: stretch;
    text-align: left;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.12rem; }
  .container {
    padding: 0 4px;
  }
  .feature, .testimonial-card, .card {
    border-radius: 11px;
    font-size: 0.98em;
    padding: 13px 7px;
  }
  .cta-button {
    font-size: 0.95rem;
    padding: 10px 20px;
    min-width: 160px;
  }
}

/* === FORMS, INPUTS, MODAL BASE === */
input, textarea, select {
  font-family: inherit;
  font-size: 1em;
  border: 1px solid #ECE6DE;
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  margin-bottom: 8px;
  background: #FAF7F3;
  color: #1B1B1F;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C49A6C;
  background: #F7F3ED;
}
label {
  font-weight: 500;
  margin-bottom: 7px;
  color: #C49A6C;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* === LISTS, BLOCKS === */
ul, ol {
  margin-bottom: 18px;
}
ul li {
  margin-bottom: 8px;
  list-style: disc outside;
}
ol li {
  margin-bottom: 8px;
  list-style: decimal outside;
}

/* === COOKIE CONSENT === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  width: 100vw;
  background: #1B1B1F;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 12px 22px 12px;
  box-shadow: 0 -6px 32px 0 rgba(44,36,28,0.09);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  font-size: 1rem;
  gap: 30px;
}
.cookie-banner.hide {
  transform: translateY(140%);
}
.cookie-banner .cookie-message {
  max-width: 430px;
  font-size: 1rem;
  color: #fff;
  margin-right: 25px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  background: #C49A6C;
  color: #fff;
  border: none;
  padding: 11px 27px;
  border-radius: 8px;
  cursor: pointer;
  margin: 0;
  transition: background 0.18s, color 0.14s, transform 0.12s;
}
.cookie-banner .cookie-settings-btn {
  background: #E6E1D8;
  color: #1B1B1F;
  border-radius: 8px;
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #A67E56;
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
.cookie-banner .cookie-settings-btn:hover {
  background: #e5d5bc;
  color: #1B1B1F;
}
@media (max-width: 750px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 16px 4px;
  }
  .cookie-banner .cookie-message {
    margin-right: 0;
    max-width: 100%;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3600;
  background: rgba(27,27,31, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.32s cubic-bezier(.65,.05,.36,1);
}
.cookie-modal-overlay.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal {
  background: #fff;
  color: #1B1B1F;
  border-radius: 15px;
  box-shadow: 0 8px 48px 0 rgba(27,27,31,0.17);
  padding: 33px 28px 28px 28px;
  max-width: 420px;
  width: 92vw;
  z-index: 3660;
  display: flex;
  flex-direction: column;
}
.cookie-modal h2 {
  font-size: 1.14rem;
  color: #C49A6C;
  margin-bottom: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-list {
  margin: 16px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-category label {
  margin-bottom: 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #C49A6C;
  width: 19px;
  height: 19px;
  margin-right: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal button, .cookie-modal .cookie-close-btn {
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 22px;
  border-radius: 7px;
  border: none;
  background: #C49A6C;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .16s, color .11s, transform 0.13s;
}
.cookie-modal .cookie-close-btn {
  background: #E6E1D8;
  color: #1B1B1F;
  margin-left: auto;
  margin-bottom: 12px;
}
.cookie-modal button:hover, .cookie-modal .cookie-close-btn:hover {
  background: #A67E56;
  color: #fff;
  transform: translateY(-1.7px) scale(1.04);
}
.cookie-modal .cookie-close-btn:hover {
  background: #e0d2b8;
  color: #1B1B1F;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 14px 6px 8px 6px;
    max-width: 96vw;
    width: 96vw;
  }
}

/* === ANIMATIONS (FADE/SLIDE) === */
.fade-in {
  animation: fadeIn .37s cubic-bezier(.39,.575,.565,1) 1;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.slide-in {
  animation: slideIn .37s cubic-bezier(.39,.575,.565,1) 1;
}
@keyframes slideIn {
  0% { transform: translateX(-32vw); opacity: .6; }
  100% { transform: translateX(0); opacity: 1; }
}

/* === SCROLLBAR STYLE === */
::-webkit-scrollbar {
  width: 10px;
  background: #ECE6DE;
}
::-webkit-scrollbar-thumb {
  background: #C49A6C;
  border-radius: 9px;
}

/* === ERROR/SUCCESS/INFO NOTICES === */
.notice, .info, .alert, .success {
  padding: 17px 23px;
  border-radius: 11px;
  margin: 16px 0 26px 0;
  font-size: 0.98em;
  font-family: 'Roboto', Arial, sans-serif;
}
.notice, .info {
  background: #ECE6DE;
  color: #5E5722;
}
.alert {
  background: #fff0e0;
  color: #be4507;
  border-left: 5px solid #e27819;
}
.success {
  background: #e0f9ec;
  color: #208f5d;
  border-left: 5px solid #2bc594;
}

/* === PRINT FRIENDLY === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  section, main, body, html {
    background: #fff !important;
    color: #1B1B1F !important;
  }
}

/* === UTILITY SPACING CLASSES === */
.mb-20 { margin-bottom: 20px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px !important; }
.pt-12 { padding-top: 12px !important; }
.pt-24 { padding-top: 24px !important; }

/* === VISUAL HIERARCHY / VISUALS === */
hr {
  height: 1px;
  background: #E6E1D8;
  border: 0; margin: 36px 0;
}

/* === GRADIENT/BACKGROUND ELEMENTS === */
.section.gradient-bg {
  background: linear-gradient(135deg, #E6E1D8 0%, #C49A6C 100%);
  color: #fff;
}

/* === ACCESSIBILITY: FOCUS STATES === */
:focus {
  outline: 2px solid #C49A6C;
  outline-offset: 1px;
}

/* === HIDDEN: For aria-hidden etc === */
[hidden] { display: none !important; }

/* === END === */
