/* CSS RESET & BASE STYLES */
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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #1A2328;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  color: #1A2328;
  text-decoration: none;
  transition: color .22s;
}
a:hover, a:focus {
  color: #B99560;
}
img {
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* CUSTOM FONT LOADING */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900|Open+Sans:400,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #111;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.17;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
}

p, li, label, input, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232323;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* HEADER, MAIN NAVIGATION, LOGO */
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 1030;
}
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.logo img {
  height: 40px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-weight: 700;
  font-size: 1rem;
  text-transform: none;
  color: #1A2328;
  letter-spacing: 0;
  padding: 4px 2px;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #B99560;
  text-decoration: underline;
  background: rgba(185,149,96,0.08);
}
.button-primary {
  margin-left: 16px;
  padding: 12px 32px;
  background: #1A2328;
  color: #fff;
  border-radius: 24px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  text-align: center;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(26,35,40,0.07), 0 0px 1.5px rgba(0,0,0,0.095);
  display: inline-block;
}
.button-primary:hover,
.button-primary:focus {
  background: #B99560;
  color: #1A2328;
  box-shadow: 0 6px 18px rgba(185,149,96,0.10);
}
.button-secondary {
  padding: 12px 32px;
  background: transparent;
  border: 2px solid #1A2328;
  color: #1A2328;
  border-radius: 24px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  display: inline-block;
}
.button-secondary:hover, .button-secondary:focus {
  border-color: #B99560;
  color: #B99560;
  background: #FAF8F5;
}

/* BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #1A2328;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  z-index: 1060;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ECECEC;
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 1050;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(17,18,20,0.96);
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.76,.07,.45,.97), opacity 0.2s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 6px 10px;
  cursor: pointer;
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #B99560;
  background: none;
}
@media (max-width: 450px) {
  .mobile-menu {
    padding: 22px 8px;
  }
  .mobile-nav a {
    font-size: 1.07rem;
  }
}

/* SECTIONS & LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.hero {
  background: #1A2328;
  color: #fff;
  padding: 60px 0 54px 0;
  position: relative;
  margin-bottom: 60px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 10px;
}
.hero-subheadline {
  color: #B99560;
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  margin-bottom: 32px;
  letter-spacing: 0;
}
.hero .button-primary {
  margin-top: 16px;
}

.features {
  background: #FAFAFA;
  border-top: 1px solid #ececec;
}
.features h2 {
  color: #1A2328;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  flex: 1 1 228px;
  box-shadow: 0 3px 26px rgba(26,35,40,0.09);
  padding: 24px 18px 20px 18px;
  min-width: 210px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 34px rgba(185,149,96,0.15), 0 1.5px 8px rgba(26,35,40,0.08);
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  width: 38px; height: 38px; display: block;
  filter: grayscale(95%) contrast(1.2);
}

@media (max-width: 900px) {
  .feature-grid { gap: 20px; }
  .feature-grid > div {
    padding: 20px 12px 16px 12px;
    max-width: 100%;
    min-width: 160px;
  }
}
@media (max-width: 540px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div { min-width: 0; }
}

.about-intro, .usp, .security {
  background: #fff;
}
.cta {
  background: #ECECEC;
  border-radius: 12px;
  box-shadow: 0 4px 22px rgba(26, 35, 40, 0.04);
  margin-bottom: 60px;
}
.cta h2 {
  margin-bottom: 10px;
}
.cta .button-primary, .cta .button-secondary {
  margin-top: 18px;
}

.testimonials {
  margin-bottom: 72px;
  background: #FAFAFA;
  padding-top: 38px;
  padding-bottom: 38px;
}

/* FLEXBOX UTILITY LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 7.5px rgba(28, 35, 40, 0.08);
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(185,149,96,0.13);
  transform: translateY(-3px) scale(1.01);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*******************************************/
/* TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 32px rgba(26,35,40,0.10);
  padding: 28px 28px 22px 28px;
  margin-bottom: 20px;
  max-width: 640px;
  font-size: 1.12rem;
  color: #141414;
}
.testimonial-card p {
  font-family: 'Merriweather', serif;
  font-size: 1.05rem;
  color: #1A2328;
  margin-bottom: 5px;
  line-height: 1.6;
}
.testimonial-card strong {
  color: #B99560;
  font-size: 1.07rem;
  font-weight: 700;
}

/*******************************************/
/* LISTS, FAQ, CUSTOMER STORIES*/
ul, ol {
  margin-bottom: 18px;
  margin-left: 26px;
}
.faq-search-bar {
  margin: 34px 0 22px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.faq-search-bar input {
  padding: 8px 14px;
  border: 1px solid #D6D6D6;
  border-radius: 8px;
  font-size: 1rem;
  width: 240px;
  font-family: inherit;
  outline: none;
  background: #F8F8F8;
  color: #1A2328;
  transition: border-color 0.14s;
}
.faq-search-bar input:focus {
  border-color: #B99560;
}

.customer-stories-teaser {
  margin-top: 32px;
  padding: 22px 30px;
  background: #ECECEC;
  border-left: 4px solid #B99560;
  font-style: italic;
  border-radius: 10px;
  font-size: 1.04rem;
  color: #1A2328;
}

/*******************************************/
/* CONTACT PAGE SPECIALS (address/phone block) */
.address-block, .phone-email-block, .office-hours {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.address-block img,
.phone-email-block img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(0.75);
}
.office-hours {
  font-weight: 700;
  color: #1A2328;
}

/*******************************************/
/* FOOTER */
footer {
  background: #141414 !important;
  color: #ECECEC;
  padding: 40px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
}
footer p {
  color: white;
}
.footer-nav {
  display: flex;
  gap: 36px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #ECECEC;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B99560;
}
.company-info {
  color: #B9B9B9;
  font-size: 0.98rem;
  text-align: center;
  margin-top: 6px;
}
.company-info a {
  color: #B99560;
}

/*******************************************/
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(28, 35, 40, 0.97);
  color: #fff;
  box-shadow: 0 -2px 16px rgba(30,30,30,0.14);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  z-index: 1200;
  opacity: 1;
  transition: opacity 0.32s, transform 0.28s;
}
.cookie-banner.closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
}
.cookie-banner .cookie-text {
  max-width: 470px;
  text-align: center;
  font-size: 1rem;
  color: #ECECEC;
}
.cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.button-cookie {
  background: #B99560;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 11px 26px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica,sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 6px rgba(185,149,96,0.10);
}
.button-cookie:hover, .button-cookie:focus {
  background: #1A2328;
  color: #B99560;
}
.button-cookie.secondary {
  background: transparent;
  border: 2px solid #B99560;
  color: #B99560;
  box-shadow: none;
}
.button-cookie.secondary:hover, .button-cookie.secondary:focus {
  background: #B99560;
  color: #fff;
}

/*******************************************/
/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1300;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,24,24,0.83);
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #141414;
  border-radius: 16px;
  padding: 40px 30px 26px 30px;
  box-shadow: 0 10px 48px rgba(26, 35, 40, 0.17);
  max-width: 98vw;
  min-width: 320px;
  width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  color: #1A2328;
  font-size: 1.28rem;
  margin-bottom: 14px;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}
.cookie-modal-content label {
  font-size: 1rem;
  color: #232323;
}
.cookie-modal-content input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid #B99560;
  background: #F2F2F2;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.13s, border-color 0.13s;
}
.cookie-modal-content input[type="checkbox"]:checked {
  background: #B99560;
  border-color: #1A2328;
}
.cookie-modal-content .button-cookie {
  margin-top: 26px;
  align-self: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 28px;
  background: none;
  color: #888;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
}

/*******************************************/
/* MISC: SPACING, SHADOWS, ANIMATION */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 12px;
}
@media (max-width: 640px) {
  .section, section {
    margin-bottom: 36px;
    padding: 24px 6px 28px 6px;
    border-radius: 0;
  }
}

.card, .testimonial-card, .cta, .feature-grid > div {
  box-shadow: 0 3px 20px rgba(26,35,40,0.08);
  border-radius: 16px;
}

hr {
  height: 1px;
  border: none;
  background: #ECECEC;
  margin: 40px 0;
}

/* Responsive utility classes */
@media (max-width: 800px) {
  header > .container {
    gap: 14px;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .footer-nav {
    gap: 18px;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .card, .testimonial-card, .cta {
    padding: 14px 8px;
  }
  .cookie-modal-content {
    padding: 19px 6px 16px 8px;
    min-width: 0;
  }
}

/*******************************************/
/* MICRO-INTERACTIONS: BUTTONS, LINKS, CARDS */
.button-primary, .button-secondary, .button-cookie {
  transition: box-shadow 0.22s, background 0.18s, color 0.2s, border-color 0.15s;
}
.card, .feature-grid > div {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 6px 34px rgba(185,149,96,0.16), 0 2px 12px rgba(26, 35, 40, 0.09);
  transform: translateY(-3px) scale(1.01);
}
.main-nav a, .footer-nav a {
  position: relative;
}
.main-nav a:after, .footer-nav a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #B99560;
  transition: width 0.19s;
}
.main-nav a:hover:after, .main-nav a:focus:after,
.footer-nav a:hover:after, .footer-nav a:focus:after {
  width: 90%;
}

/* Accessibility and focus visible */
:focus-visible {
  outline: 2px solid #B99560;
  outline-offset: 3px;
}

/*******************************************/
/* MONOCHROME-SOPHISTICATED THEME ELEMENTS */
body {
  background: #FAFAFA;
  color: #181818;
}
section, .section {
  background: #fff;
  color: #232323;
}
.header, .main-nav, footer {
  background: #fff;
  color: #222;
}

/*******************************************/
/* Z-INDEX & NO ABSOLUTE POS FOR CARDS/TEXT */
.card, .testimonial-card, .content-wrapper {
  position: relative;
  z-index: 1;
}

/*******************************************/
/* PRINT STYLES */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .content-wrapper { box-shadow: none !important; }
  section, .section { background: #fff !important; color: #222 !important; }
}
