/* -------------------------------------------------
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F3F6F0;
  color: #225944;
  line-height: 1.6;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  display: block;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
}
button { cursor: pointer; }

/* --- Font Faces (Google Fonts) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #225944;
  line-height: 1.2;
}
h1 { font-size: 2.8rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.12rem; margin-bottom: 6px; }
p, ul, ol { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
}

strong, b { font-weight: 700; }

/* -------------------------------------------------
   BRAND COLORS (CSS Custom Properties)
---------------------------------------------------*/
:root {
  --primary: #225944;
  --secondary: #88B04B;
  --accent: #F3F6F0;
  --text-dark: #225944;
  --text-light: #fff;

  --pastel-pink: #FFE5EC;
  --pastel-mint: #D7F9F1;
  --pastel-yellow: #FFF9E5;
  --pastel-blue: #DFECF4;
  --pastel-lavender: #F2E9FB;
  --pastel-green: #E2F7DF;

  --box-shadow: 0 4px 24px rgba(34, 89, 68, 0.07);
  --border-radius: 18px;
  --transition: all 0.24s cubic-bezier(.42,0,.58,1);
}

/* -------------------------------------------------
   CONTAINER + LAYOUT FLEX PATTERNS
---------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 25px 6px;
    margin-bottom: 38px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background: var(--pastel-blue);
  padding: 26px 22px;
  position: relative;
  transition: box-shadow var(--transition), transform .15s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(34, 89, 68, 0.16);
  transform: translateY(-2px) scale(1.011);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

.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: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-mint);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px rgba(34, 89, 68, 0.05);
  margin-bottom: 20px;
  max-width: 600px;
  transition: box-shadow var(--transition), background .2s;
}
.testimonial-card:hover {
  background: var(--pastel-blue);
  box-shadow: 0 4px 22px rgba(34, 89, 68, 0.12);
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 600;
  opacity: 0.85;
}
blockquote {
  font-size: 1.13rem;
  line-height: 1.6;
  color: #225944;
  quotes: none;
}

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

/* -------------------------------------
   HEADER & NAVIGATION BAR
----------------------------------------*/
header {
  background: linear-gradient(90deg, var(--pastel-green), var(--pastel-mint));
  box-shadow: 0 2px 16px rgba(34, 89, 68, 0.045);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 0;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 2px;
  transition: color .18s;
}

.main-nav a.cta-primary {
  background: var(--secondary);
  color: var(--text-light);
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 14px;
  box-shadow: 0 2px 8px 0 rgba(34,89,68,0.07);
  transition: background var(--transition), color var(--transition);
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: var(--primary);
  color: var(--accent);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background .19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--primary);
  color: var(--accent);
}

@media (max-width: 1024px) {
  .main-nav a {font-size: 0.98rem;}
  header .container {min-height: 60px;}
}
@media (max-width: 920px) {
  .main-nav {gap:20px;}
}
@media (max-width: 768px) {
  .main-nav {display: none;}
  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
  }
}

/* -------------------------------------
   MOBILE MENU (BURGER MENU OVERLAY)
----------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(220,242,234,.96);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.65,-0.01,.38,1.07);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  margin: 24px 22px 10px auto;
  align-self: flex-end;
  transition: background .19s;
  z-index: 2;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: var(--pastel-mint);
}
.mobile-nav {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 8px 0 8px;
}
.mobile-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.23rem;
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 22px;
  transition: background .19s, color .17s;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}

@media (min-width: 769px) {
  .mobile-menu {display: none !important;}
}

/* ------------------------------------
   HERO SECTION
---------------------------------------*/
.hero {
  background: linear-gradient(120deg, var(--pastel-green) 70%, var(--pastel-blue) 100%);
  padding: 42px 0 38px 0;
  display: flex;
  align-items: center;
  width: 100%;
}
.hero .container { align-items: stretch; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 640px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
  text-shadow: 0 2px 22px rgba(145,212,184, 0.11);
  margin-bottom: 3px;
}
.hero p {
  color: #569179;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .hero {
    padding: 24px 0 20px 0;
  }
  .hero h1 { font-size: 1.37rem; }
  .hero .content-wrapper {
    align-items: stretch;
  }
}

