/* ========================================================== */
/*                CSS RESET & NORMALIZATION                   */
/* ========================================================== */
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  min-height: 100vh;
  background: #F6F6F2;
  color: #283046;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #283046;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #DEA163;
  outline-offset: 1px;
}
ul, ol {
  padding-left: 2em;
  margin-bottom: 1em;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
strong, b {
  font-weight: 600;
}

/* == BRAND TYPOGRAPHY == */
h1, .h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  color: #283046;
}
h2, .h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #283046;
}
h3, .h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #283046;
}
h4, .h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
}
p {
  margin-bottom: 14px;
  color: #303952;
  font-family: 'Montserrat', Arial, sans-serif;
}
small {
  font-size: 0.9em;
}

/* == CONTAINER & LAYOUT == */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

/* ========================================================== */
/*               HEADER + NAVIGATION (DESKTOP)                */
/* ========================================================== */
header {
  background: #F6F6F2;
  padding: 0;
  border-bottom: 1px solid #E5E5DF;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 90px;
  position: relative;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #283046;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 2px;
  border-radius: 3px;
  transition: background 0.22s, color 0.22s;
}
nav a:hover, nav a:focus {
  color: #DEA163;
  background: #EFEFE7;
}
.cta-button {
  background: #DEA163;
  color: #283046;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 28px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 1px 8px 0 rgba(40, 48, 70, 0.07);
  cursor: pointer;
  display: inline-block;
  margin-left: 24px;
  box-sizing: border-box;
}
.cta-button:hover, .cta-button:focus {
  background: #EBCB96;
  color: #283046;
  box-shadow: 0 4px 18px 0 rgba(210, 161, 99, 0.14);
  outline: none;
}

/* == BURGER MENU BUTTON == */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #283046;
  cursor: pointer;
  margin-left: 12px;
  padding: 8px;
  border-radius: 5px;
  z-index: 110;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #EFEFE7;
}

/* ========================================================== */
/*                      MOBILE NAV MENU                       */
/* ========================================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 360px;
  height: 100vh;
  background: #F6F6F2;
  box-shadow: -8px 0 36px rgba(40,48,70,.21);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.8,0,.2,1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  overflow-y: auto;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #283046;
  cursor: pointer;
  padding: 16px 24px 0 0;
  z-index: 210;
  border-radius: 0 0 0 9px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #EFEFE7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 30px;
  padding-bottom: 30px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #283046;
  font-size: 1.08rem;
  text-align: left;
  padding: 18px 32px 18px 34px;
  border-bottom: 1px solid #EEEDE9;
  background: none;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ECE6DD;
  color: #DEA163;
}

/* Overlay for mobile menu */
.mobile-menu-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(40,48,70,0.38);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.28s cubic-bezier(.8,0,.2,1);
  pointer-events: none;
}
.mobile-menu.open + .mobile-menu-overlay {
  opacity: 1;
  pointer-events: all;
}

/* =========================================================== */
/*                       MAIN STRUCTURE                       */
/* =========================================================== */
main {
  width: 100%;
  min-height: 60vh;
}
.hero {
  background: #ECE6DD;
  border-radius: 0 0 22px 22px;
  padding-top: 44px;
  padding-bottom: 56px;
  box-shadow: 0 2px 12px 0 rgba(40,48,70,0.05);
}

/* =========================================================== */
/*                FEATURE & SERVICE SECTION TYPOGRAPHY         */
/* =========================================================== */
.feature-grid, .feature-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  list-style: none;
}
.feature-grid li, .feature-list li, .service-list li {
  background: #fff;
  flex: 1 1 225px;
  min-width: 220px;
  max-width: 340px;
  padding: 28px 24px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(40,48,70,0.07);
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.feature-grid li:hover, .feature-list li:hover, .service-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(40,48,70,0.12);
}
.feature-grid img, .service-list img {
  height: 38px;
  width: 38px;
  margin-bottom: 5px;
  filter: drop-shadow(0 2px 2px #f0eee6);
}

.feature-grid h3, .service-list h3, .feature-list h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  color: #283046;
  font-weight: 600;
}

