/* =====================
   CSS RESET & BASELINE
======================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background-color: #FAFAFA;
  color: #425354;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #425354;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #DCA56E;
  outline: none;
}
ul,
ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
ul li,
ol li {
  margin-bottom: 12px;
}

/* ================
   BRAND TYPOGRAPHY
=================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #232B2B;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, .text-section p {
  font-size: 1.0625rem;
  margin-bottom: 18px;
  color: #425354;
}
strong {
  font-weight: 700;
  color: #232B2B;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ====================
   CONTAINER & LAYOUTS
===================== */
.container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(44,36,16,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}
.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;
}

/* Cards and Card Containers */
.card-container,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.card, .service {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(44,36,16,0.07);
  padding: 30px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  flex-basis: 320px;
  flex-grow: 1;
  border: 1.5px solid #f0e6d8;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
}
.card:hover, .service:hover {
  box-shadow: 0 8px 32px rgba(44,36,16,0.11);
  border-color: #DCA56E;
  transform: translateY(-2px) scale(1.012);
  z-index: 2;
}
/* Feature item pattern */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonial Styling */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  border-radius: 20px;
  background: #F9F7F4;
  box-shadow: 0 2px 18px rgba(44,36,16,0.08);
  margin-bottom: 24px;
  position: relative;
  border: 1px solid #eee3d2;
  min-width: 220px;
  max-width: 540px;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232B2B;
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  background: transparent;
  border-left: 3px solid #DCA56E;
  padding-left: 16px;
}
.testimonial-card footer {
  display: block;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #866339;
  margin-top: 10px;
  font-style: normal;
  letter-spacing: 0.1px;
}

/* ===================
   NAVIGATION STYLING
==================== */
header {
  background: #fffbe7;
  box-shadow: 0 2px 12px rgba(44,36,16,0.03);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 0 30px;
  min-height: 72px;
}
.main-nav img {
  height: 44px;
  margin-right: 10px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #425354;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #fff9f2;
  color: #DCA56E;
}
.main-nav .cta-button {
  margin-left: auto;
  background: #DCA56E;
  color: #232B2B;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 24px;
  padding: 10px 30px;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 10px rgba(140,84,38,0.07);
  transition: background 0.20s, color 0.15s, box-shadow 0.2s;
}
.main-nav .cta-button:hover,
.main-nav .cta-button:focus {
  background: #c2894a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(140,84,38,0.18);
  text-decoration: none;
}

