/* RESET & BASE TYPOGRAPHY */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; }
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F5F3ED;
  color: #20203A;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; border: none; }
a { color: #A68A64; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #20203A; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #20203A;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 12px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
.subheadline { font-size: 1.125rem; color: #A68A64; font-family: 'Montserrat', Arial, sans-serif; margin-bottom: 24px; letter-spacing: 0.02em; font-style: italic; }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section { max-width: 720px; margin: 0 auto; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px 0 rgba(32,32,58,0.08);
  padding: 32px 24px;
  min-width: 270px;
  flex: 1 1 270px;
  transition: box-shadow 0.3s, transform 0.2s;
  border: 2px solid #E5DED3;
}
.card:hover {
  box-shadow: 0 12px 36px 0 rgba(32,32,58,0.18);
  transform: translateY(-7px);
}

.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;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(166,138,100,0.10);
  border-left: 6px solid #A68A64;
  border-radius: 18px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  color: #20203A;
  transition: box-shadow 0.15s;
}
.testimonial-card strong {
  color: #A68A64;
  font-family: 'Playfair Display', serif;
  font-size: 1.08em;
  margin-left: 14px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(166,138,100,0.18);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID FOR INDEX */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(166,138,100,0.06);
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px;
  min-width: 200px;
  min-height: 260px;
  gap: 14px;
  border: 2px solid #EEE7DC;
  transition: box-shadow 0.15s, border 0.18s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 36px 0 rgba(166,138,100,0.13);
  border-color: #A68A64;
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}

/* BUTTONS */
.cta-button {
  background: #A68A64;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.17rem;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(166,138,100,0.12);
  padding: 13px 40px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s, box-shadow 0.18s;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-block;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #20203A;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 24px 0 rgba(32,32,58,0.18);
}

