/* --- 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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}
html {
  width: 100%;
  min-height: 100%;
  background: #F3F3F0;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #23323A;
  background: #F3F3F0;
  min-height: 100vh;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #245869;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B07136;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1.4em;
}
strong {
  font-weight: 600;
  color: #245869;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(36,88,105, 0.06);
}

/* --- TYPOGRAPHY & HEADING SCALE --- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #245869;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #23323A;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #245869;
  margin-bottom: 9px;
}
h4, .h4 {
  font-size: 1.125rem;
  margin-bottom: 5px;
}
.subheadline {
  font-size: 1.2rem;
  color: #245869;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  max-width: 480px;
  margin-bottom: 26px;
}
p {
  color: #38424B;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(36,88,105,0.06);
  z-index: 1002;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.009em;
  padding: 7px 0;
  transition: color 0.2s;
  color: #245869;
}
header nav a:hover, header nav a:focus {
  color: #B07136;
}
.cta-btn {
  background: #245869;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(36,88,105,0.04);
  letter-spacing: 0.02em;
  cursor: pointer;
  outline: none;
  transition: background 0.24s, color 0.18s, box-shadow 0.18s, transform 0.13s;
  margin-left: 12px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #B07136;
  color: #fff;
  box-shadow: 0 8px 36px rgba(176,113,54,0.12);
  transform: translateY(-3px) scale(1.04);
}

/* --- BURGER MENU (MOBILE) --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #245869;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.2s;
  z-index: 1102;
  line-height: 1;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #B07136;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,88,105,0.95);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transition: transform 0.38s cubic-bezier(.32,1.24,.78,.86);
  transform: translateX(100%);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin: 16px 28px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B07136;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 48px;
  padding: 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 0;
  width: 100%;
  display: block;
  font-weight: 600;
  border-radius: 7px;
  transition: background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(176,113,54,0.19);
  color: #B07136;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg,#F3F3F0 80%, #e5ebe6 100%);
  padding: 48px 0 62px 0;
  border-radius: 0 0 48px 48px;
  margin-bottom: 40px;
}
.hero .container {
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 640px;
  gap: 18px;
}

/* --- GRID SYSTEMS & FLEX LAYOUTS --- */
.features-grid, .tips-grid, .services-list, .team-list, .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features-grid {
  margin-top: 8px;
  margin-bottom: 8px;
}
.feature {
  background: #F3F3F0;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(36,88,105,0.04);
  padding: 24px 18px 22px 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 180px;
  max-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
}
.feature:hover {
  box-shadow: 0 6px 22px rgba(36,88,105,0.09);
  transform: translateY(-3px) scale(1.03);
}

