:root {
  --forest-dark: #1C3A2F;
  --forest: #2a5746;
  --forest-mid: #347a5b;
  --forest-light: #40916C;
  --sage: #95B8A0;
  --sage-light: #D8EDE0;
  --cream: #F7F3EE;
  --warm-white: #FDFAF6;
  --stone: #8A8478;
  --stone-light: #C9C3B8;
  --stone-lighter: #b3b3b3;
  --charcoal: #1E1E1E;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.65s forwards;
}
.buttons--center {
  justify-content: center;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.nav--scrolled {
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}
.nav__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav__logo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0px;
  line-height: 1;
}
.nav__logo span {
  color: var(--forest-light);
}
.nav__logo-motto {
  font-size: 11px;
  font-style: italic;
  color: var(--stone-lighter);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav__link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.25s ease;
}
.nav__link:hover {
  opacity: 1;
  text-decoration: underline;
}
.nav__link--cta {
  background: var(--forest);
  color: var(--cream) !important;
  opacity: 1 !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease !important;
  display: inline-block;
}
.nav__link--cta:hover {
  background: var(--forest-mid) !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

.btn--primary {
  background: var(--forest);
  color: var(--cream);
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.btn--primary:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}
.btn--ghost {
  font-size: 14px;
  font-weight: 400;
  color: var(--stone);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  border: none;
  background: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.btn--ghost span {
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.btn--ghost:hover {
  color: var(--charcoal);
}
.btn--gold {
  background: var(--gold);
  color: var(--forest);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: "DM Sans", sans-serif;
}
.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn--cream {
  background: var(--cream);
  color: var(--forest);
  padding: 18px 36px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  display: block;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
}
.btn--cream:hover {
  background: var(--warm-white);
  transform: translateY(-2px);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--forest-light);
}
.hero__headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  color: var(--forest-dark);
  margin-bottom: 38px;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s forwards;
}
.hero__headline em {
  font-style: italic;
  color: var(--forest-light);
}
.hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  max-width: 420px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}
.hero__stats {
  margin-top: 64px;
  display: flex;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.hero__right {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s 0.3s forwards;
}
.hero__img-wrap {
  display: flex;
  position: absolute;
  inset: 0;
  background: var(--sage-light);
  display: flex;
  overflow: clip;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.hero__card {
  position: absolute;
  bottom: 48px;
  left: -60px;
  background: var(--warm-white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  max-width: 340px;
  animation: slideIn 0.8s 1s both;
}
.hero__card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--forest);
}
.hero__card-role {
  font-size: 12px;
  color: var(--stone);
  margin-top: 2px;
}
.hero__card-tag {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-top: 12px;
  background: var(--sage-light);
  color: var(--forest);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 17px 6px;
  border-radius: 100px;
  white-space: nowrap;
}
.hero__card-tag img {
  height: 13px;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: var(--stone-light);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--stone);
  animation: scrollAnim 2s 1.5s infinite;
}

.stat__num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.stat__num span {
  font-size: 1.5rem;
}
.stat__label {
  font-size: 12px;
  color: var(--stone);
  margin-top: 4px;
  letter-spacing: 0.02em;
}
.stat__divider {
  width: 1px;
  background: var(--stone-light);
}

.trust {
  background: var(--forest);
  padding: 20px 80px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.trust__item {
  display: flex;
  align-items: start;
  gap: 12px;
  flex: 1;
  padding: 0 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.trust__item:first-child {
  padding-left: 0;
}
.trust__item:last-child {
  border-right: none;
}
.trust__stars {
  color: var(--gold);
  font-size: 11px;
  margin-bottom: 4px;
}
.trust__quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.trust__author {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.section__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section__tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--forest-light);
}
.section__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 20px;
}
.section__title em {
  font-style: italic;
  color: var(--forest-light);
}
.section__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 32px;
}

.problem {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pain__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pain__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}
.pain__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.pain__icon--back {
  background: var(--cream);
}

