:root {
  --bg: #f4f0e8;
  --paper: #fffaf2;
  --ink: #17201b;
  --muted: #657069;
  --line: rgba(23, 32, 27, .14);
  --accent: #d8b76a;
  --accent-dark: #b98d37;
  --forest: #193c32;
  --orange: #f2793d;
  --sky: #b7d9ff;
  --shadow: 0 24px 70px rgba(24, 40, 34, .14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  gap: 20px;
  align-content: center;
  background: #13271f;
  color: var(--accent);
  transition: opacity .45s ease, visibility .45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(216, 183, 106, .55);
  border-radius: 50%;
  background: #fffaf0;
}

.preloader__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.preloader__bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
}

.preloader__bar span {
  display: block;
  width: 55%;
  height: 100%;
  background: var(--accent);
  animation: loading 1s ease-in-out infinite alternate;
}

@keyframes loading {
  to {
    transform: translateX(85%);
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor--outer {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(199, 255, 61, .8);
  transition: width .2s ease, height .2s ease, border-color .2s ease;
}

.cursor--inner {
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.cursor.is-hover {
  width: 54px;
  height: 54px;
  border-color: var(--orange);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 100;
  width: min(1240px, calc(100% - 36px));
  height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
  background: rgba(255, 250, 242, .82);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(23, 32, 27, .08);
  backdrop-filter: blur(16px);
  transform: translateX(-50%);
  transition: top .25s ease, background .25s ease, box-shadow .25s ease;
}

.site-header.is-sticky {
  top: 8px;
  background: rgba(255, 250, 242, .95);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 65% 35%, var(--accent) 0 28%, var(--forest) 30% 100%);
}

.brand--dark::before {
  background: radial-gradient(circle at 65% 35%, var(--forest) 0 28%, var(--accent) 30% 100%);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

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

.header-search,
.menu-btn,
.btn,
.icon-btn,
.filters button {
  border: 0;
}

.header-search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-weight: 800;
}

.phone {
  font-weight: 800;
  white-space: nowrap;
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 999px;
  background: var(--accent);
  font-weight: 900;
}

.menu-btn i,
.menu-btn i::before,
.menu-btn i::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.menu-btn i {
  position: relative;
}

.menu-btn i::before,
.menu-btn i::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-btn i::before {
  top: -6px;
}

.menu-btn i::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 70px;
  background: #f7f3eb;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(247, 243, 235, .92) 0 42%, rgba(25, 60, 50, .08) 42% 100%),
    radial-gradient(circle at 8% 75%, rgba(242, 121, 61, .22), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(183, 217, 255, .55), transparent 24%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(54px, 8vw, 110px);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  max-width: 590px;
  font-size: 19px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 900;
  box-shadow: inset 0 -3px 0 rgba(23, 32, 27, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 -3px 0 rgba(23, 32, 27, .16), 0 18px 34px rgba(25, 60, 50, .18);
}

.btn--dark {
  background: var(--forest);
  color: #fff;
}

.text-link {
  font-weight: 900;
  border-bottom: 2px solid var(--ink);
}

.hero__visual {
  position: relative;
  min-height: 610px;
}

.hero__visual>img {
  width: 78%;
  height: 610px;
  margin-left: auto;
  border-radius: 46% 46% 8px 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.metric-card {
  position: absolute;
  z-index: 2;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric-card--top {
  top: 82px;
  left: 10px;
  width: 168px;
  padding: 22px;
}

.metric-card strong {
  display: block;
  font-size: 48px;
  line-height: 1;
}

.metric-card strong::after {
  content: "+";
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.metric-card--bottom {
  right: 0;
  bottom: 52px;
  width: 260px;
  padding: 18px;
}

.metric-card svg {
  width: 100%;
  height: 54px;
}

.metric-card path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.round-play {
  position: absolute;
  left: 22%;
  bottom: 116px;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: var(--forest);
  font-size: 28px;
  box-shadow: var(--shadow);
  animation: float 3.2s ease-in-out infinite;
}

.round-play--light {
  left: auto;
  right: -34px;
  bottom: 34px;
  background: var(--paper);
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

.split {
  display: grid;
  grid-template-columns: .92fr 1fr;
  align-items: center;
  gap: 78px;
}

.about__media {
  position: relative;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: 36px -28px -28px 44px;
  z-index: -1;
  background: var(--orange);
  border-radius: var(--radius);
}

.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-copy p {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--forest);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 14px;
  margin-bottom: 30px;
}

.about__stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, .64);
}

.about__stats strong {
  display: block;
  font-size: 44px;
}

.about__stats strong::after {
  content: "+";
}

.about__stats span {
  color: var(--muted);
  font-weight: 800;
}

.services {
  position: relative;
  background: var(--forest);
  color: #fff;
  overflow: hidden;
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(199, 255, 61, .26);
  transform: rotate(22deg);
}

.services::before {
  left: -70px;
  top: 82px;
}

.services::after {
  right: -90px;
  bottom: 80px;
}

.services .eyebrow,
.services p {
  color: rgba(255, 255, 255, .75);
}

.services .eyebrow::before {
  background: var(--accent);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  text-align: left;
}

.section-heading--row h2 {
  margin-bottom: 0;
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
  transition: transform .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .1);
}

.service-card>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--forest);
  font-size: 25px;
  font-weight: 900;
}

.service-card__no {
  color: rgba(255, 255, 255, .45);
  font-weight: 900;
}

.service-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 900;
}

