/* 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,
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Open Sans', Georgia, 'Times New Roman', Times, serif;
  background: #F5F3EE;
  color: #232C33;
  line-height: 1.6;
  min-height: 100vh;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #232C33;
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover, a:focus {
  color: #A4947A;
}
ul, ol {
  list-style-position: inside;
  margin: 0 0 16px 0;
  padding-left: 0;
}

/* Brand Fonts (imported via HTML or loaded on site) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  color: #232C33;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h1 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
h2 { font-size: 2rem; margin-bottom: 18px; line-height: 1.2; }
h3 { font-size: 1.4rem; margin-bottom: 14px; line-height: 1.22; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p { font-size: 1.03rem; margin-bottom: 16px; }
strong { font-weight: 600; }

/* Container & Layouts */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  max-width: 700px;
}

/* Elegant Classic Section Spacing */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
section:last-child {
  margin-bottom: 0;
}
.hero {
  background: #fff;
  padding: 56px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}

/* Flexbox Container Patterns */
.feature-grid, .service-grid, .team-member-grid, .style-examples, .project-list, .step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.feature-item, .service-item, .team-member, .style-example, .project-item, .step-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(163, 148, 122, 0.10);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1px solid #ebe7dd;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow 0.24s cubic-bezier(0.45,0,0.55,1), border 0.2s;
}
.feature-item:hover, .service-item:hover, .team-member:hover, .style-example:hover, .project-item:hover, .step-item:hover {
  box-shadow: 0 6px 18px rgba(35, 44, 51, 0.09), 0 2px 12px 0px rgba(163, 148, 122, 0.11);
  border: 1px solid #A4947A;
}
.feature-item img, .service-item img, .footer-contact img {
  width: 34px;
  height: 34px;
  margin-bottom: 6px;
  filter: grayscale(20%) saturate(80%);
}

.team-member-grid { gap: 24px; }
.team-member { min-width: 240px; flex: 1 1 260px; }

.style-examples {
  gap: 24px;
}
.style-example { min-width: 220px; flex: 1 1 250px; }

.project-list {
  gap: 24px;
}
.project-item { min-width: 220px; flex: 1 1 280px; }

.step-grid {
  gap: 24px;
}
.step-item { min-width: 220px; flex: 1 1 250px; }

/* Card Containers */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid #ece8de;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(35,44,51,0.11);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(35,44,51,0.15);
  border-color: #A4947A;
}

.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 {
  background: #fff;
  color: #232C33;
  border-left: 4px solid #A4947A;
  box-shadow: 0 2px 14px rgba(163,148,122,0.09);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 620px;
  font-style: italic;
  font-size: 1.04rem;
}
.testimonial-card strong {
  margin-top: 3px;
  font-style: normal;
  font-size: 1rem;
  color: #A4947A;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
}

.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Button Styles */
.cta-primary {
  background-color: #A4947A;
  color: #fff;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.10rem;
  font-weight: 600;
  padding: 13px 32px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(163,148,122,0.08);
  text-decoration: none;
  margin-top: 14px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  letter-spacing: 0.03em;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background-color: #232C33;
  color: #fff;
  box-shadow: 0 6px 22px rgba(35, 44, 51, 0.11);
}

button, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.12rem;
  border: none;
  background: none;
  color: #232C33;
  cursor: pointer;
  outline: none;
  transition: color 0.16s;
}
button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  color: #A4947A;
}

/* Main Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(35,44,51,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header a img {
  height: 46px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-left: 18px;
}
.main-nav a {
  font-family: 'Montserrat',Georgia,serif;
  font-size: 1.05rem;
  color: #232C33;
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: 5px;
  padding: 6px 12px;
  transition: background 0.13s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5F3EE;
  color: #A4947A;
}

header .cta-primary {
  margin-left: auto;
}

/* Footer */
footer {
  background: #232C33;
  color: #f8f8f5;
  padding: 40px 0 24px 0;
  font-size: 0.98rem;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #d6d3cb;
  font-family: 'Montserrat',Georgia,serif;
  font-size: 1.01rem;
  letter-spacing: .015em;
  padding: 2px 4px;
  border-radius: 3px;
  transition: color 0.12s, background 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A4947A;
  background: #f5f3ee15;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  margin-top: 10px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Open Sans', serif;
  color: #F5F3EE;
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}

/* Lists */
ul, ol {
  margin-bottom: 20px;
  color: #323e44;
  font-size: 1.01rem;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
  list-style: disc inside;
}

/* Elegant Table */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}
th, td {
  padding: 12px 10px;
  border: 1px solid #ebe7dd;
  font-size: 1rem;
}
th {
  background: #faf9f6;
  font-family: 'Montserrat',Georgia,serif;
  color: #232C33;
}

