/* 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,
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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F8FAF7; /* Brand secondary */
  color: #2A2A2A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
strong { font-weight: 600; }
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
}

/* BRAND COLORS & FONT VARIABLES */
:root {
  --color-primary: #374151;
  --color-secondary: #F8FAF7;
  --color-bg: #FFFFFF;
  --color-accent: #BE9D5E;
  --color-gold: #BE9D5E;
  --color-gold-dark: #9C8352;
  --color-heading: #2e2e2e;
  --color-body: #444;
  --color-muted: #7C7C7C;
  --color-border: #E5E7EB;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, Helvetica, sans-serif;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #222325;
    color: #eee;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-heading);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.12;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.subtitle {
  font-family: var(--font-body);
  color: var(--color-muted);
  font-size: 1.18rem;
  margin-bottom: 22px;
  line-height: 1.6;
}
p, li, ul, ol, span, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-body);
}
.text-section p,
.text-section ul {
  max-width: 700px;
  color: #444;
}
.highlight {
  background: rgba(190, 157, 94, 0.11);
  color: var(--color-gold-dark);
  border-left: 4px solid var(--color-gold);
  padding: 9px 16px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* CONTAINERS & SECTIONS */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .content-wrapper {
    gap: 24px;
  }
}

/* FLEXBOX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px 22px 26px;
  min-width: 200px;
  flex: 1 1 230px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 4px 20px 0 rgba(190,157,94,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.22s;
}
.feature-grid li img {
  width: 38px; height: 38px; margin-bottom: 6px;
}
.feature-grid li:hover {
  box-shadow: 0 10px 38px -8px rgba(190,157,94,0.20), 0 1.5px 5px rgba(55,65,81,0.04);
  border-color: var(--color-gold);
  z-index: 2;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 20px 0;
  width: 100%;
}
.service-card {
  background: #fff;
  border-radius: 22px;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 6px 34px -10px rgba(190,157,94,0.12);
  flex: 1 1 268px;
  padding: 36px 32px 26px 32px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 230px;
  min-height: 160px;
  transition: box-shadow 0.21s, border-color 0.16s;
}
.service-card h3 {
  margin-bottom: 8px;
  color: var(--color-primary);
}
.service-card .service-price {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.service-card:hover {
  box-shadow: 0 12px 48px -10px rgba(190,157,94,0.24);
  border-color: var(--color-gold);
  z-index: 2;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 8px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 32px;
  border-radius: 20px;
  background: #faf7f2;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px -3px rgba(55,65,81,0.05);
  min-width: 230px;
  min-height: 100px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.13s;
}
.testimonial-card p {
  color: #222;
  font-style: italic;
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 500;
}
.testimonial-card span {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.testimonial-card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 12px 34px -6px rgba(190,157,94,0.10);
}
.review-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 1.13rem;
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-weight: 600;
}
.review-summary img {
  width: 21px;
  height: 21px;
}

.quick-contact-prompt {
  font-size: 1rem;
  color: var(--color-muted);
  margin-top: 14px;
}
.quick-contact-prompt a {
  color: var(--color-gold);
  text-decoration: underline;
  font-weight: 500;
}
.quick-contact-prompt a:hover {
  color: var(--color-gold-dark);
}

/* FLEX CONTENT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px -4px rgba(190,157,94,0.11);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  transition: box-shadow 0.18s, border-color 0.12s;
}
.card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 8px 32px -4px rgba(190,157,94,0.14);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-display);
  padding: 12px 38px;
  border: none;
  border-radius: 999px;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 2px 18px -2px rgba(190,157,94,0.19);
  transition: background 0.16s, color 0.15s, box-shadow 0.16s, transform 0.12s;
  margin-bottom: 6px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: var(--color-gold-dark);
  color: #fff5df;
  outline: none;
  box-shadow: 0 6px 32px -2px rgba(190,157,94,0.22);
  transform: translateY(-2px) scale(1.025);
}

/* HEADER/NAVIGATION */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 10px -7px rgba(55,65,81,0.08);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0px;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.main-nav > a img {
  height: 44px;
  width: auto;
  margin-right: 26px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav ul li a {
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 22px;
  transition: background 0.17s, color 0.14s;
  font-size: 1rem;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: var(--color-gold);
  background: rgba(190,157,94,0.09);
  outline: none;
}
.main-nav .btn-primary {
  margin-bottom: 0;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: flex;
  background: var(--color-gold);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 7px 21px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 101;
  box-shadow: 0 2px 16px -4px rgba(190,157,94,0.19);
  margin-left: auto;
  margin-right: 0;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--color-gold-dark);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,33,33,0.94);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px 32px 0 32px;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(.32,.72,.48,1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-gold);
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff1df;
}
.mobile-nav {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-gold);
  color: #fff;
}

