/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #161C1F;
  color: #F0F0F0;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  background: none;
  border: none;
  color: inherit;
}
a {
  color: #D4B5A1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFFFFF;
}
ul, ol {
  list-style: none;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #222930;
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: #161C1F;
}

/* FONT IMPORT */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: local('Playfair Display'), url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato'), url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');
}

/* BASE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #D4B5A1;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.7rem; /* 43px */
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem; /* 22px */
}
h4 {
  font-size: 1.18rem;
}
.subheadline {
  font-size: 1.18rem; /* 18px */
  color: #B9C1C7;
  font-family: 'Lato', sans-serif;
  margin-bottom: 18px;
}
p, li, address, cite, blockquote {
  font-family: 'Lato', Arial, sans-serif;
  color: #F0F0F0;
  font-size: 1rem; /* 16px */
  line-height: 1.7;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #D4B5A1;
  color: #222;
  padding: 14px 16px;
  margin-bottom: 8px;
  font-size: 1.10rem;
}
cite {
  display: block;
  color: #183446;
  font-weight: bold;
  margin-left: 8px;
  font-size: 0.97rem;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #222930;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}
th, td {
  padding: 16px 12px;
  text-align: left;
}
th {
  background: #183446;
  color: #D4B5A1;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}
td {
  color: #FFFFFF;
  border-bottom: 1px solid #23282C;
}

/* LAYOUT CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #23282C;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(24,52,70, 0.10);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 28px 0 rgba(251,215,167,0.08), 0 10px 20px rgba(24,52,70,0.23);
  transform: translateY(-4px) 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FAFAFA;
  color: #161C1F;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(24,52,70,0.05);
  border-left: 7px solid #D4B5A1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #23282C;
  border-radius: 11px;
  box-shadow: 0 1.5px 8px 0 rgba(24,52,70,0.08);
  padding: 28px 18px;
  min-width: 220px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  filter: brightness(1.07) drop-shadow(0 0 1.5px #D4B5A1);
}
.feature-item:hover {
  box-shadow: 0 6px 18px -2px #B9C1C720, 0 0px 0px #FFF;
  transform: translateY(-2px) scale(1.012);
}

/* HERO */
.hero {
  background: linear-gradient(90deg,#1e2830 70%, #29333c 100%);
  min-height: 380px;
  display: flex;
  align-items: center;
  padding: 72px 0 36px 0;
}
.hero h1, .hero .subheadline {
  color: #FAFAFA;
}
.cta-btn {
  background: #D4B5A1;
  color: #183446;
  font-family: 'Lato', sans-serif;
  font-size: 1.10rem;
  font-weight: bold;
  padding: 14px 35px;
  border-radius: 23px;
  box-shadow: 0 2px 10px 0 rgba(83,71,55,0.10);
  text-shadow: 0 1px 2px #FFF9;
  margin-top: 12px;
  display: inline-block;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background .20s, color .20s, box-shadow .22s, transform .12s;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #b99676;
  color: #FFF;
  box-shadow: 0 7px 16px #b9967680;
  transform: translateY(-2px) scale(1.08);
}

/* NAVIGATION HEADER */
header {
  background: #1B2328;
  border-bottom: 2.5px solid #D4B5A1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 75px;
  position: sticky;
  top: 0;
  z-index: 1010;
}
.header-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-logo img {
  height: 44px;
  width: auto;
  filter: brightness(1.07) drop-shadow(0 1px 2px #D4B5A1BB);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
.main-nav a {
  color: #D4B5A1;
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.16s;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFF;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2px;
  background: #D4B5A1;
  width: 0;
  border-radius: 2px;
  transition: width .18s;
  margin-top: 2px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #D4B5A1;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.18s;
  z-index: 1131;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #FFF;
  transform: scale(1.17);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,52,70, 0.97);
  display: flex;
  flex-direction: column;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.78,.1,.22,.98);
  pointer-events: none;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #D4B5A1;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 22px 26px 18px 0;
  cursor: pointer;
  transition: color 0.22s, transform 0.17s;
  z-index: 2111;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FFF;
  transform: scale(1.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  padding: 22px 32px 32px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #F0F0F0;
  font-family: 'Lato', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 12px 0;
  border-bottom: 1px solid #29333c;
  width: 100%;
  transition: color 0.16s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #222930;
  color: #D4B5A1;
  border-radius: 4px;
  padding-left: 8px;
}
/* Hide desktop nav, show burger on mobile */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hide mobile menu by default on large viewports */
@media (min-width: 1101px) {
  .mobile-menu {
    display: none !important;
  }
}

/* SECTIONS & FLEXBOX PATTERNS */
.features {
  background: #1B2328;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.about-short, .thank-you-next, .about-team, .about-features, .custom-solutions, .services-overview, .services-portfolio, .workflow, .gallery-highlights, .contact-short, .contact-info, .visit, .pakete-features, .blog-latest, .legal {
  background: #23282C;
  border-radius: 22px;
  box-shadow: 0 2px 15px 0 rgba(24,52,70,0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  padding: 14px 0 0 0;
  margin-bottom: 18px;
}
.text-section.highlight {
  background: #1B2328;
  border-left: 4px solid #D4B5A1;
  border-radius: 7px;
  color: #FFF;
  padding: 19px 14px;
  margin-top: 10px;
}
.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.workflow-steps > div {
  background: #222930;
  border-radius: 12px;
  padding: 25px 16px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(24,52,70,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.workflow-steps > div:hover {
  box-shadow: 0 6px 24px #B9C1C71a;
  transform: translateY(-2px) scale(1.012);
}
.workflow-steps img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
  filter: brightness(1.1) drop-shadow(0 1px 2px #D4B5A199);
}
.post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.post-list article {
  background: #23282C;
  border-radius: 11px;
  box-shadow: 0 2px 9px 0 rgba(24,52,70,0.08);
  flex: 1 1 260px;
  min-width: 230px;
  padding: 20px 16px 14px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.14s, transform 0.16s;
}
.post-list article h3 {
  color: #D4B5A1;
  margin-bottom: 4px;
}
.post-list article a {
  font-weight: 600;
  color: #D4B5A1;
  margin-top: 10px;
}
.post-list article:hover {
  box-shadow: 0 6px 18px -2px #B9C1C720;
  transform: translateY(-2px) scale(1.01);
  border-left: 4px solid #D4B5A1;  
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 6px 0;
}
.blog-categories li {
  background: #1B2328;
  color: #D4B5A1;
  padding: 8px 18px;
  border-radius: 19px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 4px 0 #292B3077;
}

/* FOOTER */
footer {
  background: #161C1F;
  border-top: 2.5px solid #D4B5A1;
  padding: 38px 24px 18px 24px;
  margin-top: 55px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(1.1) drop-shadow(0 1px 2px #D4B5A1BB);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #D4B5A1;
  font-family: 'Lato', sans-serif;
  font-size: 1.06rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFF;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #B9C1C7;
  margin-top: 10px;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 3px;
  filter: grayscale(100%) brightness(1.3); 
}
.footer-contact a {
  color: #D4B5A1;
  font-size: 1.02rem;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  min-height: 80px;
  background: #23282C;
  color: #FAFAFA;
  box-shadow: 0 -3px 28px #18344633;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 18px 18px 18px;
  gap: 30px;
  animation: cookieSlideUp 0.6s cubic-bezier(.38,1.65,.41,.96);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  flex: 1 1 320px;
  font-size: 0.98rem;
  color: #FAFAFA;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-secondary {
  padding: 11px 22px;
  font-size: 1rem;
  border-radius: 22px;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  font-weight: 700;
  border: none;
  transition: background 0.16s, color 0.15s, transform 0.14s;
}
.cookie-btn-primary {
  background: #D4B5A1;
  color: #183446;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #b99676;
  color: #FFF;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn-secondary {
  background: #183446;
  color: #D4B5A1;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #23282C;
  color: #FAFAFA;
  transform: translateY(-1px) scale(1.03);
}
.cookie-btn {
  background: #23282C;
  color: #D4B5A1;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1B2328;
  color: #FFF;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,52,70, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4010;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s, pointer-events 0s linear 0.28s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
  transition-delay: 0s;
}
.cookie-modal-content {
  background: #23282C;
  border-radius: 17px;
  max-width: 430px;
  width: 95vw;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 9px 48px #18344666;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #FAFAFA;
  animation: modalFadeIn 0.20s;
}
@keyframes modalFadeIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal-header h3 {
  font-size: 1.4rem;
  color: #D4B5A1;
  margin: 0;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #D4B5A1;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.17s, transform 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FAFAFA;
  transform: scale(1.14);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 10px;
  background: #1B2328;
  border-radius: 7px;
  padding: 14px 12px;
}
.cookie-category-label {
  flex: 1 1 190px;
  color: #FAFAFA;
  font-weight: 600;
}
.cookie-category-toggle {
  min-width: 38px;
  height: 22px;
  border-radius: 33px;
  background: #223044;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: background 0.14s;
  margin-left: 13px;
}
.cookie-category-toggle[data-enabled='true'] {
  background: #D4B5A1;
}
.cookie-category-toggle .toggle-circle {
  width: 19px;
  height: 19px;
  background: #FAFAFA;
  border-radius: 50%;
  box-shadow: 0 0.5px 1px #0002;
  margin-left: 2px;
  transition: transform 0.20s;
}
.cookie-category-toggle[data-enabled='true'] .toggle-circle {
  transform: translateX(14px);
}
.cookie-category-desc {
  color: #B9C1C7;
  font-size: 0.97rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  align-self: flex-end;
  margin-top: 14px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .feature-grid, .workflow-steps, .post-list {
    gap: 16px;
  }
  .container, .content-wrapper {
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  .hero {
    min-height: 230px;
    padding: 48px 0 24px 0;
  }
  .feature-grid, .workflow-steps, .post-list {
    flex-direction: column;
    gap: 12px;
  }
  .section, .about-short, .thank-you-next, .about-team, .about-features, .custom-solutions, .services-overview, .services-portfolio, .workflow, .gallery-highlights, .contact-short, .contact-info, .visit, .pakete-features, .blog-latest, .legal {
    padding: 22px 2vw;
    margin-bottom: 34px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px;
    font-size: 0.98rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  header {
    padding: 0 8px;
    height: 65px;
  }
  .mobile-menu {
    padding: 0 0 0 0;
  }
  .hero .container, .about-short .container, .content-wrapper {
    padding: 0 2vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 8px 15px 12px;
  }
}
@media (max-width: 550px) {
  .cookie-modal-content {
    max-width: 98vw;
    padding: 16px 6px 12px 6px;
  }
  .workflow-steps > div, .feature-item, .post-list article {
    min-width: 90vw;
    padding: 12px 7px;
  }
  table th, table td {
    padding: 8px 3px;
  }
}
@media (max-width: 480px) {
  .footer-contact {
    font-size: 0.95rem;
  }
  .footer-logo img {
    height: 27px;
  }
  .header-logo img {
    height: 30px;
  }
}

/* UTILITY CLASSES */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-center {
  text-align: center;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* METALLIC ACCENTS & URBAN EFFECTS */
.feature-item, .testimonial-card, .about-short, .content-wrapper, .section {
  border-right: 2.5px solid #D4B5A133;
}
.hero {
  box-shadow: 0 13px 44px #1B232815, 0 8px 8px #D4B5A128;
}
.cta-btn, .card, .feature-item, .post-list article {
  border-bottom: 1px solid #D4B5A120;
  text-shadow: 0 1px 3px #23282C14;
}

/* FOCUS STYLES (ACCESSIBILITY) */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2.5px solid #D4B5A1;
  outline-offset: 2.5px;
  z-index: 11111;
}

/***** END OF STYLE.CSS *****/