/* ----------------------------------------------------
   CSS RESET & ROOT VARIABLES
---------------------------------------------------- */
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;
  box-sizing: border-box;
  vertical-align: baseline;
}
html { line-height: 1; -webkit-font-smoothing: antialiased; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; }
img { max-width: 100%; display: block; height: auto; }

:root {
  --color-primary: #25552A;
  --color-secondary: #27986A;
  --color-accent: #F6F8EB;
  --color-text: #212220;
  --color-white: #fff;
  --color-gold: #C1A863;
  --color-gold-dark: #AD9251;
  --color-bg: #FAFBF7;
  --color-grey: #97A496;
  --radius-base: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 6px 24px rgba(37, 85, 42, 0.08);
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Arial', sans-serif;
  --transition: all 0.22s cubic-bezier(.36,.51,.53,1);
}

@media (max-width: 450px) {
  html { font-size: 15px; }
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
}

/* ----------------------------------------------------
   LUXURY PREMIUM TYPOGRAPHY
---------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 { font-size: 2.6rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 7px; }
h4 { font-size: 1.10rem; }
.subtitle {
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 16px;
  font-weight: 500;
}

p, li, blockquote {
  font-family: var(--font-body);
  color: var(--color-text);
  font-size: 1rem;
  margin-bottom: 8px;
}
strong {
  color: var(--color-primary);
  font-weight: 600;
}
blockquote {
  font-style: italic;
  background: var(--color-accent);
  border-left: 4px solid var(--color-gold);
  padding: 14px 18px;
  margin: 0 0 7px 0;
  color: var(--color-primary);
  border-radius: var(--radius-base);
}

/* Luxury premium gold underline for main headings */
h1, h2 {
  position: relative;
}
h1:not(.section-title)::after, h2:not(.section-title)::after {
  content: '';
  display: block;
  margin-top: 10px;
  height: 3px;
  width: 44px;
  border-radius: 3px;
  background: var(--color-gold);
}

/* ----------------------------------------------------
   FLEX LAYOUTS & CONTAINERS
---------------------------------------------------- */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* Section spacing: as required */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

@media (max-width: 768px) {
  section, .section {
    padding: 30px 9px;
    margin-bottom: 34px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

.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;
    gap: 15px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Flex classes for various utilities (for future-proofing) */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }

/* ----------------------------------------------------
   NAVIGATION BAR & HEADER
---------------------------------------------------- */
header {
  background: var(--color-white);
  box-shadow: 0 2px 14px 0 rgba(37,85,42,.03);
  padding: 0 0 0 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 15;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 18px 0 18px 0;
  justify-content: flex-start;
}
.main-nav a {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 22px;
  transition: var(--transition);
  color: var(--color-primary);
  font-weight: 500;
  background: transparent;
  position: relative;
}
.main-nav a.cta-btn {
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 30px;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(193, 168, 99, 0.10);
  border: 2px solid var(--color-gold-dark);
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: var(--color-gold-dark);
  border-color: var(--color-gold);
  color: var(--color-white);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.main-nav img {
  height: 38px;
  margin-right: 10px;
}

@media (max-width: 970px) {
  .main-nav {
    flex-wrap: wrap;
    gap: 3px;
    padding-left: 0;
  }
  .main-nav a {
    padding: 7px 10px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  header {
    padding: 0;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  border-radius: 6px;
  padding: 7px 13px;
  margin: 9px;
  z-index: 110;
  transition: var(--transition);
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 7px;
    right: 12px;
    box-shadow: 0 2px 8px rgba(37,85,42,.06);
  }
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(37,85,42,.87);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 120;
  transform: translateX(-110vw);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--color-gold);
  font-size: 2.1rem;
  margin: 24px 0 0 18px;
  align-self: flex-start;
  cursor: pointer;
  z-index: 121;
  transition: var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-gold-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  margin: 40px 0 0 32px;
}
.mobile-nav a {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 9px 0;
  border-radius: 0;
  transition: color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  border-left: 4px solid var(--color-gold);
  padding-left: 12px;
}

/* ----------------------------------------------------
   HERO BANNER/SECTION
---------------------------------------------------- */
.hero {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(37,85,42,0.14);
  margin-bottom: 56px;
  padding: 56px 0 56px 0;
}
.hero h1, .hero .subtitle {
  color: var(--color-white);
}
.hero h1::after {
  background: var(--color-gold);
}
.hero .cta-btn {
  background: var(--color-gold);
  color: var(--color-primary);
  margin-top: 18px;
  font-size: 1.07rem;
}
@media (max-width: 786px) {
  .hero {
    padding: 36px 0 32px 0;
    margin-bottom: 24px;
  }
}

/* ----------------------------------------------------
   CTA BUTTONS
---------------------------------------------------- */
.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.075rem;
  border-radius: 30px;
  box-shadow: 0 2px 14px rgba(193,168,99,0.13);
  border: 2px solid var(--color-gold-dark);
  outline: none;
  cursor: pointer;
  margin-top: 10px;
  letter-spacing: 0.03em;
  transition: var(--transition);
  text-shadow: 0 1px 7px rgba(247, 228, 180, .07);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  border-color: var(--color-gold);
  color: var(--color-white);
  box-shadow: 0 4px 24px rgba(37,85,42,0.2);
  transform: translateY(-2px) scale(1.013);
}

/* ----------------------------------------------------
   FEATURE/CARDS PREVIEW SECTIONS
---------------------------------------------------- */
.features {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px rgba(193,168,99,0.03);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 18px 0 0 0;
}
.feature-grid li {
  flex: 1 1 205px;
  min-width: 205px;
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 4px solid var(--color-gold);
  transition: var(--transition), box-shadow .13s;
}
.feature-grid li:hover {
  box-shadow: 0 12px 38px rgba(37, 85, 42, 0.13);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}
.feature-grid img {
  width: 48px; height: 48px; margin-bottom: 16px;
  filter: drop-shadow(0 2px 7px rgba(37,85,42,0.11));
}
.feature-grid h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin-bottom: 5px;
  font-family: var(--font-display);
}

