/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  height: 100%;
  scroll-behavior: smooth;
  background: #F7F8FA;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  color: #3B2B24;
  background: #F7F8FA;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #3B2B24;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  text-decoration: underline;
  color: #C49A6C;
}
ul, ol {
  margin-top: 8px;
  margin-bottom: 16px;
  padding-left: 24px;
}
li {
  margin-bottom: 6px;
}

/* Typography & Headings: Scandinavian Clean */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: #3B2B24;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #3B2B24;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #3B2B24;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: #3B2B24;
}
.subheadline {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #6C5C4E;
  margin-bottom: 20px;
}
p {
  margin-bottom: 18px;
  max-width: 750px;
}
blockquote {
  font-style: italic;
  color: #3B2B24;
  margin-bottom: 10px;
  margin-top: 4px;
}

/* Containers & Layout
-----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(60,46,36,0.05);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(60,46,36,0.04);
  margin-bottom: 20px;
  position: relative;
  padding: 20px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 4px 28px 0 rgba(60,46,36,0.12);
  transform: translateY(-2px) scale(1.02);
}
.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;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #F7F8FA;
  border: 1.5px solid #E7ECF2;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 rgba(60,46,36,0.04);
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card:hover {
  background: #E7ECF2;
  box-shadow: 0 3px 16px 0 rgba(60,46,36,0.10);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 12px 0;
}
.feature-grid > div {
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(200,200,200,0.08);
  flex: 1 1 215px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 200px;
  border: 1.5px solid #E7ECF2;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature-grid > div:hover {
  border: 1.5px solid #C49A6C;
  box-shadow: 0 7px 28px 0 rgba(196,154,108,0.15);
}
.store-info, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Header & Navigation
-----------------------------------------------*/
header {
  width: 100%;
  background: #fff;
  border-bottom: 1.5px solid #ECE5DF;
  box-shadow: 0 1px 8px 0 rgba(60,46,36,0.07);
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 75px;
  gap: 24px;
}
header a img {
  height: 38px;
  object-fit: contain;
  margin-right: 20px;
}
nav.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
nav.main-nav a {
  color: #3B2B24;
  padding: 9px 4px;
  border-radius: 5px;
  transition: background 0.14s, color 0.15s;
}
nav.main-nav a:hover, nav.main-nav a:focus {
  background: #E7ECF2;
  color: #C49A6C;
  text-decoration: none;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #C49A6C;
  color: #fff;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  margin-left: 24px;
  box-shadow: 0 1px 4px 0 rgba(196,154,108,0.06);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.14s;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #3B2B24;
  color: #fff;
  box-shadow: 0 5px 16px 0 rgba(214,172,101,0.13);
  transform: translateY(-1px) scale(1.03);
}

button, .button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  transition: color 0.16s, background 0.16s;
}

/*----------------------
  Responsive Burger Menu
------------------------*/
.mobile-menu-toggle {
  background: transparent;
  color: #3B2B24;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  display: block;
  margin-left: 14px;
  padding: 6px 10px 7px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  z-index: 102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E7ECF2;
  color: #C49A6C;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  min-height: 100vh;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(59,43,36,0.18);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #3B2B24;
  background: none;
  border: none;
  margin: 24px 0 0 20px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 1002;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E7ECF2;
  color: #C49A6C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  margin-top: 24px;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #3B2B24;
  background: none;
  padding: 13px 4px 13px 0px;
  border-radius: 7px;
  transition: background 0.14s, color 0.18s;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #E7ECF2;
  color: #C49A6C;
}

/* Hamburger initially visible only mobile */
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
  nav.main-nav {
    display: flex;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  nav.main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
}

