/* CSS RESET & BASE */
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.5;
  background: #fff;
  color: #1a1a1a;
  font-family: 'Montserrat', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #12202F;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #949FAA;
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #12202F;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #12202F;
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #12202F;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: #1a1a1a;
}
p, li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2d2d2d;
  line-height: 1.7;
  margin-bottom: 14px;
}
.subheadline {
  font-size: 1.25rem;
  color: #949FAA;
  margin-bottom: 32px;
  letter-spacing: 0.2px;
}
strong {
  font-weight: 700;
  color: #12202F;
}

/* LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.section:last-child {
  margin-bottom: 0;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f7f7f8;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(18,32,47,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  min-width: 260px;
  max-width: 360px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(18,32,47,0.15);
  transform: translateY(-4px) scale(1.02);
}
.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: 8px;
  background: #fff;
  border-left: 5px solid #12202F;
  box-shadow: 0 2px 12px rgba(18,32,47,0.07);
  padding: 20px 32px;
  margin-bottom: 24px;
  border-radius: 7px;
  position: relative;
  min-width: 260px;
  max-width: 600px;
}
.testimonial-card p {
  color: #2d2d2d;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #12202F;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* LISTS & INFO */
ul, ol {
  margin-left: 1.35em;
  margin-bottom: 14px;
}
ul li, ol li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #2d2d2d;
}
ul li:before {
  content: '';
  background: #12202F;
  border-radius: 50%;
  width: 6px; height: 6px;
  display: inline-block;
  position: absolute;
  left: 0; top: 0.6em;
}
ol li:before {
  display: none;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.contact-info li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #12202F;
  gap: 8px;
  margin-bottom: 0;
}
.contact-info img {
  width: 18px;
  height: 18px;
}

/* HEADER & MAIN NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #EBECEF;
  box-shadow: 0 2px 8px rgba(18,32,47,0.06);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #12202F;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 8px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #949FAA;
}
.cta-primary {
  background: #12202F;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  padding: 11px 30px;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px rgba(18,32,47,0.08);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #E7D7B7;
  color: #12202F;
  box-shadow: 0 8px 30px rgba(18,32,47,0.13);
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #12202F;
  cursor: pointer;
  margin-left: 18px;
  z-index: 101;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(18,32,47,0.92);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.6,.05,.28,.91);
  z-index: 120;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  cursor: pointer;
  margin: 26px 0 6px 24px;
  align-self: flex-start;
  z-index: 121;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #E7D7B7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  padding: 20px 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 16px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #E7D7B7;
}

/* HERO SECTION */
main > section:first-child {
  background: #fff;
  border-bottom: 1px solid #EBECEF;
  padding-top: 48px;
  padding-bottom: 48px;
}
main > section > .container > .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 180px;
}

/* FOOTER */
footer {
  background: #12202F;
  color: #fff;
  padding: 48px 0 32px 0;
  border-top: 1px solid #e2e3e7;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.85;
  transition: opacity 0.15s, color 0.18s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #E7D7B7;
  opacity: 1;
}
.footer-contact p {
  font-size: 0.99rem;
  opacity: .92;
  margin-bottom: 2px;
}

/* BUTTONS GENERIC */
button, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  outline: none;
  transition: background .17s, color .17s, box-shadow .13s;
  cursor: pointer;
}
button:active, .button:active {
  transform: scale(0.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2000;
  background: #12202F;
  color: #fff;
  padding: 22px 20px 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  box-shadow: 0 -2px 14px rgba(18,32,47,0.08);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 250px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 26px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: #12202F;
  transition: background .15s, color .15s, box-shadow .12s;
  box-shadow: 0 2px 12px rgba(18,32,47,0.08);
}
.cookie-btn.accept {
  background: #E7D7B7;
  color: #12202F;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #fff;
  color: #12202F;
}
.cookie-btn.reject {
  background: #fff;
  color: #12202F;
  border: 1.5px solid #12202F;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #c2c7d0;
  color: #12202F;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #12202F;
  color: #E7D7B7;
  border-color: #E7D7B7;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,32,47,0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3333;
  transition: opacity 0.28s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #12202F;
  border-radius: 16px;
  padding: 36px 34px 28px 34px;
  min-width: 300px;
  max-width: 96vw;
  box-shadow: 0 14px 44px rgba(18,32,47,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #12202F;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  font-size: 1rem;
  color: #12202F;
}
.cookie-category input[type=checkbox] {
  width: 20px; height: 20px;
  accent-color: #12202F;
}
.cookie-category .always {
  color: #949FAA;
  font-size: 0.96rem;
  margin-left: 9px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #12202F;
  position: absolute;
  right: 16px;
  top: 13px;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.72;
}
.cookie-modal-close:hover {
  opacity: 1;
  color: #E7D7B7;
}

/* MICRO-INTERACTIONS */
.card, .testimonial-card, .cta-primary, .cookie-btn, .mobile-menu, .cookie-modal {
  transition: box-shadow .20s, transform .13s, background .18s, color .18s;
}
a:focus, button:focus {
  outline: 2px dashed #E7D7B7;
  outline-offset: 2px;
  z-index: 2;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 1020px) {
  header .container {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 12px;
  }
  .card-container, .content-grid { gap: 14px; }
  .testimonial-card { max-width: 98vw; padding: 16px 12px; }
  .footer-nav {
    gap: 9px;
    font-size: 0.96rem;
    flex-wrap: wrap;
  }
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.27rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  .content-wrapper { gap: 16px; }
  .mobile-menu { padding: 0 0 48px 0; }
  .mobile-nav { padding: 12px 8vw; }
  .footer-contact p { font-size: 0.97rem; }
  main > section:first-child { padding-top: 28px; padding-bottom: 28px; }
  .card { padding: 20px 10px; min-width: 0; }
}
@media (max-width: 600px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.98rem;
    padding: 22px 7px 16px 7px;
  }
  .cookie-banner-buttons { width: 100%; gap: 9px; }
  .cookie-btn { width: 100%; min-width: 0; }
  .cookie-modal { padding: 18px 6vw; }
}

/* MONOCHROME DRAMATIC CONTRAST: HIGHLIGHTS */
hr {
  border: none;
  height: 1px;
  background: #CED0D6;
  margin: 24px 0;
}
table {
  border-collapse: collapse;
  margin-bottom: 28px;
  width: 100%;
}
th, td {
  border: 1px solid #E7D7B7;
  padding: 8px 11px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #F8F7F3;
  font-family: 'Playfair Display', serif;
  color: #12202F;
}
td {
  color: #2d2d2d;
}

/* MISC */
::-webkit-input-placeholder { color: #949FAA; opacity: 1; }
::-moz-placeholder { color: #949FAA; opacity: 1; }
:-ms-input-placeholder { color: #949FAA; opacity: 1; }
::placeholder { color: #949FAA; opacity: 1; }

/* Hide elements helper */
[hidden] { display: none !important; }
