:root {
  --green-950: #071b10;
  --green-900: #0c2a1a;
  --green-800: #12452a;
  --green-700: #1a5e37;
  --green-600: #217a47;
  --green-500: #2f9b5c;
  --gold-600: #a9812f;
  --gold-500: #c79a3c;
  --gold-400: #d9b45a;
  --gold-300: #e8cd82;
  --cream: #f6f3ea;
  --cream-2: #ece5d5;
  --ink: #111d15;
  --muted: #586b5f;
  --white: #ffffff;
  --wa: #25d366;
  --wa-dark: #053d1c;
  --shadow-sm: 0 4px 18px rgba(12, 42, 26, .08);
  --shadow-md: 0 22px 54px rgba(12, 42, 26, .16);
  --shadow-lg: 0 44px 100px rgba(7, 27, 16, .30);
  --radius: 26px;
  --radius-sm: 16px;
  --gold-grad: linear-gradient(135deg, #e8cd82 0%, #c79a3c 48%, #a9812f 100%);
  --green-grad: linear-gradient(155deg, #12452a 0%, #071b10 100%);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --container: 1240px;
  --topbar-h: 42px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

ul {
  margin: 0;
  padding: 0;
  list-style: none
}

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

.section {
  padding: 110px 0;
  position: relative
}

.bg-cream {
  background: var(--cream)
}

.bg-cream-2 {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%)
}

.bg-white {
  background: var(--white)
}

.bg-dark {
  background: var(--green-950);
  color: #fff
}

.tag-italic {
  font-family: var(--serif);
  font-style: italic
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 800;
  font-size: .74rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 12px
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px
}

.eyebrow.center {
  justify-content: center
}

.eyebrow.light {
  color: var(--gold-400)
}

.section-head {
  max-width: 680px;
  margin: 0 auto 60px;
  text-align: center
}

.section-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  margin: 18px 0 16px;
  color: var(--green-800)
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0
}

.section-head.light h2 {
  color: #fff
}

.section-head.light p {
  color: rgba(255, 255, 255, .8)
}

h2 em,
h3 em {
  font-style: italic;
  color: var(--gold-600)
}

.bg-dark h2 em {
  color: var(--gold-400)
}

.btn-nv {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .96rem;
  padding: 15px 32px;
  border-radius: 100px;
  cursor: pointer;
  border: none;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s, background .35s;
  position: relative;
  line-height: 1.2
}

.btn-gold {
  background: var(--gold-grad);
  color: #3a2c08;
  box-shadow: 0 10px 30px rgba(169, 129, 47, .4)
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(169, 129, 47, .52);
  color: #3a2c08
}

.btn-green {
  background: var(--green-grad);
  color: #fff;
  box-shadow: var(--shadow-sm)
}

.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  color: #fff
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .5)
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff
}

.btn-ghost-dark {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid rgba(18, 69, 42, .3)
}

.btn-ghost-dark:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff
}

.btn-wa {
  background: var(--wa);
  color: var(--wa-dark);
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4)
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(37, 211, 102, .55);
  color: var(--wa-dark)
}

.btn-nv i {
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, .2, 1)
}

.reveal-l {
  opacity: 0;
  transform: translateX(-46px);
  transition: opacity 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, .2, 1)
}

.reveal-r {
  opacity: 0;
  transform: translateX(46px);
  transition: opacity 1s cubic-bezier(.2, .8, .2, 1), transform 1s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in,
.reveal-l.in,
.reveal-r.in {
  opacity: 1;
  transform: none
}

@media (prefers-reduced-motion:reduce) {

  .reveal,
  .reveal-l,
  .reveal-r {
    opacity: 1 !important;
    transform: none !important;
    transition: none
  }
}

.marquee {
  background: var(--gold-grad);
  overflow: hidden;
  padding: 16px 0
}

.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite
}

.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 600;
  color: #3a2c08;
  display: inline-flex;
  align-items: center;
  gap: 56px
}

.marquee-track span::after {
  content: "\2726";
  font-style: normal;
  font-size: .8rem;
  opacity: .6
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .6)
  }

  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0)
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, .82);
  font-size: .8rem;
  font-weight: 500
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px
}

.topbar a {
  transition: color .3s
}

.topbar a:hover {
  color: var(--gold-400)
}

