* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

@media (max-width: 640px) {
  html {
  scroll-padding-top: 122px;
  }
}

body {
  margin: 0px;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest);
  font-weight: 600;
  line-height: 1.08;
  margin: 0px 0px 0.45em;
  letter-spacing: 0.2px;
}

p {
  margin: 0px 0px 1em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px clamp(20px, 5vw, 48px);
}

.section {
  padding: clamp(64px, 9vw, 132px) 0px;
}

.center {
  text-align: center;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brass);
  margin: 0px 0px 1.1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.24rem);
  color: rgb(76, 81, 73);
  max-width: 62ch;
}

.title-xl {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.title-lg {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
}

.muted {
  color: rgb(109, 114, 105);
}

.sec-head {
  max-width: 660px;
  margin: 0px auto clamp(2.2rem, 4vw, 3.6rem);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

@media (max-width: 640px) {
  .nav-inner {
  height: auto;
  flex-direction: column;
  row-gap: 0.45rem;
  column-gap: 0.45rem;
  padding: 0.7rem 0px;
  }
}

.brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.4px;
  line-height: 1;
  display: flex;
  align-items: center;
  row-gap: 0.6rem;
  column-gap: 0.6rem;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.brand span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-top: 0.25rem;
}

.nav-links {
  display: flex;
  align-items: center;
  row-gap: clamp(1rem, 2.4vw, 2.3rem);
  column-gap: clamp(1rem, 2.4vw, 2.3rem);
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

@media (max-width: 640px) {
  .nav-links {
  row-gap: 1.1rem;
  column-gap: 1.1rem;
  }
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  position: relative;
  padding: 0.4rem 0px;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

@media (max-width: 640px) {
  .nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  }
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 100%;
  bottom: 0px;
  height: 1.5px;
  background: var(--brass);
  transition-behavior: normal;
  transition-duration: 0.32s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: right;
}

.nav-link:hover {
  color: var(--brass);
}

.nav-link:hover::after {
  right: 0px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  row-gap: 0.6rem;
  column-gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.9rem;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  cursor: pointer;
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  transition-behavior: normal, normal, normal, normal, normal;
  transition-duration: 0.25s, 0.25s, 0.25s, 0.25s, 0.25s;
  transition-timing-function: ease, ease, ease, ease, ease;
  transition-delay: 0s, 0s, 0s, 0s, 0s;
  transition-property: transform, box-shadow, background, color, border-color;
  text-transform: uppercase;
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.btn--primary {
  background: var(--sage-deep);
  color: rgb(255, 255, 255);
  box-shadow: rgba(36, 48, 41, 0.55) 0px 12px 26px -14px;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: rgba(36, 48, 41, 0.6) 0px 18px 32px -14px;
  background: var(--forest);
}

.btn--wa {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: var(--sage-d-3);
  color: rgb(255, 255, 255);
  box-shadow: rgba(37, 211, 102, 0.65) 0px 12px 26px -14px;
}

.btn--wa:hover {
  transform: translateY(-2px);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: var(--sage-d-4);
}

.btn--ghost {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: var(--forest);
  border-top-color: rgba(36, 48, 41, 0.28);
  border-right-color: rgba(36, 48, 41, 0.28);
  border-bottom-color: rgba(36, 48, 41, 0.28);
  border-left-color: rgba(36, 48, 41, 0.28);
}

.btn--ghost:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
  transform: translateY(-2px);
}

.btn--light {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.14);
  color: rgb(255, 255, 255);
  border-top-color: rgba(255, 255, 255, 0.5);
  border-right-color: rgba(255, 255, 255, 0.5);
  border-bottom-color: rgba(255, 255, 255, 0.5);
  border-left-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn--light:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  color: var(--forest);
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero-media {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@supports (animation-timeline: scroll()) {
  .hero-media {
  animation-duration: auto;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: heroDrift;
  animation-timeline: scroll(root);
  animation-range-start: 0px;
  animation-range-end: 100vh;
  will-change: transform;
  }
}

.hero-scrim {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  background-image: linear-gradient(95deg, rgba(28, 38, 31, 0.82) 0%, rgba(28, 38, 31, 0.6) 40%, rgba(28, 38, 31, 0.25) 72%, rgba(28, 38, 31, 0) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 660px;
  color: var(--cream);
  padding: 96px 0px 40px;
}

@media (max-width: 640px) {
  .hero-content {
  padding-top: 120px;
  }
}

@supports (animation-timeline: scroll()) {
  .hero-content {
  animation-duration: auto;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: heroFade;
  animation-timeline: scroll(root);
  animation-range-start: 0px;
  animation-range-end: 80vh;
  }
}

.hero .eyebrow {
  color: rgb(236, 220, 184);
}

.hero-title {
  color: rgb(255, 255, 255);
  font-size: clamp(2.9rem, 7.4vw, 5.6rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 0.5rem;
  text-shadow: rgba(0, 0, 0, 0.28) 0px 2px 40px;
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: rgb(234, 223, 202);
}

.hero-tag {
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  color: rgba(255, 255, 255, 0.94);
  max-width: 50ch;
  margin: 0px 0px 2rem;
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
  column-gap: 0.5rem;
  animation-duration: 2.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: floaty;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.hero-scroll span.dot {
  width: 1px;
  height: 38px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  row-gap: clamp(1rem, 2vw, 1.6rem);
  column-gap: clamp(1rem, 2vw, 1.6rem);
}

.svc-card {
  background: var(--cream-soft);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(36, 48, 41, 0.09);
  border-right-color: rgba(36, 48, 41, 0.09);
  border-bottom-color: rgba(36, 48, 41, 0.09);
  border-left-color: rgba(36, 48, 41, 0.09);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: 2.1rem 1.9rem;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.32s, 0.32s, 0.32s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: transform, box-shadow, border-color;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: rgba(36, 48, 41, 0.45) 0px 26px 44px -26px;
  border-top-color: rgba(184, 155, 110, 0.55);
  border-right-color: rgba(184, 155, 110, 0.55);
  border-bottom-color: rgba(184, 155, 110, 0.55);
  border-left-color: rgba(184, 155, 110, 0.55);
}

.svc-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  row-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 0.5rem;
}

.svc-card h3 {
  font-size: 1.42rem;
  margin: 0px;
}

.svc-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--sage-deep);
  font-weight: 700;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.svc-dur {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brass);
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.svc-card p {
  color: rgb(99, 104, 95);
  font-size: 0.95rem;
  margin: 0px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  row-gap: clamp(2rem, 5vw, 5rem);
  column-gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

@media (max-width: 820px) {
  .split {
  grid-template-columns: 1fr;
  }
}

.split-media img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: rgba(36, 48, 41, 0.55) 0px 34px 64px -34px;
  width: 100%;
}

@supports (animation-timeline: view()) {
  .split-media img {
  animation-duration: 1.15s;
  animation-timing-function: cubic-bezier(0.16, 0.7, 0.2, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: imgReveal;
  animation-timeline: view();
  animation-range-start: entry;
  animation-range-end: cover 32%;
  }
}

.split--rev .split-media {
  order: 2;
}

@media (max-width: 820px) {
  .split--rev .split-media {
  order: 0;
  }
}

.feature {
  display: flex;
  row-gap: 1.05rem;
  column-gap: 1.05rem;
  align-items: flex-start;
  margin-bottom: 1.7rem;
}

.feature .ic {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 48px;
  height: 48px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(157, 184, 168, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
}

.feature .ic svg {
  width: 22px;
  height: 22px;
}

.feature h4 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.04rem;
  margin: 0.15rem 0px 0.3rem;
}

.feature p {
  font-size: 0.93rem;
  color: rgb(99, 104, 95);
  margin: 0px;
}

.cta-band {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  background-image: linear-gradient(rgba(26, 36, 29, 0.86), rgba(26, 36, 29, 0.78)), url("https://d8j0ntlcm91z4.cloudfront.net/user_3BAL0htzzryFhc2XAxzIa0MeiXv/hf_20260701_193014_c5dd7964-84a2-40bf-83f0-bcff3eca6bb8.png");
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .cta-band {
  background-attachment: scroll;
  }
}

.cta-band h2 {
  color: rgb(255, 255, 255);
}

.cta-band .eyebrow {
  color: var(--brass);
}

.cta-band p {
  color: rgba(247, 242, 232, 0.85);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.note-pill {
  display: inline-flex;
  align-items: center;
  row-gap: 0.6rem;
  column-gap: 0.6rem;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(184, 155, 110, 0.15);
  color: var(--sage-deep);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(184, 155, 110, 0.4);
  border-right-color: rgba(184, 155, 110, 0.4);
  border-bottom-color: rgba(184, 155, 110, 0.4);
  border-left-color: rgba(184, 155, 110, 0.4);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding: 0.65rem 1.2rem;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
}

.site-footer {
  background: var(--forest);
  color: rgba(247, 242, 232, 0.85);
  padding: clamp(48px, 7vw, 88px) 0px 2rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  row-gap: 2.5rem;
  column-gap: 2.5rem;
}

@media (max-width: 720px) {
  .foot-grid {
  grid-template-columns: 1fr;
  row-gap: 1.6rem;
  column-gap: 1.6rem;
  }
}

.foot-brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: rgb(255, 255, 255);
  margin: 0px 0px 0.5rem;
}

.site-footer h5 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--brass);
  margin: 0px 0px 1rem;
  font-weight: 600;
}

.site-footer a {
  color: rgba(247, 242, 232, 0.8);
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
  display: block;
  padding: 0.22rem 0px;
}

.site-footer a:hover {
  color: rgb(255, 255, 255);
}

.site-footer .tagline {
  color: rgba(247, 242, 232, 0.6);
  max-width: 34ch;
  font-size: 0.92rem;
}

.foot-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(247, 242, 232, 0.15);
  margin-top: 2.6rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(247, 242, 232, 0.55);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 0.5rem;
  column-gap: 0.5rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--brass);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.brand .brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
  letter-spacing: 0.4px;
}

.brand .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.54rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  margin-top: 0.32rem;
}