/* SERVICE CARDS */
.service-cards, .project-cards, .news-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 18px 0;
  justify-content: flex-start;
}
.service-card, .project-card, .news-card {
  flex: 1 1 285px;
  min-width: 225px;
  background: var(--color-white);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  padding: 20px 18px 17px 18px;
  margin-bottom: 20px;
  border-left: 4px solid var(--color-gold);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition), box-shadow .12s;
}
.service-card:hover, .project-card:hover, .news-card:hover {
  box-shadow: 0 8px 30px rgba(37, 85, 42, 0.14);
  border-color: var(--color-secondary);
  transform: translateY(-2px) scale(1.01);
}
.service-card h3, .project-card h3, .news-card h3 {
  color: var(--color-primary);
  font-size: 1.02rem;
  font-family: var(--font-display);
}

/* ----------------------------------------------------
   TABLE & LISTS
---------------------------------------------------- */
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 22px;
  font-size: 0.98rem;
  font-family: var(--font-body);
  background: var(--color-white);
  border-radius: var(--radius-base);
  overflow:hidden;
  box-shadow: var(--shadow-card);
}
.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid #ececec;
  padding: 14px 12px;
  text-align: left;
}
.pricing-table th {
  background: var(--color-accent);
  font-weight: 700;
  color: var(--color-secondary);
}
.pricing-table td {
  color: var(--color-primary);
}

.price {
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-left: 7px;
}

ul, ol {
  margin: 0 0 17px 23px;
  line-height: 1.7;
}
ul li::marker { color: var(--color-gold); }
ol li::marker { color: var(--color-secondary); }

/* ----------------------------------------------------
   TESTIMONIALS
---------------------------------------------------- */
.testimonials {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
}
.testimonial-card {
  background: var(--color-white);
  color: var(--color-text);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--color-gold);
  margin-bottom: 20px;
  min-width: 233px;
  margin-top: 23px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 20px;
}
.testimonial-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 32px rgba(37, 85, 42, 0.16);
}
.testimonial-name {
  color: var(--color-gold-dark);
  font-weight: 500;
  font-size: 1rem;
  font-family: var(--font-display);
  margin-top: 2px;
}

/* ----------------------------------------------------
   GENERIC SECTION PREVIEWS & CTAs
---------------------------------------------------- */
.about-teaser, .services-preview, .projects-preview, .cta, .community-events, .partnerships, .values, .privacy-policy, .cookies-policy, .gdpr-compliance, .terms-of-use, .thank-you {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
}
.about-teaser a, .projects-preview a, .services-preview a, .cta a, .thank-you a {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline;
  margin-top: 6px;
  transition: color .2s, text-shadow .22s;
}
.about-teaser a:hover, .projects-preview a:hover {
  color: var(--color-secondary);
  text-shadow: 0 1px 8px rgba(39, 152, 106, 0.07);
}
.cta {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(37,85,42,0.08);
}
.cta h2, .cta .cta-text {
  color: var(--color-primary);
}
.cta .cta-btn {
  margin-top: 17px;
  margin-bottom: 0;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
footer {
  background: var(--color-primary);
  padding: 38px 0 0 0;
  box-shadow: 0 -2px 14px rgba(37,85,42,0.03);
  color: var(--color-white);
  margin-top: 77px;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 23px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: color .2s;
  padding: 5.5px 0;
  border-bottom: 2px solid transparent;
  margin-bottom: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-gold);
}
.brand-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}
.brand-footer img {
  width: 38px; height: 38px;
  filter: drop-shadow(0 2px 6px rgba(37, 85, 42, 0.09));
}
.brand-footer span {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 0.97rem;
  font-weight: 500;
}

