/*
============================================
  Velvet Chronographen – Futuristic Tech CSS
  Mobile-first, Flexbox-based, Brand Colors
============================================
*/
/* 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;
}
html { height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #DCD6CC;
  background-color: #191C25;
  background-image: linear-gradient(135deg, #191C25 60%, #1B2230 100%);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img { 
  max-width: 100%; 
  height: auto; 
  border: 0;
  vertical-align: middle;
}
a {
  color: #8A734A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .main-nav a.active, .footer-nav a:hover {
  color: #ffffff;
}
strong, b { font-weight: 600; color: #fff; }
ul, ol {
  padding-left: 24px;
}
li { margin-bottom: 10px; }

/* Brand Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #FFF;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  line-height: 1.13;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.21rem;
  margin-bottom: 14px;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #DCD6CC;
  font-size: 1.15rem;
  margin-bottom: 24px;
  font-weight: 400;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232537;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(15,21,35,0.13);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 48px 4px #8A734A44, 0 2px 8px rgba(39,40,47,0.10);
  transform: translateY(-3px) scale(1.017);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  background: #F7F8FA;
  border-radius: 14px;
  box-shadow: 0 2px 18px #1B223011;
  color: #191C25;
  margin-bottom: 24px;
  transition: transform 0.18s, box-shadow 0.24s;
}
.testimonial-card:hover {
  transform: translateY(-2.5px) scale(1.01);
  box-shadow: 0 8px 38px 0 #9B835633;
}
.testimonial-author {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  color: #8A734A;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #232537;
  border-radius: 14px;
  box-shadow: 0 3px 16px #1B223012;
  padding: 30px 22px;
  flex: 1 1 265px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 34px 2px #8A734A33;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}
.text-section {
  max-width: 800px;
}
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 12px;
}

/* -------------- Header & Nav -------------- */
header {
  background: #1B2230;
  box-shadow: 0 2px 16px #1B223022;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
  width: 100%;
}
.logo img {
  height: 48px;
  vertical-align: middle;
  display: block;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  color: #DCD6CC;
  padding: 8px 12px;
  border-radius: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.02em;
  transition: color 0.18s, background 0.18s;
}
.main-nav a.active, .main-nav a:hover {
  background: #232537;
  color: #8A734A;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.22s, color 0.16s, box-shadow 0.16s, transform 0.16s;
  letter-spacing: 0.01em;
  margin-top: 10px;
}
.btn-primary {
  background: #8A734A;
  color: #fff;
  box-shadow: 0 4px 22px 0 #9B83563a;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #DCD6CC;
  color: #191C25;
  box-shadow: 0 5px 34px #8A734A33, 0 2px 12px #23253710;
  transform: translateY(-1.5px) scale(1.022);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #232537;
  color: #8A734A;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  margin-left: 12px;
  cursor: pointer;
  z-index: 66;
  transition: background 0.20s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #DCD6CC;
  color: #191C25;
}
.mobile-menu {
  position: fixed;
  z-index: 100;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #16181FEE;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.5,0,0.3,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: #1B2230;
  color: #DCD6CC;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  width: 52px;
  height: 52px;
  margin: 32px 24px 0 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 200;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #DCD6CC;
  color: #1B2230;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-top: 48px;
  width: 100vw;
  padding-right: 44px;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  padding: 16px 0;
  font-size: 1.24rem;
  text-align: right;
  width: 100%;
  letter-spacing: 0.03em;
  border-bottom: 1px solid #23253735;
  transition: color 0.18s, background 0.20s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  color: #8A734A;
  background: #23253711;
}