/* Responsive navigation */
@media (max-width: 1024px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav ul {
    display: flex !important;
  }
  .main-nav .btn-primary {
    display: inline-block !important;
  }
}

/* MAIN SECTIONS SPACING AND FLEX*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  section {
    padding: 30px 7px;
    margin-bottom: 38px;
  }
  .feature-grid, .testimonial-list,
  .service-cards, .content-grid, .card-container {
    gap: 13px;
  }
  .service-card, .card, .testimonial-card,
  .feature-grid li {
    padding: 22px 14px;
    min-width: 140px;
    font-size: 0.97rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .main-nav > a img {
    height: 40px;
  }
  .testimonial-card, .service-card { min-width: 94vw; }
  .feature-grid,
  .service-cards,
  .testimonial-list {
      flex-direction: column;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
}

/* FOOTER */
footer {
  background: #272921;
  color: #F6F3EF;
  padding: 38px 0 22px 0;
  margin-top: 60px;
  border-top: 2.5px solid var(--color-gold);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.15s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: rgba(190,157,94,0.12);
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 21px;
  color: #e7e0cd;
}
.footer-contact a {
  color: var(--color-gold);
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.13s;
}
.footer-contact a:hover {
  color: #fff1df;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}
.footer-branding img {
  height: 42px;
  margin-bottom: 4px;
}
.footer-branding span {
  font-size: 0.97rem;
  color: #ede6d2;
}
@media (max-width: 768px) {
  footer {
    padding: 28px 0 12px 0;
    margin-top: 28px;
  }
  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.95rem;
    text-align: center;
  }
}

/* MODALS & COOKIES BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 11000;
  background: #fff;
  box-shadow: 0 -6px 32px -9px rgba(55,65,81, 0.16);
  border-top: 2.4px solid var(--color-gold);
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 27px 16px 22px 16px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  animation: cookies-fadein 0.5s cubic-bezier(.4, .2, .6, 1);
}
@keyframes cookies-fadein {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #494949;
  text-align: center;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.cookie-btn {
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  padding: 9px 30px;
  cursor: pointer;
  transition: background 0.18s, color 0.16s;
  box-shadow: 0 2px 14px -3px rgba(190,157,94,0.12);
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--color-gold-dark);
  color: #fff1df;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: var(--color-gold);
  border: 1.4px solid var(--color-gold);
  transition: background 0.15s, color 0.14s, border 0.13s;
}
.cookie-btn.cookie-settings:hover {
  background: var(--color-gold);
  color: #fff;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,33,33,0.62);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookies-fadein 0.5s;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 34px 30px 22px 30px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 12px 42px -8px rgba(190,157,94,0.19), 0 1.5px 8px rgba(55,65,81,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  z-index: 12100;
}
.cookie-modal h3 {
  color: var(--color-gold-dark);
  font-size: 1.22rem;
  font-family: var(--font-display);
  margin-bottom: 5px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px; right: 19px;
  background: none;
  border: none;
  color: var(--color-gold);
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-modal-category label {
  color: #2e2e2e;
  font-size: 1.07rem;
  font-weight: 600;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px; height: 22px;
  accent-color: var(--color-gold);
  border-radius: 5px;
  border: 1.1px solid var(--color-gold-dark);
}
.cookie-modal-category.essential label {
  color: var(--color-gold-dark);
}
.cookie-modal-category.essential input {
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 8px;
}
/* Hide modal by default */
.cookie-modal-backdrop {
  display: none;
}
.cookie-modal-backdrop.active {
  display: flex;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 95vw;
    padding: 14px 4vw 13px 4vw;
  }
}

/* UTILITY CLASSES & MICRO-INTERACTIONS */
.fade-in {
  animation: fadeInShow 0.44s cubic-bezier(.6,.8,.45,1.03);
}
@keyframes fadeInShow {
  from { opacity: 0; } to { opacity: 1; }
}

.shadow-gold {
  box-shadow: 0 10px 23px -8px rgba(190,157,94,0.14);
}
.border-gold {
  border-color: var(--color-gold) !important;
}
.text-gold {
  color: var(--color-gold);
}
.bg-gold {
  background-color: var(--color-gold);
  color: #fff;
}
.rounded-xl {
  border-radius: 24px;
}

/* SELECTION */
::selection { background: #be9d5e33; }

/* VISUAL FOCUS STATES */
a:focus, button:focus, .btn-primary:focus,
.mobile-menu-close:focus, .cookie-btn:focus,
.cookie-modal-close:focus {
  outline: 2.4px solid var(--color-gold-dark);
  outline-offset: 2px;
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar { width: 11px; background: #F7F6F2; }
::-webkit-scrollbar-thumb {
  background: #BE9D5E99;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover { background: #9C835299; }

/* ------------- END OF CSS ------------- */
