/* --- 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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #23231A;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  outline: none;
}
button, .cta {
  cursor: pointer;
}

/* --- BRAND COLORS & FONTS (Luxury Premium / Gold Accents) --- */
:root {
  --primary: #30634A;
  --secondary: #F7ECD0;
  --accent: #236B8E;
  --gold: #CFB883;
  --offwhite: #FBF9F3;
  --charcoal: #23231A;
  --text-light: #fff;
  --shadow: 0 4px 24px rgba(48,99,74,0.09);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition: all 0.25s cubic-bezier(.77,0,.18,1);
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700;900&display=swap');

body {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  background-color: var(--offwhite);
  color: var(--charcoal);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1.13;
  margin-bottom: 10px;
  font-weight: 900;
}

h1 {
  font-size: 2.5rem; /* 40px */
}
h2 {
  font-size: 2rem;   /* 32px */
}
h3 {
  font-size: 1.5rem; /* 24px */
}
h4 {
  font-size: 1.25rem;/* 20px */
}
p, ul, ol, a, li{
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.12px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* --- LAYOUT -- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  background: none;
  box-shadow: none;
  padding: 0;
}

/* --- HEADER / NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(48, 99, 74, 0.07);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
  padding: 0 24px;
}
.logo img {
  height: 48px;
  max-width: 140px;
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1 1 auto;
  justify-content: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .6px;
  position: relative;
  color: var(--primary);
  padding: 6px 0;
  transition: color 0.16s;
  margin: 0 0px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
}

.cta.primary {
  background: var(--primary);
  color: var(--text-light);
  border-radius: var(--radius-md);
  padding: 11px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: .6px;
  border: none;
  box-shadow: 0 7px 22px rgba(48,99,74,.10);
  transition: var(--transition);
  margin-left: 12px;
  display: inline-block;
  position: relative;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 14px 28px rgba(207,184,131,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* --- HAMBURGER & MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--text-light);
  font-size: 2.2rem;
  border-radius: var(--radius-sm);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background .14s;
  margin-left: 12px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--gold);
  color: var(--primary);
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(35,35,26,0.91);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: var(--transition);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  animation: menuSlideIn .34s cubic-bezier(.77,0,.18,1);
}
@keyframes menuSlideIn {
  0% { opacity: 0; transform: translateX(40vw); }
  100% { opacity: 1; transform: translateX(0); }
}
.mobile-menu-close {
  background: var(--gold);
  color: var(--primary);
  border-radius: var(--radius-md);
  font-size: 2rem;
  padding: 9px 15px;
  align-self: flex-end;
  margin: 24px 32px 0 0;
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 42px;
  align-items: center;
  width: 100%;
}
.mobile-nav a {
  color: var(--text-light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .8px;
  padding: 19px 0 19px 0;
  width: 100vw;
  text-align: center;
  border-bottom: 1px solid rgba(247,236,208,.15);
  transition: background .13s, color .13s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--primary);
}

/* --- HERO SECTION --- */
.hero {
  padding: 64px 0 30px 0;
  background:
    linear-gradient(50deg, var(--secondary) 70%, rgba(207,184,131,0.05) 100%),
    var(--offwhite);
  box-shadow: 0 8px 44px 0 rgba(207,184,131,0.09);
  border-bottom: 5px solid var(--gold);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.hero h2 {
  font-size: 1.55rem;
  color: var(--gold);
  font-weight: 700;
}
.hero p {
  color: var(--charcoal);
  max-width: 540px;
}
.hero .cta {
  margin-top: 24px;
  font-size: 1.15rem;
}

/* --- FEATURE GRID: .feature-grid / .feature-item --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 1.7px solid var(--gold);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px rgba(207,184,131,0.08);
  padding: 28px 18px 22px 18px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .18s, transform .18s, border .18s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: var(--radius-sm);
  background: #FFF;
  box-shadow: 0 2px 8px rgba(207,184,131,0.06);
}
.feature-item h3 {
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 5px;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 7px 24px rgba(207,184,131,0.22);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.02);
}

/* --- CARD & FLEX LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 14px rgba(207,184,131,0.13);
  padding: 24px 20px 20px 24px;
  min-width: 240px;
  flex: 1 1 240px;
  border: 1.6px solid var(--primary);
  transition: box-shadow .15s, transform .15s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 36px rgba(48,99,74,0.14);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.015);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
}

/* --- TESTIMONIALS --- */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 24px rgba(48,99,74, 0.13);
  border: 1.5px solid var(--gold);
  min-width: 260px;
  max-width: 415px;
  flex: 1 1 260px;
}
.testimonial-card p {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 1.11rem;
  font-style: italic;
  text-align: left;
  min-height: 56px;
}
.testimonial-card span {
  font-size: 1em;
  color: var(--accent);
  letter-spacing: .2px;
}
.testimonial-card strong {
  color: var(--primary);
}

/* --- ARTICLE-LIST & FILTERS (Articles) --- */
.filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 22px 0;
}
.filters ul {
  display: flex;
  gap: 10px;
}
.filters a {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius-sm);
  padding: 6px 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 700;
  transition: background .16s, color .16s;
  border: 1.2px solid var(--primary);
}
.filters a:hover, .filters a.active {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 16px 0 30px 0;
}
.article-list li {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 20px 22px;
  box-shadow: 0 3px 14px rgba(48,99,74,0.11);
  border: 1.1px solid var(--gold);
  margin-bottom: 20px;
  transition: box-shadow .13s;
}
.article-list li h3 {
  margin-bottom: 7px;
  font-size: 1.18rem;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--primary);
  color: var(--text-light);
  padding: 7px 26px;
  border-radius: var(--radius-sm);
  font-size: 1em;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background .13s, color .13s;
}
.read-more:hover, .read-more:focus {
  background: var(--gold);
  color: var(--primary);
}

