/* =====================
   RESET & BASE STYLING
   ===================== */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: #19181e;
}
body {
  background: #19181e;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #D9A86C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-shadow: 0 0 4px #D9A86C, 0 0 12px #D9A86C55;
}
ul, ol {
  padding-left: 1.35em;
}
li + li {
  margin-top: 8px;
}
strong {
  color: #D9A86C;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================
   TYPOGRAPHY
   ================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.15;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, .text-section {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 14px;
  color: #f2ede8;
}
small {
  font-size: 0.95rem;
  color: #aaa;
}
.tagline {
  font-size: 1.2rem;
  color: #D9A86C;
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.5px;
}

/* ================
   HEADER & NAV
   ================ */
header {
  background: #222127;
  border-bottom: 1.5px solid #393744;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #f9f9f9;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: 
    background 0.22s, 
    color 0.22s, 
    box-shadow 0.25s;
  /* Neon effect */
}
header nav a.cta {
  background: #D9A86C;
  color: #222127;
  box-shadow: 0 0 0px 2px #D9A86C55, 0 0 14px #D9A86C33;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #ffdfaE;
  color: #19181e;
  box-shadow: 0 0 10px 2px #D9A86C80;
}
header nav a:hover:not(.cta), header nav a:focus:not(.cta) {
  background: #272727;
  color: #D9A86C;
  box-shadow: 0 0 0 2px #D9A86C55;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #D9A86C;
  font-size: 2rem;
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  transition: background 0.19s;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #312e43;
}
header img {
  max-height: 48px;
  width: auto;
  margin-right: 5px;
}

/* ================
   MOBILE MENU
   ================ */
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,24,30,0.96);
  backdrop-filter: blur(6px);
  transform: translateX(-105%);
  transition: transform 0.34s cubic-bezier(.7,.05,.4,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 10001;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D9A86C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 90px 38px 24px 32px;
  gap: 17px;
}
.mobile-nav a {
  width: 100%;
  color: #faf6eb;
  padding: 14px 0 14px 8px;
  font-size: 1.25rem;
  border-radius: 7px;
  margin-bottom: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #272727;
  box-shadow: 0 0 10px 0 #D9A86C22;
  color: #D9A86C;
}

/* Hide nav on mobile, show burger */
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width:901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================
   HERO SECTION
   ================ */
.hero {
  background: linear-gradient(93deg, #23212a 68%, #272727 100%);
  box-shadow: 0 7px 24px 0 #30283b1c;
  border-bottom: 2.5px solid #30283b33;
  margin-bottom: 56px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  gap: 18px;
}
.hero h1 {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 4px 24px #19181e22, 0 0 13px #D9A86C33;
}
.hero .cta {
  margin-top: 13px;
  align-self: flex-start;
}

/* ================
   CTA BUTTON
   ================ */
.cta {
  background: #D9A86C;
  color: #23212a;
  border: none;
  border-radius: 30px;
  padding: 13px 34px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px 0 #D9A86C80, 0 0 40px 0 #D9A86C22;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.1s;
  cursor: pointer;
  margin-top: 12px;
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: #fff;
  color: #19181e;
  box-shadow: 0 0 20px 4px #D9A86C99, 0 0 80px 4px #D9A86C22;
  transform: translateY(-2px) scale(1.03);
}

/* ================
   CARD, FLEX, & SECTION LAYOUTS
   ================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.card {
  background: #262331;
  border-radius: 20px;
  box-shadow: 0 5px 24px #211d295c, 0 0 0 1.5px #D9A86C33;
  border: 1.5px solid #312e43;
  padding: 32px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .22s, transform .12s;
  min-width: 230px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 9px 32px #36324b77, 0 0 0 2.5px #D9A86C88;
  transform: translateY(-3px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}

/* FEATURES section */
.features-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.feature {
  flex: 1 1 210px;
  min-width: 200px;
  background: #211d29;
  border-radius: 16px;
  padding: 24px 18px 22px;
  box-shadow: 0 0 14px #D9A86C19;
  border: 1.3px solid #30283b;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.feature img {
  width: 34px;
  margin-bottom: 12px;
}
.feature h3 {
  color: #D9A86C;
  font-size: 1.18rem; margin-bottom: 7px;
}
.feature:hover, .feature:focus {
  box-shadow: 0 0 16px 2px #D9A86C77, 0 0 36px 7px #D9A86C14;
  z-index: 1;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 22px 24px;
  background: #faf6eb;
  color: #19181e;
  border-radius: 17px;
  box-shadow: 0 6px 18px 0 #23212a3b;
  margin-bottom: 22px;
  font-size: 1.09rem;
  position: relative;
  border: 1.5px solid #e2decd;
  min-width: 260px;
}
.testimonial-card p {
  color: #23212a;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
}
.testimonial-card span {
  color: #D9A86C;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 8px;
}

.shop-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-bottom: 7px;
}