.contact-hero {
  position: relative;
  padding: 150px 0px clamp(48px, 7vw, 90px);
  background: linear-gradient(180deg, var(--forest), #1c2620);
  color: var(--cream);
  overflow-x: hidden;
  overflow-y: hidden;
}

.contact-hero .eyebrow {
  color: var(--brass);
}

.contact-hero h1 {
  color: rgb(255, 255, 255);
}

.contact-hero p {
  color: rgba(247, 242, 232, 0.85);
}

.page-hero {
  position: relative;
  padding: 150px 0px clamp(40px, 6vw, 72px);
  text-align: center;
}

.contact-card {
  background: var(--cream-soft);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(36, 48, 41, 0.09);
  border-right-color: rgba(36, 48, 41, 0.09);
  border-bottom-color: rgba(36, 48, 41, 0.09);
  border-left-color: rgba(36, 48, 41, 0.09);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.contact-big {
  display: flex;
  align-items: center;
  row-gap: 1rem;
  column-gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--forest);
  font-weight: 600;
}

.info-row {
  display: flex;
  row-gap: 0.8rem;
  column-gap: 0.8rem;
  align-items: flex-start;
  padding: 0.9rem 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(36, 48, 41, 0.08);
}

.info-row:last-child {
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

.info-row .ic {
  color: var(--sage-deep);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  margin-top: 2px;
}

.info-row .ic svg {
  width: 20px;
  height: 20px;
}

.info-row b {
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 600;
}

.reveal {
  opacity: 1;
}

@supports (animation-timeline: view()) {
  .reveal {
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.16, 0.7, 0.2, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: revealCine;
  animation-timeline: view();
  animation-range-start: entry;
  animation-range-end: cover 22%;
  }
}

@keyframes hero-in {
  0% {
    opacity: 0;
    transform: translateY(26px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes reveal-up {
  0% {
    opacity: 0;
    transform: translateY(32px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes floaty {
  0%, 100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

@keyframes dotpulse {
  0%, 100% {
    opacity: 0.35;
    transform: scaleY(0.65);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.hero-content > * {
  opacity: 1;
}

@supports (animation-timeline: view()) {
  .hero-content > * {
  animation-duration: 0.95s;
  animation-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: hero-in;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  }
}

@supports (animation-timeline: view()) {
  .hero-content > :nth-child(1) {
  animation-delay: 0.1s;
  }
}

@supports (animation-timeline: view()) {
  .hero-content > :nth-child(2) {
  animation-delay: 0.22s;
  }
}

@supports (animation-timeline: view()) {
  .hero-content > :nth-child(3) {
  animation-delay: 0.34s;
  }
}

@supports (animation-timeline: view()) {
  .hero-content > :nth-child(4) {
  animation-delay: 0.46s;
  }
}

.hero-scroll .dot {
  animation-duration: 2.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: dotpulse;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  transform-origin: center top;
}

.svc-card, .feature, .btn {
  will-change: transform;
}

.lotus-accent {
  width: 48px;
  height: 48px;
  color: var(--brass);
  margin: 0px auto 1.2rem;
  display: block;
}

.svc-note {
  display: flex;
  justify-content: center;
  margin-top: 2.8rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sage);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.nav-link.is-active {
  color: var(--brass);
}

.nav-link.is-active::after {
  right: 0px;
}

.contact-hero .lotus-accent {
  margin-left: 0px;
}

.page-hero .lead {
  margin-left: auto;
  margin-right: auto;
}

.contact-hero .lead {
  margin-left: 0px;
}

.contact-hero .btn-row {
  justify-content: flex-start;
}

@keyframes heroDrift {
  0% {
    transform: translateY(0px) scale(1.06);
  }
  100% {
    transform: translateY(9%) scale(1.13);
  }
}

@keyframes heroFade {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  100% {
    opacity: 0.2;
    transform: translateY(48px);
  }
}

@keyframes navCondense {
  100% {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgba(247, 242, 232, 0.97);
    box-shadow: rgba(36, 48, 41, 0.6) 0px 10px 30px -22px;
  }
}

@supports (animation-timeline: view()) {
  .svc-grid > *, .foot-grid > * {
  animation-duration: 0.85s;
  animation-timing-function: cubic-bezier(0.16, 0.7, 0.2, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: revealCine;
  animation-timeline: view();
  animation-range-start: entry;
  animation-range-end: cover 20%;
  }
}

@keyframes revealCine {
  0% {
    opacity: 0;
    transform: translateY(44px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes imgReveal {
  0% {
    opacity: 0;
    transform: scale(1.09);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.cine-band::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(28, 38, 31, 0.66), rgba(28, 38, 31, 0.5));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media, .hero-content, .site-nav, .reveal, .svc-grid > *, .foot-grid > *, .split-media img {
  animation-duration: auto;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: none;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  transform: none;
  opacity: 1;
  }
}