/* RESET AND NORMALIZE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #23272A;
  background-color: #F8F9FB;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
  appearance: none;
  background: none;
  border: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

/* TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: #23272A;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #23272A;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #23272A;
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #23272A;
}
p, ul, ol {
  font-size: 1rem;
  color: #23272A;
  margin-bottom: 1em;
}
ul, ol {
  padding-left: 1.3em;
}
strong, b {
  font-weight: 700;
}

/* UTILITY CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(35, 39, 42, 0.04);
  padding: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 0;
  color: #23272A;
  opacity: 0.85;
  transition: color 0.2s, opacity 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #B8860B;
  opacity: 1;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #23272A;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 28px;
  margin-left: 14px;
  outline: none;
  box-shadow: 0 2px 8px rgba(35, 39, 42, 0.08);
  border: 2px solid #23272A;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #23272A !important;
  border-color: #B8860B;
  transform: translateY(-2px) scale(1.045);
  box-shadow: 0 4px 16px rgba(35,39,42,0.10);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  background: transparent;
  border: none;
  color: #23272A;
  margin-left: 18px;
  padding: 4px 10px;
  cursor: pointer;
  z-index: 120;
  transition: color 0.18s, background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #B8860B;
  background: #f2f2f2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 64px rgba(35,39,42,0.22);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.54,1.5,0.38,1);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #23272A;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #B8860B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #23272A;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #B8860B;
}
@media (min-width: 995px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  header nav {
    display: flex !important;
  }
}
@media (max-width: 994px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
/* Overlay when mobile menu is open (for shadow effect) */
.mobile-menu:before {
  content: '';
  display: none;
}
.mobile-menu.open:before {
  display: block;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35, 39, 42, 0.2);
  z-index: -1;
}

/* SECTIONS, SPACING & FLEX LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(35,39,42,0.06);
  padding: 32px 28px;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35,39,42,0.13);
  transform: translateY(-4px) scale(1.03);
}
.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: #fff;
  color: #23272A;
  box-shadow: 0 2px 8px rgba(35,39,42,0.05);
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 270px;
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  margin-right: 24px;
}
.testimonial-card strong {
  font-weight: 600;
}
.testimonial-card span {
  margin-left: 8px;
  font-size: 1.06rem;
  color: #B8860B;
  letter-spacing: 1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTIONS */
.hero {
  background: #23272A;
  color: #fff;
  padding: 78px 0 54px 0;
}
.hero .container {
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  color: #fff;
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .hero h2 {
  color: #fff;
}
.hero p {
  color: #e5e6ea;
  font-size: 1.13rem;
}
.hero .btn-primary {
  background: #fff;
  color: #23272A !important;
  border-color: #fff;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #23272A;
  color: #fff !important;
  border-color: #B8860B;
}

/* FEATURE GRID STYLES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  padding: 26px 28px 22px 28px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(35,39,42,0.048);
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(35,39,42,0.11);
  transform: translateY(-2px) scale(1.03);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.feature-grid h3 {
  font-size: 1.14rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23272A;
  margin-bottom: 7px;
}
.feature-grid p {
  color: #4B4B4B;
  font-size: 1rem;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}
.faq-list > div {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(35,39,42,0.05);
  padding: 20px 20px 16px 24px;
}
.faq-list h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #23272A;
  margin-bottom: 7px;
}
.faq-list p {
  color: #454545;
}

/* LISTS & CHECKLISTS */
ul li, ol li {
  margin-bottom: 6px;
  color: #23272A;
}
li.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
li.check img {
  width: 20px;
  height: 20px;
}

/* CONTACT FOOTER */
footer {
  background: #23272A;
  color: #fff;
  padding: 48px 0 14px 0;
  margin-top: 100px;
  width: 100%;
}
footer .container {
  flex-direction: column;
  gap: 28px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 25px;
  margin: 18px 0 10px 0;
}
footer nav a {
  color: #fff;
  opacity: 0.82;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s, opacity 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #B8860B;
  opacity: 1;
  text-decoration: underline;
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  font-size: 1rem;
  align-items: flex-start;
}
.contact-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6e7ea;
  opacity: .96;
}
.contact-footer img {
  width: 19px;
  height: 19px;
  filter: invert(1) brightness(1.6);
}
.contact-footer a {
  color: #B8860B;
  text-decoration: underline;
  font-weight: 500;
}