/* SECTION SPACING & UTILITY */
.content-wrapper {
  margin-bottom: 20px;
}
.content-wrapper:last-child, .section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.address-block, .phone-mail-details {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  color: #fff;
}
.address-block img, .phone-mail-details img {
  width: 23px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ===================
   TABLE STYLING
   =================== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 18px;
  background: #23212a;
  border-radius: 14px;
  box-shadow: 0 3px 12px #23212a11;
  overflow: hidden;
}
thead {
  background: #30283b;
}
th, td {
  padding: 14px 12px;
  text-align: left;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
}
th {
  color: #D9A86C;
  font-size: 1.09rem;
  border-bottom: 1.5px solid #D9A86C33;
}
td {
  border-bottom: 1px solid #272727;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* ====================
   FOOTER
   ==================== */
footer {
  background: #211d29;
  color: #fff;
  border-top: 1.5px solid #30283b55;
}
footer .container {
  padding: 38px 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
footer nav a {
  color: #D9A86C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
}
footer address {
  color: #fff;
  font-style: normal;
  font-size: 1.01rem;
  margin-bottom: 6px;
  text-align: center;
}
footer small {
  color: #bbb;
  font-size: 0.93rem;
  text-align: center;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 1100px) {
  .container {
    max-width: 960px;
  }
  .features-grid, .features, .card-container, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 13px;
  }
  .feature, .card {
    min-width: 180px;
    padding: 18px;
  }
  th, td {
    padding: 12px 7px;
  }
  .card {
    padding: 18px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    margin-bottom: 36px;
    padding: 23px 4px;
  }
  .card-container, .features-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-card, .feature, .card {
    min-width: 0;
    width: 100%;
    padding: 14px;
  }
  .hero {
    padding-top: 24px;
    padding-bottom: 24px;
    margin-bottom: 28px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 6px;
  }
  .hero .content-wrapper {
    gap: 7px;
  }
}

/* ===================
   MICRO-INTERACTIONS
   =================== */
button, .cta, a.cta {
  transition: background 0.19s, color 0.19s, box-shadow 0.2s, transform 0.11s;
}
button:active, .cta:active, a.cta:active {
  transform: scale(.98);
}
input, textarea, select {
  border: 1.2px solid #262331;
  border-radius: 7px;
  padding: 12px 8px;
  background: #23212a;
  color: #fff;
  font-size: 1rem;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #D9A86C;
  outline: none;
}

/* ===================
   COOKIE CONSENT BANNER
   =================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) scale(1);
  z-index: 20000;
  background: #19181e;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 44px #23212a44;
  padding: 20px 30px 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 19px 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.22s, transform 0.22s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(.97);
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-left: auto;
}
.cookie-btn {
  padding: 11px 22px;
  border-radius: 18px;
  border: none;
  font-size: 1rem;
  margin: 0 3px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #272727;
  color: #D9A86C;
  transition: background .22s, color .17s, box-shadow .19s;
}
.cookie-btn.accept {
  background: #D9A86C;
  color: #19181e;
  box-shadow: 0 0 6px 1.5px #D9A86C44;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #D9A86C;
}
.cookie-btn.reject {
  background: #23212a;
  color: #fff;
  border: 1.2px solid #44414f;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #420D11;
  color: #fff;
}
.cookie-btn.settings {
  background: #23212a;
  color: #D9A86C;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #19181e;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 10px 16px 13px;
    width: 93vw;
    min-width: 0;
    max-width: 98vw;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
  }
  .cookie-banner-buttons {
    margin-left: 0;
    gap: 8px;
  }
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 20001;
  inset: 0;
  background: rgba(22,21,25,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn .23s;
}
@keyframes cookieModalIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #23212a;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 0 40px 2px #19181e50;
  max-width: 400px;
  width: 96vw;
  padding: 33px 26px 24px;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal h2 {
  color: #D9A86C;
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal-category label {
  font-size: 1rem;
}
.cookie-toggle {
  width: 32px;
  height: 18px;
  border-radius: 15px;
  background: #3b3945;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  display: inline-block;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 15px;
  height: 14px;
  border-radius: 50%;
  background: #D9A86C;
  transition: left 0.18s;
}
.cookie-toggle input:not(:checked) + .cookie-toggle-slider {
  background: #88857a;
  left: 2px;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #D9A86C;
  left: 15px;
}
.cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  padding: 10px 20px;
  min-width: 110px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #D9A86C;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 16px 7px 17px 7px;
  }
}
/* ===================
   MISC
   =================== */
.service-success-story {
  background: #1c1b21;
  border-radius: 18px;
  box-shadow: 0 2px 8px #19181e44;
  border: 1.3px solid #30283b;
  padding: 22px 20px 24px;
  margin-bottom: 15px;
}
.service-success-story h2 {
  color: #D9A86C;
  margin-bottom: 8px;
  font-size: 1.16rem;
}

/* Accessibility: outline for keyboard */
:focus-visible {
  outline: 2.5px solid #D9A86C;
  outline-offset: 2px;
}

/* ================
   FONT IMPORTS
   ================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ================
   BRAND SCROLLBAR (Webkit)
   ================ */
::-webkit-scrollbar {
  width: 10px;
  background: #19181e;
}
::-webkit-scrollbar-thumb {
  background: #23212a;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D9A86C77;
}