.popular-articles {
  margin-top: 32px;
  padding: 15px 15px 12px 18px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  border-left: 3.5px solid var(--gold);
}
.popular-articles h4 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 800;
}

/* --- CONTACT DETAILS & MAP --- */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--charcoal);
}
.contact-details img {
  width: 32px; height: 32px;
}

.map {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--primary);
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 2.5px solid var(--gold);
  padding: 32px 0 0 0;
  margin-top: 60px;
  box-shadow: 0 -1px 20px rgba(48,99,74,0.055);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: .4px;
  border-bottom: 2px solid transparent;
  transition: color .13s, border .13s;
  padding-bottom: 5px;
  margin-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
footer address {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--charcoal);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: var(--secondary);
  border-radius: var(--radius-sm);
  padding: 18px 15px 10px 16px;
  margin: 0 auto 4px auto;
  max-width: 650px;
  box-shadow: 0 2px 8px rgba(207,184,131,0.06);
}
footer address img {
  width: 24px; height: 24px;
  margin-right: 6px;
}
footer address a {
  color: var(--accent);
  font-size: 1em;
  font-weight: 700;
  text-decoration: underline dotted 2px;
}
footer address a:hover, footer address a:focus {
  color: var(--gold);
  text-decoration: underline solid 2px;
}
footer address span {
  display: inline-block;
  margin-top: 10px;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -3px 24px rgba(48,99,74,0.14);
  padding: 24px 10vw 18px 10vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  animation: cookieSlideIn .3s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieSlideIn {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: var(--charcoal);
  font-size: 1.05em;
  flex: 2 1 320px;
}
.cookie-actions {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 10px 23px;
  font-size: 1em;
  border: none;
  outline: none;
  min-width: 130px;
  box-shadow: 0 2px 8px rgba(207,184,131,0.09);
  transition: background .18s, color .18s;
}
.cookie-accept {
  background: var(--primary);
  color: var(--text-light);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--gold);
  color: var(--primary);
}
.cookie-reject {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}
.cookie-settings {
  background: var(--gold);
  color: var(--primary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--primary);
  color: var(--text-light);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,35,26,.85);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .3s cubic-bezier(.77,0,.18,1);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  min-width: 340px;
  max-width: 96vw;
  padding: 38px 34px 28px 34px;
  box-shadow: 0 6px 30px rgba(48,99,74,0.16), 0 0 0 8px rgba(207,184,131,0.07);
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: modalPopIn .32s cubic-bezier(.77,0,.18,1);
}
@keyframes modalPopIn {
  0% { transform: scale(.93); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1em;
  color: var(--charcoal);
  min-width: 130px;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 8px;
  border: 2.2px solid var(--primary);
  outline: none;
  transition: border .15s, background .15s;
  background: #fff;
  position: relative;
  cursor: pointer;
}
.cookie-category input[type="checkbox"]:checked {
  background: var(--primary);
  border-color: var(--gold);
}
.cookie-category input[type="checkbox"]:checked:after {
  content: '';
  display: block;
  width: 11.5px; height: 11.5px;
  background: var(--gold);
  border-radius: 4px;
  position: absolute;
  left: 4.2px; top: 4.2px;
}
.cookie-category input[disabled] {
  background: #efede7;
  border-color: #cec5ae;
  cursor: not-allowed;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/* --- MEDIA QUERIES (RESPONSIVE DESIGN) --- */
@media (max-width: 1100px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}
@media (max-width: 992px) {
  .main-nav {
    gap: 18px;
  }
  .feature-grid {
    gap: 18px;
    justify-content: flex-start;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 15px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {

  /* --- LAYOUT CHANGES --- */
  .container {
    padding: 0 11px;
  }
  .content-grid, .card-container, .feature-grid, .testimonials {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .section {
    margin-bottom: 38px;
    padding: 29px 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    padding: 40px 0 17px 0;
  }

  /* --- NAVIGATION --- */
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* --- COOKIES & FOOTER --- */
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 7vw 18px 7vw;
    font-size: .96em;
  }
  footer .container {
    gap: 9px;
    padding: 0 7px;
  }
  .footer-nav {
    justify-content: flex-start;
    gap: 10px;
  }
  footer address {
    padding: 10px 8px 5px 9px;
    gap: 8px;
  }
  .feature-item,
  .card,
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
  .article-list li {
    padding: 16px 7px 16px;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .cookie-modal {
    min-width: 0;
    padding: 22px 5vw 20px 5vw;
  }
}

/* --- UTILITIES --- */
.mt-2 { margin-top: 18px !important; }
.mb-4 { margin-bottom: 32px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* --- SCROLLBARS --- */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}
body::-webkit-scrollbar-track {
  background: var(--secondary);
}

/* --- MICRO-INTERACTIONS --- */
a, button, .cta {
  transition: color 0.13s, background 0.13s, box-shadow 0.19s, transform 0.17s;
}
.feature-item, .card, .article-list li, .testimonial-card {
  transition: box-shadow 0.15s, border 0.13s, transform 0.14s;
}

/* --- ACCESSIBILITY: FOCUS --- */
a:focus, button:focus, .cta:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
  background: rgba(247,236,208,.34);
}

/* --- END --- */