/* HEADER */
header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #F5F3ED;
  padding: 24px 20px 14px 20px;
  position: relative;
  z-index: 40;
  border-bottom: 2px solid #E9E1D6;
}
header img { max-height: 44px; }
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20203A;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.19s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: #A68A64;
  color: #fff;
}
header .cta-button {
  margin-left: 20px;
  margin-right: 10px;
  margin-top: 0;
}
.mobile-menu-toggle {
  display: none;
  background: #20203A;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  margin-left: 10px;
  font-size: 1.7rem;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #20203A;
  color: #fff;
  z-index: 2200;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.7,.08,.5,1.2), opacity 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 22px 28px 12px 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover { color: #A68A64; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 14px 40px 40px 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 3px 10px 0;
  border-bottom: 2px solid rgba(245,243,237,0.08);
  transition: color 0.17s, background 0.16s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a.active { color: #A68A64; background: none; }

/* MAIN CONTENT SECTIONS */
main {
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARDS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* FOOTER */
footer {
  background: #20203A;
  color: #F5F3ED;
  padding: 44px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  position: relative;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 18px 0;
}
footer nav a {
  color: #F5F3ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 5px 8px;
  border-radius: 6px;
  transition: background 0.15s, color 0.13s;
}
footer nav a:hover, footer nav a.active { background: #A68A64; color: #fff; }
footer img { max-height: 38px; }
footer .contact-info, footer .social-media-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: center;
  font-size: 0.98rem;
  color: #EEE7DC;
}
footer .social-media-links {
  flex-direction: row;
  gap: 14px;
  margin-top: 6px;
}
footer .copyright {
  font-size: 0.93rem;
  color: #BFB8AF;
  margin-top: 8px;
  text-align: center;
}
footer .contact-info img { vertical-align: middle; width: 17px; margin-right: 7px; }

/* DL & OL STYLES (FAQ & PROCESS) */
dl { margin-top: 14px; margin-bottom: 14px; }
dt {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 4px;
  color: #20203A;
}
dd {
  margin-bottom: 14px;
  margin-left: 0;
  color: #3F3E47;
}
ol, ul {
  margin-left: 18px;
  padding-left: 16px;
  margin-bottom: 12px;
}
ol>li, ul>li { margin-bottom: 10px; }
ul { list-style: disc; }
ol { list-style: decimal; }

/* CONTACT DETAILS */
.contact-details, .map-address {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.contact-details img { width: 18px; vertical-align: middle; margin-right: 8px; }

/* VISUAL ELEMENTS - SHADOWS & BORDERS */
.card, .feature-grid li, .testimonial-card {
  box-shadow: 0 2px 12px 0 rgba(32,32,58,0.06);
}
h2, h3 { border-left: 5px solid #A68A64; padding-left: 13px; }

/* MICRO-ANIMATIONS */
.card, .feature-grid li, .testimonial-card, .cta-button {
  will-change: transform, box-shadow;
}

/* UNIQUE CREATIVE ELEMENTS */
.card:before, .feature-grid li:before {
  content: '';
  position: absolute;
  top: -11px; left: -11px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(166,138,100,0.17);
  z-index: 1;
  pointer-events: none;
  filter: blur(3px);
  transition: opacity 0.25s;
}
.card:hover:before, .feature-grid li:hover:before { opacity: 0.8; }
.card:before { display: none; }
.feature-grid li:before { display: block; }

/* COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2222;
  background: #fff9ed;
  color: #20203A;
  box-shadow: 0 -2px 24px 0 rgba(32,32,58,0.14);
  border-top: 2px solid #A68A64;
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.36s cubic-bezier(.7,.08,.5,1.2), opacity 0.17s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 3px;
}
.cookie-banner button {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 14px;
  padding: 8px 23px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, transform 0.13s;
  font-weight: 600;
}
.cookie-banner .accept {
  background: #A68A64;
}
.cookie-banner .reject {
  background: #A23523;
}
.cookie-banner .settings {
  background: #20203A;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #524C3E;
  color: #fff9ed;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 56px 0 rgba(32,32,58,0.36);
  padding: 34px 26px 26px 26px;
  max-width: 420px;
  width: 90vw;
  color: #20203A;
  animation: fadein 0.3s;
}
.cookie-modal.show {
  display: block;
  animation: fadein 0.23s;
}
@keyframes fadein {
  from { opacity: 0; transform: translate(-50%, -53%) scale(0.96); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.35rem;
  color: #A68A64;
}
.cookie-preference-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 22px;
  font-size: 1.02rem;
}
.cookie-preference-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.cookie-preference-item input[type='checkbox'] {
  accent-color: #A68A64;
  width: 22px;
  height: 22px;
  margin-left: 7px;
}
.cookie-modal .close-modal {
  background: #A68A64;
  color: #fff;
  border: none;
  border-radius: 13px;
  padding: 10px 20px;
  margin-top: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover { background: #20203A; }

/* TABLETS & DESKTOP */
@media (min-width: 769px) {
  .content-wrapper { flex-direction: row; align-items: flex-start; gap: 40px; }
  .feature-grid { flex-direction: row; }
  .feature-grid li { min-width: 223px; flex: 1 1 218px; }
  .header nav { gap: 30px; }
  .section { padding: 60px 0 60px 0; }
  .testimonial-card { min-width: 480px; }
}

/* DESKTOP SPECIFIC */
@media (min-width: 1000px) {
  header, footer, main>.container, section>.container { padding-left: 0; padding-right: 0; }
  .container { padding: 0 10px; }
}

/* MOBILE RESPONSIVE ADJUSTMENTS */
@media (max-width: 1023px) {
  .content-wrapper { flex-direction: column; gap: 18px; }
  .feature-grid { flex-direction: column; align-items: stretch; }
  .feature-grid li { min-width: 180px; }
}
@media (max-width: 900px) {
  .section { padding: 38px 3vw; }
}
@media (max-width: 768px) {
  html { font-size: 95%; }
  body { font-size: 15px; }
  .container { padding: 0 10px; }
  header nav { display: none; }
  header .cta-button { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 4400;
  }
  .section { padding: 25px 3vw; margin-bottom: 36px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 15px; }
  .content-grid { flex-direction: column; gap: 16px; }
  footer { padding: 32px 9px 18px 9px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1.08rem; }
  .cta-button { padding: 11px 23px; font-size: 1.01rem; }
  .feature-grid li, .card, .testimonial-card { padding: 13px 8px; min-width:unset; }
}

/* SCROLLBAR STYLING FOR CREATIVE LOOK */
::-webkit-scrollbar { width: 10px; background: #E7E1D9; }
::-webkit-scrollbar-thumb { background: #A68A64; border-radius: 7px; }

/* FOCUS & ACCESSIBILITY */
a:focus, .cta-button:focus, button:focus {
  outline: 2px solid #A68A64;
  outline-offset: 3px;
}

/* ARTSY ACCENTS */
h1 { border-bottom: 3px solid #A68A64; display: inline-block; padding-bottom: 2px; margin-bottom: 22px; }
section {
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(166,138,100,0.07);
  background: rgba(245,243,237,0.83);
}

/* SEPARATORS */
hr {
  border: none;
  border-top: 2px solid #A68A64;
  margin: 32px 0;
}

/* MICRO-ANIMATION FOR BUTTON TAPS */
.cta-button:active {
  transform: scale(0.98);
  box-shadow: 0 1px 7px 0 rgba(166,138,100,0.12);
}

/* DECORATIVE SHAPES TOP AND BOTTOM (OPTIONAL, FOR ARTSY FLARE) */
body:before {
  content: '';
  display: block;
  position: fixed;
  left: -80px; top: -112px;
  width: 240px; height: 240px;
  background: #A68A64;
  border-radius: 60% 40% 63% 37%/52% 48% 52% 48%;
  opacity: 0.11;
  z-index: 1;
  pointer-events: none;
  filter: blur(9px);
}
body:after {
  content: '';
  display: block;
  position: fixed;
  right: -100px; bottom: -90px;
  width: 230px; height: 140px;
  background: #20203A;
  border-radius: 37% 63% 37% 63%/48% 52% 48% 52%;
  opacity: 0.17;
  z-index: 1;
  pointer-events: none;
  filter: blur(8px);
}

/* -- END OF CSS -- */