.tb-left {
  display: flex;
  gap: 24px;
  flex-wrap: wrap
}

.tb-left span {
  display: inline-flex;
  align-items: center;
  gap: 7px
}

.tb-right {
  display: flex;
  gap: 14px;
  align-items: center
}

.topbar i {
  font-size: 14px;
  color: var(--gold-400);
  line-height: 1
}

.tb-24 {
  color: var(--gold-400);
  font-weight: 700;
  letter-spacing: .05em
}

.tb-social {
  display: flex;
  gap: 8px
}

.tb-social a {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.tb-social a:hover {
  background: var(--gold-grad);
  border-color: transparent;
  color: #3a2c08
}

.tb-social i {
  color: currentColor;
  font-size: 13px;
  line-height: 1
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(246, 243, 234, .8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 69, 42, .08);
  transition: box-shadow .4s, background .4s
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(246, 243, 234, .97)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-sm)
}

.brand-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.05
}

.brand-txt .b1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.16rem;
  color: var(--green-800);
  letter-spacing: .01em
}

.brand-txt .b1 em {
  font-style: normal;
  color: var(--gold-600)
}

.brand-txt .b2 {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center
}

.nav-links a {
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
  transition: width .35s
}

.nav-links a:hover {
  color: var(--green-700)
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown>.dropdown-toggle i {
  font-size: 10px;
  line-height: 1;
  transition: transform .3s ease;
}

.nav-dropdown:hover>.dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-toggle::after {
  display: none !important;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  min-width: 280px;
  padding: 10px;
  transform: translateX(-50%);
  background: rgba(246, 243, 234, .98);
  border: 1px solid rgba(18, 69, 42, .10);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: rgba(246, 243, 234, .98);
  border-left: 1px solid rgba(18, 69, 42, .10);
  border-top: 1px solid rgba(18, 69, 42, .10);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown .dropdown-menu li {
  margin: 0;
  padding: 0;
}

.nav-dropdown .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 11px 14px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
  transition:
    background .25s ease,
    color .25s ease,
    padding-left .25s ease;
}

.nav-dropdown .dropdown-menu li a::after {
  display: none;
}

.nav-dropdown .dropdown-menu li a:hover {
  background: var(--green-800);
  color: #fff;
  padding-left: 18px;
}

.nav-links a.active {
  color: var(--green-700)
}

.mobile-services {
  margin: 0;
  padding: 4px 0 8px 16px;
  border-left: 2px solid var(--gold-400);
}

.mobile-services a {
  display: block;
  padding: 10px 0;
  color: rgba(255, 255, 255, .65);
  font-size: .92rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition:
    color .25s ease,
    padding-left .25s ease;
}

.mobile-services a:last-child {
  border-bottom: none;
}

.mobile-services a:hover {
  color: var(--gold-400);
  padding-left: 6px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px
}

.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--green-800);
  border-radius: 3px;
  transition: .3s
}

.mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 84%;
  max-width: 350px;
  height: 100vh;
  background: var(--green-950);
  z-index: 999;
  padding: 92px 32px 32px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1);
  box-shadow: var(--shadow-lg);
  overflow-y: auto
}

.mobile-menu.open {
  transform: none
}

.mobile-menu a {
  display: block;
  color: #fff;
  font-size: 1.14rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold-400)
}

.mobile-menu .btn-wa {
  margin-top: 26px;
  width: 100%;
  justify-content: center;
  display: inline-flex
}

.mm-close {
  position: absolute;
  top: 26px;
  right: 26px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7, 27, 16, .55);
  z-index: 998;
  backdrop-filter: blur(2px)
}

.menu-overlay.open {
  display: block
}

.page-hero {
  position: relative;
  background: var(--green-950);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 100px
}

.page-hero .ph-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.page-hero .ph-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(7, 27, 16, .94) 0%, rgba(7, 27, 16, .72) 60%, rgba(18, 69, 42, .55) 100%)
}

.page-hero .ph-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 18% 30%, rgba(47, 155, 92, .35), transparent 45%), radial-gradient(circle at 85% 90%, rgba(216, 180, 90, .22), transparent 45%);
  pointer-events: none
}

.page-hero .wrap {
  position: relative;
  z-index: 2;
  text-align: center
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  margin: 20px 0 16px;
  letter-spacing: -.03em
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-400)
}

.page-hero p {
  color: rgba(255, 255, 255, .82);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem
}