.solution {
  position: relative;
  padding: 48px;
  background: var(--forest);
  border-radius: 24px;
  color: var(--cream);
}
.solution__accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.12;
}
.solution__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.solution__tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--sage);
}
.solution__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 32px;
}
.solution__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.solution__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}
.solution__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.solution__cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solution__cta-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.process {
  padding: 120px 80px 70px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "HOW";
  position: absolute;
  right: -20px;
  top: 40px;
  font-family: "Cormorant Garamond", serif;
  font-size: 200px;
  font-weight: 300;
  color: var(--sage-light);
  opacity: 0.5;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.process__header {
  max-width: 650px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 70px;
}
.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 33%;
  height: 1px;
  background: var(--stone-light);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding: 0 40px 0 0;
}
.step:last-child {
  padding-right: 0;
}
.step:hover .step__num {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--cream);
}
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 1px solid var(--stone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 28px;
  transition: all 0.25s ease;
}
.step__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
}
.step__body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
}
.step__note {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--forest-light);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 2px;
}

.services {
  padding: 120px 80px;
}
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sage-light);
  border-radius: 12px;
  overflow: hidden;
}

.service-card {
  background: var(--warm-white);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
  cursor: default;
}
.service-card:hover, .service-card--featured {
  background: var(--forest);
}
.service-card:hover .service-card__name,
.service-card:hover .service-card__price,
.service-card:hover .service-card__desc, .service-card--featured .service-card__name,
.service-card--featured .service-card__price,
.service-card--featured .service-card__desc {
  color: var(--cream);
}
.service-card:hover .service-card__link, .service-card--featured .service-card__link {
  color: var(--sage);
}
.service-card:hover .service-card__price-unit, .service-card--featured .service-card__price-unit {
  color: rgba(255, 255, 255, 0.5);
}
.service-card--featured .service-card__badge {
  background: var(--gold);
  color: var(--forest);
}
.service-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sage-light);
  color: var(--forest);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.service-card__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1.2;
  transition: all 0.25s ease;
}
.service-card__price {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--forest);
  margin-bottom: 16px;
  transition: all 0.25s ease;
}
.service-card__price-unit {
  font-size: 14px;
  color: var(--stone);
  transition: all 0.25s ease;
}
.service-card__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--stone);
  margin-bottom: 28px;
  transition: all 0.25s ease;
}
.service-card__link {
  font-size: 13px;
  color: var(--forest-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  padding: 0;
}
.service-card__link:hover {
  gap: 10px;
}

.about {
  padding: 120px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
.about__img-wrap {
  position: relative;
}
.about__img {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 24px;
  background: linear-gradient(160deg, #7BA897 0%, #2D6A4F 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__img-placeholder {
  text-align: center;
  padding: 24px;
}
.about__img-placeholder p {
  font-size: 13px;
  font-style: italic;
  margin-top: 12px;
  opacity: 0.7;
}
.about__accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
.about__accent-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}
.about__accent-text {
  font-size: 11px;
  color: var(--forest);
  opacity: 0.7;
  margin-top: 4px;
}
.about__quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--forest);
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}
.about__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--stone);
  margin-bottom: 16px;
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}
.about__tag {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 12px;
  padding: 6px 16px;
  border: 1px solid var(--stone-light);
  border-radius: 100px;
  color: var(--stone);
}
.about__tag img {
  height: 13px;
  border: 1px solid var(--stone-light);
}