.marquee {
  overflow: hidden;
  background: var(--accent);
  color: var(--forest);
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.marquee div {
  display: inline-flex;
  gap: 46px;
  padding: 28px 0;
  animation: marquee 24s linear infinite;
}

.marquee span::after {
  content: "✦";
  margin-left: 46px;
  color: var(--orange);
}

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

.filters {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.filters button {
  min-width: 76px;
  padding: 12px 17px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.filters button.is-active {
  background: var(--forest);
  color: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 20px;
}

.work-card {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  transition: transform .25s ease, opacity .25s ease;
}

.work-card.is-hidden {
  display: none;
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
  transition: transform .35s ease, opacity .35s ease;
}

.work-card:hover img {
  transform: scale(1.06);
  opacity: .62;
}

.work-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fff;
}

.work-card span,
.blog-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent);
  font-weight: 900;
}

.testimonials {
  background: #fffaf2;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 300px;
}

.testimonial {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .35s ease, transform .35s ease;
}

.testimonial.is-active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial blockquote {
  margin: 0 0 34px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.18;
  font-weight: 850;
}

.testimonial figcaption {
  display: grid;
  gap: 5px;
}

.testimonial figcaption span {
  color: var(--muted);
}

.slider-dots {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(25, 60, 50, .25);
}

.slider-dots button.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--forest);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  position: relative;
  display: grid;
  grid-template-rows: 270px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  position: relative;
  padding: 28px;
}

.blog-card h3 {
  margin-bottom: 28px;
}

.blog-card a {
  font-weight: 900;
}

.blog-card time {
  position: absolute;
  top: -46px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  padding: 9px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--forest);
  text-align: center;
  font-weight: 900;
}

.footer {
  padding-top: 92px;
  background: #11261f;
  color: #fff;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr .7fr .7fr .95fr;
  gap: 46px;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

.footer a {
  display: block;
  margin-bottom: 12px;
}

.subscribe {
  display: flex;
  max-width: 360px;
  margin-top: 24px;
  padding: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
}

.subscribe input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 16px;
  background: transparent;
  color: #fff;
  outline: 0;
}

.subscribe button {
  border: 0;
  border-radius: 999px;
  padding: 12px 17px;
  background: var(--accent);
  font-weight: 900;
}

.footer__bottom {
  margin-top: 70px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .65);
  text-align: center;
}

.footer .brand {
  width: 260px;
  display: inline-flex;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fffaf0;
}

.footer-licence {
  margin: 14px 0 12px;
  color: #f3da88;
  font-size: 15px;
  font-weight: 900;
}

.process {
  background: var(--paper);
}

.process-grid,
.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-card,
.cost-card {
  min-height: 280px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(1, 63, 51, .08);
}

.process-card span,
.cost-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3da88, #c8a24c);
  color: #013f33;
  font-weight: 950;
}

.process-card p,
.cost-card p {
  margin-bottom: 0;
}

.costs {
  background: #f7f3eb;
}

.cost-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cost-card {
  min-height: 300px;
}

.concierge {
  padding-top: 0;
  background: #f7f3eb;
}

.concierge-panel {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 40px;
  align-items: center;
  padding: 54px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(1, 63, 51, .94), rgba(1, 63, 51, .78)),
    url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1400&q=80") center / cover;
  color: #fff;
}

.concierge-panel p {
  color: rgba(255, 255, 255, .78);
}

.concierge-panel .eyebrow {
  color: #f3da88;
}

