/* =======================================
   FRESH HAMMER SCANDINAVIAN_CLEAN STYLE
   ======================================= */

/* 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 {
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: #F6EFE3;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #24394D;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  background: #F6EFE3;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #24394D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A4C2A2;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
  appearance: none;
}

/* ================= BRAND FONTS & HEADINGS ================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #24394D;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
}
.subheadline {
  color: #4c6278;
  font-size: 1.125rem;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.4;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}

/* =================== CONTAINER =================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* ================ HEADER & NAVIGATION ================ */
header {
  background: #fff;
  border-bottom: 1px solid #e4e5e7;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 14px 0 rgba(36,57,77,0.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 4px;
  border-radius: 6px;
  transition: background 0.20s, color 0.20s;
}
header nav a:hover, header nav a:focus {
  background: #A4C2A2;
  color: #fff;
}
header img {
  height: 40px;
  width: auto;
  margin-right: 24px;
}
/* Call to action button in header */
.cta.primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #24394D;
  color: #fff;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(36,57,77,0.10);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: 1px solid #24394D;
  margin-left: 20px;
  display: inline-block;
  letter-spacing: 0.02em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #A4C2A2;
  color: #24394D;
  border-color: #A4C2A2;
  box-shadow: 0 4px 16px 0 rgba(36,57,77,0.17);
  transform: translateY(-2px) scale(1.03);
}

/* Secondary CTA */
.cta.secondary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #24394D;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid #A4C2A2;
  box-shadow: 0 2px 8px 0 rgba(164,194,162,0.09);
  margin-top: 16px;
  transition: background 0.2s, color 0.2s, border 0.2s;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #A4C2A2;
  color: #fff;
  border: 1.5px solid #A4C2A2;
}

/* =============== MOBILE BURGER MENU =============== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  font-size: 2.2rem;
  background: #fff;
  color: #24394D;
  border-radius: 50%;
  padding: 8px 14px 8px 14px;
  box-shadow: 0 4px 16px rgba(36,57,77,0.08);
  z-index: 400;
  border: 1px solid #e4e5e7;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #A4C2A2;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 600;
  box-shadow: -4px 0 32px 0 rgba(36,57,77,0.17);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #24394D;
  padding: 16px 24px 16px 0;
  align-self: flex-end;
  border: none;
  margin-top: 12px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A4C2A2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  margin-top: 12px;
}
.mobile-nav a {
  padding: 20px 32px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 1.1rem;
  color: #24394D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
  letter-spacing: 0.01em;
  outline: none;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #A4C2A2;
  color: #fff;
}

@media (max-width: 950px) {
  header .container {
    gap: 16px;
  }
  header nav {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 100%;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header img {
    margin-right: 14px;
  }
}
@media (max-width: 768px) {
  header .container {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =================== MAIN & SECTIONS =================== */
main {
  flex: 1;
}
/* Standard Section Padding/Margin, see mandatory spacing */
.section,
.hero,
.features,
.testimonials,
.contact,
.about,
.services,
.footer {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* Card container example */
.card-container,
.feature-grid,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.card {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(164,194,162,0.11);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  min-height: 160px;
  box-sizing: border-box;
  gap: 12px;
}

.content-grid,
.contact-details,
.contact-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* join content and image/text: used in hero sometimes */
.text-image-section,
.content-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  flex-direction: row;
  width: 100%;
}

