/* 
==========================
RESET & BASE STYLES
========================== 
*/
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F5F6EB;
  color: #2F4B34;
}
body {
  background: #F5F6EB;
  color: #2F4B34;
  font-size: 16px;
  line-height: 1.56;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
b, strong {
  font-weight: 700;
}
a {
  color: #99814E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #bfad7a;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
hr {
  border: none;
  border-top: 1px solid #deddd0;
  margin: 32px 0;
}

/* ===============
TYPOGRAPHY SCALE
================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #2F4B34;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  line-height: 1.18;
}
h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2F4B34;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #2F4B34;
  margin-bottom: 8px;
  line-height: 1.24;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #2F4B34;
  margin-bottom: 8px;
}
p, li, span, label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #2F4B34;
  font-size: 1rem;
  line-height: 1.7;
}
.subtitle {
  font-size: 1.25rem;
  color: #8CADA3;
  margin-bottom: 16px;
  line-height: 1.4;
  font-weight: 400;
}

/*
============================
LUXURY PREMIUM BASE COLORS
============================
*/
:root {
  --brand-primary: #2F4B34; /* Deep green */
  --brand-secondary: #8CADA3; /* Muted mint */
  --brand-accent: #F5F6EB;  /* Pale background */
  --gold: #C2A052;    /* Gold accent */
  --gold-dark: #99814E; /* For hover/shadow */
  --text-main: #2F4B34;
  --text-secondary: #4D563F;
  --card-bg: #fff;
  --card-shadow: 0 4px 24px rgba(46, 37, 21, 0.08), 0 1.5px 6px 0 rgba(194, 160, 82, 0.06);
  --border-radius: 18px;
  --card-border: 1px solid #ede9da;
  --input-bg: #faf8f3;
  --input-border: #c2a052;
}

/*
=========================
LAYOUT CONTAINERS & SECTIONS
=========================
*/
.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
}

/*
=========================
NAVIGATION & HEADER
=========================
*/
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(47, 75, 52, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  justify-content: flex-start;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.2px;
  color: #2F4B34;
  padding: 8px 14px;
  border-radius: 10px;
  transition: color 0.2s, background 0.15s;
}
.main-nav > a.cta-btn {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 16px;
  font-weight: 600;
  padding: 10px 26px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 12px rgba(194, 160, 82, 0.08);
}
.main-nav > a.cta-btn:hover, .main-nav > a.cta-btn:focus {
  background: var(--gold);
  color: #2F4B34;
}
.main-nav > a:hover:not(.cta-btn), 
.main-nav > a:focus:not(.cta-btn) {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.main-nav img {
  height: 44px;
  margin-right: 28px;
}
@media (max-width: 960px) {
  .main-nav {
    gap: 14px;
  }
  .main-nav img {
    margin-right: 10px;
    height: 38px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

/* 
=========================
MOBILE NAVIGATION
========================= 
*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 26px;
  top: 22px;
  background: none;
  color: var(--brand-primary);
  font-size: 2.3rem;
  border: none;
  z-index: 140;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: var(--gold);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 200;
  background: rgba(47,75,52,0.90);
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.75,0,.15,1);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: 0 4px 60px 0 rgba(194,160,82, 0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 28px 34px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 210;
}
.mobile-menu-close:focus {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 48px 0 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.18rem;
  color: #fff;
  font-weight: 500;
  padding: 8px 0;
  border-radius: 10px;
  transition: background 0.12s, color 0.18s;
  min-width: 230px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold-dark);
  color: #fff3e0;
}

/*
==============================
MAIN LAYOUT/SECTION COMPONENTS
==============================
*/
section {
  background: none;
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
}
.section:last-child {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 4px 36px rgba(194,160,82,0.18), 0 1.5px 6px rgba(130,100,37,0.10);
  transform: translateY(-2px) scale(1.03);
}
.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) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/****************************
FEATURES, BENEFITS, CARDS (ICON LISTS)
****************************/
.feature-grid, .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li, .benefit-grid li {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  min-width: 235px;
  flex: 1 1 220px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
}
.feature-grid li:hover, .benefit-grid li:hover {
  box-shadow: 0 6px 36px rgba(194,160,82,0.15);
  transform: translateY(-2px) scale(1.035);
}
.feature-grid li img, .benefit-grid li img {
  height: 38px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px rgba(194,160,82,0.08));
}
.feature-grid li h3, .benefit-grid li h3 {
  color: var(--text-main);
  font-size: 1.23rem;
  font-weight: 600;
}
.feature-grid li p, .benefit-grid li p {
  color: var(--text-secondary);
  font-size: 1rem;
}
@media (max-width: 960px) {
  .feature-grid, .benefit-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .benefit-grid li {
    min-width: 0;
    width: 100%;
  }
}

/**********************
SPECIAL LAYOUT: ARTICLE GRID & BLOG
**********************/
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-card {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  min-width: 260px;
  flex: 1 1 240px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.blog-card:hover {
  box-shadow: 0 4px 32px rgba(194,160,82,0.13), 0 1.5px 6px rgba(130,100,37,0.11);
  transform: translateY(-1px) scale(1.025);
}

.article-summary {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--border-radius);
  padding: 26px 20px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.18s, transform 0.18s;
}
.article-summary:hover {
  box-shadow: 0 3px 18px rgba(194,160,82,0.14), 0 1.5px 6px rgba(130,100,37,0.10);
  transform: scale(1.02);
}
@media (max-width: 900px) {
  .blog-grid {
    flex-direction: column;
    gap: 20px;
  }
  .blog-card {
    min-width: 0;
    width: 100%;
  }
}

/**********************
CATEGORIES UL
***********************/
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin-top: 12px;
  margin-bottom: 0;
}
.categories-list li {
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 7px 18px;
}

/**********************
CALL TO ACTION BUTTONS
**********************/
.cta-btn,
.cta-btn:visited {
  display: inline-block;
  background: linear-gradient(90deg, var(--gold), #f3eac2 86%);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.14rem;
  padding: 12px 40px;
  border-radius: 21px;
  box-shadow: 0 2px 14px rgba(194,160,82,0.08);
  border: none;
  transition: background 0.23s, color 0.15s, box-shadow 0.19s, transform 0.13s;
  cursor: pointer;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 2px 30px rgba(194,160,82,0.20);
  transform: scale(1.036);
  outline: none;
}

/*******************
FOOTER
********************/
footer {
  background: #fff;
  box-shadow: 0 -2px 12px rgba(47, 75, 52, 0.04);
  font-size: 1rem;
  color: #2F4B34;
  padding: 0;
  margin-top: 40px;
}
footer .container {
  padding-top: 28px;
  padding-bottom: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
footer nav a {
  color: #99814E;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--brand-primary);
}
.brand-credits {
  font-size: 0.97rem;
  color: #9b9a91;
  margin-top: 4px;
  line-height: 1.7;
}

/*******************
TESTIMONIAL CARD
*******************/
.testimonial-card {
  background: #fff;
  border: 1.5px solid #deddd0;
  box-shadow: 0 2px 18px rgba(47, 75, 52, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  margin-bottom: 20px;
  max-width: 700px;
  color: #26220c;
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-style: italic;
  position: relative;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-style: normal;
  color: #816E40;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(194,160,82,0.12);
  transform: scale(1.017);
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    padding: 14px 12px;
    gap: 8px;
  }
}

/*******************
CONTENT-ONLY TEXT SECTION
*******************/
.text-section ul,
.text-section ol {
  margin-left: 22px;
  margin-bottom: 15px;
}
.text-section li {
  margin-bottom: 10px;
  color: var(--text-secondary);
}
.text-section h3 {
  margin-top: 19px;
  margin-bottom: 12px;
  font-size: 1.18rem;
}
.text-section p,
.text-section ul,
.text-section ol {
  font-size: 1rem;
}

/*******************
FORMS & INPUTS (Newsletter etc.)
*******************/
input,
select,
textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  border-radius: 11px;
  border: 1.2px solid var(--input-border);
  padding: 12px 18px;
  outline: none;
  background: var(--input-bg);
  margin-bottom: 10px;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(194,160,82,0.13);
}

/*******************
UTILITY CLASSES & GENERAL SPACING
*******************/
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mt-32 { margin-top: 32px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-60 { margin-bottom: 60px !important; }
.pt-40 { padding-top: 40px !important; }

/*******************
COOKIE CONSENT BANNER & MODAL
*******************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffefb;
  color: #2F4B34;
  border-top: 2px solid #c2a052;
  box-shadow: 0 -6px 48px 0 rgba(46,37,21, .07);
  z-index: 3500;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 20px 18px 20px 36px;
  justify-content: space-between;
  transition: transform 0.32s;
  font-size: 0.95rem;
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner__text {
  flex: 1 1 380px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn, .cookie-btn:visited {
  padding: 9px 22px;
  border-radius: 13px;
  border: 1px solid var(--gold-dark);
  background: #faf8f3;
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.17s, color 0.15s, border 0.16s, transform 0.13s;
  cursor: pointer;
  margin-right: 2px;
}
.cookie-btn.accept {
  background: var(--gold);
  color: #fff;
  border: 1px solid var(--gold);
  font-weight: 600;
}
.cookie-btn.accept:hover {
  background: var(--gold-dark);
  color: #fff;
  box-shadow: 0 2px 16px rgba(194,160,82, 0.13);
  transform: scale(1.03);
}
.cookie-btn.reject {
  background: #edeade;
  color: var(--brand-primary);
}
.cookie-btn.reject:hover {
  background: #e0dbc2;
  color: #816E40;
}
.cookie-btn.settings {
  background: none;
  color: #99814E;
  border: 1.1px solid #99814E;
}
.cookie-btn.settings:hover {
  background: #f3eac2;
  color: var(--brand-primary);
}
@media (max-width: 660px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 8px 18px 12px;
  }
  .cookie-banner__text {
    margin-bottom: 10px;
  }
}

.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4100;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(47,75,52, .52);
  animation: fadein 0.25s;
}
.cookie-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadein {
  from { opacity: 0; } 
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 9px 54px rgba(47,75,52, .19);
  border: 1.5px solid #ede9da;
  min-width: 320px;
  max-width: 95vw;
  padding: 38px 36px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.cookie-modal h3 {
  font-size: 1.32rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1.14rem;
  margin-bottom: 7px;
}
.cookie-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-group input[type=checkbox] {
  accent-color: var(--gold);
  width: 20px;
  height: 20px;
  border-radius: 5px;
  margin-right: 7px;
}
.cookie-preference-info {
  color: #726C5F;
  font-size: 0.97rem;
  margin-bottom: 10px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  align-items: center;
}
.cookie-modal .cookie-btn {
  min-width: 120px;
}

/*******************
MEDIA QUERIES – RESPONSIVENESS
*******************/
@media (max-width: 680px) {
  .container {
    max-width: 99vw;
    padding: 0 4vw;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  h3 {
    font-size: 1.04rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 11px 17px;
  }
}

/*******************
ACCESSIBILITY
*******************/
:focus {
  outline: 2px solid #C2A052;
  outline-offset: 2px;
}

/*******************
MICRO-INTERACTIONS
*******************/
.card, .testimonial-card, .blog-card, .article-summary {
  transition: box-shadow 0.18s, transform 0.17s;
}
.cta-btn, .cookie-btn {
  transition: background 0.18s, box-shadow 0.19s, color 0.13s, transform 0.13s;
}

/*******************
CUSTOM SCROLLBAR (luxury accent)
*******************/
::-webkit-scrollbar {
  width: 10px;
  background: #fcf8ee;
}
::-webkit-scrollbar-thumb {
  background: #c2a052;
  border-radius: 6px;
}
/* End of CSS */
