/* 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 { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.58;
  background: #F5F5F5;
  color: #232C33;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #232C33;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #DBB97D;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #232C33;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: 0.5px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; }
p, .address-block, small {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
small {
  color: #888;
  font-size: 0.96rem;
}
strong, b { font-weight: bold; }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(35,44,51,0.06);
  padding: 40px 30px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: none;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ECE8DC;
  box-shadow: 0 2px 16px rgba(35,44,51,0.05);
  position: sticky;
  top: 0;
  z-index: 101;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px 18px 24px;
}
.header-inner img {
  height: 44px;
  width: auto;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.main-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: #232C33;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #DBB97D;
}
.cta-button {
  display: inline-block;
  background: #232C33;
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.11rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 2px 12px rgba(35,44,51,0.07);
  cursor: pointer;
  margin-left: 18px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, box-shadow 0.24s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #DBB97D;
  color: #232C33;
  box-shadow: 0 5px 20px rgba(35,44,51,0.12);
  text-decoration: none;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 23px;
  right: 22px;
  z-index: 130;
  width: 48px;
  height: 48px;
  background: #232C33;
  color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(35,44,51,0.11);
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #DBB97D;
  color: #232C33;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
  box-shadow: 4px 0 18px rgba(35,44,51,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 32px 12px 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #232C33;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #DBB97D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 36px;
  gap: 26px;
}
.mobile-nav a {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.23rem;
  color: #232C33;
  padding: 10px 0;
  font-weight: 500;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #DBB97D;
}

/* Main Responsive Nav Visibility */
@media (max-width: 1024px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* PAGE STRUCTURE */
main {
  margin-top: 0;
  margin-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARDS, FLEX CONTAINERS, TESTIMONIALS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(35,44,51,0.05);
  overflow: hidden;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.22s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 18px rgba(35,44,51,0.17);
  z-index: 1;
}
.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: 12px;
  background: #F5F5F5;
  border-left: 5px solid #DBB97D;
  border-radius: 10px;
  padding: 20px 28px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(35,44,51,0.06);
}
.testimonial-card p {
  color: #232C33;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  line-height: 1.7;
}
.testimonial-card small {
  color: #565656;
  font-style: italic;
  font-size: 0.97rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIAL LIST SECTIONS */
.brand-list ul, .brand-highlights ul, .benefits-grid ul, .functionality-grid ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}
.address-block {
  background: #F5F5F5;
  border-radius: 7px;
  padding: 18px 22px;
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 1.08rem;
}

/* FOOTER */
footer {
  background: #232C33;
  color: #fff;
  padding: 38px 0 19px 0;
  position: relative;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #DBB97D;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.06rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
footer p {
  color: #ECE8DC;
  font-size: 0.98rem;
}

/* BUTTONS */
button, .cta-button {
  outline: none;
  border: none;
  background: none;
  font-family: 'Playfair Display', Georgia, serif;
  border-radius: 7px;
  transition: box-shadow 0.18s, background 0.22s, color 0.18s;
}
.cta-button, .cookie-accept, .cookie-reject, .cookie-settings, .cookie-save {
  background: #232C33;
  color: #fff;
  border-radius: 25px;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-right: 12px;
  margin-bottom: 9px;
  letter-spacing: 0.04em;
}
.cta-button:hover, .cookie-accept:hover,.cookie-save:hover  {
  background: #DBB97D;
  color: #232C33;
}
.cookie-reject, .cookie-settings {
  background: #fff;
  color: #232C33;
  border: 1px solid #232C33;
}
.cookie-reject:hover,.cookie-settings:hover {
  border-color: #DBB97D;
  color: #DBB97D;
}

/* SCROLLBARS & SELECTION */
::selection {
  background: #DBB97D;
  color: #232C33;
}

/* INTERACTIVE TRANSITIONS */
.card, .testimonial-card, .cta-button, .cookie-accept, .cookie-reject, .cookie-settings, .cookie-save {
  transition: box-shadow 0.15s, background 0.22s, color 0.13s;
}

/* RESPONSIVENESS */
@media (max-width: 959px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .header-inner {
    padding: 18px 10px 13px 14px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .content-wrapper {
    padding: 28px 8px;
    border-radius: 9px;
    box-shadow: 0 1px 9px rgba(35,44,51,0.07);
  }
  .section {
    padding: 26px 2vw;
    margin-bottom: 42px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.08rem; }
  .address-block { padding: 12px 10px; font-size: 0.99rem; }
  .testimonial-card { padding: 16px 11px; }
  .header-inner { gap: 7px; padding: 13px 2px; }
}
@media (max-width: 600px) {
  .content-grid, .card-container, .footer-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .main-nav, .cta-button {
    display: none !important;
  }
}

/* LISTS WITH ICONS */
ul li > img {
  width: 30px; height: 30px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
}
ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.brand-list ul li, .brand-highlights ul li,
.benefits-grid ul li, .functionality-grid ul li {
  display: list-item;
  gap: 0px;
  align-items: initial;
}

/* FEATURE & CARD GRIDS - FLEXBOX ONLY */
.card-grid, .brand-list, .brand-highlights, .brand-grid, .functionality-grid, .benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* MODAL & COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3000;
  background: #fff;
  border-top: 1px solid #ECE8DC;
  box-shadow: 0 -2px 20px rgba(35,44,51,0.17);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  gap: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #232C33;
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 17px 8px;
    gap: 14px;
    font-size: 0.99rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 11px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 51%;
  transform: translate(-50%,-55%) scale(1);
  z-index: 3200;
  width: 95vw;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid #ECE8DC;
  box-shadow: 0 12px 38px rgba(35,44,51,0.19);
  padding: 28px 25px 23px 25px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.23s cubic-bezier(0.66,0,0.2,1);
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: #232C33;
}
.cookie-modal label {
  font-size: 0.98rem;
  color: #232C33;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #DBB97D;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.cookie-modal .cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  top: 13px; right: 18px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #232C33;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-close-modal:hover,
.cookie-modal .cookie-close-modal:focus {
  color: #DBB97D;
}

/* UTILITY - VISIBILITY FOR MODALS */
.cookie-modal, .cookie-banner {
  will-change: transform, opacity;
}

/* SHADOWS & DETAILS */
.card, .content-wrapper, .cookie-modal {
  box-shadow: 0 2px 12px rgba(35, 44, 51, 0.07);
}

/* Z-INDEX STACKING */
.mobile-menu { z-index: 200; }
.header-inner { z-index: 102; }
.cookie-banner { z-index: 3000; }
.cookie-modal { z-index: 3200; }

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #DBB97D;
  outline-offset: 2px;
}

/* PRINT */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff;
    color: #232C33;
  }
  .content-wrapper, .section, .card, .testimonial-card {
    box-shadow: none !important;
    border: none !important;
    padding: 0;
    margin: 0;
    background: none !important;
  }
}

/* END OF STYLE.CSS */