/* TEXT BLOCKS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.text-section h2 {
  margin-top: 16px;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
}

/* BUTTONS */
button {
  cursor: pointer;
}
.button, .btn-secondary {
  background: #fff;
  color: #23272A;
  border: 2px solid #23272A;
  border-radius: 5px;
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-right: 14px;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
}
.button:hover, .btn-secondary:hover {
  background: #23272A;
  color: #fff;
  box-shadow: 0 4px 14px rgba(35,39,42,0.10);
}

/* ANIMATIONS */
.btn-primary, .button, .mobile-menu, .mobile-menu-toggle, .testimonial-card, .feature-grid > div, .card {
  transition: all 0.18s cubic-bezier(0.39,0.575,0.565,1);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .container {
    padding: 0 10px;
  }
}
@media (max-width: 890px) {
  .feature-grid {
    flex-direction: column;
    gap: 28px;
  }
  .feature-grid > div {
    min-width: unset;
    width: 100%;
    padding: 22px 18px 18px 18px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 50px 0 30px 0;
  }
  .section {
    padding: 28px 9px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .contact-footer {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .content-grid,
  .card-container,
  .feature-grid{
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  footer {
    margin-top: 40px;
    padding: 28px 0 10px 0;
  }
}
@media (max-width: 500px) {
  h1, .h1 { font-size: 1.42rem; }
  h2, .h2 { font-size: 1.16rem; }
  .container { padding: 0 5px; }
  .btn-primary { font-size: 1rem; padding: 10px 18px; }
  .testimonial-card { min-width: unset; }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #23272A;
  box-shadow: 0 -4px 18px 0 rgba(35,39,42,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 38px 18px 22px;
  z-index: 99999;
  gap: 20px;
  transition: transform 0.34s cubic-bezier(0.4,0,0.2,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1rem;
  max-width: 600px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.btn-cookie {
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.16s, box-shadow 0.16s;
  margin: 0;
}
.btn-cookie.accept {
  background: #23272A;
  color: #fff;
}
.btn-cookie.accept:hover, .btn-cookie.accept:focus {
  background: #B8860B;
  color: #fff;
  box-shadow: 0 2px 10px rgba(184,134,11,0.11);
}
.btn-cookie.reject {
  background: transparent;
  color: #23272A;
  border: 2px solid #23272A;
}
.btn-cookie.reject:hover, .btn-cookie.reject:focus {
  background: #23272A;
  color: #fff;
}
.btn-cookie.settings {
  background: #B8860B;
  color: #fff;
}
.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: #23272A;
  color: #fff;
  border: 2px solid #B8860B;
}
@media (max-width: 730px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 8px 16px 8px;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35, 39, 42, 0.11);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.22s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(35,39,42,0.15);
  padding: 32px 24px;
  width: 95vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
  color: #23272A;
}
.cookie-modal__close {
  position: absolute;
  top: 24px;
  right: 35px;
  font-size: 2rem;
  color: #7b7c7c;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal__close:hover {
  color: #B8860B;
}
.cookie-modal__content h2 {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal__category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}
.cookie-modal__category:last-child {
  border-bottom: none;
}
.cookie-modal__category label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  border-radius: 10px;
  background: #F1F1F1;
  position: relative;
  transition: background 0.18s;
  margin-left: 6px;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle::after {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #23272A;
  position: absolute;
  top: 1px; left: 1px;
  transition: left 0.2s, background 0.16s;
}
.cookie-toggle.checked {
  background: #B8860B;
}
.cookie-toggle.checked::after {
  background: #fff;
  left: 17px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 10px;
}
@media (max-width:540px) {
  .cookie-modal__content {
    padding: 20px 7px;
  }
}

/* MISC */
::-webkit-scrollbar {
  width: 13px;
  background: #F5F6FA;
}
::-webkit-scrollbar-thumb {
  background: #dcdcdc;
  border-radius: 6px;
}
/* Disable tap highlight on mobile */
body, button, a { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* FOCUS STATES */
.btn-primary:focus, .button:focus, a:focus, .btn-cookie:focus, .cookie-modal__close:focus {
  outline: 2px solid #B8860B;
  outline-offset: 2px;
}

/* Hide outline for mouse interaction, show for keyboard (optional) */
:focus:not(:focus-visible) {
  outline: none;
}

/* --- END OF STYLE.CSS FOR LUMINA ROCK "Monochrome Sophisticated" --- */
