/* RESET AND NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0; 
  padding: 0;
}
body {
  min-height: 100vh;
  color: #3B2114;
  background: #FFF7F0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #5B3A29;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B44E20;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: #3B2114;
  margin-bottom: 12px;
  font-weight: 600;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.4rem; line-height: 1.28; margin-bottom: 12px; }
strong {
  color: #5B3A29;
  font-weight: 700;
}
p {
  margin-bottom: 16px;
  font-size: 1.125rem;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* HEADER NAVIGATION */
header {
  background: #FFF7F0;
  border-bottom: 1px solid #F1E8DF;
  width: 100%;
  position: relative;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 24px;
}
header img {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.063rem;
  padding: 3px 4px;
  letter-spacing: 0.01em;
  color: #3B2114;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  border-radius: 1px;
  width: 0;
  background: #D16E43;
  transition: width 0.25s;
  margin-top: 1px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B44E20;
}
.btn-primary {
  background: #5B3A29;
  color: #FFFFFF;
  border-radius: 24px;
  padding: 11px 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.09rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  box-shadow: 0 2px 7px 0 rgba(110, 66, 26, 0.13);
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  margin-left: 18px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #B44E20;
  color: #fff5ed;
  transform: translateY(-1px) scale(1.03);
}
.btn-secondary {
  background: #FFE5C2;
  color: #3B2114;
  border-radius: 24px;
  padding: 10px 25px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  font-weight: 600;
  border: 1.5px solid #D16E43;
  box-shadow: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
  margin-top: 8px;
  margin-bottom: 3px;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #D16E43;
  color: #fff;
  border-color: #B44E20;
}

.mobile-menu-toggle {
  display: none;
  background: #FFE5C2;
  color: #5B3A29;
  border: none;
  font-size: 2rem;
  padding: 8px 15px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-left: 0;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #D16E43;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(91, 58, 41, 0.99);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.54,.14,.39,1.01);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  color: #fff;
  border: none;
  padding: 18px 18px 8px 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1001;
  align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFE5C2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 14vh 40px 0 0;
  gap: 26px;
  width: 100%;
  z-index: 1000;
}
.mobile-nav a {
  color: #FFE5C2;
  font-size: 1.3rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 6px;
  transition: color 0.2s, background 0.25s;
  display: block;
  min-width: 55vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D16E43;
  color: #fff;
}

/* LAYOUT - SECTIONS */
section {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 24px -5px rgba(91,58,41,0.07);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(209,110,67,0.08);
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(209,110,67,0.17);
  transform: translateY(-4px) scale(1.025);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF7F0;
  border-radius: 15px;
  box-shadow: 0 2px 13px 0 rgba(91,58,41,0.09);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 6px solid #5B3A29;
  max-width: 550px;
  transition: box-shadow 0.18s;
}
.testimonial-card blockquote {
  color: #3B2114;
  font-size: 1.2rem;
  line-height: 1.45;
  margin-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.testimonial-card cite {
  font-size: 1rem;
  color: #B44E20;
  font-family: 'Open Sans', sans-serif;
  font-style: normal;
  font-weight: 600;
}
.testimonial-card img[alt*="Star"] {
  height: 1.1em; width: 1.1em;
  vertical-align: middle;
  margin-right: 2px;
  filter: brightness(0.89) sepia(0.18) hue-rotate(-12deg) saturate(2.1);
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px 0 rgba(91,58,41,0.14);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTENT WRAPPER FLEX */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 10px;
}

/* LIST STYLES */
ul, ol {
  margin-bottom: 16px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 13px;
  font-size: 1.08rem;
  color: #3B2114;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
ul li img {
  height: 32px;
  width: 32px;
  margin-right: 2px;
}

/* FOOTER STYLES */
footer {
  background: #F7F2ED;
  border-top: 1px solid #E4dbc7;
  font-size: 1rem;
  padding: 34px 0 19px 0;
  position: relative;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 28px;
}
footer nav.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 6px;
}
footer .footer-nav a {
  color: #5B3A29;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  padding: 1px 3px;
  border-radius: 4px;
  transition: background 0.22s, color 0.2s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  background: #FFE5C2;
  color: #B44E20;
}
footer .footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #A48B7E;
}

/* FORM ELEMENTS (for Contact etc.) */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1px solid #E3D0B6;
  border-radius: 7px;
  padding: 10px 16px;
  font-size: 1.02rem;
  background: #FFFAF3;
  margin-bottom: 16px;
  outline: none;
  min-width: 0;
  box-shadow: 0 1px 2px 0 rgba(209,110,67,0.03);
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #D16E43;
}
label {
  margin-bottom: 6px;
  font-size: 1rem;
  display: block;
  color: #5B3A29;
  font-weight: 600;
}