/* ----------------------------------------------------
   RESPONSIVE (MOBILE-FIRST)
---------------------------------------------------- */
@media (max-width: 990px) {
  .container { max-width: 98vw; }
  .service-cards, .project-cards, .news-cards, .feature-grid {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .content-wrapper { gap: 9px; }
  .service-cards, .project-cards, .news-cards, .feature-grid {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 576px) {
  .container { padding: 0 2.5vw; }
  .footer-nav { gap: 11px; }
}

/* Hide brand-footer image/text on very small screens */
@media (max-width: 420px) {
  .brand-footer img { display: none; }
  .brand-footer span { font-size: 0.88rem; }
}

/* ----------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 20px 16px 18px 16px;
  background: var(--color-white);
  box-shadow: 0 -2px 18px rgba(193, 168, 99, 0.12), 0 -1px 0 #eee;
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  justify-content: center;
  transition: transform .35s cubic-bezier(.4,.8,.24,1), opacity .28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-text {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  flex: 2 2 260px;
  margin-right: 12px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  padding: 10px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 24px;
  font-size: 1rem;
  border: 2px solid var(--color-gold);
  background: var(--color-gold);
  color: var(--color-primary);
  margin-right: 0;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.cookie-btn.reject {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.cookie-btn.settings {
  background: var(--color-white);
  color: var(--color-gold-dark);
  border-style: dashed;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}

@media (max-width: 800px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 13px; padding: 22px 10px; }
  .cookie-banner-buttons { justify-content: flex-start; }
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  z-index: 2500;
  background: rgba(37,85,42,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition: opacity .22s;
}
.cookie-modal.hidden {
  opacity: 0; pointer-events: none; visibility: hidden;
}
.cookie-modal-window {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px rgba(37,85,42,0.25);
  padding: 30px 24px 28px 24px;
  max-width: 370px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 15px; top: 12px;
  background: transparent;
  border: none;
  font-size: 1.9rem;
  color: var(--color-gold-dark);
  cursor: pointer;
  transition: color .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-secondary);
}
.cookie-modal-title {
  font-size: 1.20rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}
.cookie-category input[type=checkbox] {
  width: 20px; height: 20px; accent-color: var(--color-gold);
}
.cookie-category.essential label {
  color: var(--color-secondary);
  font-weight: 600;
}
.cookie-category .cookie-desc {
  font-size: 0.89rem;
  color: var(--color-grey);
  margin-left: 8px;
}

/* ----------------------------------------------------
   ANIMATION/MICRO-INTERACTIONS
---------------------------------------------------- */
.cta-btn, .main-nav a, .feature-grid li, .service-card, .project-card, .testimonial-card, .news-card {
  transition: var(--transition);
}
.cta-btn:active, .main-nav a:active, .feature-grid li:active, .service-card:active, .news-card:active {
  transform: scale(0.98);
}

input, textarea, select {
  border: 1.5px solid #dbdbdb;
  border-radius: 7px;
  padding: 10.5px 15px;
  margin-bottom: 18px;
  font-size: 1rem;
  transition: border-color 0.18s;
  background: var(--color-accent);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-gold-dark);
  background: var(--color-white);
}

/* ----------------------------------------------------
   ACCESSIBILITY & COLOR CONTRAST FOR TESTIMONIALS
---------------------------------------------------- */
.testimonial-card,
.testimonials {
  color: var(--color-text);
  background: var(--color-white);
}
.testimonial-card blockquote {
  color: var(--color-primary);
}

/* -------------------------------------------
   PAGE SPECIFIC: THANK YOU / PRIVACY ETC
------------------------------------------- */
.thank-you-message {
  color: var(--color-secondary);
  font-size: 1.13rem;
  font-family: var(--font-display);
  margin-bottom: 18px;
  margin-top: 11px;
}

/* -------------------------------------------
   GENERAL UTILITIES/HELPERS
------------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 13px;
}
.summary-text {
  color: var(--color-secondary);
  font-size: 1.04rem;
}

/* Hide display only visually, remains accessible */
.sr-only {
  border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px;
}


/* ----------------------------------------------------
   END OF STYLE.CSS
---------------------------------------------------- */