.concierge-panel .check-list {
  margin: 0;
}

.concierge-panel .check-list li {
  color: #fff;
}

.faq {
  background: var(--paper);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(1, 63, 51, .06);
}

.faq-list summary {
  padding: 22px 24px;
  color: #013f33;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list details p {
  padding: 0 24px 22px;
  margin: 0;
}

@media (max-width: 1100px) {

  .process-grid,
  .cost-grid,
  .concierge-panel {
    grid-template-columns: 1fr;
  }

  .cost-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {

  .process-grid,
  .cost-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .cost-card {
    min-height: 0;
    padding: 24px;
  }

  .concierge-panel {
    padding: 28px;
  }
}

.search,
.drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
}

.search.is-open,
.drawer.is-open {
  pointer-events: auto;
}

.search__shade,
.drawer__shade {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 38, 31, .72);
  opacity: 0;
  transition: opacity .3s ease;
}

.search.is-open .search__shade,
.drawer.is-open .drawer__shade {
  opacity: 1;
}

.search__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 36px));
  padding: 42px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translate(-50%, -42%) scale(.96);
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
}

.search.is-open .search__panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.search__panel label {
  display: block;
  margin-bottom: 22px;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.search__box {
  display: flex;
  gap: 12px;
}

.search__box input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 22px;
  outline: 0;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.search__close {
  margin-left: auto;
  margin-bottom: 18px;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 34px;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform .35s ease;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer__nav {
  display: grid;
  gap: 12px;
}

.drawer__nav a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 900;
}

.drawer__meta {
  display: grid;
  gap: 10px;
  margin-top: auto;
  color: var(--muted);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--accent);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top circle {
  fill: none;
  stroke: rgba(255, 255, 255, .22);
  stroke-width: 2;
}

.back-top path {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {

  .nav,
  .phone {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero__grid,
  .split,
  .testimonial-wrap {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 540px;
  }

  .hero__visual>img {
    width: 86%;
    height: 540px;
  }

  .service-grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 66px;
    padding: 0 12px 0 16px;
  }

  .brand {
    font-size: 20px;
  }

  .brand::before {
    width: 28px;
    height: 28px;
  }

  .header-search {
    display: none;
  }

  .menu-btn span {
    display: none;
  }

  .hero {
    padding-top: 110px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 72px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero__grid {
    gap: 38px;
  }

  .hero__visual,
  .hero__visual>img {
    min-height: 0;
    height: 430px;
  }

  .hero__visual>img {
    width: 92%;
  }

  .metric-card--top {
    top: 26px;
    width: 142px;
    padding: 16px;
  }

  .metric-card--bottom {
    width: 220px;
    bottom: 22px;
  }

  .round-play {
    width: 72px;
    height: 72px;
    left: 8%;
    bottom: 112px;
  }

  .round-play--light {
    right: 16px;
    bottom: 16px;
  }

  .about__media::before {
    inset: 24px -10px -16px 18px;
  }

  .about__stats,
  .service-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .section-heading--row {
    display: grid;
    align-items: start;
  }

  .filters {
    overflow-x: auto;
    border-radius: var(--radius);
  }

  .service-card {
    min-height: 280px;
  }

  .testimonial-track {
    min-height: 390px;
  }

  .testimonial {
    padding: 28px;
  }

  .search__panel {
    padding: 24px;
  }

  .search__box {
    display: grid;
  }

  .search__box input {
    min-height: 54px;
  }

  .cursor {
    display: none;
  }
}

/* Rovix-style first viewport */
.site-header {
  top: 12px;
  width: calc(100% - 16px);
  height: 116px;
  max-width: none;
  padding: 0 52px 0 44px;
  background: rgba(255, 250, 238, .96);
  border: 0;
  border-radius: 8px;
  color: #013f33;
  box-shadow: 0 16px 44px rgba(1, 37, 31, .12);
}

.site-header.is-sticky {
  top: 0;
  background: rgba(255, 250, 238, .98);
  box-shadow: 0 18px 50px rgba(1, 37, 31, .18);
}

.brand {
  width: 290px;
  flex: 0 0 auto;
}

.brand::before {
  display: none;
}

.brand img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
  object-position: left center;
}

.nav {
  gap: 34px;
  margin-left: 74px;
  margin-right: auto;
  font-size: 20px;
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #013f33;
}

.nav a.is-current {
  color: #c8a24c;
}

.nav a.has-menu::after {
  content: "⌄";
  position: static;
  width: auto;
  height: auto;
  background: none;
  color: currentColor;
  transform: none;
  font-size: 20px;
  line-height: 1;
}

.header-actions {
  gap: 28px;
}

.header-search {
  gap: 14px;
  padding: 0;
  background: transparent;
  color: #013f33;
  box-shadow: none;
  font-size: 20px;
}

.header-search span {
  font-size: 34px;
}

.phone {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding-left: 70px;
  color: #013f33;
  font-size: 20px;
}

.menu-btn {
  gap: 18px;
  padding: 0;
  background: transparent;
  color: #013f33;
  box-shadow: none;
  font-size: 20px;
}

.menu-btn i,
.menu-btn i::before,
.menu-btn i::after {
  box-sizing: border-box;
}

.menu-btn i {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-block;
  border: 3px solid currentColor;
  border-radius: 6px;
  background: transparent;
  box-shadow:
    inset 0 0 0 5px #fffaf0,
    inset 0 0 0 7px currentColor;
}

.menu-btn i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 3px;
  height: 34px;
  background: currentColor;
  transform: translateX(-50%);
}

.menu-btn i::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 50%;
  width: 34px;
  height: 3px;
  background: currentColor;
  transform: translateY(-50%);
}

