/* 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  background: transparent;
  font: inherit;
}
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #3C2415;
  background: #FFFFFF;
  font-size: 16px;
  line-height: 1.5;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #6C4C2B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #A17A5D; }
ul, ol {
  list-style: none;
}
strong { font-weight: 700; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: #3C2415;
  letter-spacing: -.5px;
  line-height: 1.15;
}

/* TYPOGRAPHY SCALE & HIERARCHY */
h1 {
  font-size: 2.7rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, dl, dd, dt {
  font-size: 1rem;
}

/* GENERAL LAYOUT & CONTAINERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

/* FLEXBOX ALIGNMENT PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(108,76,43, 0.12);
  position: relative;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 4px 28px 0 rgba(108,76,43, 0.20);
}
.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;
  gap: 20px;
  padding: 24px 28px;
  margin-bottom: 24px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(60,36,21,0.06);
  border: 2px solid #E2DED3;
  transition: box-shadow 0.15s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px 0 rgba(97,51,30,0.16);
  border-color: #A17A5D;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: #E2DED3;
  border-radius: 0 0 68px 0/0 0 58px 0;
  box-shadow: 0 3px 20px 0 rgba(108,76,43,0.10);
  padding-top: 50px;
  padding-bottom: 72px;
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 620px;
  gap: 18px;
}
.hero h1 {
  color: #6C4C2B;
  font-size: 2.7rem;
}

/* CTA BUTTONS */
.cta-btn, .cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 16px 36px;
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  letter-spacing: .055em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(97,51,30,0.10);
}
.cta-btn {
  background: #6C4C2B;
  color: #fff;
  border: 3px solid #6C4C2B;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A17A5D;
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,76,43,.19);
  outline: none;
}
.cta-btn-secondary {
  border: 3px solid #6C4C2B;
  background: #fff;
  color: #6C4C2B;
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  background: #6C4C2B;
  color: #fff;
}

/* FEATURES */
.features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
}
.features-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  background: #E2DED3;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(108,76,43,.08);
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  padding: 26px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow 0.14s, background 0.16s;
  position: relative;
}
.feature:hover {
  background: #FAF8F3;
  box-shadow: 0 4px 24px 0 rgba(161,122,93,.16);
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}

/* ABOUT PREVIEW, CONTACT TEASER */
.about-preview, .contact-teaser {
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(97,51,30,0.08);
  margin-bottom: 36px;
}
.about-preview h2, .contact-teaser h2 {
  color: #6C4C2B;
}
.cta-btn-secondary {
  margin-top: 10px;
}

