:root {
  --green: #2d8659;
  --green-deep: #226a45;
  --ink: #1f2430;
  --bg: #fbfaf6;
  --muted: #6b7280;
  --border: #e4e6e0;
  --white: #fff;
  --shadow-card: 0 8px 24px -12px rgba(31, 36, 48, .15);
  --shadow-elegant: 0 20px 50px -20px rgba(34, 106, 69, .35);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased
}

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

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.01em
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem)
}

h3 {
  font-size: 1.5rem
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem
}

/* Header */
#site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  transition: background .3s, box-shadow .3s
}

#site-header.scrolled {
  position: fixed;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06)
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  gap: 1rem
}

.logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  transition: color .3s
}

#site-header.scrolled .logo {
  color: var(--ink)
}

.logo-mark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 56px;
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1;
   gap: 0.4rem;
}

.logo-mark .g {
  color: #fff
}

#site-header.scrolled .logo-mark .g {
  color: var(--green)
}

.logo-mark .slash {
    display: block;
    width: 1px;
    height: 36px;
    margin: 0;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.7);
    transform: rotate(20deg);
}

#site-header.scrolled .logo-mark .slash {
  background: rgba(31, 36, 48, .6)
}

.logo-mark .d {
  color: #fff
}

#site-header.scrolled .logo-mark .d {
  color: var(--ink)
}

.logo-text {
  display: none;
  flex-direction: column;
  line-height: 1.1
}

@media(min-width:640px) {
  .logo-text {
    display: flex
  }
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff
}

#site-header.scrolled .logo-text strong {
  color: var(--green)
}

.logo-text small {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75)
}

#site-header.scrolled .logo-text small {
  color: var(--muted)
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .9)
}

#site-header.scrolled .nav-links {
  color: var(--ink)
}

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

@media(min-width:900px) {
  .nav-links {
    display: flex
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  transition: all .25s;
  text-align: center
}

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

.btn-primary:hover {
  background: var(--green-deep)
}

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

.btn-ghost:hover {
  background: rgba(255, 255, 255, .1)
}

.btn-white {
  background: #fff;
  color: var(--green)
}

.btn-white:hover {
  background: rgba(255, 255, 255, .9)
}

.btn-cta {
  display: none
}

@media(min-width:640px) {
  .btn-cta {
    display: inline-flex
  }
}

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

.burger span {
  width: 26px;
  height: 2px;
  background: #fff;
  transition: background .3s
}

#site-header.scrolled .burger span {
  background: var(--ink)
}

@media(min-width:900px) {
  .burger {
    display: none
  }
}

.nav-links.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: #fff;
  padding: 1.5rem;
  color: var(--ink);
  gap: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08)
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 134, 89, .92), rgba(31, 36, 48, .85));
  z-index: -1
}

.hero-content {
  color: #fff;
  padding: 8rem 1.5rem 5rem
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem
}

.chip .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  max-width: 800px
}

.hero h1 em {
  font-style: italic;
  color: rgba(255, 255, 255, .85);
  font-weight: 500
}

.hero p {
  margin-top: 1.5rem;
  max-width: 560px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .85)
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem
}
.d-none {
  display: none !important
}
.stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 720px;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .2)
}

@media(min-width:768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr)
  }
}

.stats dt {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600
}

.stats dd {
  margin-top: .35rem;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7)
}

/* Sections */
.section {
  padding: 6rem 0
}

@media(min-width:768px) {
  .section {
    padding: 8rem 0
  }
}

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green)
}

.eyebrow-light {
  color: var(--green)
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between
}

@media(min-width:768px) {
  .section-head {
    flex-direction: row;
    align-items: flex-end
  }
}

.section-head h2 {
  margin-top: .75rem;
  max-width: 640px
}

.lead {
  color: var(--muted);
  max-width: 360px
}

/* Cards */
.cards {
  margin-top: 3.5rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .cards {
    grid-template-columns: repeat(3, 1fr)
  }
}

.card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .3s, box-shadow .3s
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elegant)
}

.card-img {
  aspect-ratio: 4/3;
  overflow: hidden
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.card:hover .card-img img {
  transform: scale(1.05)
}

.card-body {
  padding: 1.75rem
}

.card-body p {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .92rem
}

.link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green)
}

.link:hover {
  color: var(--green-deep)
}

/* Dark section */
.section-dark {
  background: var(--ink);
  color: #fff
}

.on-dark {
  color: #fff;
  margin-top: .75rem
}

.on-dark-muted {
  color: rgba(255, 255, 255, .7);
  margin-top: 1rem;
  max-width: 600px
}

.steps {
  margin-top: 3.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  list-style: none
}

@media(min-width:640px) {
  .steps {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .steps {
    grid-template-columns: repeat(4, 1fr)
  }
}

.steps li {
  padding: 1.75rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .85rem;
  backdrop-filter: blur(6px)
}

.step-n {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--green)
}

.steps h3 {
  margin-top: 1rem
}

.steps p {
  margin-top: .5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7)
}

/* About */
.about-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center
  }
}

.about-img {
  position: relative
}

.about-img img {
  border-radius: 1rem;
  box-shadow: var(--shadow-elegant);
  width: 100%;
  height: 100%;
  object-fit: cover
}

.rating {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green);
  color: #fff;
  padding: 1.5rem;
  border-radius: .85rem;
  max-width: 220px;
  box-shadow: var(--shadow-elegant);
  display: none
}

@media(min-width:768px) {
  .rating {
    display: block
  }
}

.rating-score {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1
}

.rating-label {
  margin-top: .5rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .9
}

.about h2 {
  margin-top: .75rem
}

.about p {
  margin-top: 1.25rem;
  color: var(--muted)
}

.check-list {
  margin-top: 2rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .95rem
}

.check-list li {
  padding-left: 1.25rem;
  position: relative
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green)
}

/* Contact */
.section-primary {
  background: var(--green);
  color: #fff
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr
}

@media(min-width:768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr
  }
}

.section-primary p {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, .85);
  max-width: 420px
}

.contact-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: .9rem
}

.contact-info small {
  opacity: .7;
  display: block;
  margin-bottom: .15rem
}

.contact-info a {
  font-family: var(--font-display);
  font-size: 1.35rem
}

.contact-form {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .85)
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: .5rem;
  padding: .85rem 1rem;
  color: #fff;
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s;
  resize: none
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .5)
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff
}

.contact-form .row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr
}

@media(min-width:520px) {
  .contact-form .row {
    grid-template-columns: 1fr 1fr
  }
}

.form-msg {
  min-height: 1.2em;
  font-size: .85rem;
  color: #fff
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg)
}

.footer-inner {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--muted);
  text-align: center
}

@media(min-width:768px) {
  .footer-inner {
    flex-direction: row;
    text-align: left
  }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: .05em
}

.footer-inner a {
  margin-left: 1.25rem
}

.footer-inner a:first-of-type {
  margin-left: 0
}

.footer-inner a:hover {
  color: var(--ink)
}