/* 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;
}
footer p {
  color: white;
}
.cookie-banner span {
  color: white;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F4F4;
  color: #283146;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #DAA520;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #283146;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button {
  cursor: pointer;
  background: none;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* TYPOGRAPHY */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 900;
  color: #283146;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #DAA520;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #283146;
  font-weight: 700;
  margin-bottom: 8px;
}

p,li,span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #283146;
}

strong {
  font-weight: 700;
  color: #283146;
}

/* BASIC LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 0 32px 0;
  box-shadow: 0 6px 36px 0 rgba(40,49,70,0.07);
  position: relative;
}

/* HEADER/NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(40,49,70,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
header img {
  height: 42px;
  margin-right: 20px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  color: #283146;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 6px 7px 6px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #DAA520;
  color: #fff;
}
.cta-btn {
  background: #DAA520;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  padding: 12px 30px;
  border: none;
  border-radius: 24px 0 24px 0;
  margin-left: 24px;
  box-shadow: 0 4px 18px 0 rgba(218,165,32,0.13);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  position: relative;
  z-index: 5;
}
.cta-btn:hover, .cta-btn:focus {
  background: #283146;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 28px 0 rgba(40,49,70,0.13);
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #283146;
  color: #fff;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  margin-left: 18px;
  transition: background 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #DAA520;
  color: #283146;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #283146;
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.8,0,.2,1);
  box-shadow: 2px 0 64px 0 rgba(40,49,70,0.17);
  padding: 40px 28px 20px 28px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  background: transparent;
  color: #fff;
  align-self: flex-end;
  margin-bottom: 30px;
  border-radius: 10px;
  padding: 7px 11px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #DAA520;
  background: #283146;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 0;
  width: 100%;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #DAA520;
  color: #283146;
}

/* Hide desktop nav, show burger on mobile */
@media (max-width: 1024px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg,#F4F4F4 65%,#DAA520 100%);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: stretch;
  border-bottom: 3px solid #283146;
  margin-bottom: 0; /* Remove gap, .section does spacing */
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 32px 0 24px 0;
}
.hero h1 {
  color: #283146;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 1.14rem;
  color: #283146;
  margin-bottom: 12px;
}

/* FEATURES */
.features {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px 0 32px 0;
  box-shadow: 0 6px 36px 0 rgba(40,49,70,0.08);
}
.features .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 20px;
  justify-content: flex-start;
}
.features .content-wrapper > ul > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 240px;
  background: #F4F4F4;
  border-radius: 20px 0 20px 0;
  padding: 24px 18px 22px 18px;
  box-shadow: 0 2px 12px 0 rgba(40,49,70,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.features .content-wrapper > ul > li:hover {
  box-shadow: 0 8px 30px 0 rgba(218,165,32,0.15);
  transform: translateY(-3px) scale(1.02);
}
.features img {
  height: 46px;
  width: 46px;
  margin-bottom: 12px;
}
.features h3 {
  font-size: 1.18rem;
  color: #DAA520;
  margin-bottom: 3px;
}
.features p {
  font-size: 1rem;
}

/* SERVICE CARDS / LISTS */
.services-cards .content-wrapper > ul,
.services-preview .content-wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.services-cards .content-wrapper > ul > li,
.services-preview .content-wrapper > ul > li {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 20px 0 20px 0;
  padding: 22px 18px 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 3px 15px 0 rgba(40,49,70,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.15s;
  border: 2px solid #DAA520;
}
.services-cards .content-wrapper > ul > li:hover {
  box-shadow: 0 5px 25px 0 rgba(218,165,32,0.12);
  transform: translateY(-2px) scale(1.014);
  border-color: #283146;
}
.services-cards h3,
.services-preview strong {
  color: #283146;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.services-cards .content-wrapper > ul > li span {
  color: #DAA520;
  font-weight: 900;
  font-size: 1.03rem;
  margin-top: 8px;
}
.services-cards .service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.services-cards .service-highlights li {
  background: #DAA520;
  color: #fff;
  padding: 7px 18px;
  border-radius: 14px 0 14px 0;
  font-size: 1em;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}

/* TESTIMONIALS */
.testimonials {
  background: #F4F4F4;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper{
  gap: 26px;
}
.testimonials h2 {
  color: #283146;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 23px 28px 20px 28px;
  background: #fff;
  border-radius: 20px 0 20px 0;
  box-shadow: 0 3px 17px 0 rgba(40,49,70,0.09);
  margin-bottom: 20px;
  border-left: 5px solid #DAA520;
  max-width: 670px;
}
.testimonial-card p {
  color: #283146;
  font-size: 1.16rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #DAA520;
  font-weight: 500;
  font-style: italic;
}

/* ABOUT PREVIEW */
.about-preview {
  background: #fff;
}
.about-preview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 20px 0;
}
.about-preview li {
  display: flex;
  align-items: center;
  background: #F4F4F4;
  border-radius: 14px 0 14px 0;
  padding: 9px 18px;
  font-size: 1em;
  font-weight: 600;
  color: #283146;
  gap: 9px;
}
.about-preview li img {
  width: 26px;
  height: 26px;
}

/* SECTION VARIANTS (for legal, consulting, confirmation etc.) */
.legal, .consulting, .confirmation, .contact-section, .contact-cta, .quick-cta, .about-mission, .team {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 0 32px 0;
  box-shadow: 0 6px 36px 0 rgba(40,49,70,0.07);
}
.market-teaser {
  background: #F4F4F4;
  border-radius: 14px 0 14px 0;
  box-shadow: 0 2px 8px rgba(218,165,32,0.07);
  padding: 18px 22px;
  margin-top: 18px;
}

/* FOOTER */
footer {
  background: #283146;
  color: #fff;
  padding-top: 30px;
  padding-bottom: 22px;
  margin-top: 50px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #DAA520;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  transition: color 0.19s;
  margin-right: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.brand-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-size: 1rem;
  color: #fff;
  text-align: center;
}
.brand-info img {
  height: 36px;
  margin-bottom: 6px;
}
.brand-info span {
  color: #DAA520;
  font-size: 0.94rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CARD CONTAINERS (for cards, grids, etc.) */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px 0 16px 0;
  box-shadow: 0 2px 14px 0 rgba(40,49,70,0.09);
  padding: 24px 18px;
  flex: 1 1 280px;
  min-width: 240px;
  transition: box-shadow 0.22s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(218,165,32,0.12);
  transform: translateY(-5px) scale(1.01);
}

.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;
}