.services-list {
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.service {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(36,88,105,0.05);
  padding: 22px 18px 20px 18px;
  flex: 1 1 218px;
  min-width: 180px;
  max-width: 245px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  border: 1px solid #e7eceb;
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.1s;
}
.service img {
  width: 34px;
  height: 34px;
}
.service strong {
  color: #B07136;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.service:hover {
  box-shadow: 0 8px 28px rgba(36,88,105,0.13);
  border-color: #B07136;
  transform: scale(1.025);
}
/* Cards, tips, etc */
.tip {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(36,88,105,.06);
  padding: 18px 14px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-left: 4px solid #B07136;
  transition: box-shadow 0.14s, border-color 0.21s;
}
.tip:hover {
  border-color: #245869;
  box-shadow: 0 4px 18px rgba(36,88,105,.11);
}

.category-list {
  flex-direction: column;
  gap: 17px;
  margin-bottom: 32px;
}

.team-list {
  gap: 25px;
}
.team-member {
  background: #F3F3F0;
  border-radius: 13px;
  padding: 18px 15px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  box-shadow: 0 1px 6px rgba(36,88,105,0.09);
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.benefit-list, .benefits-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.steps {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  list-style-position: inside;
}

.opening-hours {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(36,88,105,0.07);
  padding: 19px 15px;
  margin-bottom: 16px;
  flex: 1 1 230px;
}

.address-section {
  background: #F3F3F0;
  border-radius: 10px;
  padding: 14px 13px 10px 13px;
  font-size: 1rem;
}
.directions-brief {
  font-size: 1rem;
  margin-top: 10px;
  color: #23323A;
  padding-left: 2px;
}


/* --- TESTIMONIALS --- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 7px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 20px 15px 20px;
  min-width: 210px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(36,88,105,0.09);
  margin-bottom: 20px;
  border-top: 4px solid #B07136;
  transition: box-shadow 0.16s, border-top 0.22s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 34px rgba(36,88,105,0.20);
  border-top: 4px solid #245869;
}
.testimonial-card p {
  color: #23323A;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 7px;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.testimonial-card .customer {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  color: #245869;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* --- CTA SECTION --- */
.cta {
  background: #245869;
  border-radius: 20px;
  padding: 40px 20px;
  color: #fff;
  margin-bottom: 60px;
}
.cta .container {
  flex-direction: row;
  align-items: center;
}
.cta .content-wrapper {
  gap: 20px;
}
.cta h2,
.cta h1,
.cta p {
  color: #fff;
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 24px;
}
.contact-info {
  flex: 1 1 218px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.06rem;
}
.contact-info p img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  margin-right: 6px;
}

.price-box {
  background: #F3F3F0;
  border-radius: 12px;
  color: #B07136;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 9px 22px;
  display: inline-block;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1.5px solid #ececee;
  padding: 32px 0 14px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin: 8px 0 0 0;
}
footer nav a {
  color: #245869;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #B07136;
}
.footer-contact {
  color: #38424B;
  font-size: 1rem;
  margin: 8px 0 0 0;
}
.footer-note {
  margin-top: 8px;
  color: #949599;
  font-size: 0.98rem;
  text-align: center;
}

/* --- TEXT-IMAGE SECTION --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* --- COOKIES BANNER & MODAL --- */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 2px solid #B07136;
  box-shadow: 0 -2px 14px rgba(36,88,105,0.13);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px 18px 22px;
  gap: 18px;
  animation: cookieFadeIn 0.5s cubic-bezier(.24,.6,.52,.9);
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-consent-details {
  color: #23323A;
  font-size: 1rem;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  flex: 1 1 260px;
  margin-right: 15px;
}
.cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 8px 28px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
  outline: none;
  font-weight: 600;
}
.cookie-btn.accept {
  background: #245869;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #B07136;
  color: #fff;
}
.cookie-btn.reject {
  background: #F3F3F0;
  color: #245869;
  border: 1.2px solid #245869;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #eceaec;
  color: #B07136;
  border-color: #B07136;
}
.cookie-btn.settings {
  background: #fff;
  color: #245869;
  border: 1.2px solid #B07136;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffecc8;
  color: #B07136;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(36,88,105,0.23);
  z-index: 2050;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn .33s cubic-bezier(.24,.6,.52,.9);
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 96%;
  box-shadow: 0 8px 40px rgba(36,88,105,.27);
  padding: 32px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: popUpFadeIn .31s cubic-bezier(.23,.89,.61,.96);
}
@keyframes popUpFadeIn {
  0% { opacity: 0; transform: translateY(48px) scale(.93); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.19rem;
  margin-bottom: 11px;
  color: #245869;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.cookie-category label {
  flex: 1 1 auto;
  font-size: 1.01rem;
  color: #245869;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: #ececec;
  border: 1px solid #ccc;
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.13s, border-color 0.12s;
  margin-left: 8px;
}
.cookie-toggle:checked {
  background: #B07136;
  border-color: #B07136;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.12);
  transition: left 0.15s;
}
.cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cookie-modal .cookie-btn {
  min-width: 98px;
}

/* --- ANIMATIONS & TRANSITIONS --- */
*, *:before, *:after {
  box-sizing: inherit;
}
.transition-all {
  transition: all .16s;
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
}
@media (max-width: 900px) {
  .container { max-width: 790px; }
  .features-grid, .services-list, .testimonials
  { gap: 16px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  body { font-size: 15px; }
  .container { max-width: 99vw; padding-left: 6px; padding-right: 6px; }
  header .container { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 7px; padding-top: 12px; padding-bottom: 12px; }
  footer .container { flex-direction: column; gap: 15px; padding-left: 10px; padding-right: 10px; }
  .section, .cta { padding: 30px 6px; }
  .features-grid, .services-list, .testimonials, .tips-grid, .team-list, .category-list { gap: 13px; }
  .feature,.service,.testimonial-card, .tip, .team-member { max-width: 100%; min-width: 0; }
  .content-wrapper { gap: 18px; }
  .category-list { margin-bottom: 20px; }
}
@media (max-width: 700px) {
  .hero { padding: 30px 0 33px 0; border-radius: 0 0 30px 30px; }
  .features-grid,.tips-grid { flex-direction: column; }
  .feature,.service,.tip,.team-member,.testimonial-card { max-width: 100%; }
  .cta .container { flex-direction: column; }
  .contact-details { flex-direction: column; gap: 17px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 600px) {
  .cookie-consent-banner { flex-direction: column; align-items: flex-start; gap: 15px; padding: 15px 6px 10px 12px; font-size: 0.95rem; }
}
@media (max-width: 500px) {
  h1,.h1 { font-size: 1.49rem; }
  h2,.h2 { font-size: 1.19rem; }
  .section, .cta { padding: 17px 3px; }
}


/* --- HAMBURGER MENU (mobile) SHOW/HIDE LOGIC --- */
@media (max-width: 950px) {
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 951px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}


/* --- UTILITY CLASSES --- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }

/* --- Z-INDEX STANDARDIZATION --- */
header { z-index: 1002; }
.mobile-menu { z-index: 1200; }
.cookie-consent-banner, .cookie-modal-overlay { z-index: 2100; }


/* --- SCANDINAVIAN CLEAN ELEMENTS --- */
.section {
  background: #fff;
  box-shadow: 0 2px 18px rgba(36,88,105,0.07);
  border-radius: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(36,88,105,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.12s;
}
.card:hover {
  box-shadow: 0 9px 32px rgba(176,113,54,0.10);
  transform: scale(1.018);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SCROLLBAR FOR MODALS & NAV (optional) --- */
.mobile-nav {
  overflow-y: auto;
  max-height: 75vh;
}

/* --- SCROLLBAR (Webkit) subtle --- */
::-webkit-scrollbar {
  width: 8px;
  background: #ececec;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #d2d6da;
  border-radius: 6px;
}

/* --- BUTTONS & FOCUS STATE --- */
button, .cta-btn, .cookie-btn {
  outline: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
}
button:focus, .cta-btn:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 2px #B07136, 0 0 1px #245869;
}

/* --- MODAL FOCUS TRAP & ACCESSIBILITY --- */
.cookie-modal [tabindex="0"]:focus {
  outline: 2px solid #245869;
  background: #F3F3F0;
}