.destinations {
  padding: 120px 80px;
}
.destinations__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.dest-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dest-card:hover {
  transform: scale(1.01);
}
.dest-card:hover .dest-card__bg {
  transform: scale(1.05);
}
.dest-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dest-card__bg--sk {
  background: linear-gradient(160deg, #4A7C6A 0%, #1C3A2F 60%, #0D2018 100%);
}
.dest-card__bg--ca {
  background: linear-gradient(160deg, #5B8FA8 0%, #2D4D6A 60%, #1A2D3E 100%);
}
.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
}
.dest-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
}
.dest-card__flag {
  font-size: 28px;
  margin-bottom: 8px;
}
.dest-card__flag img {
  width: 22px;
}
.dest-card__name {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.dest-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}
.dest-card__spots {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.dest-card__spot {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.cta {
  margin: 0 80px 80px;
  background: var(--forest);
  border-radius: 24px;
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}
.cta__tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta__tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--sage);
}
.cta__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}
.cta__title em {
  font-style: italic;
  color: var(--sage);
}
.cta__body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.cta__note {
  text-align: left;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
  margin-top: 12px;
}

.footer {
  padding: 60px 80px 40px;
  border-top: 1px solid var(--stone-light);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer__logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 13px;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 20px;
}
.footer__contact {
  font-size: 13px;
  color: var(--stone);
  line-height: 2;
}
.footer__contact a {
  color: var(--forest-light);
  text-decoration: none;
}
.footer__heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}
.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-link {
  font-size: 13px;
  color: var(--charcoal);
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.25s ease;
  cursor: pointer;
}
.footer__nav-link:hover {
  opacity: 1;
}
.footer__bottom {
  padding: 24px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--stone);
  border-top: 1px solid var(--stone-light);
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
.modal-overlay--open {
  display: flex;
}

.modal {
  background: var(--warm-white);
  border-radius: 24px;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--stone);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.25s ease;
}
.modal__close:hover {
  background: var(--sage-light);
}
.modal__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 12px;
}
.modal__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 8px;
}
.modal__subtitle {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 32px;
  line-height: 1.6;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal__free-note {
  text-align: center;
  font-size: 12px;
  color: var(--stone);
  margin-top: 8px;
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.form__input, .form__select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--stone-light);
  background: var(--warm-white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--charcoal);
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}
.form__input:focus, .form__select:focus {
  border-color: var(--forest-mid);
}
.form__submit {
  background: var(--forest);
  color: var(--cream);
  padding: 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.25s ease;
  margin-top: 4px;
}
.form__submit:hover {
  background: var(--forest-mid);
}
.form__error {
  font-size: 11px;
  color: #c0392b;
  display: none;
}
.form__field--invalid .form__input,
.form__field--invalid .form__select {
  border-color: #c0392b;
}
.form__field--invalid .form__input:focus,
.form__field--invalid .form__select:focus {
  border-color: #c0392b;
}
.form__field--invalid .form__error {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 {
  transition-delay: 0.1s;
}
.reveal--delay-2 {
  transition-delay: 0.2s;
}
.reveal--delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 768px) {
  .nav {
    padding: 0 24px;
  }
  .nav__links {
    display: none;
  }
  .cursor,
  .cursor__ring {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    padding: 60px 24px 48px;
  }
  .hero__right {
    height: 50vh;
  }
  .hero__scroll {
    display: none;
  }
  .hero__card {
    left: 24px;
    bottom: 24px;
  }
  .trust {
    padding: 24px;
    flex-direction: column;
    gap: 20px;
  }
  .trust__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 0 20px;
  }
  .trust__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .problem,
  .about {
    grid-template-columns: 1fr;
    padding: 72px 24px;
    gap: 48px;
  }
  .process {
    padding: 72px 24px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps::before {
    display: none;
  }
  .services {
    padding: 72px 24px;
  }
  .services__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .services__grid {
    grid-template-columns: 1fr;
  }
  .destinations {
    padding: 72px 24px;
  }
  .destinations__grid {
    grid-template-columns: 1fr;
  }
  .cta {
    margin: 0 24px 60px;
    padding: 60px 32px;
    grid-template-columns: 1fr;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 32px;
  }
  .footer__bottom {
    padding: 20px 24px;
    flex-direction: column;
    gap: 12px;
  }
  .about__img {
    aspect-ratio: 1;
  }
}
.protirobot {
  display: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scrollAnim {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/*# sourceMappingURL=main.css.map */