@media (max-width: 1000px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle{
    display: inline-flex;
  }
}
@media (min-width: 1001px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* ---------- Hero & Sections ------------- */
.hero-section {
  width: 100%;
  background: linear-gradient(101deg, #1B2230 75%, #232537 100%);
  box-shadow: 0 10px 32px #1B22300f;
  padding: 54px 0 30px 0;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  padding-top: 16px;
  padding-bottom: 10px;
  z-index: 2;
}
.cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8A734A;
  padding: 36px 0;
  border-radius: 12px;
  box-shadow: 0 4px 24px #8A734A18;
  margin-bottom: 44px;
}
.cta-section .btn-primary {
  background: #232537;
  color: #fff;
  box-shadow: none;
  font-size: 1.2rem;
  margin-top: 0;
}
.cta-section .btn-primary:hover {
  background: #DCD6CC;
  color: #191C25;
}

/* ----------- Footer --------------- */
footer {
  background: #181A23;
  color: #DCD6CC;
  padding: 42px 0 24px 0;
  box-shadow: 0 -2px 20px #2325370c;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #DCD6CC;
  font-size: 1rem;
  padding: 8px 0px;
  transition: color 0.14s;
}
.footer-nav a:hover { color: #8A734A; }
.footer-contact {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 10px;
}
.footer-contact a { color: #8A734A; }
.footer-logo img {
  height: 44px;
  filter: drop-shadow(0 2px 12px #8A734A33);
}

/* -------- Text/Info Section Styling --------- */
.text-section {
  font-size: 1.12rem;
  color: #DCD6CC;
  background: none;
  padding-bottom: 0;
}

/* ------------ Cookie Consent Banner & Modal ------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  width: 100%;
  background: #232537;
  color: #fff;
  box-shadow: 0 0 22px #1B223044;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 1.05rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.6,0.1,0.3,1), opacity 0.1s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  padding: 10px 24px;
  background: #8A734A;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #DCD6CC;
  color: #1B2230;
}
.cookie-banner .cookie-settings-btn {
  background: #232537;
  border: 1px solid #8A734A;
  color: #8A734A;
  font-weight: 400;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #8A734A;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  background: #191C25ee;
  animation: fadeInCookie 0.33s;
}
.cookie-modal.active {
  display: flex;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #232537;
  color: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 44px #191C2535;
  max-width: 480px;
  width: 90vw;
  padding: 32px 30px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  position: relative;
}
.cookie-modal-content h2 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 2px;
}
.cookie-modal-content .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal-content .cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal-content input[type='checkbox'] {
  width: 18px;
  height: 18px;
  accent-color: #8A734A;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: #1B2230;
  color: #DCD6CC;
  border: none;
  border-radius: 7px;
  font-size: 1.24rem;
  width: 36px; height: 36px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #8A734A;
  color: #fff;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-modal button,
.cookie-modal .cookie-modal-actions button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  padding: 10px 24px;
  background: #8A734A;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  margin: 0 2px;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal button:hover,
.cookie-modal button:focus {
  background: #DCD6CC;
  color: #1B2230;
}

/* ----------- Responsive Rules ----------- */
@media (max-width: 991px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .footer-section, .section { padding: 28px 8px; }
  .card, .feature-grid > div, .testimonial-card { padding: 18px 12px; }
  .footer-logo img { height: 30px; }
  .footer-contact{ font-size: 0.93rem }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 0;
    padding-right: 0;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
    min-height: 54px;
    gap: 9px;
  }
  .hero-section {
    padding: 28px 0 10px 0;
    margin-bottom: 18px;
  }
  .hero-section .content-wrapper {
    padding-top: 8px;
    padding-bottom: 0;
  }
  .testimonial-row {
    flex-direction: column;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-section, .section { padding: 14px 2px; }
  .card-container {
    gap: 14px;
  }
  .card { padding: 14px 9px; }
  .content-grid {
    gap: 10px;
    flex-direction: column;
  }
  .footer-logo { margin-top: 16px; }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .footer-nav { gap: 10px; margin-bottom: 10px; }
  .cta-section{ padding: 20px 0; }
  .contact-section .container { padding: 0 3px; }
}
@media (max-width: 680px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.05rem; }
  .subheadline { font-size: 1.04rem; }
  .btn{ font-size: 1rem; padding: 10px 18px; }
  .logo img { height: 34px; }
  .cta-section { border-radius: 7px; }
}
@media (max-width: 540px) {
  .cookie-modal-content { padding: 14px 4vw 8px 4vw; }
}

/* --------- Micro-Interactions ------------ */
button, .btn, .main-nav a, .mobile-nav a, input[type='checkbox'] {
  outline: none;
  transition: box-shadow 0.15s, border 0.13s, color 0.13s;
}
button:focus-visible, .btn:focus-visible {
  box-shadow: 0 0 0 2px #8A734Aaa;
}
input[type="checkbox"]:focus-visible {
  outline: 2px solid #8A734A;
}

/* ---------- Utility & Spacing Classes ----------- */
.mt-2 { margin-top: 8px !important; }
.mt-4 { margin-top: 18px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-4 { margin-bottom: 18px !important; }

/* ------ Visually Hidden (for accessibility) ------ */
.visually-hidden { 
  border: 0 !important;   clip: rect(1px, 1px, 1px, 1px);   height: 1px;   margin: -1px;   overflow: hidden;   padding: 0;   position: absolute;   width: 1px; 
}
