/* ========================
   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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F9F7E8;
  color: #1c2621;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #235C1E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CBB26A;
}
ul, ol {
  margin-left: 24px;
}
strong, b {
  font-weight: 600;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1c2621;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.17;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
/* Luxury Premium Palette */
:root {
  --primary: #235C1E;
  --primary-dark: #173212;
  --secondary: #8AC791;
  --accent: #F9F7E8;
  --gold: #CBB26A;
  --text-dark: #1c2621;
  --text-light: #FFFFFF;
  --neutral: #f8f8f5;
  --shadow: rgba(27,32,25,0.06);
  --border: #ded7ba;
}
/* ============================
   HEADER & NAVIGATION
   ============================ */
header {
  background: var(--accent);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 3px 12px var(--shadow);
  position: relative;
  z-index: 102;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 8px rgba(203,178,106,0.08));
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  position: relative;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gold);
  width: 0;
  transition: width 0.24s cubic-bezier(.47,1.64,.41,.8);
  position: absolute;
  left: 0;
  bottom: -2px;
}
.main-nav a:hover:after,
.main-nav a:focus:after {
  width: 60%;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
}
.button-primary {
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  background: linear-gradient(94deg,var(--gold) 0%,var(--primary) 67%);
  border: none;
  border-radius: 32px;
  box-shadow: 0 4px 20px var(--shadow);
  cursor: pointer;
  transition: box-shadow .18s, background .21s, color .15s;
  outline: none;
  letter-spacing: 0.01em;
  margin-left: 12px;
  position: relative;
  z-index: 1;
}
.button-primary:hover,
.button-primary:focus {
  background: linear-gradient(90deg,var(--primary) 65%,var(--gold) 100%);
  color: #fffbe9;
  box-shadow: 0 8px 28px var(--shadow);
}
.button-secondary {
  padding: 11px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 32px;
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
  transition: background .16s, color .16s, border .16s, box-shadow .16s;
  margin-top: 12px;
  margin-bottom: 4px;
}
.button-secondary:hover,
.button-secondary:focus {
  background: var(--gold);
  color: var(--text-light);
  border-color: var(--gold);
  box-shadow: 0 4px 18px var(--shadow);
}
/* ===============
   MOBILE MENU
   =============== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36, 43, 32, 0.97);
  box-shadow: 0 12px 38px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px 28px 64px 28px;
  z-index: 2000;
  transform: translateX(100vw);
  visibility: hidden;
  transition: transform .44s cubic-bezier(.47,1.64,.41,.8), visibility .1s linear;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  margin-bottom: 36px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
}
.mobile-nav a {
  color: #fffbe9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  padding: 12px 6px;
  border-radius: 6px;
  transition: background .18s, color .16s;
  letter-spacing: 0.02em;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--gold);
  color: var(--primary) !important;
}
@media (max-width: 1024px) {
  .main-nav, .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2100;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}
/* ==================
   HERO & CTA STYLES
   ================== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 48px 0 32px 0;
}
.subheadline {
  font-size: 1.15rem;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 12px;
  font-weight: 400;
}
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px var(--shadow);
  border: 2px solid var(--gold);
  padding: 40px 36px;
  margin-bottom: 10px;
  gap: 18px;
  text-align: left;
}
.cta-box h2 {
  margin-bottom: 8px;
}
.cta-box p {
  color: var(--primary);
  font-size: 1.07rem;
}
@media (max-width: 700px) {
  .cta-box {
    padding: 24px 10px;
  }
}
/* =====================
   FEATURE/CARD GRIDING
   ===================== */