/* testimonial and feature items */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(36,57,77,0.09);
  margin-bottom: 20px;
  border-left: 7px solid #A4C2A2;
  width: 100%;
  max-width: 520px;
}
.testimonial-card p {
  color: #24394D;
  font-size: 1.06rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.55;
}
.testimonial-card span {
  color: #A4C2A2;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================ HERO SECTIONS ================ */
.hero {
  background: #F6EFE3;
  display: flex;
  align-items: center;
  min-height: 360px;
  border-radius: 32px;
  box-shadow: 0 2px 14px 0 rgba(164,194,162,0.08);
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}
.hero h1 {
  color: #24394D;
  margin-bottom: 12px;
  font-size: 2.1rem;
}

@media (min-width: 769px) {
  .hero {
    min-height: 350px;
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero .container {
    align-items: flex-start;
    padding: 0 32px;
  }
}

/* ================ LISTS, ICON LISTS, FEATURE GRIDS ================ */
.features ul, .services ul, .contact-benefits {
  padding-left: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features ul li, .services ul li, .contact-benefits li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(164,194,162,0.10);
  font-size: 1rem;
}
.features ul li img, .contact-benefits li img {
  width: 28px; height: 28px; margin-right: 6px;
}
.features ul li strong, .services ul li strong {
  color: #24394D;
  font-weight: 700;
  margin-right: 2px;
}
.features .feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(36,57,77,0.11);
  padding: 28px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.features .feature-grid > div:hover {
  box-shadow: 0 8px 24px 0 rgba(36,57,77,0.13);
  transform: translateY(-3px) scale(1.03);
}
.features .feature-grid img {
  width: 36px; height: 36px;
  margin-bottom: 10px;
}

/* ============ CONTACT INFO CARDS ============= */
.contact-details {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(164,194,162,0.10);
  gap: 14px;
  font-size: 1.02rem;
  margin-bottom: 20px;
}
.contact-details img {
  width: 26px; height: 26px;
  flex-shrink: 0;
}
.contact-intro {
  margin-bottom: 14px;
}

/* ============= FOOTER ============= */
footer {
  background: #fff;
  border-top: 1px solid #e4e5e7;
  padding: 32px 0 12px 0;
  box-shadow: 0 -2px 8px 0 rgba(164,194,162,0.06);
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
footer nav a {
  color: #4c6278;
  font-size: 1rem;
  padding: 3px 7px;
  border-radius: 7px;
  transition: background 0.18s;
}
footer nav a:hover, footer nav a:focus {
  background: #A4C2A2;
  color: #fff;
}
footer p {
  color: #8da5c2;
  font-size: 0.98rem;
  margin: 0 0 8px 0;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ============== COOKIES CONSENT BANNER ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #24394D;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 -2px 20px 0 rgba(36,57,77,0.13);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border-top: 1.5px solid #A4C2A2;
  transition: transform 0.35s cubic-bezier(.51,1.1,.85,1);
  transform: translateY(0%);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0.6;
}
.cookie-banner p {
  font-size: 1.03rem;
  margin-bottom: 6px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner .cookie-btn {
  padding: 8px 22px;
  border-radius: 22px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: 1.2px solid #A4C2A2;
  background: #fff;
  color: #24394D;
  margin-right: 4px;
  margin-bottom: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.cookie-banner .cookie-btn.accept {
  background: #A4C2A2;
  color: #fff;
  border-color: #A4C2A2;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #24394D;
  color: #fff;
  border-color: #24394D;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #24394D;
  border-color: #A4C2A2;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #A4C2A2;
  color: #fff;
  border-color: #A4C2A2;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #A4C2A2;
  border-color: #A4C2A2;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #24394D;
  color: #fff;
  border-color: #24394D;
}

/* ========== COOKIE MODAL POPUP ========== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(36,57,77,0.37);
  z-index: 11000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(36,57,77,0.15);
  padding: 38px 26px 24px 26px;
  width: 96vw;
  max-width: 430px;
  min-width: 250px;
  color: #24394D;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  top: 14px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: #24394D;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .cookie-close-modal:hover, .cookie-modal .cookie-close-modal:focus {
  color: #A4C2A2;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  background: #F6EFE3;
  border-radius: 10px;
  padding: 14px 14px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  border: 1.2px solid #A4C2A2;
  appearance: none;
  border-radius: 6px;
  box-shadow: none;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: border 0.15s;
}
.cookie-category input[type="checkbox"]:checked {
  background: #A4C2A2;
  border-color: #A4C2A2;
}
.cookie-category input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 6px; top: 3px;
  width: 7px; height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.cookie-category.essential {
  opacity: 1;
  font-weight: 600;
}
.cookie-category.essential input {
  pointer-events: none;
  opacity: 0.5;
}
/* Modal buttons */
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-btn {
  padding: 8px 20px;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: 1.1px solid #A4C2A2;
  background: #fff;
  color: #24394D;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.cookie-modal .cookie-modal-btn.accept {
  background: #A4C2A2;
  color: #fff;
  border-color: #A4C2A2;
}
.cookie-modal .cookie-modal-btn.accept:hover {
  background: #24394D;
  color: #fff;
  border-color: #24394D;
}
.cookie-modal .cookie-modal-btn.reject {
  background: #fff;
  color: #A4C2A2;
  border-color: #A4C2A2;
}
.cookie-modal .cookie-modal-btn.reject:hover {
  background: #24394D;
  color: #fff;
  border-color: #24394D;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1020px) {
  .feature-grid, .card-container, .content-grid, .contact-details, .contact-benefits {
    gap: 14px;
  }
  .card, .feature-grid > div {
    min-width: 180px;
    padding: 18px 10px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .section, .hero, .features, .testimonials, .contact, .about, .services, .footer {
    padding: 28px 5px;
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .section, .features, .testimonials, .contact, .about, .services, .footer, .hero {
    padding: 18px 6px;
    margin-bottom: 24px;
    border-radius: 0;
  }
  h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  h3 {
    font-size: 1.03rem;
  }

  .content-wrapper, .text-image-section, .feature-grid, .contact-details, .contact-benefits, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card, .feature-grid > div, .testimonial-card {
    min-width: unset;
    width: 100%;
    box-sizing: border-box;
  }
}
@media (max-width: 500px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 20px 7px 14px 7px;
  }
  .container {
    padding: 0 5px;
  }
}

/* ===================== MICRO-INTERACTIONS & TRANSITIONS ===================== */
.card, .feature-grid > div, .testimonial-card, .contact-details > div {
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .contact-details > div:hover {
  box-shadow: 0 8px 30px 0 rgba(164,194,162,0.19);
  transform: translateY(-4px) scale(1.02);
}

.cta, button, .cookie-btn, .cookie-modal-btn, .cookie-category input[type="checkbox"] {
  transition: background 0.16s, color 0.16s, border 0.15s, box-shadow 0.14s;
}

/* ===================== CUSTOM SCROLLBAR ===================== */
::-webkit-scrollbar {
  width: 9px;
  background: #F6EFE3;
}
::-webkit-scrollbar-thumb {
  background: #A4C2A2;
  border-radius: 10px;
}

/* ===================== UTILITY CLASSES ===================== */
.hide-mobile { display: block !important; }
.show-mobile { display: none !important; }
@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
}

/* ===================== PRINT ===================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  .container {
    width: 100%;
  }
  main {
    padding: 0 !important;
  }
}