/* FOOTER */
footer {
  background: #E2DED3;
  padding: 50px 0 16px 0;
  margin-top: 56px;
  border-radius: 58px 0 0 0/48px 0 0 0;
  box-shadow: 0 -6px 20px 0 rgba(108,76,43,0.10);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-logo img {
  width: 66px;
  height: auto;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-weight: 700;
}
.footer-nav a {
  color: #3C2415;
}
.footer-nav a:hover {
  color: #A17A5D;
  text-decoration: underline;
}
.footer-contact p {
  font-size: 0.97rem;
  color: #3C2415;
  margin-bottom: 0;
}
.footer-legal {
  font-size: 0.95rem;
  color: #6C4C2B;
  gap: 8px;
  margin-top: 18px;
}
.footer-legal a {
  color: #6C4C2B;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 8px;
  padding: 3px;
  box-shadow: 0 1px 4px rgba(108,76,43,0.10);
  transition: box-shadow 0.2s, background 0.15s;
}
.footer-social a:hover img {
  background: #E2DED3;
  box-shadow: 0 3px 12px rgba(108,76,43,0.18);
}

/* TEAM SECTION */
.team .team-member {
  background: #E2DED3;
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(161,122,93,0.09);
}

/* TESTIMONIALS */
.testimonials .testimonial-card, .testimonial-callout .testimonial-card {
  min-width: 240px;
  max-width: 520px;
}
.testimonial-meta {
  font-size: 0.98rem;
  font-weight: 700;
  color: #6C4C2B;
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.stars {
  color: #A17A5D;
  font-size: 1.4em;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* SERVICE-LIST / FAQ / ETC. */
.service-list ul,
.benefits ul,
.faq-list dl {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 18px;
}
.service-list ul li,
.benefits ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 26px;
}
.service-list ul li:before,
.benefits ul li:before {
  content: "\2022";
  color: #A17A5D;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 1.4em;
}
.faq-list dt {
  font-weight: bold;
  margin-bottom: 6px;
  color: #6C4C2B;
  font-size: 1.06em;
}
.faq-list dd {
  margin-bottom: 18px;
  color: #3C2415;
}

ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
ol li {
  margin-bottom: 8px;
}

/* CARD AND GRID STYLES (for gallery, landing, service overviews, etc.) */
.card {
  background: #fff;
  border-radius: 20px;
  padding: 26px 20px;
  box-shadow: 0 2px 10px rgba(108,76,43,0.08);
  min-width: 220px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* OTHER SECTION LAYOUTS (e.g. two-column blocks) */
.text-image-section {
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FAF8F3;
  color: #3C2415;
  z-index: 9000;
  box-shadow: 0 -8px 24px 0 rgba(108,76,43,0.12);
  padding: 22px 8px 22px 8px;
  font-size: 1rem;
  border-top: 4px solid #A17A5D;
  animation: cookieBannerSlideIn 0.7s cubic-bezier(.42,1.26,.97,1.02);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.cookie-btn {
  border-radius: 48px;
  font-weight: bold;
  padding: 10px 26px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(108,76,43,0.06);
  transition: background .18s, color .18s, box-shadow .16s;
}
.cookie-btn.accept {
  background: #6C4C2B;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #A17A5D;
}
.cookie-btn.reject {
  background: #fff;
  color: #6C4C2B;
  border: 2px solid #A17A5D;
}
.cookie-btn.reject:hover {
  background: #A17A5D;
  color: #fff;
}
.cookie-btn.settings {
  background: #E2DED3;
  color: #3C2415;
}
.cookie-btn.settings:hover {
  background: #A17A5D;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(60,36,21,0.56);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .4s;
}
@keyframes fadeIn { from { opacity:0;} to {opacity:1;} }
.cookie-modal {
  background: #FFF;
  border-radius: 24px;
  padding: 36px 20px 26px 20px;
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 2px 28px rgba(161,122,93,0.17);
  animation: modalPopIn .38s cubic-bezier(.56,.18,.26,1.19);
}
@keyframes modalPopIn {
  0% { transform: scale(.95) translateY(80px); opacity: .4; } 
  100% { transform: scale(1) translateY(0); opacity: 1; } 
}
.cookie-modal h2 {
  color: #6C4C2B;
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #E2DED3;
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 10px;
}
.cookie-modal .category .toggle {
  margin-left: auto;
}
.cookie-modal .essential {
  color: #A17A5D;
}
.cookie-modal .toggle input[type=checkbox] {
  width: 34px;
  height: 20px;
  appearance: none;
  background: #A17A5D;
  outline: none;
  border-radius: 28px;
  position: relative;
  cursor: pointer;
  transition: background .25s;
}
.cookie-modal .toggle input[type=checkbox]:checked {
  background: #6C4C2B;
}
.cookie-modal .toggle input[type=checkbox]::after {
  content: '';
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left .19s;
}
.cookie-modal .toggle input[type=checkbox]:checked::after {
  left: 16px;
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 20px;
  top: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #A17A5D;
  cursor: pointer;
  padding: 2px 6px;
}

/* MOBILE MENU / HAMBURGER NAV */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 11001;
  background: #6C4C2B;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 16px;
  padding: 6px 18px;
  box-shadow: 0 2px 14px rgba(108,76,43,0.16);
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A17A5D;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #E2DED3;
  z-index: 11000;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.42s cubic-bezier(.56,.08,.21,1), box-shadow 0.24s;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  box-shadow: 0 0 24px 8px rgba(97,51,30,0.12);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #6C4C2B;
  font-size: 2.3rem;
  cursor: pointer;
  z-index: 11010;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 86px;
  width: 100vw;
  align-items: center;
}
.mobile-nav a {
  color: #3C2415;
  font-size: 1.33rem;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 14px;
  width: 80vw;
  text-align: center;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover {
  background: #A17A5D;
  color: #fff;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 36px 0 18px 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #6C4C2B;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a.active {
  background: #A17A5D;
  color: #fff;
}

header .cta-btn {
  margin-left: auto;
  margin-top: 0;
}

/* Hide main nav / Show burger on mobile */
@media (max-width: 900px) {
  header nav, header .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1100px) {
  .footer-row { flex-direction: column; gap: 30px; }
  .features-grid { justify-content: flex-start; }
  .container { max-width: 96vw; }
}
@media (max-width: 768px) {

  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.08rem; }

  .section {
    margin-bottom: 40px;
    padding: 22px 8px;
  }
  .hero {
    padding-top: 34px;
    padding-bottom: 40px;
    border-radius: 0 0 32px 0/0 0 34px 0;
    margin-bottom: 32px;
  }
  .content-wrapper { gap: 16px; }
  .features-grid {
    gap: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature {
    min-width: 0;
    max-width: 100%;
    padding: 18px 12px 14px 12px;
  }
  .footer-row { flex-direction: column; gap: 16px; }
  .footer-logo img { width: 48px; }
  .footer-social a img { width: 28px; height: 28px; }
  .about-preview, .contact-teaser { margin-bottom: 18px; }
  .testimonial-card { padding: 14px 10px; }
  .card-container { gap: 14px; }
  .card { padding: 12px 8px; }
}
@media (max-width: 600px) {
  .container { padding: 0 7px; max-width: 100vw; }
  .card-container { gap: 10px; }
  .footer-row, .features-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* COLUMN/GROUP LAYOUTS (flex-direction responsiveness) */
@media (max-width: 768px) {
  .content-grid,
  .text-image-section,
  .footer-row {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
.text-image-section {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* THANK YOU PAGE */
.thank-you {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* PRINT STYLES, SMALL ACCESSIBILITY IMPROVEMENTS */
@media print {
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal-overlay { display: none!important; }
}
:focus {
  outline: 2px solid #A17A5D;
  outline-offset: 2px;
}

/* ANIMATION FOR PAGE/CTA BUTTONS */
.cta-btn, .cta-btn-secondary, .cookie-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.14s;
}
.cta-btn:active, .cta-btn-secondary:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* MISC UTILS */
.mt-2 { margin-top: 2px; }
.mb-2 { margin-bottom: 2px; }
.mt-12 { margin-top: 12px; }
.mb-12 { margin-bottom: 12px; }
.gap-12 { gap: 12px; }

/* MODERN BOLD VISUAL GEOMETRIC DECORATIVE SHAPES */
.section::before {
  content: '';
  display: block;
  width: 54px;
  height: 6px;
  border-radius: 6px;
  background: #A17A5D;
  margin-bottom: 18px;
}
.section:first-child::before {
  display: none;
}

/* HIDE SECTION DECORATORS WHERE UNWANTED (e.g. for hero section) */
.hero.section::before, .thank-you.section::before { display: none; }

/* BRAND FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Roboto:wght@400;700&display=swap');
