/* ================= LUXURY PREMIUM RESET & BASE =================== */
/* Reset and 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.7;
  background: #FCFCF9;
  color: #24372B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============== BRAND LUXURY PREMIUM COLORS & FONTS =============== */
:root {
  --color-primary: #367D49;
  --color-secondary: #E9ECE1;
  --color-background: #FCFCF9;
  --color-accent: #24372B;
  --color-gold: #CBB26A;
  --color-white: #fff;
  --color-footer-bg: #24372B;
  --shadow-card: 0 6px 20px rgba(36,55,43,0.10);
  --shadow-btn: 0 2px 8px rgba(36, 55, 43, 0.09);
  --radius-base: 18px;
  --radius-btn: 28px;
  --transition-main: all 0.23s cubic-bezier(.43,.31,.67,1.32);
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* Fonts Import - Montserrat (display), Roboto (body) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

/* ================= VI LAYOUTS & CONTAINERS =================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
}

/* ==================== HEADER ===================== */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px rgba(36,55,43,0.05);
  min-height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 24px;
}
header img {
  height: 40px;
  margin-right: 32px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  font-family: var(--font-display);
}
nav a {
  padding: 8px 16px;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  border-radius: var(--radius-btn);
  position: relative;
  transition: background var(--transition-main), color var(--transition-main);
}
nav a:hover, nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  outline: none;
}
header .btn-primary {
  /* already styled below */
  margin-left: 28px;
}

