* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #30a473;
  --dark: #1F1F1F;
  --white: #f7f7f7;
  --transition: 0.3s;
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--dark);
  background: #D8EBE3;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* navbar section */
.navbar {
  background: var(--green);
  color: var(--white);
  width: 100%;
  padding: 1rem 5rem;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--dark);
  transition: color var(--transition);
}

.nav-links a:hover {
  font-weight: 400;
  color: var(--white);
}

/* hero section */
.hero {
  position: relative;
  background: var(--green);
  color: var(--white);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/hero-lines.svg") no-repeat center/cover;
  opacity: 0.8;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-text {
  flex: 1 1 400px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-text p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--dark);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 400;
  border: 2px solid transparent;
  transition: all var(--transition) ease;
}

.hero-btn:hover {
  background: var(--dark);
  color: var(--white);
}

.hero-media {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.hero-media video {
  width: 100%;
  max-width: 1000px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(20, 20, 20, 0.1);
  display: block;
}

.hero-sound-toggle {
  color: #fff !important;
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hero-sound-toggle svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* about section */
.about {
  background: #D8EBE3;
  padding: 10rem 2rem;
  color: var(--dark);
  text-align: center;
}

.about-inner {
  max-width: 800px;
  max-height: 1000px;
  margin: 0 auto;
}

.about h2 {
  color: var(--green);
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--green);
  border-radius: 50px;
  color: var(--green);
  font-weight: 400;
  text-decoration: none;
  transition: all var(--transition) ease;
}

.about-btn:hover {
  background: var(--green);
  color: var(--white);
}

.book-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  font-weight: 400;
  text-decoration: none;
  transition: all var(--transition) ease;
}

.book-btn:hover {
  background: var(--dark);
  color: var(--white);
}

@media (max-width: 768px) {
  .about-btn,
  .book-btn {
    display: block;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 0.75rem;
    text-align: center;
  }
}

/* hero responsiveness section */
@media (max-width: 768px) {
  .logo {
    justify-content: flex-start;
    margin-right: 1rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column;
    text-align: left;
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 3rem 1.5rem 3rem;
  }

  .hero-inner {
    width: 100%;
  }

  .hero-btn {
    margin: 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    display: inline-block;
  }

  .hero-text {
    margin-bottom: 2rem;
  }

  .hero-text h1 {
    font-size: clamp(1.9rem, 5vw, 1rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .hero-text p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    text-align: left;
    color: var(--dark);
    margin-bottom: 1.8rem;
    line-height: 1.6;
  }

  .hero-btn {
    margin-left: 0;
    padding: 0.75rem 0.8rem;
    margin-right: 13rem;
    font-size: .8rem;
    font-weight: 400;
    display: inline-block;
  }

  .hero-media {
    display: none;
  }
}

/* services section */
.services {
  position: relative;
  background: #F9F9F9;
  padding: 6rem 2rem;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/services-bg.png") no-repeat center/cover;
  opacity: 0.9;
  z-index: 0;
}

.services-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.services h2 {
  color: var(--dark);
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.services p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  max-width: 500px;
  margin: 0 auto 3rem;
}

.services .servdesc {
  font-size: 1.1rem;
  color: #383838;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  justify-items: center;
  align-items: center;
}

@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* card */
.service-card {
  background: #EFFFF8;
  height: 100%;
  border: 1px solid var(--green);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .04);
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.1rem;
}

.service-card h3 {
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: calc(1.3em * 2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -.5rem;
}

.service-card .sub {
  font-size: .9rem;
  color: #383838;
  line-height: 1.4;
  min-height: calc(1.4em * 2);
  margin: 0;
  text-align: center;
  position: relative;
  padding-bottom: .75rem;
  margin-bottom: 1rem;
}

.service-card .sub::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  height: 1px;
  width: clamp(230px, 60%, 420px);
  background: var(--green);
  border-radius: 2px;
}

.service-card:not(:has(.sub)) h3::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--green);
  width: clamp(140px, 60%, 420px);
  margin: .75rem auto 0;
  border-radius: 2px;
}

