/* 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #181C22;
  color: #F7F3ED;
  font-family: 'Montserrat', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  background-color: #181C22;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #F7F3ED;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.65rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
h4 { font-size: 1.05rem; margin-bottom: 5px; }

p { margin-bottom: 16px; color: #e3dfd8; }
strong, b { color: #DBA97B; font-weight: 700; }

/* BRAND COLORS */
:root {
  --color-primary: #242D38;
  --color-secondary: #DBA97B;
  --color-accent: #F7F3ED;
  --color-bg-dark: #181C22;
  --color-bg-light: #23272E;
  --neon-cyan: #18e6fb;
  --neon-indigo: #5e5cfc;
  --neon-pink: #f26aff;
}

/* GENERAL LAYOUTS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #23272E;
  box-shadow: 0 2px 16px 0 rgba(36,45,56, .16);
  overflow: hidden;
  transition: box-shadow 0.24s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 4px 24px 2px var(--neon-pink), 0 2px 24px 8px var(--neon-cyan);
  transform: translateY(-2px) scale(1.017);
  z-index: 2;
}
.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: 20px;
  background: #F7F3ED;
  color: #242D38;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 2px 14px 1px var(--neon-cyan), 0 1px 4px 0px rgba(36,45,56, .13);
  margin-bottom: 24px;
  min-width: 240px;
  min-height: 120px;
}
.testimonial-card strong {
  color: #5e5cfc;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #242d38 56%, #5e5cfc 95%);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 40px 1px var(--neon-indigo), 0 2px 6px 0px rgba(36,45,56, .15);
  margin-bottom: 60px;
  padding: 64px 0 54px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero h1 {
  color: #F7F3ED;
  font-size: 2.6rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 18px var(--neon-cyan);
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  color: #e3dfd8;
  margin-bottom: 18px;
  max-width: 600px;
}

/*.features-list, .services-list, .collection-list*/
.features-list, .services-list, .collection-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 34px;
  margin-bottom: 24px;
}
.features-list li, .collection-list li, .services-list li {
  background: #23272E;
  border-radius: 16px;
  padding: 22px 22px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 14px 0 rgba(24,230,251, .10);
  border: 1.5px solid transparent;
  transition: border 0.2s, box-shadow 0.22s, transform 0.15s;
}
.features-list li:hover, .collection-list li:hover, .services-list li:hover {
  border: 1.5px solid var(--neon-indigo);
  box-shadow: 0 2px 18px 2px var(--neon-cyan);
  transform: scale(1.03);
}
.features-list img, .collection-list img, .services-list img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 7px var(--neon-cyan));
}
.features-list span, .collection-list span, .services-list span {
  font-size: 1.01rem;
  color: #e0e7ef;
  font-family: 'Montserrat', Arial, sans-serif;
}

.services-list li {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 220px;
}
.services-list span {
  color: var(--color-secondary);
  font-weight: 500;
}

/* BUTTONS & CTA */
.cta-btn {
  background: var(--color-secondary);
  color: #181C22;
  padding: 12px 32px;
  border-radius: 28px;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 22px 0 var(--neon-pink), 0 1.5px 8px 1px var(--neon-cyan);
  transition: background 0.2s, color 0.15s, transform 0.2s, box-shadow 0.22s;
  margin: 24px 0 0 0;
  display: inline-block;
  cursor: pointer;
  border: none;
  outline: none;
  z-index: 1;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--neon-cyan);
  color: #23272E;
  transform: scale(1.048);
  box-shadow: 0 6px 26px 4px var(--neon-pink), 0 2px 16px 2px var(--neon-indigo);
}

/* NAVIGATION */
header {
  width: 100%;
  background: #181C22;
  box-shadow: 0 3px 16px 0px #11192826;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 101;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px 20px;
  gap: 16px;
}
.main-nav > a img {
  height: 38px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.main-nav ul li a {
  color: var(--neon-cyan);
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .5px;
  transition: color 0.16s;
  padding: 7px 0;
}
.main-nav ul li a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.18s;
  border-radius: 1px;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--neon-pink);
}
.main-nav ul li a:hover:after, .main-nav ul li a:focus:after {
  width: 100%;
  background: var(--neon-pink);
}
.main-nav .cta-btn {
  margin: 0 0 0 14px;
  font-size: 1rem;
  padding: 8px 23px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #23272E;
  color: var(--neon-cyan);
  font-size: 2.2rem;
  border-radius: 6px;
  padding: 4px 16px;
  border: none;
  align-self: center;
  margin-left: 8px;
  cursor: pointer;
  z-index: 200;
  transition: background 0.14s, color 0.18s;
}
.mobile-menu-toggle:hover {
  background: var(--neon-cyan);
  color: #23272E;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,28,34, 0.97);
  transform: translateX(105%);
  transition: transform 0.34s cubic-bezier(0.87,0.12,0.37,1.27);
  z-index: 2040;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--neon-pink);
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  padding: 18px 24px 10px 6px;
  cursor: pointer;
  z-index: 3000;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  margin: 24px 30px 0 40px;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 1.27rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 2px;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--neon-cyan);
  color: #23272E;
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 10px;
}