/* ------------------------------------
   FEATURES SECTION
---------------------------------------*/
.features {
  background: linear-gradient(120deg, var(--pastel-blue) 62%, var(--pastel-green) 100%);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.feature {
  flex: 1 1 220px;
  min-width: 210px;
  background: var(--pastel-yellow);
  padding: 28px 20px 21px 20px;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 18px rgba(34, 89, 68, 0.07);
  /* No abs pos */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .18s, background .15s;
}
.feature img {
  width: 42px; height: 42px; margin-bottom: 8px;
  filter: none;
}
.feature:hover {
  background: var(--pastel-mint);
  box-shadow: 0 6px 21px rgba(150, 187, 124, 0.16);
}
@media (max-width: 768px) {
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
}

/* -----------------------------------
   ABOUT / TEAM / PHILOSOPHY SECTION
-------------------------------------*/
.text-section {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section h2 { font-size: 2rem; }
.text-section h3 { font-size: 1.1rem; color: var(--secondary); margin-top: 13px; }
.text-section ul, .text-section ol {
  margin-left: 18px;
  font-size: 1rem;
  line-height: 1.62;
}
.text-section li {
  margin-bottom: 8px;
  padding-left: 0;
  list-style: disc inside;
}

/* -----------------------------------
   PROJECT/PROJECT-CATEGORY LAYOUT
-------------------------------------*/
.project-category {
  margin-bottom: 40px;
  background: var(--pastel-lavender);
  border-radius: var(--border-radius);
  padding: 26px 20px 13px 20px;
  box-shadow: 0 2px 20px rgba(70, 142, 84, 0.04);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project-category h3 { color: var(--primary); font-size: 1.23rem; }
.project-category h4 { font-size: 1.06rem; margin-top: 7px; }

/* -------------------------------------
   BLOG ENTRIES
----------------------------------------*/
.blog-entry {
  background: var(--pastel-blue);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 22px 18px;
  margin-bottom: 24px;
  transition: box-shadow .17s, background .16s;
}
.blog-entry:hover {
  background: var(--pastel-mint);
  box-shadow: 0 6px 18px rgba(116,151,111, 0.13);
}


/* ------------------------------------
   MAP PLACEHOLDER
--------------------------------------*/
.map-placeholder {
  background: var(--pastel-green);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  box-shadow: 0 2px 20px rgba(120, 180, 70, 0.08);
  color: #3b6252;
  font-size: 1.1rem;
  font-style: italic;
}

/* ------------------------------------
   CTA BANNER
--------------------------------------*/
.cta-banner {
  background: linear-gradient(96deg, var(--pastel-mint) 70%, var(--pastel-yellow) 100%);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 32px rgba(136, 176, 75, 0.08);
  padding: 35px 0;
  margin-bottom: 36px;
}
.cta-banner .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cta-banner p {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .cta-banner .content-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    text-align: left;
  }
}

.cta-primary {
  background: var(--secondary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 800;
  padding: 13px 34px;
  border-radius: 24px;
  box-shadow: 0 2px 8px #bbe4a3b4;
  outline: none;
  border: none;
  display: inline-block;
  transition: background var(--transition), color var(--transition), transform .15s;
  margin-top: 7px;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--pastel-yellow);
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: var(--pastel-pink);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 22px;
  box-shadow: 0 1px 4px rgba(221,123,156,0.08);
  outline: none; border: none;
  display: inline-block;
  transition: background var(--transition), color var(--transition);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: #fff;
}

/* ----------------------------------
   FOOTER
-------------------------------------*/
footer {
  background: linear-gradient(90deg, var(--pastel-blue) 70%, var(--pastel-green) 100%);
  color: var(--primary);
  box-shadow: 0 -1px 12px rgba(34,89,68,0.04);
  padding: 32px 0 14px 0;
  margin-top: 64px;
}
footer .container { gap: 0; }
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px;
}
footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
footer .footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  opacity: 0.86;
  transition: color .17s, opacity .14s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus {
  color: var(--secondary);
  opacity: 1;
  text-decoration: underline;
}
footer p {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.92;
  font-size: 0.96rem;
  margin-bottom: 8px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 8px;
}
.footer-social a img {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--pastel-mint);
  transition: filter .19s, box-shadow .16s;
  box-shadow: 0 2px 12px #bbe4a342;
}
.footer-social a:hover img {
  filter: brightness(1.2) drop-shadow(0 2px 10px #22594422);
}
@media (max-width: 1024px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}

/* -----------------------------------
   GENERAL LISTS/OL/UL/LINKS
-------------------------------------*/
ul, ol {
  padding-left: 28px;
  margin-bottom: 8px;
}
ul li, ol li {
  margin-bottom: 7px;
  line-height: 1.57;
}

/* -----------------------------------
   FORM, INPUTS, ETC (if needed)
-------------------------------------*/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid #cee5cd;
  background: #fff;
  color: var(--primary);
  padding: 12px 14px;
  margin-bottom: 16px;
  outline: none;
  transition: border .16s, box-shadow .14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 8px #d3f7e2b2;
}

