/* 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,
main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  background: #181c22;
  color: #F6F4EF;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
input, textarea, select, button {
  font: inherit;
  outline: none;
}
a {
  color: #C6AA76;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F6F4EF;
}
ul, ol {
  list-style: none;
}

/* Typography */
h1, .h1 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #C6AA76;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #F6F4EF;
  margin-bottom: 12px;
}
h4, .h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #C6AA76;
}
p, li, .body-text {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #F6F4EF;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: #FFD700;
}
.author {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 0.96rem;
  color: #13222E;
  font-weight: bold;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1b232b;
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(19,34,46,0.11);
}

/* Header */
header {
  width: 100%;
  background: #13222E;
  padding: 18px 0 18px 0;
  border-bottom: 2px solid #222b37;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 100;
}
header > a img {
  height: 42px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-left: 0;
  margin-bottom: 0;
}
.main-nav a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  font-size: 1rem;
  color: #F6F4EF;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #C6AA76;
}
.cta-btn {
  font-family: 'Playfair Display', 'Georgia', serif;
  background: #C6AA76;
  color: #181C22;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 24px;
  margin-left: 36px;
  box-shadow: 0 2px 12px rgba(198,170,118,0.09);
  transition: background 0.21s, color 0.18s, box-shadow 0.22s;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD700;
  color: #13222E;
  box-shadow: 0 6px 28px rgba(198,170,118,0.22);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #C6AA76;
  border: none;
  margin-left: 26px;
  cursor: pointer;
  z-index: 120;
  transition: color .17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFD700;
}

/* Mobile Menu (default: hidden) */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  max-width: 368px;
  background: #181c22;
  box-shadow: -8px 0 32px 0 rgba(32,29,27,0.39);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(110vw);
  transition: transform 0.31s cubic-bezier(.47,.14,.15,.99);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -12px 0 60px rgba(19,34,46,0.34);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 24px 4px 0;
  font-size: 2.2rem;
  background: none;
  color: #C6AA76;
  border: none;
  cursor: pointer;
  transition: color .16s;
}
.mobile-menu-close:focus {
  outline: 2px solid #FFD700;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 36px 38px 36px;
  margin-top: 34px;
}
.mobile-nav a {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.21rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: 700;
  color: #F6F4EF;
  padding: 10px 0;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #C6AA76;
  background: #202a36;
}

/* Hero Section */
.hero {
  background: #181c22;
  border-bottom: 1px solid #232C38;
  padding: 60px 0 34px 0;
  margin-bottom: 16px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #C6AA76;
  font-size: 2.8rem;
  letter-spacing: 0.025em;
  margin-bottom: 20px;
}
.hero p {
  color: #e7e5dd;
  max-width: 720px;
  margin-bottom: 32px;
  font-size: 1.16rem;
}
.hero .cta-btn {
  margin-top: 14px;
}

/* Feature Grid */
.features, .services-list, .expertise-list, .collections-showcase, .tips, .company-info {
  background: #232C38;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  align-items: stretch;
}
.feature-item {
  background: #181c22;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(21,22,19,0.10), 0 1.5px 5px rgba(198,170,118,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  flex: 1 1 240px;
  padding: 28px 22px 22px 22px;
  border: 1.5px solid #2D3A47;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s, background 0.16s;
}
.feature-item:hover {
  box-shadow: 0 6px 34px 0 rgba(19,34,46,0.18);
  border-color: #C6AA76;
  background: #202a36;
}
.feature-item img {
  height: 46px;
  filter: grayscale(.52) contrast(1.45); /* Reminiscent of industrial metallic icons presentation */
  margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #FFD700;
  margin-bottom: 7px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}
.feature-item p {
  color: #DEDEDC;
}

/* About Preview, Trust Badges and Awards */
.about-preview .trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 20px 0;
}
.about-preview .trust-badges img {
  height: 38px;
  filter: grayscale(0.9) brightness(1.36) contrast(1.2);
}
.brand-awards {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #231f20;
  padding: 12px 20px;
  border-radius: 7px;
}
.brand-awards img {
  height: 24px;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 18px 0 8px 0;
}
.client-logos img {
  height: 36px;
  filter: grayscale(0.7) brightness(1.12) contrast(1.13);
}

