/* ========== CSS RESET & BASE TYPOGRAPHY ========== */
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 {
  width: 100%;
  min-height: 100vh;
  background: #F4F0EC;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0.01em;
  position: relative;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #004050;
  text-underline-offset: 3px;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #B3683A;
  outline: none;
}

/* ========== BRAND FONTS ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #004050;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem; /* 22px */
}
h4, h5, h6 {
  font-size: 1.125rem; /* 18px */
  color: #222;
}
p, ul, ol {
  margin-bottom: 14px;
}
.subheadline {
  color: #934409;
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ========== SCANDINAVIAN CLEAN SPACING ========== */
.section,
section:not(.hero):not(.cookie-banner):not(.mobile-menu) {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

/* ===== CARDS, GRIDS, FLEX STRUCTURES ===== */
.card-container, .cards-grid, .feature-grid, .feature-icons, .post-preview-grid, .icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .value, .feature, .service-card, .post-preview {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,38,46,0.05);
  padding: 28px 32px 24px 32px;
  margin-bottom: 20px;
  position: relative;
  min-width: 270px;
  flex: 1 1 280px;
  transition: box-shadow 0.24s, transform 0.24s;
}
.card:hover, .value:hover, .feature:hover, .service-card:hover, .post-preview:hover {
  box-shadow: 0 4px 24px 0 rgba(0,38,46,0.11);
  transform: translateY(-4px) scale(1.018);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
.section .card:not(:last-child), .section .feature:not(:last-child), .section .value:not(:last-child) {
  margin-right: 20px;
}

/* ====== HEADERS & NAVIGATION ====== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,64,80,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1022;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #004050;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a.cta {
  margin-left: 18px;
  background: #B3683A;
  color: #fff;
  border-radius: 32px;
  padding: 9px 28px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(0,64,80,0.11);
  transition: background 0.18s, color 0.18s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #934409;
  color: #fff;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #B3683A;
  transition: width 0.2s;
  margin-top: 3px;
}
.main-nav a:hover::after {
  width: 100%;
}

button.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #004050;
  padding: 4px 12px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.16s;
  z-index: 1030;
}
button.mobile-menu-toggle:hover, button.mobile-menu-toggle:focus {
  background: #E8E2DC;
}
button.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #004050;
  position: absolute;
  right: 18px;
  top: 18px;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.18s;
}
button.mobile-menu-close:hover, button.mobile-menu-close:focus {
  background: #ECE6DE;
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F4F0EC;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.87,.03,.18,.99);
  box-shadow: -4px 0 24px 0 rgba(0,38,46,0.12);
  padding-top: 60px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 48px 0 0 36px;
}
.mobile-nav a {
  color: #004050;
  font-size: 1.18rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  padding: 10px 0;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.16s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ece6de;
  color: #B3683A;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  button.mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========== HERO & CTA ========== */
.hero {
  background: #fff;
  padding: 56px 20px 52px 20px;
  margin-bottom: 48px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 4px 28px rgba(0,64,80,0.06);
  position: relative;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.cta {
  display: inline-block;
  background: #B3683A;
  color: #fff;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 10px 32px;
  margin-top: 18px;
  min-width: 160px;
  box-shadow: 0 2px 8px rgba(179,104,58,0.09);
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.16s, transform 0.17s, box-shadow 0.18s;
  outline: none;
  text-align: center;
  text-decoration: none;
}
.cta:hover, .cta:focus {
  background: #934409;
  color: #fff;
  transform: translateY(-2px) scale(1.027);
  box-shadow: 0 4px 16px rgba(179,104,58,0.12);
}

/* ========== FEATURES & ICONS ========== */
.features, .feature-icons {
  padding-top: 0;
  padding-bottom: 0;
  background: none;
}
.feature, .value {
  align-items: flex-start;
  text-align: left;
}
.feature img, .value img {
  height: 40px;
  width: 40px;
  margin-bottom: 12px;
}

.usp-list {
  list-style: disc inside;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #004050;
  padding-left: 18px;
}

/* ========== SERVICE CARDS ========== */
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,64,80,0.07);
  padding: 28px 26px 22px 26px;
  margin-bottom: 20px;
  flex: 1 1 245px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.service-card .price {
  color: #934409;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.service-card .learn-more {
  color: #004050;
  text-decoration: underline;
  margin-right: 14px;
  font-size: 0.99rem;
}
.service-card .learn-more:hover {
  color: #B3683A;
}
.service-card .cta {
  margin-top: 8px;
  align-self: flex-start;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(0,64,80,0.08);
  padding: 40px 14px 34px 14px;
  margin-bottom: 60px;
}
.testimonials .content-wrapper, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #faf7f4;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,64,80,0.07);
  padding: 20px 24px 18px 24px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 270px;
  color: #222;
}
.testimonial-card .stars {
  color: #B3683A;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  margin-bottom: -7px;
}
.testimonial-card .testimonial-author {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #004050;
  font-weight: 600;
}
.average-rating {
  color: #004050;
  font-weight: 700;
  font-size: 1.07rem;
  margin-top: 12px;
}

blockquote {
  color: #222;
  background: #efe7e2;
  border-left: 5px solid #934409;
  padding: 14px 16px;
  border-radius: 8px;
  margin: 0 0 8px 0;
  font-style: italic;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.event-highlight {
  background: #f7f2ed;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,70,80,0.05);
  padding: 14px 18px;
  margin-bottom: 20px;
  min-width: 230px;
  color: #222;
}

/* ========== FAQ ACCORDIONS ========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 8px rgba(0,64,80,0.04);
  padding: 18px 24px 13px 20px;
  color: #222;
}
.faq-item h3 {
  font-size: 1.18rem;
  color: #004050;
  margin-bottom: 5px;
}

/* ========== BLOG PREVIEWS ========== */
.post-preview-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.post-preview {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,38,46,0.03);
  padding: 22px 24px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.post-preview .learn-more {
  color: #B3683A;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 14px;
  display: inline-block;
}

/* ========== SPECIAL OFFERS CARDS ========== */
.special-offers .cards-grid {
  gap: 24px;
  margin-bottom: 22px;
}
.special-offers .card {
  padding: 24px 22px;
  background: #fff;
  min-width: 220px;
  text-align: left;
}
.special-offers .explanation {
  padding-top: 10px;
  font-size: 1.04rem;
}

/* ========== CONTACT, LOCATION, FOOTER ========== */
.contact-info, .location, .about-blog {
  background: none;
  margin-bottom: 56px;
}
.contact-details p {
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.contact-details strong {
  color: #004050;
}
.note {
  color: #B3683A;
  font-size: 1.05rem;
  font-style: italic;
  padding-top: 8px;
  margin-top: 7px;
}
footer {
  background: #fff;
  border-top: 1.5px solid #EEE6DC;
  padding: 26px 0 18px 0;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #004050;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 0;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #934409;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  text-align: right;
  font-size: 0.98rem;
  color: #222;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 5px;
}
.footer-brand a {
  color: #004050;
}

/* ========== POLICY PAGES & THANK YOU ========== */
.privacy-policy, .gdpr-policy, .cookie-policy, .terms-of-use {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px rgba(0,64,80,0.05);
  padding: 40px 24px 32px 24px;
  margin-bottom: 60px;
}
.thank-you {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px rgba(0,64,80,0.08);
  padding: 48px 12px 36px 12px;
  text-align: center;
  margin-bottom: 64px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #fff;
  color: #004050;
  box-shadow: 0 -3px 14px rgba(0,38,46,0.09);
  padding: 22px 18px;
  z-index: 1200;
  gap: 16px;
  border-radius: 22px 22px 0 0;
  font-size: 1rem;
  animation: cookieBannerIn 0.44s cubic-bezier(.68,-0.2,.27,1.32);
}
@keyframes cookieBannerIn {
  from { transform: translateY(60px); opacity: 0; }
  to {   transform: translateY(0);   opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  background: #E8E2DC;
  border: none;
  color: #004050;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  border-radius: 24px;
  padding: 7px 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.18s;
}
.cookie-banner button.accept {
  background: #934409;
  color: #fff;
}
.cookie-banner button.accept:hover {
  background: #B3683A;
}
.cookie-banner button.settings {
  background: #F4F0EC;
  color: #934409;
  border: 1.5px solid #934409;
}
.cookie-banner button.settings:hover {
  background: #E8E2DC;
  color: #004050;
}
.cookie-banner button.reject {
  background: #fff;
  color: #B3683A;
  border: 1.5px solid #B3683A;
}
.cookie-banner button.reject:hover {
  background: #E8E2DC;
  color: #004050;
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1290;
  background: rgba(0, 64, 80, 0.13);
  animation: cookieModalFadeIn 0.35s;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -3px 22px rgba(0,64,80,0.13);
  width: 100%;
  max-width: 430px;
  padding: 32px 26px 24px 28px;
  animation: cookieModalSlideUp 0.33s cubic-bezier(.7,.31,.36,1.04);
  position: relative;
}
@keyframes cookieModalSlideUp {
  from { transform: translateY(60px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal-close {
  position: absolute;
  right: 17px; top: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #004050;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 8px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ece6de;
}
.cookie-modal h3 {
  color: #B3683A;
  margin-bottom: 13px;
  font-size: 1.23rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  flex: 1;
  font-size: 1.07rem;
  color: #004050;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #B3683A;
}
.cookie-modal .always-on {
  color: #B3683A;
  font-weight: 600;
  font-size: 1rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  background: #E8E2DC;
  border: none;
  color: #004050;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 18px;
  cursor: pointer;
  transition: background 0.14s, color 0.16s;
}
.cookie-modal-actions .save {
  background: #934409;
  color: #fff;
}
.cookie-modal-actions .save:hover, .cookie-modal-actions .save:focus {
  background: #B3683A;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 900px) {
  .container {
    max-width: 98%;
    padding: 0 8px;
  }
  .hero, .section, .privacy-policy, .gdpr-policy, .cookie-policy, .terms-of-use, .thank-you, .testimonials {
    padding-right: 7px;
    padding-left: 7px;
  }
  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  .section, section:not(.hero):not(.cookie-banner):not(.mobile-menu) {
    margin-bottom: 38px;
    padding: 24px 6px;
  }
  .hero {
    padding: 34px 6px 26px 6px;
    margin-bottom: 30px;
    border-radius: 0 0 18px 18px;
  }
  .content-wrapper, .feature-grid, .content-grid, .cards-grid, .feature-icons, .icon-grid, .post-preview-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .event-highlight, .service-card, .card, .feature, .value {
    min-width: 0;
    max-width: 100%;
    padding: 16px 12px;
  }
  .footer-brand, footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: left;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    font-size: 0.97rem;
    padding: 18px 7px;
  }
  .cookie-modal {
    max-width: 98%;
    padding: 18px 10px 13px 16px;
  }
}
@media (max-width: 540px) {
  .cookie-banner {
    font-size: 0.95rem;
  }
}
@media (max-width: 600px) {
  .mobile-menu nav {
    padding-left: 18px;
    gap: 20px;
  }
  .mobile-menu {
    padding-top: 38px;
  }
}

/* ========== MICRO-INTERACTIONS ========== */
section, .cta, .card, .service-card, .testimonial-card, .cookie-banner, .cookie-modal, .footer-brand, .feature {
  transition-property: box-shadow, background, transform;
  transition-duration: 0.19s;
}

::-webkit-input-placeholder { color: #868686; }
::-moz-placeholder { color: #868686; }
:-ms-input-placeholder { color: #868686; }
::placeholder { color: #868686; }

/* ========== ACCESSIBILITY & HIDE (for js helpers) ========== */
.sr-only { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); border: 0; padding: 0; margin: -1px; }

/* ========== END OF CSS ========== */