/* ----------------------------------------------
   COOKIE CONSENT BANNER + MODAL
------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1600;
  background: var(--pastel-mint);
  color: var(--primary);
  box-shadow: 0 -2px 16px 0 #22594412;
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 5vw 24px 5vw;
  font-size: 1rem;
  animation: cookieFadeIn .7s cubic-bezier(.27,0,.24,1);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 3vw 70px 3vw;
    font-size: 0.97rem;
    gap: 13px;
  }
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  padding: 10px 24px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin-right: 0;
  border: none;
  transition: background .19s, color .16s;
}
.cookie-banner .cookie-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: var(--primary);
}
.cookie-banner .cookie-reject {
  background: var(--pastel-blue);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: var(--pastel-yellow);
  color: var(--primary);
  border: 1.5px solid var(--secondary);
  margin-left: 4px;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: var(--secondary);
  color: #fff;
}
@keyframes cookieFadeIn {
  from {opacity:0; transform:translateY(48px);}
  to {opacity:1; transform:translateY(0);}
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(60,89,68,0.26);
  z-index: 1700;
  display: flex;
  padding: 28px 0;
  align-items: flex-end;
  justify-content: center;
  animation: cookieModalIn .3s cubic-bezier(.48,0,.37,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-dialog {
  background: var(--pastel-lavender);
  color: var(--primary);
  border-radius: 20px 20px 0 0;
  padding: 38px 28px 24px 28px;
  min-width: 320px; max-width: 90vw;
  box-shadow: 0 8px 40px rgba(60,124,111,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookiePanelIn .38s cubic-bezier(.69,0,.41,1);
}
@keyframes cookiePanelIn {
  from { opacity: 0; transform:translateY(48px);}
  to { opacity: 1; transform:translateY(0);}
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--primary);
  color: var(--pastel-mint);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  background: #fff;
  border: 1px solid #d9eedd;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  justify-content: space-between;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
}
.cookie-toggle {
  width: 42px; height: 24px;
  background: var(--pastel-blue);
  border-radius: 14px;
  position: relative;
  display: inline-block;
  cursor: pointer;
  transition: background .2s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius:50%;
  background: var(--secondary);
  transition: left .2s, background .2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 20px;
  background: var(--primary);
}
.cookie-category.essential {
  opacity: 1;
  background: var(--pastel-green);
}
.cookie-category.essential label { color: var(--primary); }
.cookie-category.essential .cookie-toggle {
  opacity: .6; pointer-events: none;
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 19px;
  margin-top: 10px;
}
.cookie-modal-actions button {
  padding: 11px 30px;
}

@media (max-width: 500px) {
  .cookie-modal-dialog { padding: 26px 4vw 9px 4vw; min-width: 0; }
}

/* -------------------------------------
   MEDIA QUERIES FOR RESPONSIVENESS
---------------------------------------*/
@media (max-width: 600px) {
  .container { padding: 0 6px; }
  .section { padding: 14px 2px; }
}

@media (max-width: 400px) {
  .hero h1, h1 { font-size: 1.08rem; }
}

/* ------------------------------------------------
   CUSTOM MICRO-INTERACTIONS
--------------------------------------------------*/
button, .cta-primary, .cta-secondary, .cookie-banner button {
  transition: background var(--transition), color var(--transition), box-shadow .17s, transform .14s;
}
button:active, .cta-primary:active, .cta-secondary:active {
  transform: scale(0.96);
}

a, .footer-nav a {
  outline: none;
}
a:focus-visible {
  outline: 2px dotted var(--secondary);
}

/* ------------------------------------------------
   ACCESSIBILITY/READABILITY TWEAKS
--------------------------------------------------*/
.testimonial-card, blockquote, .testimonial-meta, .card {
  color: #17422c;
  background-blend-mode: multiply;
  /* Readable on soft backgrounds */
}

/* ------------------------------------------------
   UTILITIES (MARGIN, SPACING, ETC)
--------------------------------------------------*/
.mt-2 { margin-top: 2px; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-20 { margin-bottom: 20px; }

/* --- Hide class (for cookie/modal toggling) --- */
.hide { display: none !important; }

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