/* ------------------------------------------ */
/* CSS RESET & NORMALIZATION                  */
/* ------------------------------------------ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #19232E;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.2s;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #19232E;
  margin-bottom: 16px;
}
h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.13rem;
  margin-bottom: 10px;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
}
a {
  color: #19232E;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #C09F62;
  outline: none;
}
button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  background: transparent;
  border: none;
  color: inherit;
}
:focus:not(:focus-visible) {
  outline: none;
}
/* ----------------------------------------------*/
/* GENERAL LAYOUT & CONTAINER                     */
/* ----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* ----------------------------------------------*/
/* HEADER & NAVIGATION                           */
/* ----------------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #F4F2ED;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}
header a img {
  height: 38px;
  width: auto;
  margin-right: 12px;
}
nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
nav a {
  color: #19232E;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color .14s, background .18s;
}
nav a:hover, nav a:focus {
  background: #F4F2ED;
  color: #C09F62;
}
.cta.primary {
  background: #19232E;
  color: #fff;
  padding: 10px 28px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #19232E;
  margin-left: 18px;
  box-shadow: 0 2px 12px 0 rgba(25,35,46,0.03);
  transition: background .18s, color .18s, box-shadow .16s;
  display: inline-block;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #C09F62;
  color: #19232E;
  border-color: #C09F62;
  box-shadow:0 4px 20px 0 rgba(192,159,98,0.11);
}
/* ----------------------------------------------*/
/* MOBILE NAVIGATION                             */
/* ----------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #19232E;
  padding: 8px;
  margin-left: auto;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
}
.mobile-menu-toggle:focus {
  background: #F4F2ED;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.54,0,.59,1) 0s;
  box-shadow: 0 0 40px rgba(25,35,46,0.07);
  padding: 30px 28px 28px 28px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #19232E;
  margin-bottom: 30px;
  margin-right: 3px;
  cursor: pointer;
  border-radius: 5px;
  transition: background .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4F2ED;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 1.12rem;
  color: #19232E;
  border-bottom: 1px solid #F4F2ED;
  border-radius: 0;
  background: none;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4F2ED;
  color: #C09F62;
}
@media (max-width: 1100px) {
  nav {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  header .container nav,
  header .container .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* ------------------------------------------*/