.feature-grid p, .service-list p, .feature-list p {
  font-size: 1rem;
  color: #343960;
}

/* 
   Card containers and general flex utilities
*/
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px 0 rgba(40,48,70,0.09);
  margin-bottom: 20px;
}
.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;
}

/* ============================================================ */
/*                      TESTIMONIALS SECTION                   */
/* ============================================================ */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px 20px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(40,48,70,0.10);
  min-width: 240px;
  max-width: 420px;
  margin-bottom: 20px;
  border: 1px solid #EEEDE9;
  color: #283046;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #283046;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-size: 0.95rem;
  color: #665642;
  font-weight: 600;
  margin-top: -4px;
}

/* ============================================================ */
/*                        CTA & BUTTONS                        */
/* ============================================================ */
.faq-link {
  display: inline-block;
  padding: 9px 18px;
  background: #ECE6DD;
  color: #283046;
  border-radius: 15px;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 18px;
  transition: background 0.16s;
}
.faq-link:hover, .faq-link:focus {
  background: #DEA163;
  color: #F6F6F2;
}

/* ============================================================ */
/*         CUSTOM LISTS AND INFO PANELS (DESCRIPTION, ETC)      */
/* ============================================================ */
.key-attributes, .product-attributes, .description-list, .category-descriptions ul, .service-details, .customization-options, .full-contact-info, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 1.2em;
  margin-top: 0.2em;
  list-style: disc inside;
  padding-left: 12px;
}
.key-attributes li, .product-attributes li, .description-list li, .category-descriptions li, .service-details li, .customization-options li, .full-contact-info li, .contact-info li {
  font-size: 1rem;
  color: #4A4F68;
  padding: 3px 0;
}
.step-by-step-process {
  list-style: decimal inside;
  margin-bottom: 22px;
  font-size: 1rem;
  color: #435062;
}
.step-by-step-process li {
  margin: 0 0 8px 0;
}
.text-section {
  margin-top: 16px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 13px;
  padding: 24px 24px 20px 24px;
  box-shadow: 0 2px 8px 0 rgba(40,48,70,0.05);
  color: #283046;
}
.text-section ul {
  margin-top: 12px;
}
.text-section li {
  margin: 0 0 7px 0;
}