/************************
  BUTTONS & INTERACTIVES
************************/
button,
.cta-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.14s;
}
button:focus {
  outline: 2px dashed #DAA520;
  outline-offset: 1px;
}
.cta-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 5px 0 rgba(218,165,32,0.17);
}

/************************
   COOKIE CONSENT BANNER
************************/
.cookie-banner {
  position: fixed;
  z-index: 2022;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: #283146;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 20px;
  box-shadow: 0 -4px 22px rgba(40,49,70,0.12);
  gap: 30px;
  flex-wrap: wrap;
  font-size: 1.05rem;
  animation: slideInBanner 0.4s ease;
}
@keyframes slideInBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #DAA520;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 18px 0 18px 0;
  margin-left: 0;
  transition: background 0.18s, color 0.18s;
  border: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #DAA520;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #DAA520;
  padding: 8px 22px;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #DAA520;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2030;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,49,70,0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.19s;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #283146;
  border-radius: 24px 0 24px 0;
  min-width: 340px;
  max-width: 98vw;
  padding: 36px 30px 30px 30px;
  box-shadow: 0 8px 32px 0 rgba(40,49,70,0.21);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInModal 0.2s;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: #DAA520;
  margin-bottom: 8px;
  font-size: 1.3rem;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F4F4F4;
  border-radius: 12px 0 12px 0;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-size: 1.06rem;
}
.cookie-modal .cookie-cat .toggle {
  min-width: 48px;
  height: 28px;
  background: #DAA520;
  border-radius: 28px;
  position: relative;
  transition: background 0.13s;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-modal .cookie-cat .toggle[aria-checked="true"] {
  background: #DAA520;
}
.cookie-modal .cookie-cat .toggle[aria-checked="false"] {
  background: #d4d4d4;
}
.cookie-modal .cookie-cat .toggle-btn {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: left 0.23s;
}
.cookie-modal .cookie-cat .toggle[aria-checked="true"] .toggle-btn {
  left: 23px;
}
.cookie-modal .cookie-cat .toggle[disabled] {
  background: #e1e1e1;
  cursor: not-allowed;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal button {
  padding: 9px 28px;
  border-radius: 18px 0 18px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1em;
  cursor: pointer;
  border: none;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 1.9rem;
  color: #283146;
  background: transparent;
  border: none;
  border-radius: 9px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #DAA520;
  background: #f4f4f4;
}

/************************
   RESPONSIVE DESIGN
************************/
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }

  .footer-nav {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .features .content-wrapper > ul,
  .services-cards .content-wrapper > ul,
  .services-preview .content-wrapper > ul,
  .about-preview ul {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .section, .features, .testimonials, .about-preview, .about-mission, .team, .legal, .consulting, .confirmation, .contact-section, .contact-cta, .quick-cta {
    padding: 21px 7px;
    border-radius: 12px 0 12px 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .hero {
    min-height: 210px;
    padding: 0;
  }
  .hero .content-wrapper {
    padding: 20px 0 10px 0;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .features .content-wrapper > ul,
  .services-cards .content-wrapper > ul {
    flex-direction: column;
    gap: 0;
  }
  .about-preview ul {
    flex-direction: column;
    gap: 10px;
  }
  .content-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 0;
  }
  .brand-info {
    font-size: 0.92rem;
    padding-bottom: 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .header .container {
    flex-direction: column;
    gap: 12px;
  }
  .cta-btn {
    font-size: 0.97rem;
    padding: 10px 20px;
    margin-left: 6px;
  }
  .cookie-modal {
    min-width: 0;
    padding: 19px 7px 17px 7px;
    border-radius: 12px 0 12px 0;
  }
  .cookie-modal h2 {
    font-size: 1.07rem;
  }
  .cookie-banner {
    font-size: 0.97rem;
    padding: 13px 5px;
    gap: 9px;
  }
}

/************************
   CREATIVE ARTISTIC (DYNAMIC DECOR)
************************/
/* Decorative corners and bubbles (subtle only, not overlapping main content) */
.section::before, .about-preview::before, .testimonials::before {
  content: '';
  position: absolute;
  top: -18px; left: -18px;
  width: 70px; height: 70px;
  background: #DAA52022;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.section::after, .about-preview::after, .testimonials::after {
  content: '';
  position: absolute;
  bottom: -11px; right: -18px;
  width: 44px; height: 44px;
  background: #28314618;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Artistic font accents */
h1, h2 {
  letter-spacing: 0.01em;
  text-shadow: 1px 1px 0 #F4F4F4, 0 2px 8px #DAA52033;
}
.features h3, .services-cards h3, .about-preview ul li {
  letter-spacing: 0.06em;
}

/************************
   MICROINTERACTIONS & HOVER
************************/
.features .content-wrapper > ul > li,
.services-cards .content-wrapper > ul > li,
.card {
  transition: box-shadow 0.18s, border 0.16s, transform 0.16s;
}
.features .content-wrapper > ul > li:active,
.services-cards .content-wrapper > ul > li:active,
.card:active {
  box-shadow: 0 3px 12px rgba(40,49,70,0.17);
  transform: scale(0.98);
}

/* CTA link hover effect */
.content-wrapper > a:not(.cta-btn):hover {
  color: #DAA520;
  text-decoration: underline;
}

/************************
   VISUAL HIERARCHY & SPACING
************************/
.section, .features, .testimonials, .about-preview, .about-mission, .team, .legal, .consulting, .confirmation, .contact-section, .contact-cta, .quick-cta {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .testimonial-card, .features .content-wrapper > ul > li, .services-cards .content-wrapper > ul > li {
  margin-bottom: 20px;
}
.card-container, .content-grid {
  gap: 20px;
}

/************************
   FINAL TOUCHES
************************/
::-webkit-input-placeholder { color: #28314699; }
::-moz-placeholder { color: #28314699; }
:-ms-input-placeholder { color: #28314699; }
::placeholder { color: #28314699; }

::-webkit-scrollbar {
  width: 11px;
  background: #F4F4F4;
}
::-webkit-scrollbar-thumb {
  background: #DAA52044;
  border-radius: 11px;
}
::-webkit-scrollbar-thumb:hover {
  background: #DAA520BB;
}

#skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9990;
  background: #DAA520;
  color: #fff;
  padding: 7px 20px;
  border-radius: 8px;
  outline: none;
  text-align: center;
}
#skip-link:focus {
  left: 15px;
  top: 15px;
  width: auto;
  height: auto;
  outline: 2px solid #283146;
}

/* --- END --- */