/* Main & Sections
-----------------------------------------------*/
main {
  width: 100%;
  min-height: 60vh;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(60,46,36,0.06);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Footer
-----------------------------------------------*/
footer {
  background: #F2EFED;
  border-top: 1.5px solid #ECE5DF;
  padding: 44px 0 18px 0;
  font-size: 1rem;
  color: #6C5C4E;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.footer-brand {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #3B2B24;
  gap: 14px;
}
.footer-brand img {
  height: 32px;
  object-fit: contain;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-nav a {
  color: #3B2B24;
  padding: 4px 2px;
  border-radius: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #E7ECF2;
  color: #C49A6C;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 17px;
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.8;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  font-size: 0.95rem;
  color: #A09484;
  margin-top: 12px;
}
.footer-legal a {
  color: #7D736A;
  text-decoration: underline dotted;
  transition: color 0.13s;
}
.footer-legal a:hover {
  color: #C49A6C;
  text-decoration: underline dotted;
}

/* Cookie Consent Banner
-----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #3B2B24;
  box-shadow: 0 -2px 24px 0 rgba(42,36,32,0.11);
  padding: 18px 12px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  z-index: 1400;
  border-top: 2px solid #ECE5DF;
  animation: cookie-banner-in 0.34s ease;
}
@keyframes cookie-banner-in {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-banner .cookie-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 8px 19px;
  border: none;
  background: #E7ECF2;
  color: #3B2B24;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-right: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: background 0.18s, color 0.18s;
}
.cookie-banner .cookie-btn.accept {
  background: #C49A6C;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #3B2B24;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #E7ECF2;
  color: #3B2B24;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #3B2B24;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  border: 1.5px solid #E7ECF2;
  color: #3B2B24;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  border: 1.5px solid #C49A6C;
  background: #E7ECF2;
  color: #C49A6C;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(59,43,36,0.12);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in-modal 0.18s;
}
@keyframes fade-in-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  max-width: 370px;
  width: 92vw;
  border-radius: 13px;
  box-shadow: 0 2px 28px 0 rgba(59,43,36,0.19);
  padding: 32px 28px 26px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1800;
  animation: modal-in 0.25s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modal-in {
  from {
    opacity: 0; transform: scale(.88) translateY(30px); 
  }
  to {
    opacity: 1; transform: scale(1) translateY(0); 
  }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-modal-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-modal-label {
  font-size: 1rem;
  color: #3B2B24;
}
.cookie-toggle {
  width: 42px; height: 24px;
  background: #E7ECF2;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  border: 1.5px solid #E7ECF2;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-indicator {
  content: "";
  position: absolute;
  left: 3px; top: 2.5px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(59,43,36,0.10);
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-indicator {
  left: 20.5px;
  background: #C49A6C;
}
.cookie-toggle.enabled {
  background: #C49A6C;
  border: 1.5px solid #C49A6C;
}
.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 18px;
  font-size: 1.7rem;
  color: #C49A6C;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 5px;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F7F8FA;
  color: #3B2B24;
}

/* Utility & Micro-interactions
-----------------------------------------------*/
::-webkit-input-placeholder {color:#A09484;}
::-moz-placeholder {color:#A09484;}
:-ms-input-placeholder {color:#A09484;}
::placeholder {color:#A09484;}

/* Icon visuals (natural tones) */
img[alt*="icon-"], .icon {
  filter: grayscale(18%) brightness(0.92) contrast(1.1); 
}

/* General spacing */
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

/* Misc & Rich content */
hr {
  border: none;
  border-top: 1.5px solid #ECE5DF;
  margin: 40px 0 32px 0;
}

/* Form elements */
input, select, textarea {
  border-radius: 6px;
  border: 1px solid #E7ECF2;
  background: #fff;
  padding: 10px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
  margin-top: 3px;
  outline: none;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #C49A6C;
  box-shadow: 0 2px 8px #C49A6C22;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.99rem;
}

/* Responsive Design
-----------------------------------------------*/
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  section, .section {
    padding: 28px 8px;
    border-radius: 11px;
  }
  .content-wrapper {
    padding: 0 1px;
    max-width: 96vw;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
  h1, .h1 {
    font-size: 2rem;
  }
  h2, .h2 {
    font-size: 1.25rem;
  }
  .content-wrapper {
    gap: 20px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .section, section {
    margin-bottom: 32px;
    padding: 20px 3vw;
    border-radius: 8px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }
  .store-info, .contact-info {
    gap: 9px;
  }
}
@media (max-width: 575px) {
  .container {
    padding: 0 2vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  html, body {
    font-size: 14px;
  }
  h1, .h1 {
    font-size: 1.3rem;
  }
  h2, .h2 {
    font-size: 1.10rem;
  }
  section, .section {
    padding: 14px 1vw;
  }
  .content-wrapper {
    gap: 11px;
    padding: 0;
  }
}

/* Scandinavian Clean Micro-effects
-----------------------------------------------*/
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, border 0.17s, transform 0.13s, background 0.18s;
}
.cta-button, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.16s, box-shadow 0.15s, transform 0.13s;
}
.cta-button:active {
  transform: scale(0.97);
}

/* Hide cookie modal/backdrop by default */
.cookie-modal-backdrop { display: none; }
.cookie-modal-backdrop.active { display: flex; }

/* Accessibility Helpers */
:focus-visible {
  outline: 2px dotted #C49A6C;
  outline-offset: 2px;
}

/* Hide visually but keep for screen reader */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* Ensure no overlap: All .card/.section have minimum 20px margin between. Already set by .section, .card, .testimonial-card, .feature-grid gaps. */