/* ===============
   MOBILE NAV MENU
================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #425354;
  font-size: 2.24rem;
  border: none;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 305;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #DCA56E;
}
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  background: rgba(254,252,244,0.97);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.77,0.2,0.22,1), box-shadow 0.2s;
  box-shadow: 0 4px 40px rgba(44,36,16,0.14);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #866339;
  font-size: 2.1rem;
  position: absolute;
  top: 18px;
  right: 30px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 1001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #c2894a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 70px;
  padding: 0 32px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  padding: 15px 0 11px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 600;
  color: #2E3132;
  border-bottom: 1px solid #ffe8c0;
  transition: color 0.16s, background 0.14s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #DCA56E;
  background: #fff7eb;
  outline: none;
}
@media (max-width: 1100px) {
  .container {
    max-width: 940px;
    padding-left: 14px; padding-right: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 680px;
  }
}
@media (max-width: 780px) {
  .main-nav a { font-size: 0.98rem; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
    padding: 0 10px;
    min-height: 58px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    min-height: 64px;
    padding-bottom: 2px;
  }
  .mobile-menu {
    padding-top: 0;
  }
}
@media (min-width: 769px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* =========================
   CTA BUTTONS & INTERACTIONS
=========================== */
.cta-button, .cta-button.primary {
  display: inline-block;
  background: #DCA56E;
  color: #232B2B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 14px 38px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 9px rgba(140,84,38,0.07);
  margin-top: 10px;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.12s, box-shadow 0.15s, transform 0.17s;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.cta-button:hover, .cta-button:focus {
  background: #c2894a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(140,84,38,0.20);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
  outline: none;
}

/* Pricing/Badge inside cards */
.price {
  display: inline-block;
  color: #DCA56E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  margin-top: 12px;
  letter-spacing: 0.01em;
}

/* =====================
   LISTS & ICONS IN LISTS
====================== */
ul li, ol li {
  position: relative;
  padding-left: 36px;
  font-size: 1.01rem;
}
ul li img {
  position: absolute;
  left: 0;
  top: 1.4px;
  width: 22px;
  height: 22px;
  object-fit: contain;
  margin-right: 8px;
}

/* =====================
   SECTIONS & SPACING
====================== */
section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
@media (max-width: 900px) {
  section {
    padding: 32px 0px;
    margin-bottom: 40px;
  }
}
@media (max-width: 540px) {
  section {
    padding: 18px 0px;
    margin-bottom: 24px;
  }
  .card,.service {
    min-width: 90vw;
    padding: 18px 10px 16px 12px;
  }
}

/* =================
   FOOTER DESIGN
================== */
footer {
  background: #232B2B;
  color: #fff;
  padding: 48px 0 34px 0;
  border-top: 4px solid #DCA56E;
  box-shadow: 0 -2px 20px rgba(44,36,16,0.12);
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #DCA56E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.16s, text-decoration 0.14s;
}
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-contact {
  text-align: center;
  color: #fffbe7;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  margin-bottom: 0;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
.footer-contact strong { color: #fff; }

/* ============================
   RESPONSIVE FLEX, GRIDS, GAPS
============================= */
@media (max-width: 900px) {
  .card-container, .service-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    max-width: 96vw;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .text-section {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 10px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.19rem; }
}

/* ===================
   COOKIE CONSENT
=================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe7;
  color: #232B2B;
  box-shadow: 0 -2px 20px rgba(44,36,16,0.09);
  z-index: 12000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 16px 18px 16px;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  border-top: 2.5px solid #DCA56E;
  gap: 24px;
  transition: bottom 0.3s, opacity 0.22s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  bottom: -160px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 16px;
  flex-wrap: wrap;
}
.cookie-banner .cookie-btn {
  padding: 9px 22px;
  border-radius: 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.0rem;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(140,84,38,0.06);
  transition: background 0.13s, color 0.13s, box-shadow 0.16s;
}
.cookie-banner .cookie-btn.accept {
  background: #DCA56E;
  color: #232B2B;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #c2894a;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #425354;
  border: 1.5px solid #DCA56E;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #fff3e2;
  color: #d2994e;
}
.cookie-banner .cookie-btn.settings {
  background: #ece2d2;
  color: #866339;
  border: 1px solid #dfc593;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #ffe9c2;
  color: #a18456;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 44px rgba(44,36,16,0.18);
  z-index: 12200;
  min-width: 92vw;
  max-width: 460px;
  padding: 38px 30px 24px 30px;
  display: none;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
  transition: opacity 0.18s, transform 0.3s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal.hidden {
  display: none;
  opacity: 0;
}
.cookie-modal-title {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 18px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-category-row label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #425354;
  font-weight: 500;
}
.cookie-toggle {
  accent-color: #DCA56E;
  width: 20px;
  height: 20px;
}
.cookie-category-row .cookie-essential {
  opacity: 0.7;
  color: #a89264;
  font-size: 0.98rem;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn.accept,
.cookie-modal .cookie-btn.reject {
  min-width: 104px;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 20px;
  background: none;
  border: none;
  color: #DCA56E;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 12300;
}
.cookie-modal-close:hover { color: #c2894a; }

/* Modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(64,48,20,0.38);
  z-index: 12100;
  transition: opacity 0.21s;
  display: none;
}
.cookie-modal.open ~ .cookie-modal-overlay {
  display: block;
  opacity: 1;
}

@media (max-width: 480px) {
  .cookie-modal {
    max-width: 96vw;
    padding: 20px 7vw 20px 7vw;
  }
}

/* ================
   MICRO ANIMATIONS
================== */
.card, .service, .cta-button, .cookie-btn, .testimonial-card, .mobile-nav a {
  transition: box-shadow 0.18s, background 0.16s, color 0.13s, transform 0.17s, border-color 0.15s;
}
.card:hover, .service:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(44,36,16,0.12);
  transform: translateY(-2px) scale(1.015);
}

/* ==============
   FOCUS STYLES
================ */
:focus-visible {
  outline: 2.5px solid #DCA56E !important;
  outline-offset: 1.5px;
}

/* ================
   SPECIAL CLASSES
================== */
.text-section a {
  color: #DCA56E;
  text-decoration: underline;
  transition: color 0.14s;
}
.text-section a:hover { color: #c2894a; }

/* ul in .text-section tighter */
.text-section ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.text-section ul li {
  padding-left: 0;
  font-size: 1.01rem;
}

/* Forms - just normalize appearance */
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
}

/* =========================
   LUXURY PREMIUM ACCENTS
========================== */
section, .card, .service, .testimonial-card, .cookie-modal {
  border-radius: 18px;
}
h1, h2, h3 {
  letter-spacing: 0.015em;
}
.card, .service {
  border-top: 3px solid #DCA56E33;
}
/* Decorative gold accent (pseudo for hero title) */
h1::after {
  content: '';
  display: block;
  width: 70px;
  margin: 16px 0 0 0;
  border-bottom: 3px solid #DCA56E;
  border-radius: 2.5px;
}
@media (max-width: 600px) {
 h1::after { width: 38px; margin-top: 8px; }
}

/* ============================
   PRINT/SYSTEM OVERRIDES
============================= */
@media print {
  header, footer, .cookie-banner, .cookie-modal, .mobile-menu {
    display: none !important;
  }
  body, html { color: #333; background: #fff !important; }
}
