/* Chameleons Living Art — static rebuild (polished) */
:root {
  --bg-home:         #9ACD32;
  --bg-home-2:       #A9D746;
  --bg-page:         #ffffff;
  --header:          #000000;
  --header-text:     #ffffff;
  --nav-hover:       #b4d455;
  --nav-active:      #3D9E0E;
  --heading-green:   #2E9B3A;
  --accent-warm:     #F4A340;
  --text:            #1a1e21;
  --muted:           #5b6469;
  --footer:          #0f0f0f;
  --footer-2:        #1a1a1a;
  --card-bar:        #ffffff;
  --page-band:       #f5f6f4;
  --border:          #e7e9e5;
  --shadow-sm:       0 2px 6px rgba(0,0,0,.06);
  --shadow-md:       0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:       0 18px 50px rgba(0,0,0,.18);
  --shadow-xl:       0 30px 80px rgba(0,0,0,.28);
  --font-heading:    'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:       'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --container:       1200px;
  --header-h:        88px;
  --radius:          6px;
  --ease-out:        cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-page);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--heading-green); text-decoration: none; transition: color .2s var(--ease-out); }
a:hover { color: var(--nav-active); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  margin: 0 0 .6em;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.015em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p  { margin: 0 0 1em; }
::selection { background: var(--nav-active); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header);
  color: var(--header-text);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
}
.header-inner {
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 14px;
  color: var(--header-text);
  font-family: var(--font-heading);
  text-decoration: none;
  transition: opacity .2s var(--ease-out);
}
.brand:hover { opacity: .9; color: var(--header-text); }
.brand-mark {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(154,205,50,.15), rgba(46,155,58,.25));
  border: 2px solid var(--heading-green);
  border-radius: 50%;
  color: var(--heading-green);
  font-size: 22px;
  transition: transform .3s var(--ease-out);
}
.brand:hover .brand-mark { transform: rotate(-8deg); }
.brand-name {
  font-weight: 800;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand-name small {
  display: block;
  font-weight: 500;
  font-size: 10px;
  color: #8a8a8a;
  letter-spacing: .32em;
  margin-top: 4px;
  text-transform: uppercase;
}

/* nav */
.primary-nav { display: flex; align-items: center; }
.nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; gap: 2px;
  align-items: center;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  position: relative;
  display: inline-block;
  padding: 12px 14px;
  color: var(--header-text);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: color .2s var(--ease-out);
}
.nav-list > li > a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 6px;
  height: 2px;
  background: var(--nav-active);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s var(--ease-out);
}
.nav-list > li > a:hover,
.nav-list > li > a.active { color: var(--nav-active); }
.nav-list > li > a:hover::after,
.nav-list > li > a.active::after { transform: scaleX(1); }

/* dropdowns */
.has-sub > a { padding-right: 20px; }
.has-sub > a::before {
  content: "\25BE";
  position: absolute;
  right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 9px;
  opacity: .6;
  transition: transform .2s ease;
}
.has-sub:hover > a::before { transform: translateY(-50%) rotate(180deg); }
.sub-menu {
  position: absolute;
  top: calc(100% + 4px); left: 0;
  min-width: 280px;
  background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  border-top: 3px solid var(--nav-active);
  padding: 10px 0;
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all .22s var(--ease-out);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 4px 4px;
}
.has-sub:hover > .sub-menu,
.has-sub:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.sub-menu a {
  display: block;
  padding: 11px 20px;
  color: #d0d0d0;
  font-family: var(--font-body);
  font-size: 13.5px;
  letter-spacing: .03em;
  text-transform: none;
  border-left: 3px solid transparent;
  transition: all .18s var(--ease-out);
}
.sub-menu a:hover {
  color: #fff;
  background: rgba(154,205,50,.08);
  border-left-color: var(--nav-active);
  padding-left: 24px;
}