.service-card:not(:has(.sub)) h3 {
  margin-bottom: calc(1.4em * 2 + 2rem);
}

.service-card p:not(.sub):first-of-type {
  margin-top: 1.2rem;
}

.t-section {
  background-color: #D8EBE3;
  padding: 56px 16px 72px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #30A473;
}

.t-eyebrow {
  letter-spacing: 2px;
  color: #30A473;
  margin: 0 0 6px;
  font-size: 2.2rem;
  font-weight: 700;
}

.t-sub {
  margin: 0 auto 28px;
  max-width: 680px;
  color: #383838;
}

.t-video-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 0 auto 36px;
}

.t-video-outer {
  aspect-ratio: 16/9;
  width: 100%;
}

.t-video-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #e3f3ed;
}

.t-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-tint {
  position: absolute;
  inset: 0;
  background: rgba(47, 158, 121, .25);
  transition: opacity .2s ease;
  pointer-events: none;
}

.t-video.playing .t-tint {
  opacity: 0;
}

.t-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #2f9e79;
  background: transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}

.t-play:hover {
  transform: scale(1.05);
}

.t-video.playing .t-play {
  opacity: 0;
  pointer-events: none;
}

.t-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.t-window {
  overflow: hidden;
  scroll-behavior: smooth;
}

.t-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  transition: transform .3s ease;
  will-change: transform;
}

.t-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border: 1px solid #429e78;
  border-radius: 16px;
  padding: 22px;
  text-align: left;
  background: #fff;
  min-height: 160px;
}

.t-name {
  color: #30A473;
  margin: 0 0 10px;
  font-weight: 500;
}

.t-quote {
  margin: 0;
  color: #383838;
  line-height: 1.5;
}

.t-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #cfe6db;
  background: #fff;
  color: #2f9e79;
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

.t-nav:hover {
  background: #e3f3ed;
  transform: translateY(-1px);
}

.t-prev {
  justify-self: start;
}

.t-next {
  justify-self: end;
}

@media (max-width:900px) {
  .t-video-row {
    grid-template-columns: 1fr;
  }

  .t-card {
    flex: 0 0 100%;
  }

  .t-carousel {
    grid-template-columns: 40px 1fr 40px;
  }
}

.contact-section {
  position: relative;
  background: var(--green);
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/contact-lines.svg") no-repeat center/cover;
  opacity: 0.75;
  z-index: 0;
}

.contact-card {
  position: relative;
  z-index: 1;
  background: var(--green);
  width: 100%;
  max-width: 500px;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: left;
  color: var(--white);
}

.contact-card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 0.9rem;
  border-radius: 8px;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 0.95rem;
  font-family: inherit;
  background: #ffffff;
  color: var(--dark);
}

.contact-card textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-card button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 400;
  font-family: inherit;
  border: 2px solid transparent;
  transition: all var(--transition) ease;
}

.contact-card button:hover {
  background: var(--dark);
  color: var(--white);
}

#form-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--dark);
}

@media (max-width: 600px) {
  .contact-card {
    padding: 2rem 1.5rem;
  }

  .contact-card h1 {
    font-size: 1.6rem;
  }
}

/* footer section */
.footer {
  background: #D8EBE3;
  color: var(--dark);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-col {
  font-size: 0.95rem;
}

.footer-logo {
  width: 58px;
  height: auto;
  margin-bottom: 0.75rem;
}

.footer-blurb {
  margin: 0 0 1rem;
  max-width: 280px;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-socials .social {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-socials .social:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 56px;
  height: 36px;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.footer-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin: 0 0 0.75rem;
}

.footer-list li+li,
.footer-links li+li {
  margin-top: 1rem;
}

.footer a {
  color: var(--dark);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
}

.upwork-btn,
.footer-book-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--dark);
  border-radius: 50px;
  color: var(--dark);
  font-weight: 400;
  text-decoration: none;
  transition: all var(--transition) ease;
}

.upwork-btn:hover,
.footer-book-btn:hover {
  background: var(--dark);
  color: var(--white);
}

@media (max-width: 900px) {
  .footer-grid>.footer-col:first-child {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    text-align: center;
  }
}