/* ================= MOBILE MAIN MENU ===================== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-main);
  margin-left: 12px;
  display: none;
  z-index: 1200;
}
.mobile-menu-toggle:hover {
  background: var(--color-secondary);
}
@media (max-width: 1020px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(36,55,43,0.95);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  z-index: 1500;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: var(--transition-main);
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--color-gold);
  padding: 18px 25px 6px 16px;
  margin-top: 12px;
  margin-right: 5px;
  cursor: pointer;
  align-self: flex-end;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: rgba(200,200,200,0.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
  padding: 32px 44px 40px 36px;
}
.mobile-nav a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  border-radius: var(--radius-btn);
  padding: 10px 0;
  transition: color 0.15s, background 0.18s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(255,255,255,0.05);
  outline: none;
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =================== HERO STYLES ========================= */
.hero {
  background: linear-gradient(105deg, var(--color-secondary) 60%, #fff 100%);
  margin-bottom: 60px;
  padding-top: 48px;
  padding-bottom: 54px;
  border-bottom: 2px solid var(--color-gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 30px;
  max-width: 700px;
}

/* =================== TYPOGRAPHY ========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-accent);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.65rem; margin-top: 18px; }
h3 { font-size: 1.25rem; margin-top: 14px; }

p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
}
p {
  color: var(--color-accent);
}
strong {
  color: var(--color-primary);
  font-weight: 600;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-accent);
}
.text-section em {
  color: #795800;
  font-style: italic;
  font-size: 0.99em;
}

ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 18px;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--color-gold);
  border-radius: 50%;
  position: absolute;
  left: 1px; top: 9px;
}
ol li {
  list-style: decimal inside;
  padding-left: 0;
}
ol li:before { display: none; }

/* =================== BUTTONS ======================= */
.btn-primary {
  background: var(--color-gold);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: var(--radius-btn);
  padding: 13px 36px;
  box-shadow: var(--shadow-btn);
  transition: background var(--transition-main), color 0.17s, box-shadow 0.19s;
  cursor: pointer;
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 12px;
  outline: none;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #AD9848;
  color: var(--color-background);
  box-shadow: 0 3px 18px rgba(203,178,106,0.14);
  outline: 2px solid var(--color-gold);
}

/* ================= CARDS & FLEX CONTAINERS =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-base);
  position: relative;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 260px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.16s, box-shadow 0.18s;
  border-left: 4px solid var(--color-gold);
}
.card:hover,
.card:focus-within {
  transform: translateY(-2px) scale(1.017);
  box-shadow: 0 13px 30px rgba(203,178,106,0.16);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px 24px 28px;
  gap: 10px;
}

.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: 20px 32px;
  background: var(--color-secondary);
  border-left: 5px solid var(--color-gold);
  border-radius: var(--radius-base);
  margin-bottom: 22px;
  margin-top: 2px;
  max-width: 650px;
  box-shadow: 0 2px 20px rgba(36,55,43,0.07);
  color: var(--color-accent);
}
.testimonial-card p {
  font-size: 1.07em;
  color: var(--color-accent);
}
.testimonial-card strong {
  color: var(--color-primary);
  font-weight: 600;
}
@media (max-width: 620px) {
  .testimonial-card {
    padding: 18px 12px;
    font-size: 0.99em;
    max-width: 100%;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 16px 0;
}

/* ================= FOOTER ========================= */
footer {
  background: var(--color-footer-bg);
  color: var(--color-white);
  padding: 38px 0 24px 0;
  font-family: var(--font-body);
}
footer .container {
  flex-direction: column;
  gap: 16px;
}
footer nav {
  flex-direction: row;
  gap: 16px;
  margin-bottom: 13px;
  color: var(--color-white);
}
footer nav a {
  font-size: 15px;
  color: var(--color-white);
  border-radius: var(--radius-btn);
  padding: 6px 15px;
  transition: background 0.22s, color 0.15s;
}
footer nav a:hover {
  background: rgba(203,178,106,0.09);
  color: var(--color-gold);
}
footer .text-section {
  color: var(--color-white);
  gap: 3px;
  font-size: 15px;
}
footer .text-section a {
  color: var(--color-gold);
  text-decoration: underline;
  transition: color 0.2s;
}
footer .text-section a:hover, footer .text-section a:focus {
  color: #fff; text-decoration: underline;
}

/* ================= COOKIE CONSENT BANNER & MODAL ============= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-footer-bg);
  color: var(--color-white);
  z-index: 3200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  padding: 26px 16px 22px 16px;
  font-family: var(--font-body);
  box-shadow: 0 -4px 32px rgba(36,55,43,0.14);
  border-top: 2px solid var(--color-gold);
  min-height: 84px;
  animation: fadeInUp 0.95s cubic-bezier(0.21,0.7,0.4,1) 0.3s;
  animation-fill-mode: backwards;
}
@keyframes fadeInUp {
  from {opacity:0;transform: translateY(60px);} to {opacity:1;transform: translateY(0);}
}
.cookie-banner .cookie-text {
  font-size: 1.06em;
  max-width: 520px;
  color: var(--color-white);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-btn, .cookie-btn-settings {
  font-family: var(--font-display);
  border-radius: var(--radius-btn);
  padding: 10px 27px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  transition: background var(--transition-main), color 0.18s;
}
.cookie-btn-accept {
  background: var(--color-gold);
  color: var(--color-accent);
  font-weight: 600;
}
.cookie-btn-accept:hover { background: #AD9848; color: #fff; }
.cookie-btn-reject {
  background: #3d4b3d;
  color: #fff;
}
.cookie-btn-reject:hover { background: #24372B; color: var(--color-gold); }
.cookie-btn-settings {
  background: none;
  color: var(--color-gold);
  text-decoration: underline;
  border: 2px solid rgba(203,178,106,0.16);
}
.cookie-btn-settings:hover { background: rgba(36,125,73,0.08); color: var(--color-gold); }

@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 17px 10px 15px 10px;
  }
  .cookie-banner .cookie-buttons {
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; width:100vw; height:100vh;
  background: rgba(36,55,43,0.32);
  z-index: 3300;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--color-background);
  color: var(--color-accent);
  border-radius: 22px;
  padding: 36px 30px 30px 30px;
  min-width: 310px;
  max-width: 96vw;
  max-width: 440px;
  box-shadow: 0 7px 40px rgba(203,178,106,0.19);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeInUp 0.6s cubic-bezier(0.21,0.7,0.4,1);
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--color-accent);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1em;
}
.cookie-category label {
  color: var(--color-accent);
  font-size: 1em;
  font-weight: 500;
  cursor: pointer;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
  margin-right: 5px;
}
.cookie-category .category-fixed {
  color: var(--color-gold);
  font-size: 0.98em;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 7px;
}
.cookie-modal-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: color 0.2s;
}
.cookie-modal-close:hover {
  color: var(--color-primary);
}

/* =================== ANIMATIONS & EFFECTS ================== */
a, .btn-primary, .cookie-btn, .cookie-btn-settings, nav a, footer nav a {
  transition: color 0.17s, background 0.18s, box-shadow 0.17s, border 0.18s;
}

/* =================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1120px) {
  .container {
    max-width: 920px;
  }
  .card-container,
  .content-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .hero {
    padding-top: 28px;
    padding-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    margin-bottom: 34px;
    padding: 28px 6px;
    border-radius: 14px;
  }
  header .container {
    flex-direction: row;
    gap: 11px;
  }
}
@media (max-width: 720px) {
  .hero h1 { font-size: 1.42rem; }
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.11rem; }
  h3 { font-size: 0.99rem; }
}
@media (max-width: 700px) {
  .content-wrapper, .section, .card, .testimonial-card {
    padding: 0;
  }
  .text-image-section, .content-grid {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px;
  }
  .card-container {
    flex-direction: column !important;
    gap: 14px;
  }
}
@media (max-width: 520px) {
  .section {
    margin-bottom: 19px;
    padding: 12px 1px;
  }
  .btn-primary {
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 0.97rem;
  }
}

/* ============== VISUAL DETAILS / LUXURY HIGHLIGHTS =========== */
hr {
  border: none;
  border-top: 2px solid var(--color-gold);
  margin: 36px 0;
}
::selection {
  background: var(--color-gold);
  color: var(--color-accent);
}

/* Subtle gold underline for premium headings */
h2, .section h1 {
  position: relative;
  padding-bottom: 6px;
}
h2::after, .section h1::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 1.5px;
  margin-top: 5px;
}

/* ===================== MISC CLASSES ========================= */
/* Space between list items, testimonial cards, etc. */
ul, ol {
  margin-bottom: 20px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Utility: visually hidden (for accessibility) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* ============= END OF STYLES ============= */