/* Card / Grid Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #181c22;
  border-radius: 13px;
  box-shadow: 0 4px 22px rgba(19,34,46,0.14);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
}

/* Testimonials */
.testimonials {
  background: #232C38;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
}
.testimonial-card {
  background: #F6F4EF;
  color: #181C22;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 13px;
  box-shadow: 0 2px 18px rgba(24,28,33,0.14);
  margin-bottom: 22px;
  font-size: 1.1rem;
  border-left: 5px solid #C6AA76;
  transition: box-shadow 0.18s, border-color 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px 0 rgba(19,34,46,0.16);
  border-left: 6.5px solid #FFD700;
}
.testimonial-card p {
  color: #222B37;
  flex: 1 1 60%;
}
.testimonial-card .author {
  color: #13222E;
  font-weight: bold;
  font-size: 1rem;
  margin-left: 8px;
}
.testimonial-card img {
  height: 27px;
  margin-left: auto;
}

/* CTA Section */
.cta {
  background: #C6AA76;
  color: #13222E;
  border-radius: 17px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta h2 {
  color: #13222E;
  font-size: 1.65rem;
  margin-bottom: 24px;
}
.cta .cta-btn {
  background: #181C22;
  color: #FFD700;
  border-radius: 28px;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #FFD700;
  color: #181C22;
}

/* Form, Contact, Map, Office Hours */
.contact-form, .company-info {
  background: #232C38;
  border-radius: 15px;
  margin-bottom: 60px;
  padding: 36px 22px;
}
.contact-fields, .map-embed, .office-hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section a {
  color: #C6AA76;
  text-decoration: underline;
}
.text-section a:hover, .text-section a:focus {
  color: #FFD700;
}
.text-section img {
  height: 20px;
  margin-right: 8px;
}

/* Services, Expertise & List blocks */
.services-list ul, .expertise-list ul, .collections-showcase ul, .tips ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.services-list li, .expertise-list li, .collections-showcase li, .tips li {
  padding: 18px 20px;
  background: #181c22;
  border-radius: 8px;
  border-left: 4.5px solid #C6AA76;
  box-shadow: 0 1.5px 7px rgba(27,35,43,0.09);
  margin-bottom: 8px;
}
.services-list li strong {
  float: right;
  color: #FFD700;
  font-size: 1.01rem;
}

/* Timeline, Team & Awards */
.history-timeline,
.vision-mission,
.team-profiles {
  background: #181c22;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 18px 14px 18px 22px;
  box-shadow: 0 1px 10px rgba(35,44,56,0.07);
}
.history-timeline h3,
.vision-mission h3,
.team-profiles h3 {
  color: #C6AA76;
  margin-bottom: 10px;
  font-size: 1.09rem;
  font-family: 'Playfair Display', serif;
}
.history-timeline ul,
.team-profiles ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.history-timeline li strong {
  color: #FFD700;
  margin-right: 11px;
}

/* Security & Trust */
.security-icons {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.security-icons img {
  height: 34px;
  filter: brightness(1.13) grayscale(.6) contrast(1.14);
}

/* Confirmation Pages */
.confirmation {
  background: #232C38;
  margin-top: 40px;
  border-radius: 14px;
  padding: 40px 22px;
}
.confirmation h1 {
  color: #FFD700;
  margin-bottom: 18px;
}
.confirmation .cta-btn {
  margin-top: 18px;
}

/* Footer */
footer {
  background: #13222E;
  padding: 34px 20px 20px 20px;
  border-top: 2px solid #232C38;
  color: #F6F4EF;
  font-size: 1rem;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 22px;
}
.footer-nav img {
  height: 34px;
  filter: brightness(1.06) grayscale(0.84);
}
.footer-nav nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-nav nav a {
  color: #C6AA76;
  font-size: 0.97rem;
  transition: color 0.2s;
}
.footer-nav nav a:hover {
  color: #FFD700;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact div {
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #e4e2dc;
}
.footer-contact img {
  height: 19px;
  margin-right: 5px;
}
.footer-contact a {
  color: #C6AA76;
  text-decoration: underline;
}
.footer-contact a:hover {
  color: #FFD700;
}
.footer-copy {
  text-align: right;
  color: #717172;
  font-size: 0.94rem;
  margin-top: 10px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #222b37;
  color: #F6F4EF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  box-shadow: 0 -2px 16px rgba(27,35,43,0.21);
  font-size: 1rem;
  gap: 20px;
  flex-wrap: wrap;
  animation: cookie-fadein 0.5s;
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.19s, color 0.16s, box-shadow 0.19s;
}
.cookie-btn.accept {
  background: #C6AA76;
  color: #181C22;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFD700;
}
.cookie-btn.reject {
  background: #232C38;
  color: #FFD700;
  border: 1.5px solid #FFD700;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD700;
  color: #181C22;
}
.cookie-btn.settings {
  background: #181c22;
  color: #C6AA76;
  border: 1.5px solid #C6AA76;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #C6AA76;
  color: #181C22;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(19,34,46,0.8);
  z-index: 100099;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-modal-fadein 0.25s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232C38;
  color: #F6F4EF;
  padding: 34px 28px 30px 28px;
  border-radius: 15px;
  max-width: 400px;
  width: 92vw;
  box-shadow: 0 8px 44px rgba(19,34,46,0.38);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  color: #C6AA76;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category label {
  color: #F6F4EF;
  font-weight: 700;
}
.cookie-category input[type="checkbox"] {
  accent-color: #FFD700;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-category .category-essential {
  color: #8AC76A;
  font-weight: bold;
  margin-left: 6px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 15px;
}
.cookie-modal-close {
  position: absolute;
  top: 11px;
  right: 16px;
  background: none;
  border: none;
  color: #FFD700;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  outline: 0;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #C6AA76;
}

/* Animations */
.cta-btn, .cookie-btn, .cookie-modal, .feature-item, .testimonial-card, .section, .services-list li, .expertise-list li, .collections-showcase li, .tips li {
  transition: box-shadow 0.18s, border-color 0.13s, background 0.18s, color 0.14s;
}
.cta-btn, .cookie-btn { transition: box-shadow 0.22s, background 0.19s, color 0.15s; }

/* Scrollbar styling (industrial_modern) */
::-webkit-scrollbar {
  width: 11px;
  background: #141B22;
}
::-webkit-scrollbar-thumb {
  background: #232C38;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C6AA76;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .feature-grid, .footer-contact {
    gap: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 18px;
    padding-right: 12px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.57rem; }
  h2, .h2 { font-size: 1.1rem; }
  .hero {
    padding: 38px 0 18px 0;
  }
  .section, .features, .testimonials, .about-preview, .cta,
  .services-list, .expertise-list, .collections-showcase, .tips, .company-info, .confirmation, .contact-form {
    padding: 26px 8px;
    border-radius: 10px;
  }
  .container {
    padding: 0 8px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 19px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-copy {
    text-align: left;
    padding-left: 0;
    margin-top: 24px;
  }
}
@media (max-width: 600px) {
  .confirm-section, .cta, .hero, .features, .services-list, .collections-showcase, .tips, .company-info, .section, .testimonials {
    padding: 18px 3px !important;
    border-radius: 8px;
  }
  .footer-nav, .footer-contact {
    gap: 8px;
  }
}

/* Flex Layout Fixes for Overlap Prevention */
.feature-item, .card, .services-list li, .expertise-list li, .collections-showcase li, .tips li, .testimonial-card {
  margin-bottom: 20px;
}
.section, .features, .testimonials, .about-preview, .cta, .services-list,
.expertise-list, .collections-showcase, .tips, .company-info, .confirmation, .contact-form {
  margin-bottom: 60px;
}
.card-container, .feature-grid, .content-grid, .footer-nav, .footer-contact, .trust-badges, .brand-awards, .client-logos, .testimonial-card, .text-image-section, .mobile-nav, .cookie-banner-actions, .cookie-modal-actions, .cookie-categories, .history-timeline ul, .team-profiles ul {
  gap: 20px !important;
}

/* Prevent content overlap in all flex containers */
.card-container > *, .feature-grid > *, .content-grid > *, .footer-contact > *, .trust-badges > *, .testimonial-card > *, .mobile-nav > *, .cookie-banner-actions > *, .cookie-modal-actions > * {
  min-width: 0;
}

/* Utility classes */
.mt-2 { margin-top: 2px !important; }
.mt-8 { margin-top: 8px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-22 { margin-bottom: 22px !important; }
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.w-100 { width: 100% !important; }

/* Fallback fonts */
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: local('Lato Regular'), local('Lato-Regular');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: local('Playfair Display Bold'), local('PlayfairDisplay-Bold');
}