/* TEXT SECTION */
.text-section {
  margin-bottom: 12px;
  color: #e3dfd8;
}
.text-section ul {
  margin-bottom: 12px;
}
.text-section li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
.text-section li:before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-cyan);
  position: absolute;
  left: 0;
  top: 9px;
  opacity: 0.82;
}

/* FOOTER */
footer {
  background: #242D38;
  padding: 32px 0 22px 0;
  box-shadow: 0 -3px 24px 2px var(--neon-indigo);
  color: #e3dfd8;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-content img {
  height: 48px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--neon-cyan);
  padding: 3px 0;
  font-size: 1rem;
  transition: color 0.16s, text-shadow 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--neon-pink);
  text-shadow: 0 1px 7px var(--neon-pink);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.98rem;
  color: #e3dfd8;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.footer-contact img {
  height: 19px;
  width: 19px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2100;
  width: 100%;
  background: #23272E;
  color: #F7F3ED;
  box-shadow: 0 -2px 32px 4px var(--neon-indigo);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 15vw 20px 15vw;
  font-size: 1.01rem;
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.23s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner button {
  margin-left: 12px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 7px 20px;
  border-radius: 20px;
  background: var(--neon-cyan);
  color: #242D38;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 9px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, transform 0.13s;
}
.cookie-btn.reject {
  background: var(--neon-pink);
  color: #23272E;
}
.cookie-btn:active,
.cookie-btn:focus,
.cookie-settings-btn:active,
.cookie-settings-btn:focus {
  outline: 2px solid var(--neon-indigo);
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: var(--neon-indigo);
  color: #F7F3ED;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 120%);
  min-width: 350px;
  max-width: 92vw;
  background: #23272E;
  border-radius: 20px;
  z-index: 2104;
  box-shadow: 0 4px 32px 7px var(--neon-cyan);
  color: #F7F3ED;
  padding: 34px 34px 30px 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.21s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
}
.cookie-modal .cookie-category input[type=checkbox] {
  accent-color: var(--neon-cyan);
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category.essential label {
  color: var(--color-secondary);
  font-weight: 700;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .close-modal {
  background: none;
  color: var(--neon-pink);
  font-size: 1.4rem;
  position: absolute;
  top: 10px; right: 15px;
  border: none;
  cursor: pointer;
}

/* GENERAL MICRO-INTERACTIONS */
a, button, .cta-btn, .footer-nav a, .main-nav ul li a, .mobile-nav a {
  transition: color 0.16s, background 0.17s, box-shadow 0.18s, transform 0.13s;
}
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* SECTIONS, CARDS, CONTENT */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Accessibility: contrast for testimonials and reviews */
.testimonial-card {
  background: #F7F3ED;
  color: #242D38;
  box-shadow: 0 2px 14px 1px var(--neon-cyan);
}
.testimonial-card p {
  color: #242D38;
}
.testimonial-card strong {
  color: #5e5cfc;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .container, .footer-content {
    max-width: 980px;
    padding: 0 7vw;
  }
}
@media (max-width: 900px) {
  .features-list, .services-list, .collection-list {
    gap: 18px 14px;
  }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }

  .container, .footer-content {
    max-width: 98vw;
    padding: 0 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .features-list, .services-list, .collection-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 19px 0;
  }
  .section, section {
    padding: 28px 6px;
  }
  .hero {
    padding: 40px 0 30px 0;
  }
  .hero h1 { font-size: 1.59rem; }
  .hero p { font-size: 1rem; }
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 19px 2vw;
    font-size: 1rem;
  }
  .cookie-modal {
    padding: 18px 10px 18px 16px;
    min-width: 0;
    max-width: 97vw;
  }
}
@media (max-width: 499px) {
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.93rem; }
  .footer-content img {
    height: 38px;
  }
}