/* mobile nav */
.nav-toggle {
  display: none;
  background: transparent; border: 0;
  color: var(--header-text);
  font-size: 28px; cursor: pointer;
  padding: 6px 8px;
}
@media (max-width: 1023px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    background: #0d0d0d;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .28s var(--ease-out);
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-list > li > a { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid #1a1a1a; }
  .nav-list > li > a::after { display: none; }
  .sub-menu {
    position: static; opacity: 1; visibility: visible;
    transform: none; box-shadow: none;
    background: rgba(255,255,255,.03);
    border-top: 0;
    padding: 4px 0 8px 12px;
    border-radius: 0;
  }
  .has-sub > a::before { display: none; }
}

/* ===== HERO SLIDER ===== */
.hero {
  background: linear-gradient(180deg, var(--bg-home) 0%, var(--bg-home-2) 100%);
  padding: 46px 0 90px;
  position: relative;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.hero::before { top: -80px; left: -80px; }
.hero::after { bottom: -100px; right: -100px; width: 320px; height: 320px; }

.hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  min-height: 460px;
  max-height: 680px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  background: #000;
}
@media (max-width: 767px) { .hero-slider { min-height: 400px; aspect-ratio: 3/4; } }
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s var(--ease-out);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.slide.active { opacity: 1; transform: scale(1); transition: opacity 1s var(--ease-out), transform 7s linear; }
.slide::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.40) 55%, rgba(0,0,0,.72) 100%);
}
.slide-caption {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.slide-kicker {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.slide-caption h2 {
  color: #fff;
  font-size: clamp(1.9rem, 5.2vw, 3.8rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0,0,0,.55);
  margin-bottom: 26px;
  max-width: 900px;
  font-weight: 800;
}
.slide-caption .btn { margin-top: 8px; }

.slider-dots {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 12px;
}
.slider-dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.45);
  padding: 0; cursor: pointer;
  transition: all .25s var(--ease-out);
}
.slider-dots button:hover { background: rgba(255,255,255,.75); }
.slider-dots button.active {
  background: #fff;
  width: 32px;
  border-radius: 5px;
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: 20px; cursor: pointer;
  display: grid; place-items: center;
  transition: all .25s var(--ease-out);
  backdrop-filter: blur(6px);
}
.slider-arrow:hover { background: var(--nav-active); border-color: var(--nav-active); }
.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }
@media (max-width: 767px) {
  .slider-arrow { width: 40px; height: 40px; font-size: 16px; }
  .slider-arrow.prev { left: 10px; }
  .slider-arrow.next { right: 10px; }
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 3px;
  cursor: pointer;
  transition: all .25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn:hover { background: #fff; color: var(--header); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.28); }
.btn-solid {
  background: var(--nav-active);
  border-color: var(--nav-active);
  color: #fff;
}
.btn-solid:hover {
  background: var(--heading-green);
  border-color: var(--heading-green);
  color: #fff;
}
.btn-ghost {
  color: var(--heading-green);
  border-color: var(--heading-green);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--heading-green);
  color: #fff;
  border-color: var(--heading-green);
}

/* ===== 3-CARD CTA ROW ===== */
.card-row {
  background: linear-gradient(180deg, var(--bg-home-2) 0%, var(--bg-home) 100%);
  padding: 0 0 90px;
  position: relative;
  z-index: 1;
}
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}
.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  display: block;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.82) 100%);
  transition: opacity .3s ease;
}
.card:hover::before { background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.88) 100%); }
.card-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #fff 100%);
  padding: 20px 24px;
  z-index: 2;
  transition: padding .3s var(--ease-out);
}
.card-bar::before {
  content: "";
  position: absolute;
  top: 0; left: 24px;
  width: 42px; height: 3px;
  background: var(--nav-active);
  transform: translateY(-50%);
}
.card-bar h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
}
.card-bar h3::after {
  content: "\2192";
  font-size: 18px;
  color: var(--nav-active);
  transition: transform .3s var(--ease-out);
}
.card:hover .card-bar h3::after { transform: translateX(6px); }
@media (max-width: 767px) { .cards-3 { grid-template-columns: 1fr; } }