.features-grid, .service-list, .case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  margin-bottom: 10px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--shadow);
  border: 1.5px solid var(--gold);
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 230px;
  min-height: 256px;
  transition: box-shadow .22s, border-color .22s, transform .18s;
  position: relative;
}
.feature img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 10px 38px var(--shadow);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.022);
}
@media (max-width: 1024px) {
  .features-grid, .service-list, .case-study-list {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .features-grid, .service-list, .case-study-list {
    flex-direction: column !important;
    gap: 18px;
    align-items: stretch;
  }
  .feature {
    width: 100%;
    min-width: unset;
    padding: 22px 12px 16px 12px;
  }
}
/* ==============
   TESTIMONIALS
   ============== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 24px var(--shadow);
  border: 2px solid var(--gold);
  margin-bottom: 20px;
  padding: 32px 28px 22px 28px;
  min-width: 240px;
}
.testimonial-card h3 {
  margin-bottom: 4px;
}
.testimonial-card blockquote,
.testimonial-card p {
  font-size: 1.07rem;
  color: #2d3229;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card cite {
  display: block;
  margin-top: 14px;
  color: var(--primary);
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 0.98rem;
}
@media (max-width: 600px) {
  .testimonial-card {
    padding: 19px 10px 17px 10px;
  }
}
/* =====================
   USP / TEXT SECTIONS
   ===================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.usp-list ul {
  list-style: disc outside;
  margin-top: 16px;
  padding-left: 24px;
  color: var(--primary);
}
.usp-list li {
  margin-bottom: 10px;
  font-size: 1.04rem;
}
.text-section ul, .text-section ol {
  margin-bottom: 13px;
}
/* =====================
   MAP PLACEHOLDER
   ===================== */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 22px 18px;
  margin: 26px 0 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
@media (max-width:600px) {
  .map-placeholder {
    padding: 12px 10px;
  }
}
/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--primary);
  color: var(--gold);
  margin-top: 60px;
  padding: 36px 0 0 0;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .15s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  margin-top: 8px;
  color: var(--gold);
  font-size: 0.96rem;
  opacity: .90;
}
/* =========================
   COOKIE CONSENT BANNER
   ========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fffbe9;
  color: var(--primary-dark);
  box-shadow: 0 -3px 36px rgba(27,32,25,0.12), 0 -1px 0 var(--gold);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 20px 16px;
  z-index: 4000;
  transition: transform .44s cubic-bezier(.47,1.64,.41,.8);
  transform: translateY(120%);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner-message {
  font-size: 1rem;
  color: var(--primary-dark);
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 480px;
  text-align: left;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background .16s, color .13s, box-shadow .15s;
  box-shadow: 0 1px 7px var(--shadow);
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--primary);
  border: 2px solid var(--gold);
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: var(--secondary);
  border-color: var(--secondary);
}
.cookie-btn-reject {
  background: #ede9d1;
  color: var(--primary);
  border: 2px solid #ede9d1;
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn-settings {
  background: #fff;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: var(--gold);
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 8px;
  }
}
/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  z-index: 4100;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(23,50,18,0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fffbe9;
  border-radius: 20px;
  box-shadow: 0 4px 51px var(--shadow);
  min-width: 320px;
  max-width: 97vw;
  padding: 38px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary-dark);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary);
  width: 18px;
  height: 18px;
}
.cookie-btn-close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 2.2rem;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 600px) {
  .cookie-modal-content {
    min-width: 0;
    max-width: 97vw;
    padding: 17px 7px 17px 7px;
    font-size: 0.95rem;
  }
}
/* ===================================
   GENERAL FLEX UTILITY CLASSES
   =================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--shadow);
  background: #fff;
  margin-bottom: 20px;
  padding: 28px 16px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* =======================
   MISC/ELEMENT STYLES
   ======================= */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  margin-bottom: 14px;
  transition: border-color 0.16s;
  font-size: 1rem;
  background: #fff;
  color: var(--primary-dark);
}
input:focus,
textarea:focus {
  border-color: var(--gold);
  background: #fcfaed;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  color: var(--primary-dark);
}
/* ===============
   SCROLLBAR
   =============== */
body::-webkit-scrollbar {
  width: 10px;
  background: #ece9d6;
}
body::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}
/* ============== 
   TYPOGRAPHY SCALE
   ============== */
@media (max-width: 520px) {
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  h3 {
    font-size: 1.13rem;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/* ===================
   UTILITY CLASSES
   =================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.text-center { text-align: center !important; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.gap-20 { gap: 20px !important; }
/* =======================
   ANIMATION KEYFRAMES
   ======================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.section, .feature, .cta-box, .testimonial-card {
  animation: fadeInUp .7s both;
}
/* Micro-interactions for hover/focus */
.button-primary:active, .button-secondary:active, .cookie-btn:active {
  filter: brightness(0.97);
  transform: scale(0.985);
}
/* ======================
   ACCESSIBILITY FOCUS
   ====================== */
*:focus-visible {
  outline: 2.4px solid var(--primary);
  outline-offset: 2px;
}
/* ==============================
   LUXURY REFINEMENT ACCENTS
   ============================== */
.section {
  border-radius: 22px;
  background: linear-gradient(110deg, rgba(203,178,106,0.07) 0%, rgba(248,248,245,0.87) 70%);
  box-shadow: 0 6px 42px var(--shadow);
}
@media (max-width:700px) {
  .section {
    padding: 22px 2px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
}
/* ================================
   PRINT - Minimal Styles
   ================================ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #222 !important;
  }
  .section {
    box-shadow: none !important;
    background: none !important;
    border: none !important;
  }
}