/* SPACING & STRUCTURAL RULES */
section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; 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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* MEDIA QUERIES - RESPONSIVE DESIGN */
@media (max-width: 1020px) {
  .container { max-width: 92vw; }
  .main-nav { gap: 18px; }
  section { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 820px) {
  header .container { gap: 10px; }
  .main-nav { gap: 10px; }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 1rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; }
  section h1, h1 { font-size: 2.05rem; }
  h2 { font-size: 1.26rem; }
  section { padding: 28px 8px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 5vw; }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 7px;
    padding: 13px 7vw;
  }
  .main-nav { display: none; }
  .btn-primary { margin-left: 0; }
  .mobile-menu-toggle { display: block; }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .card { max-width: unset; width: 100%; }
  .section, section { padding: 22px 7px; margin-bottom: 38px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .feature-item { gap: 10px; }
  footer { padding: 24px 0 14px 0; }
  footer nav.footer-nav { gap: 13px; }
  .testimonial-card { max-width: 98vw; }
}
@media (max-width: 540px) {
  header img { height: 37px; }
  .btn-primary, .btn-secondary { font-size: 0.97rem; padding: 7px 17px; }
  section h1, h1 { font-size: 1.33rem; }
  h2 { font-size: 1.07rem; }
  .testimonial-card { padding: 14px; }
  .mobile-nav { padding-top: 9vh; gap: 16px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #5B3A29;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 24px 12vw 18px 12vw;
  box-shadow: 0 -6px 20px 0 rgba(91, 58, 41, 0.12);
  z-index: 1200;
  transition: transform 0.35s cubic-bezier(.59,.27,.36,1.01);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 300px;
  font-size: 1.04rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-right: 26px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  flex-shrink: 0;
}
.btn-cookie {
  padding: 9px 18px;
  border-radius: 23px;
  background: #FFE5C2;
  color: #5B3A29;
  border: none;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.btn-cookie.accept {
  background: #D16E43;
  color: #fff;
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #B44E20;
  color: #fff;
  transform: scale(1.03);
}
.btn-cookie.settings {
  background: transparent;
  color: #FFE5C2;
  border: 1.5px solid #FFE5C2;
}
.btn-cookie.reject {
  background: #fff;
  color: #5B3A29;
  border: 1.5px solid #D16E43;
}
@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding: 16px 6vw 15px 6vw;
    align-items: flex-start;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 540px) {
  .cookie-banner { padding: 13px 3vw 10px 3vw; }
  .cookie-banner .cookie-actions { flex-direction: column; align-items: stretch; gap: 8px; }
  .cookie-banner .cookie-text { font-size: 0.98rem; }
}

/* COOKIE MODAL (PREFERENCES) */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(59, 33, 20, 0.55);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #FFF7F0;
  padding: 36px 28px 28px 28px;
  border-radius: 20px;
  box-shadow: 0 12px 48px 0 rgba(91,58,41,0.21);
  min-width: 340px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookiePopIn 0.33s cubic-bezier(.68,-0.21,.44,1.21);
}
@keyframes cookiePopIn {
  0% { transform: translateY(68px) scale(0.97); opacity: 0; }
  80% { transform: translateY(-6px) scale(1.03); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 4px;
  font-size: 1.31rem;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  padding: 13px 0 13px 0;
  border-bottom: 1px solid #F1E8DF;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0;
}
.cookie-category .cookie-toggle {
  margin-left: auto;
  appearance: none;
  width: 32px;
  height: 18px;
  background: #E6C5AA;
  border-radius: 9px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.19s;
  border: 1px solid #DDD0C1;
}
.cookie-category .cookie-toggle:checked {
  background: #D16E43;
}
.cookie-category .cookie-toggle::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 2px;
  top: 1.5px;
  background: #FFF;
  border-radius: 50%;
  box-shadow: 0 1px 2px 0 rgba(150,150,150,0.15);
  transition: left 0.23s cubic-bezier(.54,.19,.55,.94);
}
.cookie-category .cookie-toggle:checked::before {
  left: 16px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .btn-cookie {
  min-width: 112px;
}

@media (max-width: 450px) {
  .cookie-modal { min-width: unset; padding: 23px 7px 16px 7px; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.card, .testimonial-card, .btn-primary, .btn-secondary, .btn-cookie, .cookie-modal {
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s, color 0.18s;
}
section, .card, .testimonial-card, .cookie-modal {
  animation: fadeInUp 0.6s cubic-bezier(.59,.15,.29,1.11) both;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px) scale(.98); }
  75% { opacity: .92; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* SCANDINAVIAN STYLE ACCENTS */
section {
  border: 1.5px solid #EEE2D1;
  box-shadow: 0 2px 14px 0 rgba(91,58,41,0.04);
}
.card {
  border: 1.2px solid #F1E8DF;
  background: #FFFDF8;
}
.testimonial-card {
  border-left: 6px solid #D16E43;
  background: #FFF7F0;
}

/* Accessibility: Focus visible */
:focus-visible {
  outline: 2px dashed #D16E43;
  outline-offset: 2px;
}

/* Hide visually only for accessibility */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