.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: .86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .02em
}

.crumbs a {
  color: var(--gold-300)
}

.crumbs a:hover {
  color: #fff
}

.crumbs .sep {
  opacity: .5
}

.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, .75);
  padding: 76px 0 0
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 46px;
  padding-bottom: 54px
}

.foot-brand .brand {
  margin-bottom: 20px
}

.foot-brand .brand img {
  border: 1px solid rgba(255, 255, 255, .12)
}

.foot-brand .brand-txt .b1 {
  color: #fff
}

.foot-brand .brand-txt .b1 em {
  color: var(--gold-400)
}

.foot-brand .brand-txt .b2 {
  color: rgba(255, 255, 255, .55)
}

.foot-brand p {
  font-size: .92rem;
  color: rgba(255, 255, 255, .62);
  max-width: 310px;
  margin-bottom: 22px
}

.foot-social {
  display: flex;
  gap: 12px
}

.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s
}

.foot-social a:hover {
  background: var(--gold-grad);
  border-color: transparent;
  transform: translateY(-3px);
  color: #3a2c08
}

.foot-social i {
  font-size: 17px;
  color: currentColor;
  line-height: 1
}

.site-footer h5 {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.14rem;
  font-weight: 600;
  margin-bottom: 20px
}

.foot-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.foot-col a {
  font-size: .92rem;
  color: rgba(255, 255, 255, .66);
  transition: color .3s, padding .3s
}

.foot-col a:hover {
  color: var(--gold-400);
  padding-left: 5px
}

.foot-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .92rem;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, .72)
}

.foot-contact i {
  font-size: 17px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1
}

.foot-contact a {
  color: inherit
}

.foot-contact a:hover {
  color: var(--gold-400)
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .84rem;
  color: rgba(255, 255, 255, .5)
}

.foot-bottom .tagline {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-400)
}

.foot-bottom a {
  color: inherit
}

.foot-bottom a:hover {
  color: var(--gold-400)
}

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 950;
  display: flex;
  align-items: center;
  background: var(--wa);
  color: var(--wa-dark);
  border-radius: 100px;
  padding: 15px;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .5);
  font-weight: 700;
  overflow: hidden;
  transition: padding .4s, gap .4s
}

.wa-float i {
  font-size: 28px;
  flex-shrink: 0;
  color: var(--wa-dark);
  line-height: 1
}

.wa-float .txt {
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width .4s, margin .4s;
  font-size: .95rem
}

.wa-float:hover .txt {
  max-width: 140px;
  margin-left: 8px
}

.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid var(--wa);
  animation: waRing 2.4s ease-out infinite
}

@keyframes waRing {
  0% {
    transform: scale(1);
    opacity: .7
  }

  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

.scrolltop {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 940;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s, transform .4s;
  box-shadow: var(--shadow-md)
}

.scrolltop.show {
  opacity: 1;
  pointer-events: auto
}

.scrolltop:hover {
  transform: translateY(-4px)
}

.scrolltop i {
  font-size: 20px;
  color: var(--gold-400);
  line-height: 1
}

.accred {
  background: var(--green-900);
  padding: 64px 0
}

.accred .lead-txt {
  text-align: center;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 34px
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px
}

.accred-item {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  padding: 26px 18px;
  text-align: center;
  transition: transform .35s, border-color .35s
}

.accred-item:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 180, 90, .4)
}

.accred-item .ic {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(47, 155, 92, .2), rgba(216, 180, 90, .24));
  display: flex;
  align-items: center;
  justify-content: center
}

.accred-item .ic i {
  font-size: 26px;
  color: var(--gold-300);
  line-height: 1
}

.accred-item b {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.02rem;
  margin-bottom: 3px
}

.accred-item small {
  color: rgba(255, 255, 255, .6);
  font-size: .78rem
}

.cta-band {
  position: relative;
  background: var(--green-950);
  color: #fff;
  overflow: hidden
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(47, 155, 92, .3), transparent 45%), radial-gradient(circle at 85% 85%, rgba(216, 180, 90, .22), transparent 45%);
  pointer-events: none
}

.cta-band .wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0 14px
}

.cta-band h2 em {
  font-style: italic;
  color: var(--gold-400)
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
  margin: 0 auto 30px;
  max-width: 600px
}

.cta-band .cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}