/* ===== SECTION HEADINGS ===== */
.section { padding: 80px 0; }
.section-title {
  color: var(--heading-green);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: "";
  width: 32px; height: 2px;
  background: var(--nav-active);
}
.section-heading {
  color: var(--text);
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  margin-bottom: 22px;
  line-height: 1.1;
}

/* ===== PAGE TITLE BAND ===== */
.page-band {
  background: linear-gradient(180deg, #fbfbfa 0%, var(--page-band) 100%);
  padding: 65px 0 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-band::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--nav-active);
  border-radius: 3px;
}
.page-band .container { text-align: center; }
.page-band .kicker {
  color: var(--heading-green);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.page-band .kicker::before, .page-band .kicker::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--heading-green);
  opacity: .5;
}
.page-band h1 { margin: 0 0 12px; color: var(--text); }
.page-band .breadcrumb {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 10px;
}
.page-band .breadcrumb a { color: var(--muted); }
.page-band .breadcrumb a:hover { color: var(--nav-active); }

/* ===== INNER PAGE LAYOUT (with sidebar) ===== */
.inner-page { padding: 70px 0 90px; }
.inner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 900px) { .inner-grid { grid-template-columns: 1fr; gap: 40px; } }
.main-col h2 { color: var(--text); margin-top: 44px; }
.main-col h2:first-child { margin-top: 0; }
.main-col h3 { color: var(--heading-green); font-size: 1.35rem; }

/* Sidebar bio */
.sidebar { align-self: start; }
.sidebar-card {
  background: linear-gradient(180deg, #fcfcfa 0%, #f8f8f5 100%);
  border: 1px solid var(--border);
  padding: 30px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.sidebar-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--nav-active) 0%, var(--bg-home) 100%);
}
.sidebar-card .kicker {
  color: var(--heading-green);
  font-family: var(--font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sidebar-card h3 {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 16px;
  line-height: 1.2;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-card h3 i {
  color: var(--nav-active);
  font-size: 20px;
}
.sidebar-card p {
  font-size: 14px; line-height: 1.68; color: var(--muted);
  margin-bottom: 14px;
}
.sidebar-card .tip-box {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, var(--bg-home) 0%, var(--bg-home-2) 100%);
  border-radius: 4px;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.sidebar-card .tip-box::before {
  content: "\f004";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -8px; top: -10px;
  font-size: 62px;
  color: rgba(0,0,0,.06);
}
.sidebar-card .tip-box strong {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
  color: #0d0d0d;
}
.sidebar-card .tip-box a { color: #0d0d0d; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.sidebar-card .tip-box a:hover { color: var(--footer); }

/* ===== SPECIES GRID ===== */
.species-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
}
.species-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #eee;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  color: #fff;
  text-decoration: none;
  display: block;
  border-radius: var(--radius);
}
.species-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  color: #fff;
}
.species-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.species-card:hover img { transform: scale(1.06); }
.species-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.90) 100%);
  display: flex; align-items: flex-end;
  padding: 24px;
}
.species-card .overlay h3 {
  color: #fff;
  font-size: 19px;
  letter-spacing: .03em;
  margin: 0;
  line-height: 1.25;
  font-weight: 700;
}
.species-card .overlay em {
  display: block;
  font-style: italic;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.88);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: .01em;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: zoom-in;
  background: #eee;
  border-radius: 3px;
  position: relative;
}
.gallery-item::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  color: #fff;
  background: rgba(0,0,0,.35);
  display: grid; place-items: center;
  font-size: 22px;
  opacity: 0;
  transition: opacity .25s var(--ease-out);
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }

/* When the grid is inside inner-grid main-col (has sidebar), keep tiles reasonable */
.inner-grid .gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 40px 20px;
  backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  box-shadow: 0 0 60px rgba(0,0,0,.6);
  border-radius: 4px;
}
.lightbox-close, .lightbox-arrow {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  cursor: pointer;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 22px;
  display: grid; place-items: center;
  transition: all .2s var(--ease-out);
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-close:hover, .lightbox-arrow:hover { background: var(--nav-active); border-color: var(--nav-active); }
.lightbox-arrow.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-arrow.next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ===== CARD RESOURCE LIST (Care page) ===== */
.resource-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.resource-list li {
  padding: 18px 22px;
  background: #fafbf8;
  border-left: 4px solid var(--nav-active);
  border-radius: 3px;
  transition: all .25s var(--ease-out);
}
.resource-list li:hover {
  background: #f4f7ee;
  transform: translateX(4px);
}
.resource-list li strong { color: var(--text); }

/* ===== RESOURCE CARDS (Care page grid) ===== */
.res-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.res-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 26px 22px;
  text-decoration: none;
  color: var(--text);
  transition: all .25s var(--ease-out);
  display: block;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.res-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--nav-active);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.res-card:hover {
  border-color: var(--nav-active);
  box-shadow: var(--shadow-md);
  color: var(--text);
  transform: translateY(-3px);
}
.res-card:hover::before { transform: scaleX(1); }
.res-card i {
  color: var(--nav-active);
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}
.res-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}
.res-card p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ===== FEATURED (Home intro block) ===== */
.intro-block {
  background: #fff;
  padding: 90px 0;
  position: relative;
}
.intro-block::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 4px;
  background: var(--nav-active);
  border-radius: 4px;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: grid;
  gap: 18px;
  max-width: 600px;
}
.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: all .2s var(--ease-out);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--nav-active);
  box-shadow: 0 0 0 3px rgba(46,155,58,.14);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form button {
  justify-self: start;
  background: var(--nav-active);
  color: #fff;
  border: 0;
  padding: 15px 40px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease-out);
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(46,155,58,.28);
}
.contact-form button:hover {
  background: var(--heading-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(46,155,58,.36);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.contact-info div {
  display: flex; align-items: center; gap: 14px;
  color: var(--text);
  padding: 12px 16px;
  background: #fafbf8;
  border-radius: 4px;
  border-left: 3px solid var(--nav-active);
}
.contact-info i {
  color: var(--nav-active);
  width: 22px; text-align: center;
  font-size: 16px;
}
.contact-info a { color: var(--text); font-weight: 600; }
.contact-info a:hover { color: var(--nav-active); }

/* ===== FOOTER ===== */
.site-footer {
  background: linear-gradient(180deg, var(--footer-2) 0%, var(--footer) 100%);
  color: #a0a5a8;
  padding: 70px 0 30px;
  font-size: 14px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
}
.footer-col h5 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  margin: 0 0 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h5::after {
  content: "";
  position: absolute; bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--nav-active);
}
.footer-brand-line {
  display: flex; align-items: center; gap: 12px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand-line i {
  color: var(--nav-active);
  font-size: 20px;
}
.footer-col p {
  color: #a0a5a8;
  line-height: 1.65;
  font-size: 13.5px;
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.footer-col ul a {
  color: #c4c8ca;
  font-size: 13.5px;
  transition: all .18s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul a::before {
  content: "\203A";
  color: var(--nav-active);
  font-weight: 700;
  transition: transform .18s var(--ease-out);
}
.footer-col ul a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-bottom {
  max-width: var(--container);
  margin: 50px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.socials {
  display: flex; gap: 10px;
}
.socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  color: #c4c8ca; border-radius: 50%;
  transition: all .22s var(--ease-out);
  font-size: 14px;
}
.socials a:hover {
  background: var(--nav-active);
  color: #fff;
  transform: translateY(-2px);
}
.copyright {
  color: #7c8388;
  font-size: 13px;
  letter-spacing: .02em;
}
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== SCROLL TO TOP ===== */
.to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--nav-active);
  color: #fff;
  display: grid; place-items: center;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all .3s var(--ease-out);
  z-index: 90;
}
.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover { background: var(--heading-green); transform: translateY(-4px); }

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.small-note {
  font-size: 13.5px;
  color: var(--muted);
  font-style: italic;
}
.draft-tag {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-left: 6px;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 40px 0;
}