/* Misc */
hr {
  border: 0;
  border-top: 1px solid #ebe7dd;
  margin: 36px 0 20px 0;
}

/* Mobile Navigation & Hamburger */
.mobile-menu-toggle {
  display: none;
  background: #A4947A;
  color: #fff;
  border-radius: 7px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 2rem;
  margin-left: auto;
  z-index: 310;
  transition: background 0.18s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #232C33;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 3200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.66,.13,.33,.92);
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 36px rgba(35, 44, 51, 0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #232C33;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  cursor: pointer;
  line-height: 1;
  z-index: 3310;
  transition: color 0.18s;
  border-radius: 5px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A4947A;
  background: #F5F3EE;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0 0 32px;
}
.mobile-nav a {
  color: #232C33;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.23rem;
  padding: 12px 4px;
  border-radius: 5px;
  transition: background 0.13s, color 0.13s;
  width: fit-content;
  min-width: 120px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A4947A15;
  color: #A4947A;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #232C33;
  color: #fff;
  z-index: 33000;
  box-shadow: 0 -2px 15px rgba(35, 44, 51, 0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 0.27s, transform 0.32s cubic-bezier(.66,.13,.33,.92);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner p {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 0;
  max-width: 540px;
}
.cookie-banner .cookie-btn {
  background: #A4947A;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 600;
  padding: 11px 22px;
  margin-left: 12px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(163,148,122,0.09);
  cursor: pointer;
  display: inline-block;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #232C33;
  color: #fff;
  border: 1.6px solid #A4947A;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #232C33;
  margin-left: 0;
  margin-right: 4px;
  border: 1.2px solid #A4947A;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #A4947A22;
  color: #A4947A;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(35,44,51,0.27);
  width: 100vw;
  height: 100vh;
  z-index: 33100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(.66,.13,.33,.92);
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #232C33;
  border-radius: 15px;
  padding: 44px 34px 36px 34px;
  max-width: 430px;
  min-width: 320px;
  box-shadow: 0 6px 40px rgba(35, 44, 51, 0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.38rem;
  color: #232C33;
  font-family: 'Montserrat', Georgia, serif;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f6f3;
  border-radius: 7px;
  padding: 12px 17px;
  margin-bottom: 15px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #DAD7CA;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
  border: none;
}
.cookie-toggle[aria-checked="true"], .cookie-toggle.on {
  background: #A4947A;
}
.cookie-toggle::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left 0.16s;
  box-shadow: 0 2px 8px rgba(35,44,51,0.08);
}
.cookie-toggle[aria-checked="true"]::before, .cookie-toggle.on::before {
  left: 20px;
}
.cookie-toggle[disabled], .cookie-toggle[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
}

.cookie-modal .cookie-btn {
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.66rem;
  color: #232C33;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 4px;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #A4947A15;
  color: #A4947A;
}

/* Responsive Rules */
@media (max-width: 1100px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-grid, .team-member-grid, .style-examples, .project-list, .step-grid {
    gap: 16px;
  }
}
@media (max-width: 800px) {
  .footer-contact, .main-nav, .footer-nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 10px;
  }
  section {
    padding: 30px 0 0 0;
    margin-bottom: 38px;
  }
  .hero {
    padding: 32px 0 32px 0;
  }
  .feature-grid, .service-grid, .team-member-grid, .style-examples, .project-list, .step-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-item, .team-member, .style-example, .project-item, .step-item { min-width: 0;}
  .main-nav {
    display: none;
  }
  header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 540px) {
  html {
    font-size: 14px;
  }
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.20rem; }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 18px 10px;
    text-align: left;
  }
  .cookie-modal .cookie-modal-content {
    padding: 25px 10px 20px 10px;
    min-width: 0;
    max-width: 94vw;
  }
}
@media (max-width: 420px) {
  .mobile-nav {
    margin-left: 9px;
    gap: 12px;
  }
}

/* Elegant Spacing for Cards & Sections */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Miscellaneous Enhancements */
::-webkit-input-placeholder { color: #A4947A88; }
:-ms-input-placeholder { color: #A4947A88; }
::placeholder { color: #A4947A88; }

/* Misc micro-interactions */
.card, .feature-item, .service-item, .step-item, .testimonial-card, .project-item, .team-member {
  transition: box-shadow 0.2s, border 0.18s, background 0.12s;
}
.card:active, .feature-item:active, .service-item:active {
  background: #f7f6f3;
}

/* Remove tap highlight for a more classic elegant feel */
*:focus {
  outline: 2px solid #A4947A77;
  outline-offset: 1px;
}

/* Hide scrollbars for modals and menus (except in content areas) */
.mobile-menu, .cookie-modal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar { display: none; }
