/* ===========================================================
   CSS RESET & BASE STYLES
   =========================================================== */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  min-height: 100vh;
  background: #fff8f2;
  color: #172B36;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: radial-gradient(circle at 75% 75%, #E6B47715 0%, transparent 75%);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===========================================================
   TYPOGRAPHY - Creative Artistic
   =========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #172B36;
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
  color: #E6B477;
  text-shadow: 1px 2px 0 #172B3622, 0 4px 24px #E6B47733; 
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #172B36;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, li, span {
  color: #34495e;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
strong { font-weight: 700; color: #172B36; }
em { font-style: italic; }
a {
  color: #A67124;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,2,.3,1);
}
a:hover, a:focus {
  color: #E6B477;
  outline: none;
  text-decoration: underline;
}

/* Typography spacing */
body > *:not(header):not(footer) {
  margin-bottom: 24px;
}

/* ===========================================================
   LAYOUT: Container
   =========================================================== */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  background: #fffdfa;
  border-radius: 26px;
  box-shadow: 0 8px 32px #e6b47718;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
    border-radius: 18px;
  }
}

/* ===========================================================
   HEADER, NAV, CTA BUTTONS, BRAND MARK
   =========================================================== */
header {
  background: #172B36;
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  box-shadow: 0 4px 24px #172b3620;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #E6B477;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
header nav a:after {
  content: '';
  display: block;
  margin: 3px auto 0;
  width: 0%;
  height: 2px;
  background: #E6B477;
  border-radius: 1px;
  transition: width 0.2s;
}
header nav a:hover:after {
  width: 90%;
}
header nav a:hover, header nav a:focus {
  background: #E6B47744;
  color: #fff;
}
.cta-button {
  background: linear-gradient(90deg,#E6B477 50%, #ffb95f 100%);
  color: #172B36;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 8px #dea93b33;
  padding: 11px 30px;
  margin-left: 18px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, color 0.18s;
  outline: none;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.cta-button:hover, .cta-button:focus {
  background: #172B36;
  color: #E6B477;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 28px #172B3677, 0 2px 12px #e6b47722;
}

header img {
  height: 48px;
  width: auto;
  border-radius: 14px;
}

/* ===========================================================
   MOBILE MENU
   =========================================================== */
.mobile-menu-toggle {
  background: #E6B477;
  color: #172B36;
  border: none;
  font-size: 2.2rem;
  border-radius: 16px;
  padding: 2px 20px 1px 14px;
  cursor: pointer;
  display: none;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 101;
}
.mobile-menu-toggle:hover {
  background: #ffc77d;
  box-shadow: 0 0 7px #e6b47799;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #172B36FB;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.7,1.5,.6,1), box-shadow 0.25s;
  z-index: 9999;
  box-shadow: 8px 0 28px #E6B47733;
  overflow-y: auto;
  padding: 0;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #E6B477;
  border: none;
  font-size: 2.2rem;
  margin: 20px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2;
}
.mobile-menu-close:hover {
  color: #FFF7E3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 32px;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: #E6B477;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  padding: 13px 0 13px 10px;
  border-radius: 7px 24px 24px 7px;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
  margin-right: 35vw;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6B47744;
  color: #fff;
  outline: none;
}

@media (max-width: 1100px) {
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1101px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===========================================================
   HERO SECTIONS & CREATIVE LAYOUTS
   =========================================================== */
.hero {
  background: linear-gradient(135deg, #fffdfa 75%, #E6B47722 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 40px 0 24px 0;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 48px #e6b4771a;
  margin-bottom: 48px;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
  gap: 18px;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 16px;
    border-radius: 0 0 16px 16px;
    min-height: 170px;
  }
  .hero .container {
    flex-direction: column;
    align-items: center;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    padding: 0;
  }
}

/* ===========================================================
   FLEXBOX UTILITY CLASSES & ARTISTIC CARDS/CONTAINERS
   =========================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 4px 18px #E6B47725;
  margin-bottom: 20px;
  position: relative;
  min-width: 240px;
  padding: 28px 20px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.23s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px #E6B47744, 0 1px 8px #0001;
  transform: translateY(-3px) scale(1.018);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Feature grid & items (creative artistic) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #f7e6ce;
  border-radius: 18px;
  border: 2px solid #e6b47733;
  padding: 32px 20px 26px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  box-shadow: 0 6px 22px #e6b4771a;
  transition: box-shadow 0.22s, border-color 0.2s;
  position: relative;
}
.feature-grid > div:hover {
  border-color: #e6b477AA;
  box-shadow: 0 20px 44px #E6B47733, 0 3px 12px #0000001c;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
  filter: drop-shadow(1px 2px 6px #E6B47733);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid > div, .card {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ===========================================================
   TESTIMONIALS & FAQ CARDS
   =========================================================== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 6px solid #E6B477;
  border-radius: 18px;
  box-shadow: 0 2px 24px #e6b47715;
  max-width: 370px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.testimonial-card p {
  color: #172B36;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-size: 1.06rem;
  line-height: 1.52;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  color: #73726B;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 6px 33px #e6b47725, 0 1px 8px #0001;
  transform: translateY(-2px) scale(1.011);
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list > div {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 2px 20px #E6B47713;
  padding: 20px 22px 18px 26px;
  margin-bottom: 20px;
  flex: 1 1 290px;
  min-width: 240px;
  transition: box-shadow 0.2s, border 0.16s;
}
.faq-list > div:hover {
  box-shadow: 0 8px 34px #e6b47724;
}

@media (max-width: 900px) {
  .testimonials, .faq-list {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .faq-list > div {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
}

/* ===========================================================
   LISTS & OL/UL STYLING
   =========================================================== */
ul, ol {
  margin-left: 18px;
  margin-bottom: 14px;
  padding-left: 16px;
}
ul li, ol li {
  margin-bottom: 6px;
  color: #172B36;
}
ul li::marker, ol li::marker {
  color: #E6B477;
  font-size: 1em;
}

/* ===========================================================
   FOOTER 
   =========================================================== */
footer {
  width: 100%;
  background: #172B36;
  color: #E6B477;
  padding: 48px 0 28px 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -8px 32px #172b3620;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px 32px;
}
footer a {
  color: #E6B477;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 12px;
  margin-bottom: 6px;
  transition: color 0.19s;
  text-decoration: none;
}
footer a:hover, footer a:focus {
  color: #fffdfa;
  outline: none;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-right: 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.98rem;
}
.footer-contact p {
  color: #FFF7E3;
  display: flex;
  align-items: center;
  gap: 12px;
}
footer img {
  height: 36px;
  border-radius: 50%;
  background: #fffdfa;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px #e6b47733;
}

@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ===========================================================
   BUTTONS & FORM ELEMENTS
   =========================================================== */
button, .button {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 10px 30px;
  background: #E6B477;
  color: #172B36;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.22s, transform 0.18s;
  outline: none;
  box-shadow: 0 1px 7px #E6B47718;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #172B36;
  color: #E6B477;
  box-shadow: 0 4px 18px #E6B47728;
  transform: translateY(-1px) scale(1.018);
}
input, textarea, select {
  border: 1.5px solid #E6B477aa;
  background: #fffdfa;
  color: #172B36;
  border-radius: 13px;
  padding: 8px 14px;
  font-size: 1em;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 15px;
  box-shadow: 0 1px 4px #172b3606;
  outline: none;
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #172B36;
}

/* ===========================================================
   COOKIE CONSENT BANNER + MODAL
   =========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10000;
  background: #fffdfa;
  border-top: 4px solid #E6B477;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px 34px 18px;
  box-shadow: 0 -4px 26px #172B3640;
  gap: 34px;
  transition: transform 0.4s, opacity 0.24s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__message {
  flex: 2 1 320px;
  color: #172B36;
  margin-right: 16px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  padding: 9px 20px;
  box-shadow: 0 1px 7px #E6B47711;
  margin: 0 2px;
  outline: none;
  transition: box-shadow 0.17s, background 0.16s;
}
.cookie-btn {
  background: #E6B477;
  color: #172B36;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #172B36;
  color: #E6B477;
}
.cookie-settings-btn {
  background: #fffdfa;
  color: #E6B477;
  border: 1.5px solid #E6B47788;;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #E6B47733;
  color: #172B36;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 8px 13px 12px;
    gap: 16px;
    font-size: 0.98rem;
  }
  .cookie-banner__message {
    margin-right: 0;
  }
}

.cookie-preference-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 92vw;
  max-width: 390px;
  background: #fffdfa;
  border-radius: 23px;
  box-shadow: 0 10px 44px #172B3640;
  z-index: 10100;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translate(-50%, -50%) scale(1.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s, transform 0.33s;
}
.cookie-preference-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal__header h3 {
  color: #172B36;
  font-size: 1.25rem;
  margin: 0;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: #E6B477;
  font-size: 2rem;
  cursor: pointer;
  outline: none;
  padding: 0 6px;
  line-height: 1;
  transition: color 0.17s;
}
.cookie-modal__close:hover {
  color: #172B36;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category-label {
  color: #172B36;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-toggle {
  accent-color: #E6B477;
  width: 22px;
  height: 22px;
  border-radius: 7px;
}
.cookie-category-essential .cookie-toggle {
  accent-color: #c4bcbb;
}
.cookie-category-essential .cookie-category-label {
  font-style: italic;
  color: #a1a6ad;
}

/* Overlay for modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #172B36CC;
  opacity: 0;
  z-index: 10100;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}


/* ===========================================================
   RESPONSIVE DESIGN
   =========================================================== */
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .section {
    margin-bottom: 24px;
    padding: 14px 4px;
  }
  .card, .faq-list > div, .testimonial-card, .feature-grid > div {
    padding: 18px 10px 16px 10px;
  }
}

@media (max-width: 500px) {
  .footer-contact p, footer nav a { font-size: 0.91rem; }
  .footer-contact { gap: 3px; }
}

/* ===========================================================
   MICRO-INTERACTIONS & HOVER EFFECTS
   =========================================================== */
.cta-button, .button, .card, .feature-grid > div, .testimonial-card, .faq-list > div, .card-container .card {
  transition: box-shadow 0.22s, background 0.18s, color 0.17s, transform 0.17s;
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.989);
}
.cta-button:active, .button:active {
  transform: scale(0.96);
}

/* ===========================================================
   UNIQUE ARTISTIC TOUCHES (PAINTERLY EDGE, HAND-DRAWN ACCENTS)
   =========================================================== */
.section, .card, .feature-grid > div, .testimonial-card, .faq-list > div {
  border: 2.5px solid #e6b47718;
  box-shadow: 0 3px 14px #e6b47711;
  position: relative;
  overflow: hidden;
}
.section:before, .card:before, .feature-grid > div:before, .testimonial-card:before,
.faq-list > div:before {
  content: '';
  position: absolute;
  left: -30px; top: -38px;
  width: 87px; height: 45px;
  background: #E6B47733;
  border-radius: 30% 70% 50% 50%/70% 30% 50% 50%;
  z-index: 0;
  opacity: 0.19;
  transform: rotate(-13deg);
}

.section:after, .card:after, .feature-grid > div:after, .testimonial-card:after, .faq-list > div:after {
  content: '';
  position: absolute;
  right: -22px; bottom: -26px;
  width: 60px; height: 32px;
  background: #E6B4771a;
  border-radius: 60% 30% 60% 20%/70% 30% 80% 30%;
  z-index: 0;
  opacity: 0.13;
  transform: rotate(22deg);
}

/* Keep content on top of pseudo backgrounds */
.section > *, .card > *, 
.feature-grid > div > *, .testimonial-card > *, .faq-list > div > * {
  position: relative;
  z-index: 1;
}

/* ===========================================================
   LOADING STATE / SKELETON SCREEN
   (optional: shows animation while content loads)
   =========================================================== */
.skeleton {
  background: #e6b47744;
  border-radius: 8px;
  min-height: 20px;
  animation: skeleton-shine 1.4s infinite linear;
}
@keyframes skeleton-shine {
  0% { background-color: #e6b47733; }
  50% { background-color: #fffdfa; }
  100% { background-color: #e6b47733; }
}

/* ===========================================================
   CUSTOM SCROLLBAR
   =========================================================== */
::-webkit-scrollbar {
  width: 10px;
  background: #fffdfa;
}
::-webkit-scrollbar-thumb {
  background: #E6B47777;
  border-radius: 8px;
}

/* ===========================================================
   PRINTING (OPTIONAL)
   =========================================================== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-preference-modal, footer {
    display: none !important;
  }
}