/* ============================================================ */
/*                            FOOTER                           */
/* ============================================================ */
footer {
  background: #ECE6DD;
  border-top: 1px solid #E5E5DF;
  padding: 36px 0 24px 0;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-navigation a {
  font-size: 1rem;
  color: #283046;
  font-weight: 500;
  transition: color 0.15s;
  padding: 3px 1px;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #DEA163;
}
.brand-credits {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #665642;
  font-weight: 400;
  margin-top: 7px;
}
.brand-credits img {
  height: 32px;
  width: 32px;
}

/* ============================================================ */
/*                      COOKIE CONSENT BANNER                  */
/* ============================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(255,255,255,0.97);
  border-top: 1.5px solid #EEEDE9;
  box-shadow: 0 -4px 20px 0 rgba(40,48,70,0.09);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.43s cubic-bezier(.87,0,.35,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner p {
  color: #283046;
  font-size: 1.06rem;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-buttons .cookie-accept {
  background: #DEA163;
  color: #283046;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-buttons .cookie-accept:hover {
  background: #EBCB96;
}
.cookie-buttons .cookie-reject {
  background: #ECE6DD;
  color: #283046;
  border: 1px solid #D3C4A7;
  border-radius: 20px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.18s, border 0.18s;
  cursor: pointer;
}
.cookie-buttons .cookie-reject:hover {
  background: #DFD8CB;
}
.cookie-buttons .cookie-settings {
  background: none;
  color: #DEA163;
  border: none;
  border-radius: 17px;
  padding: 10px 14px;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-buttons .cookie-settings:hover,
.cookie-buttons .cookie-settings:focus {
  background: #EFEFE7;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,48,70,0.4);
  z-index: 3200;
  opacity: 1;
  display: none;
}
.cookie-modal-overlay.open {
  display: block;
  animation: fadeIn .32s;
}
@keyframes fadeIn { 
  0% { opacity: 0;} 100% { opacity:1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 3300;
  max-width: 385px;
  min-width: 290px;
  width: 90vw;
  background: #FFF;
  border-radius: 15px;
  box-shadow: 0 8px 40px rgba(40,48,70,0.14);
  transform: translate(-50%,-52%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 26px 24px 26px;
  animation: slideDown .38s cubic-bezier(.86,0,.2,1);
}
@keyframes slideDown {
  0% { opacity: 0; transform: translate(-50%,-70%); }
  100% { opacity: 1; transform: translate(-50%,-52%); }
}
.cookie-modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #283046;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-modal .cookie-category input[type=checkbox],
.cookie-modal .cookie-category input[type=radio] {
  accent-color: #DEA163;
  margin-right: 4px;
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-category.essential label {
  font-weight: 600;
  color: #483A25;
}
.cookie-modal .cookie-category.essential input[type=checkbox] {
  pointer-events: none;
}
.cookie-modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #B6A27E;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #DEA163;
}

/* ============================================================ */
/*                         RESPONSIVE                          */
/* ============================================================ */
@media (max-width: 1100px) {
  .container {
    max-width: 100%;
  }
}
@media (max-width: 960px) {
  nav {
    gap: 13px;
  }
  .feature-grid, .feature-list, .service-list {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature-grid li,
  .feature-list li,
  .service-list li {
    min-width: 180px;
    max-width: 100%;
    padding: 22px 14px 16px 14px;
  }
}
@media (max-width: 860px) {
  header .container {
    flex-wrap: wrap;
    min-height: unset;
    gap: 18px !important;
  }
}
@media (max-width: 768px) {
  /* --- Mobile burger menu --- */
  header nav,
  header .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }

  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .brand-credits span {
    font-size: 0.99em;
  }
  section {
    padding: 32px 8px;
    margin-bottom: 44px;
  }
  .hero {
    padding-top: 23px;
    padding-bottom: 32px;
    border-radius: 0 0 18px 18px;
  }
  h1,.h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  h2,.h2 {
    font-size: 1.28rem;
    margin-bottom: 14px;
  }
  h3,.h3 {
    font-size: 1.07rem;
    margin-bottom: 7px;
  }
  .feature-grid, .feature-list, .service-list, .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .feature-list li, .service-list li {
    min-width: 0;
    max-width: 100%;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 18px 11px 18px 11px;
  }
  .footer-navigation {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
  }
  .brand-credits {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 15vw 6vw;
    max-width: 98vw;
  }
}

/* ============================================================ */
/*                     SCANDINAVIAN STYLE                      */
/* ============================================================ */
body, html {
  background: #F6F6F2;
}
.card, .feature-grid li, .feature-list li, .service-list li, .testimonial-card, .text-section {
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(40,48,70,0.06);
  background: #fff;
}
section {
  border-radius: 15px;
}
::-webkit-input-placeholder { color: #B6A27E; }
::-moz-placeholder { color: #B6A27E; }
:-ms-input-placeholder { color: #B6A27E; }
::placeholder { color: #B6A27E; }

/* Button press animation */
.cta-button:active, .cookie-accept:active, .cookie-reject:active, .cookie-settings:active {
  filter: brightness(0.98);
  transform: scale(0.98);
}

/* Transition for cards & interactive */
.card, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.20s, transform 0.18s;
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(40,48,70,0.14);
  transform: translateY(-1px);
}

/* Visually distinct accent for secondary emphasis */
.accent {
  color: #DEA163;
}

/* Hide cookie banner/modal by default for script control */
.cookie-banner, .cookie-modal-overlay, .cookie-modal {
  display: none;
}
.cookie-banner.visible {
  display: flex;
}
.cookie-modal-overlay.open,
.cookie-modal.open {
  display: block;
}

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

/* ============================================= */
/*               END OF STYLE.CSS                */
/* ============================================= */
