/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  background: #fff;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #3E2C1D;
  text-decoration: underline;
  transition: color .20s;
}
a:hover, a:focus {
  color: #86705A;
  text-decoration: none;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1.25em;
}
li {
  margin-bottom: 0.75em;
}
h1, h2, h3, h4, h5, h6 {
  color: #191919;
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 1.2em;
  color: #232323;
}
strong {
  font-weight: 600;
  color: #111;
}
em {
  font-style: italic;
}
section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}

/* FLEXBOX LAYOUTS & UTILITIES */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(44,39,37,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 260px;
  flex: 1 1 300px;
  transition: box-shadow .22s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px 0 rgba(62,44,29,0.16);
}
.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;
  background: #F6F6F8;
  border-radius: 14px;
  box-shadow: 0 1px 12px 0 rgba(44,39,37,0.07);
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 500px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 36px 0;
}
.feature-grid li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #F9F9FB;
  border-radius: 10px;
  box-shadow: 0 1px 10px 0 rgba(44,39,37,0.05);
  gap: 18px;
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 260px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.service-list li {
  background: #F6F6F8;
  border-radius: 10px;
  box-shadow: 0 1px 12px 0 rgba(44,39,37,0.05);
  padding: 22px 18px;
  min-width: 220px;
  flex: 1 1 260px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* BUTTONS & CTA */
.cta, .cta.primary {
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 12px;
  box-shadow: 0 1px 5px 0 rgba(44,39,37,0.065);
  background: #fff;
  color: #3E2C1D;
  transition: background 0.20s, color 0.20s, box-shadow 0.20s;
  text-decoration: none;
  outline: none;
}
.cta.primary {
  background: #3E2C1D;
  color: #fff;
}
.cta:hover, .cta:active, .cta:focus {
  background: #86705A;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(62,44,29,.13);
  text-decoration: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: #A18B72;
  color: #fff;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 26px 0 rgba(44,39,37,0.06);
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  color: #191919;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 5px 2px;
  transition: color 0.18s;
}
nav a:hover, nav a:focus {
  color: #86705A;
  text-decoration: underline;
}
header img {
  height: 42px;
  width: auto;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  font-size: 2.3rem;
  color: #3E2C1D;
  padding: 2px 10px 0 10px;
  cursor: pointer;
  z-index: 110;
  transition: color 0.18s, background 0.15s;
}
.mobile-menu-toggle:focus {
  background: #F6F6F8;
  color: #86705A;
  outline: 2px solid #86705A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 18px 0 rgba(44,39,37,0.09);
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(.69,.11,.57,1.13);
  z-index: 1002;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 7px 0;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #3E2C1D;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #86705A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 38px 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #3E2C1D;
  padding: 9px 0;
  border-radius: 3px;
  font-weight: 500;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6F6F8;
  color: #86705A;
}

/* FOOTER */
footer {
  background: #191919;
  color: #eee;
  padding: 32px 0 0 0;
  margin-top: 28px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 54px;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid #353535;
}
.footer-menu a {
  color: #cccccc;
  font-size: 1rem;
  padding: 2px 0;
  text-decoration: none;
  transition: color 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #A18B72;
  text-decoration: underline;
}
footer .contact-info h3 {
  color: #fff;
  font-size: 1.2rem;
}
footer .contact-info p, footer .contact-info a {
  color: #d9d9d9;
  font-size: 0.99rem;
}
footer .cta.primary {
  background: #A18B72;
  color: #fff;
  margin-top: 12px;
  margin-bottom: 0;
}
footer .cta.primary:hover {
  background: #3E2C1D;
}

/* MONOCHROME SOPHISTICATED ACCENTS */
body, section, .card, .content-wrapper, .text-section {
  background: #fff;
}
.testimonial-card {
  background: #fff;
  border-left: 4px solid #A18B72;
}
.testimonial-card p, .testimonial-card strong {
  color: #232323;
}
.testimonial-card p:last-child {
  font-size: 1.05rem;
  color: #86705A;
  font-weight: bold;
}
.feature-grid li img, .feature-item img {
  max-width: 44px;
  height: 44px;
  margin-right: 12px;
  border-radius: 50%;
  border: 2.5px solid #F6F6F8;
  background: #fff;
}
/* Subtle shadows for sophistication */
.card, .testimonial-card, .feature-grid li, .service-list li {
  box-shadow: 0 2px 12px 0 rgba(44,39,37,0.07);
}

/* TYPOGRAPHY SCALES & VISUAL HIERARCHY */
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.2rem;
}
p, li, .text-section, .card p {
  font-size: 1rem;
  color: #232323;
}
@media (min-width: 650px) {
  h1 { font-size: 2.7rem; }
  h2 { font-size: 2.1rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
}

/* SPACING - KEY RULES */
.card, .testimonial-card, .feature-grid li, .service-list li {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .feature-grid, .service-list {
  gap: 24px;
}
.text-image-section {
  gap: 30px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .footer-menu {
    align-items: flex-start;
    margin-top: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
  }
}
@media (max-width: 768px) {
  section {
    padding: 32px 8px;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .footer-menu {
    align-items: flex-start;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }
  section{
    padding: 26px 4px;
    margin-bottom: 36px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #222;
  color: #fff;
  box-shadow: 0 -2px 20px 0 rgba(44,39,37,0.13);
  z-index: 2050;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform .28s cubic-bezier(.71,.04,.65,.98);
  transform: translateY(0);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner p {
  color: #fff;
  max-width: 710px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #3E2C1D;
  color: #fff;
  font-weight: 600;
  transition: background 0.21s, color 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A18B72;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #3E2C1D;
  border: 1px solid #3E2C1D;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F6F6F8;
  color: #86705A;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2100;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,30,34,0.53);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .18s;
}
.cookie-modal {
  background: #fff;
  color: #232323;
  border-radius: 12px;
  box-shadow: 0 8px 33px 0 rgba(44,39,37,0.12);
  min-width: 320px;
  max-width: 98vw;
  width: 410px;
  padding: 42px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalIn .27s cubic-bezier(.53,1.22,.51,1.03);
}
@keyframes modalIn {
  from {
    opacity:0; transform: translateY(30px) scale(.98);
  } to {
    opacity:1; transform: translateY(0) scale(1);
  }
}
.cookie-modal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: #191919;
}
.cookie-switch {
  width: 38px; height: 22px;
  background: #ccc;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  display: inline-block;
}
.cookie-switch input {
  display: none;
}
.cookie-switch span {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.21s cubic-bezier(.8,1.16,.53,1.01);
  box-shadow: 0 1px 4px rgba(61,43,28,0.11);
}
.cookie-switch input:checked + span {
  left: 18px;
  background: #86705A;
}
.cookie-switch input:checked ~ .cookie-switch {
  background: #86705A;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #3E2C1D;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2200;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #86705A;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 4px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  padding: 7px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  background: #3E2C1D;
  color: #fff;
  font-weight: 600;
}
.cookie-modal-actions button.secondary {
  background: #fff;
  color: #3E2C1D;
  border: 1px solid #A18B72;
}
.cookie-modal-actions button.secondary:hover, .cookie-modal-actions button.secondary:focus {
  background: #F6F6F8;
  color: #86705A;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #A18B72;
  color: #fff;
}

/* FORMS (if present) */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232323;
  padding: 10px 12px;
  border: 1.2px solid #BAC0C7;
  border-radius: 6px;
  outline: none;
  background: #fff;
  margin-bottom: 16px;
  transition: border-color .13s, box-shadow .13s;
}
input:focus, select:focus, textarea:focus {
  border-color: #86705A;
  box-shadow: 0 2px 8px 0 rgba(162,139,114,0.09);
}
label {
  font-size: 1rem;
  color: #232323;
  font-weight: 500;
  margin-bottom: 4px;
}

/* MICRO-INTERACTIONS */
.cta:active {
  transform: translateY(1.5px) scale(0.97);
}
.card:focus-within {
  outline: 2px solid #A18B72;
}
.card, .testimonial-card, .feature-grid li, .service-list li, .cta, .cookie-btn, .cookie-modal, .cookie-category, .cookie-switch span {
  transition: box-shadow .22s, background .18s, color .15s, border-color .12s, outline .12s, transform .17s;
}

/* SCROLLBAR (WEBKIT MONOCHROME) */
::-webkit-scrollbar {
  width: 12px;
  background: #f7f6f4;
}
::-webkit-scrollbar-thumb {
  background: #A18B72;
  border-radius: 20px;
}

/* MONOCHROME VISUAL EFFECTS */
.card, .testimonial-card, .service-list li {
  border: 1.2px solid #E5DED7;
}
.feature-grid li {
  border: 1.2px solid #E5DED7;
}

/* Hide visually on small screens */
@media (max-width: 768px) {
  .footer-menu {
    font-size: 0.99rem;
  }
}

/* Print styles for monochrome sophistication */
@media print {
  body {
    background: #fff;
    color: #181818;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
}

/* END Pirop Swie Décor MONOCHROME SOPHISTICATED DESIGN */
