/* --- CSS RESET & NORMALIZATION --- */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #FAF7F2;
  color: #21282C;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #A08063;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C0986D;
  outline: none;
}

ul, ol {
  padding-left: 1.3em;
  margin: 16px 0;
}
li {
  margin-bottom: 12px;
}

/* --- TYPOGRAPHY --- */
h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #21282C;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #A08063;
  margin-bottom: 16px;
  margin-top: 0;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #82706A;
  margin-bottom: 10px;
  margin-top: 0;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
}
p, .subheadline {
  color: #44484F;
  font-size: 1.08rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.subheadline {
  font-size: 1.2rem;
  font-style: italic;
  color: #A08063;
  font-family: 'Montserrat', Arial, sans-serif;
}
strong {
  font-weight: 600;
}
small {
  font-size: 0.98rem;
  color: #A08063;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section, .hero, .features, .services, .about, .contact, .footer-section, .cta, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(180deg, #F7F1F6 0%, #F3F7F6 70%, #FAF7F2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  box-shadow: 0 4px 24px 0 rgba(180,160,146,0.10);
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 600px;
}

/* --- NAVIGATION --- */
header {
  background: #FAF7F2;
  box-shadow: 0 1px 10px 0 rgba(180,160,146,0.07);
  position: relative;
  z-index: 10;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.main-navigation a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  color: #5E676A;
  font-weight: 400;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.19s, color 0.18s;
}
.main-navigation a.cta.primary {
  background: #C0986D;
  color: #fff;
  font-weight: 600;
  margin-left: 16px;
  box-shadow: 0 2px 8px rgba(192,152,109,0.08);
  letter-spacing: 0.02em;
}
.main-navigation a.cta.primary:hover,
.main-navigation a.cta.primary:focus {
  background: #b68c5e;
  color: #fff;
}
.main-navigation a:hover,
.main-navigation a:focus {
  background: #e9ece7;
  color: #C0986D;
}
.main-navigation img {
  height: 44px;
  padding-right: 10px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 14px;
  background: #fff4;
  border: none;
  font-size: 2rem;
  color: #C0986D;
  padding: 7px 17px 7px 13px;
  border-radius: 9px;
  transition: box-shadow 0.18s, background 0.16s;
  z-index: 101;
  cursor: pointer;
  outline: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  box-shadow: 0 0 0 2px #C0986D44;
  background: #ede2d9;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 92vw;
  max-width: 350px;
  background: #fcfaf7;
  box-shadow: -4px 0 28px 0 rgba(166,160,152,0.15);
  transition: transform 0.35s cubic-bezier(.8,.16,.27,1), opacity 0.2s;
  transform: translateX(100%);
  opacity: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 34px 20px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #C0986D;
  font-size: 2rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:focus {color: #21282C;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  padding: 12px 5px;
  color: #21282C;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  transition: background 0.15s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e6e6f3;
  color: #C0986D;
}

@media (max-width: 1080px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-navigation {
    gap: 10px;
  }
  .main-navigation a.cta.primary {
    margin-left: 8px;
    padding: 7px 11px;
  }
}
@media (max-width: 820px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-navigation {
    gap: 7px;
  }
}
/* --- BURGER MENU BREAKPOINT --- */
@media (max-width: 720px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* --- CARDS, FLEX LAYOUTS & SPACING --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffdfc;
  border-radius: 19px;
  box-shadow: 0 2px 16px rgba(192, 152, 109, 0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(192, 152, 109, 0.12);
  transform: translateY(-2px) scale(1.015);
}
.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;
  border-radius: 18px;
  background: #fdf6fa;
  box-shadow: 0 2px 18px rgba(161,131,184,0.09);
  margin-bottom: 20px;
  color: #21282C;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-card p {
  color: #21282C;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #9F8672;
  font-size: 1.02rem;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FEATURES (& FEATURE ICONS) --- */
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  align-items: flex-start;
  margin-bottom: 8px;
  list-style-type: none;
  padding-left: 0;
}
.features ul li {
  display: flex;
  align-items: center;
  background: #f8f1fc;
  color: #7f6d54;
  border-radius: 13px;
  font-size: 1.07rem;
  font-weight: 500;
  padding: 9px 18px 9px 13px;
  box-shadow: 0 1px 8px 0 rgba(192,152,109,0.07);
  gap: 11px;
  min-width: 154px;
}
.features ul li img {
  height: 28px;
  width: 28px;
}

/* --- SERVICES & PRICES TABLE --- */
.services ul,
.about ul,
.team-bios ul,
.features ul {
  margin-bottom: 8px;
}
.services ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: none;
  padding-left: 0;
  margin-top: 8px;
}
.services ul li {
  background: #fff8f4;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(192, 152, 109, 0.06);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #474240;
  margin-bottom: 5px;
}
.services ul li span {
  color: #C0986D;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 18px;
  font-size: 1.07rem;
  background: #fff9f7;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(192, 152, 109, 0.07);
  overflow: hidden;
}
table tr {
  border-bottom: 1px solid #ede4dc;
}
table tr:last-child {
  border-bottom: none;
}
table td {
  padding: 15px 17px;
  font-family: 'Open Sans', Arial, sans-serif;
}
table td:last-child {
  color: #A08063;
  font-weight: 600;
}

/* --- TEAM BIOS --- */
.team-bios {
  margin-top: 12px;
  margin-bottom: 8px;
}
.team-bios ul {
  list-style-type: none;
  padding-left: 0;
  gap: 12px;
  display: flex;
  flex-direction: column;
}
.team-bios li {
  padding: 9px 0 9px 0;
  color: #464040;
  font-size: 1.05rem;
}

/* --- CTA SECTION --- */
.cta {
  background: linear-gradient(180deg, #fbf0f6 0%, #f8f2f9 65%, #faf7f2 100%);
  box-shadow: 0 2px 18px rgba(192,152,109,0.07);
  border-radius: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 18px;
  margin-bottom: 48px;
}
.cta .content-wrapper {
  align-items: center;
}
.cta .cta.primary,
.cta.primary {
  margin-top: 12px;
}

/* --- BUTTONS & CTA LINKS --- */
.cta.primary, .btn, button, input[type="submit"], .cookie-btn {
  min-width: 145px;
  border: none;
  border-radius: 10px;
  background: #C0986D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 600;
  padding: 12px 30px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(192, 152, 109, 0.13);
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.14s, color 0.14s, transform 0.17s;
  display: inline-block;
  outline: none;
}
.cta.primary:hover, .btn:hover, button:hover, input[type="submit"]:hover, .cookie-btn:hover,
.cta.primary:focus, .btn:focus, button:focus, input[type="submit"]:focus, .cookie-btn:focus {
  background: #a17951;
  color: #fff;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 4px 18px rgba(192, 152, 109, 0.17);
}
.btn.secondary, .cookie-btn.secondary {
  background: #F2EDF7;
  color: #A08063;
  font-weight: 500;
  box-shadow: 0 1px 7px rgba(192, 152, 109, 0.04);
}
.btn.secondary:hover, .cookie-btn.secondary:hover {
  background: #ebe4f5;
  color: #C0986D;
}

/* --- FORMS, INPUTS --- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fcf9f4;
  color: #21282C;
  border: 1px solid #E6DDCA;
  border-radius: 7px;
  padding: 10px 12px;
  font-size: 1rem;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #C0986D;
}


/* --- ADDRESS BLOCK --- */
.address-block {
  margin-top: 15px;
  margin-bottom: 12px;
  color: #77554b;
  font-size: 1rem;
  background: #f8f4f1;
  border-radius: 10px;
  padding: 13px 18px;
  box-shadow: 0 1px 7px rgba(185,174,164,0.08);
}
.address-block a {
  color: #89664d;
  text-decoration: underline;
  font-weight: 500;
}
.address-block strong {
  color: #A08063;
}


/* --- FOOTER --- */
footer {
  background: #f6f3f6;
  box-shadow: 0 -1px 16px 0 rgba(169,130,107,0.04);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 32px;
  padding-bottom: 24px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #A08063;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 6px 8px;
  transition: color 0.18s, background 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #f1e5d6;
  color: #21282C;
}
footer small {
  display: block;
  color: #A08063;
  font-size: 1rem;
  margin-top: 10px;
}

/* --- SPACING OVERRIDES FOR 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;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  z-index: 1400;
  left: 0;
  right: 0;
  bottom: 0;
  background: #faf2fe;
  color: #21282C;
  padding: 26px 18px 18px 18px;
  box-shadow: 0 -2px 18px rgba(186,135,168,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  transition: transform 0.4s cubic-bezier(.58,1.12,.68,1) 0.07s, opacity 0.19s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  color: #6d5c91;
  font-size: 1.03rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 9px 19px;
  transition: background 0.14s, color 0.17s;
  cursor: pointer;
}
.cookie-btn.primary {
  background: #C0986D;
  color: #fff;
}
.cookie-btn.secondary {
  background: #F2EDF7;
  color: #A08063;
}
.cookie-btn.primary:hover,
.cookie-btn.primary:focus {
  background: #ab845b;
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: #eaded5;
  color: #914c91;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 52vh;
  transform: translate(-50%, -55%) scale(1);
  z-index: 1500;
  background: #fff6fe;
  color: #21282C;
  box-shadow: 0 6px 38px 6px rgba(166,124,196,0.17);
  border-radius: 20px;
  max-width: 420px;
  width: 90vw;
  padding: 34px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  opacity: 1;
  transition: opacity 0.2s, transform 0.23s cubic-bezier(.9,.3,.26,1.2);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-45%) scale(0.97);
}
.cookie-modal h2 {
  margin-bottom: 5px;
  font-size: 1.32rem;
  color: #A08063;
}
.cookie-modal .cookie-settings {
  gap: 18px;
  display: flex;
  flex-direction: column;
}
.cookie-setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-setting-row label {
  color: #7E51B6;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #eae0f7;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle:checked {
  background: #C0986D;
}
.cookie-toggle:disabled {
  background: #d4c3eb;
  cursor: not-allowed;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(192,152,109,0.10);
  transition: left 0.2s;
}
.cookie-toggle:checked:before {
  left: 18px;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 17px;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
  font-size: 0.98rem;
}
.cookie-modal .cookie-btn.reject {
  background: #ffe6ea;
  color: #b75369;
}
.cookie-modal .cookie-btn.reject:hover {
  background: #ffd8e5;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1020px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.36rem; }
}
@media (max-width: 900px) {
  .hero { min-height: 180px; }
  footer .container {
    padding-top: 22px;
    padding-bottom: 17px;
  }
}
@media (max-width: 768px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .section, .hero, .features, .services, .about, .contact, .footer-section, .cta, .testimonials {
    padding: 24px 2px;
    margin-bottom: 36px;
    border-radius: 11px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .footer-nav {
    gap: 13px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .address-block {
    padding: 10px 8px;
    font-size: 0.97rem;
  }
  .hero {
    min-height: 98px;
    padding-bottom: 23px;
    border-radius: 18px;
  }
  .card {
    padding: 17px 9px;
    border-radius: 10px;
  }
  .features ul {
    gap: 10px 8px;
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 17px 7px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width:540px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.15rem; }
  .cta.primary, .btn, button, input[type="submit"] {
    padding: 10px 18px;
    font-size: 0.99rem;
  }
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 8px;
    padding-top: 19px;
  }
  .mobile-nav a {
    font-size: 1rem;
    padding: 9px 3px;
  }
}

/* --- MICRO-INTERACTIONS & ANIMATIONS --- */
.cta.primary, .btn, button, input[type="submit"], .cookie-btn {
  transition: background 0.17s, box-shadow 0.17s, color 0.14s, transform 0.16s;
}
.card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(192,152,109,0.13);
  transform: translateY(-1.5px) scale(1.010);
  z-index: 2;
}

/* --- MISC UTILS --- */
::-webkit-scrollbar { width: 8px; background: #f4f0eb; }
::-webkit-scrollbar-thumb { background: #dec9b4; border-radius: 4px; }

/* --- END --- */