.hero {
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 0;
  background: #013f33;
  color: #fff;
}

.hero__bg {
  background:
    radial-gradient(circle at 2% 34%, rgba(216, 183, 106, .18) 0 16%, transparent 17%),
    radial-gradient(circle at 49% 87%, rgba(216, 183, 106, .14) 0 43%, transparent 44%),
    linear-gradient(57deg, rgba(216, 183, 106, .19) 0 16%, transparent 16% 100%),
    linear-gradient(116deg, transparent 0 72%, rgba(216, 183, 106, .16) 72% 82%, transparent 82%),
    linear-gradient(62deg, transparent 0 79%, rgba(255, 255, 255, .06) 79% 88%, transparent 88%),
    #013f33;
}

.hero__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28%;
  width: 170px;
  height: 110px;
  opacity: .32;
  background-image: radial-gradient(circle, #fff 0 4px, transparent 5px);
  background-size: 22px 22px;
}

.hero__grid {
  width: min(1660px, calc(100% - 96px));
  grid-template-columns: minmax(620px, .96fr) minmax(560px, 1fr);
  gap: 42px;
  min-height: calc(100vh - 160px);
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  max-width: 890px;
  margin-bottom: 38px;
  color: #fff;
  font-size: clamp(76px, 5.7vw, 126px);
  line-height: 1.06;
  font-weight: 420;
}

.hero p {
  max-width: 835px;
  color: #fff;
  font-size: 26px;
  line-height: 1.55;
  font-weight: 650;
}

.hero__actions {
  margin-top: 42px;
}

.hero .btn {
  min-height: 64px;
  padding: 0 28px;
  gap: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3da88, #c8a24c);
  color: #073f31;
  font-size: 22px;
  font-weight: 500;
  box-shadow: none;
}

.hero .btn::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-right: -22px;
  border-radius: 8px;
  background: #073f31;
  color: #fff;
  font-size: 24px;
}

.hero .text-link {
  display: none;
}

.hero__visual {
  align-self: end;
  min-height: 720px;
  height: calc(100vh - 160px);
}

.hero__visual>img {
  position: absolute;
  right: 56px;
  bottom: 0;
  width: min(650px, 66vw);
  height: min(860px, calc(100vh - 110px));
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: center bottom;
  box-shadow: none;
  mix-blend-mode: normal;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  left: 20px;
  top: 31%;
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #073f31;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.hero-badge span {
  display: none;
}

.hero-badge::before,
.hero-badge::after {
  position: absolute;
  color: #073f31;
  font-size: 18px;
  font-weight: 900;
}

.hero-badge::before {
  content: "Business";
  top: 22px;
  transform: rotate(16deg);
}

.hero-badge::after {
  content: "Consulting";
  bottom: 22px;
  transform: rotate(196deg);
}

.hero-badge i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #c8a24c 0 19%, transparent 20%),
    conic-gradient(from 45deg, #f3da88 0 25%, #073f31 0 50%, #c8a24c 0 75%, #073f31 0);
  box-shadow: inset 0 0 0 22px #073f31;
}

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

.metric-card--bottom {
  right: 0;
  bottom: 24%;
  z-index: 4;
  width: 350px;
  padding: 30px 30px 26px;
  border: 0;
  border-radius: 8px;
  background: #fff;
}