/* HERO/SECTION/GRID/CARD LAYOUTS            */
/* ------------------------------------------*/
.hero {
  background: #fff;
  padding: 60px 0 48px 0;
  border-bottom: 1px solid #F4F2ED;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 36px;
}
.hero .content-wrapper {
  max-width: 650px;
  gap: 20px;
}
.features,
.features.luxury-brands,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid, .team-list, .service-cards, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid > div,
.team-list > div,
.service-cards > div,
.process-steps > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(25,35,46,0.04);
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #F4F2ED;
  transition: box-shadow .16s;
}
.feature-grid > div:hover,
.team-list > div:hover,
.service-cards > div:hover,
.process-steps > div:hover {
  box-shadow: 0 8px 28px 0 rgba(25,35,46,0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(25,35,46,0.03);
  margin-bottom: 20px;
  padding: 24px 20px;
  border: 1px solid #F4F2ED;
  transition: box-shadow .15s;
}
.card:hover {
  box-shadow: 0 4px 20px 0 rgba(25,35,46,0.10);
}
.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 ****/
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.testimonial-card {
  background: #F4F2ED;
  color: #19232E;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(25,35,46,0.04);
  margin-bottom: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  border: 1px solid #e4e0d4;
  max-width: 800px;
  transition: box-shadow .14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(21,31,42,0.08);
}
.testimonial-content p {
  font-style: italic;
  color: #19232E;
  font-size: 1.15rem;
  line-height: 1.6;
}
.testimonial-content span {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #C09F62;
  margin-top: 12px;
  font-weight: 500;
}
/**** FAQ Accordion List ****/
.faq-accordion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 20px;
}
.faq-accordion-list > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px 0 rgba(25,35,46,0.05);
  padding: 18px 20px;
  border: 1px solid #E5E5E5;
}
.faq-accordion-list h3 {
  font-size: 1.11rem;
  margin-bottom: 5px;
}
.faq-accordion-list p {
  margin-bottom: 0;
}
/**** Timeline (process steps indicator) ****/
.timeline {
  background: #F4F2ED;
  color: #19232E;
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 18px;
  font-size: 1rem;
}
/**** Location address with icon ****/
.directions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}
.directions img {
  margin-right: 7px;
}
/**** Cards for Legal/Confirmation ****/
.legal, .confirmation, .about-short, .about-company, .trust, .info, .info-sa, .benefits, .kontakt-info, .location, .cta-home, .cta-investeringar, .cta-sa, .cta-faq, .cta-kontakt {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(25,35,46,0.04);
  padding: 42px 24px;
  margin-bottom: 60px;
  border: 1px solid #F4F2ED;
}
/**** CTA section buttons and layout ****/
.cta-home, .cta-investeringar, .cta-sa, .cta-faq, .cta-kontakt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}
/**** Minimal box list for About/Trust etc. ****/
.about-short ul, .about-company ul, .trust ul, .info ul, .benefits ul, .info-sa ul {
  list-style: disc;
  padding-left: 19px;
  margin-bottom: 0;
}
.about-short ul li, .about-company ul li, .trust ul li, .info ul li, .benefits ul li, .info-sa ul li {
  margin-bottom: 8px;
}
/**** Section spacing overrides for about etc. ****/
.about-short, .about-company, .team, .trust, .info, .benefits {
  margin-bottom: 60px;
}
/* -------------------------------------------*/
/* FOOTER                                     */
/* -------------------------------------------*/
footer {
  background: #fff;
  border-top: 1px solid #F4F2ED;
  padding-top: 37px;
  padding-bottom: 20px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #19232E;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.7;
  transition: color .14s, opacity .17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #C09F62;
  opacity: 1;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.96rem;
}
.footer-contact-info img {
  height: 1em;
  width: 1em;
  vertical-align: text-bottom;
  margin-right: 6px;
  opacity: 0.8;
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a img {
  opacity: 0.6;
  width: 30px;
  height: 30px;
  transition: opacity .13s, filter .18s;
}
.footer-socials a:hover img, .footer-socials a:focus img {
  opacity: 1;
  filter: brightness(0.85) sepia(1) hue-rotate(-25deg) saturate(1.8) contrast(1.05);
}
/* ------------------------------------------*/
/* BUTTONS                                   */
/* ------------------------------------------*/
button, .cta {
  outline: none;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border-radius: 28px;
  transition: background .16s, color .16s, box-shadow .16s;
  box-sizing: border-box;
}
.cta {
  display: inline-block;
}
.cta.secondary {
  background: #fff;
  color: #19232E;
  border: 1px solid #C09F62;
  padding: 9px 22px;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(192,159,98,0.03);
  transition: background .17s, color .17s, box-shadow .14s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #C09F62;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(192,159,98,0.12);
}
/* ------------------------------------------*/
/* SPACING -- Margin+Gap (by spec)           */
/* ------------------------------------------*/
.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; }
/**** Extra: Section separations ****/
main > section + section { margin-top: 28px; }
/* ------------------------------------------*/
/* COOKIE CONSENT BANNER & MODAL              */
/* ------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #19232E;
  color: #fff;
  box-shadow: 0 -4px 24px rgba(25,35,46,0.07);
  z-index: 9999;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  transition: transform 0.26s cubic-bezier(.54,0,.59,1) 0s, opacity 0.4s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 26px;
  padding: 9px 22px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(21,31,42,0.08);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: background .13s, color .13s;
  margin-right: 3px;
}
.cookie-btn.accept {
  background: #C09F62;
  color: #19232E;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #C09F62;
  border: 1px solid #C09F62;
}
.cookie-btn.reject {
  background: #F4F2ED;
  color: #19232E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  color: #19232E;
  border: 1px solid #C09F62;
}
.cookie-btn.settings {
  background: none;
  color: #C09F62;
  border: 1px solid #C09F62;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #C09F62;
  color: #fff;
}
/**** Cookie Modal ****/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25,35,46,0.56);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s cubic-bezier(.54,0,.59,1);
}
.cookie-modal {
  background: #fff;
  color: #19232E;
  padding: 36px 30px;
  border-radius: 18px;
  min-width: 300px;
  max-width: 410px;
  box-shadow: 0 10px 40px 0 rgba(25,35,46,0.18);
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: modalFadeIn 0.36s cubic-bezier(.54,0,.59,1);
}
@keyframes modalFadeIn {
  0% { opacity: 0; transform: scale(0.98); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F2ED;
  border-radius: 10px;
  padding: 13px 14px;
  margin-bottom: 7px;
}
.cookie-modal .category-label {
  font-size: 1.02rem;
}
.cookie-modal input[type=checkbox] {
  appearance: none;
  background-color: #fff;
  border: 2px solid #C09F62;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  transition: background .17s, border .17s;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}
.cookie-modal input[type=checkbox]:checked {
  background-color: #C09F62;
}
.cookie-modal .category-description {
  font-size: 0.97rem;
  color: #6C7685;
  margin-top: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 13px;
  color: #19232E;
  background: none;
  font-size: 1.45rem;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  border-radius: 5px;
  transition: background .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  opacity: 1;
  background: #F4F2ED;
}
/* ---------------------------------------------*/
/* RESPONSIVE DESIGN                            */
/* ---------------------------------------------*/
@media (max-width: 1000px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .hero .container { flex-direction: column; gap: 20px; align-items: flex-start; }
  footer .content-wrapper { flex-direction: column; gap: 24px; }
}
@media (max-width: 768px) {
  html { font-size: 98%; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .section, .features, .about-short, .about-company, .team, .trust, .info, .benefits, .legal, .confirmation { padding: 28px 8px; }
  .hero { padding: 34px 0 24px 0; }
  .feature-grid, .team-list, .service-cards, .process-steps, .content-grid { flex-direction: column; gap: 20px; }
  .card-container { flex-direction: column; gap: 20px; }
  .testimonial-card { flex-direction: column; padding: 18px 10px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-menu { flex-direction: column; gap: 9px; }
  .footer-socials { gap: 11px; }
  .cookie-banner { padding: 20px 10px; font-size: 0.96rem; }
  .cookie-modal { padding: 20px 11px; max-width: 98vw; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.11rem; }
}
/* ---------------------------------------------*/
/* MICRO-INTERACTIONS & TRANSITIONS             */
/* ---------------------------------------------*/
.cta.primary, .cta.secondary, .card, .feature-grid > div, .testimonial-card, .faq-accordion-list > div, .mobile-menu, .cookie-modal, .cookie-btn {
  transition: box-shadow .16s, background .17s, color .16s, border .13s, opacity .14s, transform .18s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover, .faq-accordion-list > div:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 6px 34px 0 rgba(38, 40, 52, 0.09);
}
.cta.primary:active, .cta.secondary:active, .cookie-btn:active {
  transform: translateY(2px) scale(0.98);
}
.mobile-menu {
  will-change: transform;
}
/* ---------------------------------------------*/
/* UTILITIES                                    */
/* ---------------------------------------------*/
.hide {
  display: none !important;
  pointer-events: none;
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* ---------------------------------------------*/
/* SCROLLBAR REMOVAL FOR COOKIE MODAL/BANNER    */
/* ---------------------------------------------*/
.cookie-modal::-webkit-scrollbar, .cookie-banner::-webkit-scrollbar {
  display: none;
}