.metric-card--bottom svg {
  height: 118px;
}

.metric-card--bottom rect:nth-child(1),
.metric-card--bottom rect:nth-child(3) {
  fill: #d7e0dc;
}

.metric-card--bottom rect:nth-child(2) {
  fill: #c8a24c;
}

.metric-card--bottom rect:nth-child(4) {
  fill: #064332;
}

.metric-card--bottom span {
  margin-top: 10px;
  color: #073f31;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1320px) {
  .site-header {
    padding-inline: 28px;
  }

  .nav {
    gap: 18px;
    margin-left: 34px;
    font-size: 17px;
  }

  .phone {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(520px, .95fr) minmax(430px, 1fr);
  }

  .hero h1 {
    font-size: clamp(66px, 7vw, 94px);
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 78px;
  }

  .brand {
    width: 230px;
  }

  .brand img {
    max-height: 58px;
  }

  .nav,
  .header-search {
    display: none;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .hero__grid {
    width: min(100% - 32px, 720px);
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(58px, 13vw, 82px);
  }

  .hero p {
    font-size: 20px;
  }

  .hero__visual {
    min-height: 560px;
    height: 560px;
  }

  .hero__visual>img {
    right: -40px;
    width: 560px;
    max-width: none;
    height: 620px;
  }

  .hero-badge {
    left: 0;
    top: 42px;
    width: 132px;
    height: 132px;
  }

  .hero-badge i {
    width: 58px;
    height: 58px;
    box-shadow: inset 0 0 0 16px #073f31;
  }

  .metric-card--bottom {
    right: 0;
    bottom: 54px;
    width: 230px;
  }
}

@media (max-width: 560px) {
  .hero__bg::before {
    display: none;
  }

  .site-header {
    width: calc(100% - 14px);
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    width: 170px;
  }

  .brand img {
    max-height: 46px;
  }

  .menu-btn span {
    display: inline;
    font-size: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 64px);
    margin-bottom: 24px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .btn {
    min-height: 58px;
    font-size: 19px;
  }

  .hero__visual {
    height: 500px;
    min-height: 500px;
  }

  .hero__visual>img {
    right: -126px;
    width: 560px;
    height: 560px;
  }

  .hero-badge {
    top: 24px;
    width: 112px;
    height: 112px;
  }

  .hero-badge span {
    display: none;
  }

  .hero-badge::before,
  .hero-badge::after {
    display: none;
  }

  .metric-card--bottom {
    right: 0;
    bottom: 24px;
    width: 190px;
    padding: 20px;
  }

  .metric-card--bottom svg {
    height: 82px;
  }

  .metric-card--bottom span {
    font-size: 20px;
  }
}

/* Contact and WhatsApp refinements */
.whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #013f33;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(1, 63, 51, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .54);
}

.language-switch button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  background: transparent;
  color: #013f33;
  font-size: 13px;
  font-weight: 950;
}

.language-switch button.is-active {
  background: #013f33;
  color: #fffaf0;
}

.language-switch .flag {
  width: 21px;
  height: 14px;
  flex: 0 0 auto;
  display: block;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(1, 63, 51, .18);
}

.language-switch--drawer {
  align-self: start;
  margin-top: 4px;
}

.whatsapp-header img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .25);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 91;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  box-shadow: 0 16px 36px rgba(37, 211, 102, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(37, 211, 102, .34);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.contact-section {
  background: #fffaf2;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-info a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(1, 63, 51, .06);
}

.contact-info span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info strong {
  color: #013f33;
  font-size: 21px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 60px rgba(1, 63, 51, .1);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label>span {
  color: #013f33;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  background: #fffaf2;
  color: var(--ink);
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c8a24c;
  box-shadow: 0 0 0 3px rgba(200, 162, 76, .18);
}

.contact-form .btn {
  justify-self: start;
  background: #013f33;
  color: #fffaf0;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .18);
}

.contact-form .btn:hover {
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .18), 0 18px 34px rgba(1, 63, 51, .22);
}

@media (max-width: 1320px) {
  .whatsapp-header span {
    display: none;
  }

  .language-switch button {
    padding: 0 8px;
  }
}

@media (max-width: 980px) {

  .contact-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .site-header>.header-actions>.language-switch {
    display: none;
  }
}

@media (max-width: 560px) {
  .whatsapp-header {
    display: none;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 84px;
  }

  .contact-form {
    padding: 22px;
  }
}